mirror of
https://github.com/nextcloud/server.git
synced 2026-06-08 16:26:59 -04:00
Merge branch 'master' into support-direct-appapi-requests
This commit is contained in:
commit
54c700bc74
648 changed files with 8946 additions and 3649 deletions
37
.github/workflows/command-compile.yml
vendored
37
.github/workflows/command-compile.yml
vendored
|
|
@ -26,6 +26,28 @@ jobs:
|
|||
base_ref: ${{ steps.comment-branch.outputs.base_ref }}
|
||||
|
||||
steps:
|
||||
- name: Get repository from pull request comment
|
||||
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
|
||||
id: get-repository
|
||||
with:
|
||||
github-token: ${{secrets.GITHUB_TOKEN}}
|
||||
script: |
|
||||
const pull = await github.rest.pulls.get({
|
||||
owner: context.repo.owner,
|
||||
repo: context.repo.repo,
|
||||
pull_number: context.issue.number
|
||||
});
|
||||
|
||||
const repositoryName = pull.data.head?.repo?.full_name
|
||||
console.log(repositoryName)
|
||||
return repositoryName
|
||||
|
||||
- name: Disabled on forks
|
||||
if: ${{ fromJSON(steps.get-repository.outputs.result) != github.repository }}
|
||||
run: |
|
||||
echo 'Can not execute /compile on forks'
|
||||
exit 1
|
||||
|
||||
- name: Check actor permission
|
||||
uses: skjnldsv/check-actor-permission@69e92a3c4711150929bca9fcf34448c5bf5526e7 # v2
|
||||
with:
|
||||
|
|
@ -57,6 +79,15 @@ jobs:
|
|||
uses: xt0rted/pull-request-comment-branch@d97294d304604fa98a2600a6e2f916a84b596dc7 # v1
|
||||
id: comment-branch
|
||||
|
||||
- name: Add reaction on failure
|
||||
uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043 # v4.0.0
|
||||
if: failure()
|
||||
with:
|
||||
token: ${{ secrets.COMMAND_BOT_PAT }}
|
||||
repository: ${{ github.event.repository.full_name }}
|
||||
comment-id: ${{ github.event.comment.id }}
|
||||
reactions: "-1"
|
||||
|
||||
process:
|
||||
runs-on: ubuntu-latest
|
||||
needs: init
|
||||
|
|
@ -95,7 +126,7 @@ jobs:
|
|||
|
||||
- name: Set up npm ${{ steps.package-engines-versions.outputs.npmVersion }}
|
||||
run: npm i -g 'npm@${{ steps.package-engines-versions.outputs.npmVersion }}'
|
||||
|
||||
|
||||
- name: Rebase to ${{ needs.init.outputs.base_ref }}
|
||||
if: ${{ contains(needs.init.outputs.arg1, 'rebase') }}
|
||||
run: |
|
||||
|
|
@ -115,7 +146,7 @@ jobs:
|
|||
run: |
|
||||
git add '${{ github.workspace }}${{ needs.init.outputs.git_path }}'
|
||||
git commit --signoff -m 'chore(assets): Recompile assets'
|
||||
|
||||
|
||||
- name: Commit fixup
|
||||
if: ${{ contains(needs.init.outputs.arg1, 'fixup') }}
|
||||
run: |
|
||||
|
|
@ -129,7 +160,7 @@ jobs:
|
|||
git commit --amend --no-edit --signoff
|
||||
# Remove any [skip ci] from the amended commit
|
||||
git commit --amend -m "$(git log -1 --format='%B' | sed '/\[skip ci\]/d')"
|
||||
|
||||
|
||||
- name: Push normally
|
||||
if: ${{ !contains(needs.init.outputs.arg1, 'rebase') && !contains(needs.init.outputs.arg1, 'amend') }}
|
||||
run: git push origin '${{ needs.init.outputs.head_ref }}'
|
||||
|
|
|
|||
6
.github/workflows/command-pull-3rdparty.yml
vendored
6
.github/workflows/command-pull-3rdparty.yml
vendored
|
|
@ -27,6 +27,12 @@ jobs:
|
|||
comment-id: ${{ github.event.comment.id }}
|
||||
reactions: '+1'
|
||||
|
||||
- name: Disabled on forks
|
||||
if: ${{ github.event.pull_request.head.repo.full_name != github.repository }}
|
||||
run: |
|
||||
echo 'Can not execute /update-3rdparty on forks'
|
||||
exit 1
|
||||
|
||||
- name: Init branch
|
||||
uses: xt0rted/pull-request-comment-branch@d97294d304604fa98a2600a6e2f916a84b596dc7 # v1
|
||||
id: comment-branch
|
||||
|
|
|
|||
6
.github/workflows/cypress.yml
vendored
6
.github/workflows/cypress.yml
vendored
|
|
@ -32,6 +32,12 @@ jobs:
|
|||
PUPPETEER_SKIP_DOWNLOAD: true
|
||||
|
||||
steps:
|
||||
- name: Disabled on forks
|
||||
if: ${{ github.event.pull_request.head.repo.full_name != github.repository }}
|
||||
run: |
|
||||
echo 'Can not run cypress on forks'
|
||||
exit 1
|
||||
|
||||
- name: Checkout server
|
||||
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
||||
with:
|
||||
|
|
|
|||
|
|
@ -31,6 +31,12 @@ jobs:
|
|||
pull-requests: write
|
||||
|
||||
steps:
|
||||
- name: Disabled on forks
|
||||
if: ${{ github.event.pull_request.head.repo.full_name != github.repository }}
|
||||
run: |
|
||||
echo 'Can not approve PRs from forks'
|
||||
exit 1
|
||||
|
||||
# GitHub actions bot approve
|
||||
- uses: hmarr/auto-approve-action@b40d6c9ed2fa10c9a2749eca7eb004418a705501 # v2
|
||||
with:
|
||||
|
|
|
|||
1
.github/workflows/node.yml
vendored
1
.github/workflows/node.yml
vendored
|
|
@ -42,6 +42,7 @@ jobs:
|
|||
- '**.vue'
|
||||
- 'core/css/*'
|
||||
- 'core/img/**'
|
||||
- 'version.php'
|
||||
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
|
|
|||
2
.github/workflows/object-storage-s3.yml
vendored
2
.github/workflows/object-storage-s3.yml
vendored
|
|
@ -38,7 +38,7 @@ jobs:
|
|||
- '**.php'
|
||||
|
||||
s3-primary-tests-minio:
|
||||
runs-on: ubuntu-22.04
|
||||
runs-on: ubuntu-latest
|
||||
needs: changes
|
||||
|
||||
if: ${{ github.repository_owner != 'nextcloud-gmbh' && needs.changes.outputs.src != 'false' }}
|
||||
|
|
|
|||
6
.github/workflows/performance.yml
vendored
6
.github/workflows/performance.yml
vendored
|
|
@ -22,6 +22,12 @@ jobs:
|
|||
name: performance-${{ matrix.php-versions }}
|
||||
|
||||
steps:
|
||||
- name: Disabled on forks
|
||||
if: ${{ github.event.pull_request.head.repo.full_name != github.repository }}
|
||||
run: |
|
||||
echo 'Can not run performance tests on forks'
|
||||
exit 1
|
||||
|
||||
- name: Checkout server before PR
|
||||
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
|
||||
with:
|
||||
|
|
|
|||
52
.github/workflows/update-psalm-baseline-approve-merge.yml
vendored
Normal file
52
.github/workflows/update-psalm-baseline-approve-merge.yml
vendored
Normal file
|
|
@ -0,0 +1,52 @@
|
|||
# SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
|
||||
# SPDX-License-Identifier: MIT
|
||||
name: Auto approve psalm baseline update
|
||||
|
||||
on:
|
||||
pull_request_target:
|
||||
branches:
|
||||
- main
|
||||
- master
|
||||
- stable*
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
concurrency:
|
||||
group: update-psalm-baseline-approve-merge-${{ github.head_ref || github.run_id }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
auto-approve-merge:
|
||||
if: github.actor == 'nextcloud-command'
|
||||
runs-on: ubuntu-latest-low
|
||||
permissions:
|
||||
# for hmarr/auto-approve-action to approve PRs
|
||||
pull-requests: write
|
||||
# for alexwilson/enable-github-automerge-action to approve PRs
|
||||
contents: write
|
||||
|
||||
steps:
|
||||
- name: Disabled on forks
|
||||
if: ${{ github.event.pull_request.head.repo.full_name != github.repository }}
|
||||
run: |
|
||||
echo 'Can not approve PRs from forks'
|
||||
exit 1
|
||||
|
||||
- uses: mdecoleman/pr-branch-name@bab4c71506bcd299fb350af63bb8e53f2940a599 # v2.0.0
|
||||
id: branchname
|
||||
with:
|
||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
# GitHub actions bot approve
|
||||
- uses: hmarr/auto-approve-action@b40d6c9ed2fa10c9a2749eca7eb004418a705501 # v2
|
||||
if: startsWith(steps.branchname.outputs.branch, 'automated/noid/') && endsWith(steps.branchname.outputs.branch, 'update-psalm-baseline')
|
||||
with:
|
||||
github-token: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
# Enable GitHub auto merge
|
||||
- name: Auto merge
|
||||
uses: alexwilson/enable-github-automerge-action@56e3117d1ae1540309dc8f7a9f2825bc3c5f06ff # main
|
||||
if: startsWith(steps.branchname.outputs.branch, 'automated/noid/') && endsWith(steps.branchname.outputs.branch, 'update-psalm-baseline')
|
||||
with:
|
||||
github-token: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
|
@ -40,7 +40,7 @@
|
|||
</IfModule>
|
||||
|
||||
# Add cache control for static resources
|
||||
<FilesMatch "\.(css|js|mjs|svg|gif|png|jpg|ico|wasm|tflite)$">
|
||||
<FilesMatch "\.(css|js|mjs|svg|gif|png|jpg|webp|ico|wasm|tflite)$">
|
||||
<If "%{QUERY_STRING} =~ /(^|&)v=/">
|
||||
Header set Cache-Control "max-age=15778463, immutable"
|
||||
</If>
|
||||
|
|
|
|||
|
|
@ -239,6 +239,10 @@ Files: cypress/fixtures/image.jpg
|
|||
Copyright: 2019 Tom Gainor <https://unsplash.com/@its_tgain> <https://unsplash.com/photos/mountain-cliff-under-starry-night-KidY3t8O4PE>
|
||||
License: LicenseRef-Unsplash
|
||||
|
||||
Files: apps/theming/img/background/jenna-kim-the-globe.webp apps/theming/img/background/jenna-kim-the-globe-dark.webp
|
||||
Copyright: 2024 Nextcloud GmbH
|
||||
License: CC-BY-SA-4.0
|
||||
|
||||
Files: apps/theming/img/background/anatoly-mikhaltsov-butterfly-wing-scale.jpg apps/theming/img/background/preview/anatoly-mikhaltsov-butterfly-wing-scale.jpg
|
||||
Copyright: 2015 Anatoly Mikhaltsov <https://commons.wikimedia.org/wiki/File:%D0%A7%D0%B5%D1%88%D1%83%D0%B9%D0%BA%D0%B8_%D0%BA%D1%80%D1%8B%D0%BB%D0%B0_%D0%B1%D0%B0%D0%B1%D0%BE%D1%87%D0%BA%D0%B8.jpg>
|
||||
License: CC-BY-SA-4.0
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ OC.L10N.register(
|
|||
"An error occurred while trying to delete the comment" : "Vyskytla sa chyba pri mazaní komentára",
|
||||
"An error occurred while trying to create the comment" : "Vyskytla sa chyba pri vytváraní komentára",
|
||||
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted" : "Boli ste spomenutý v \"{file}\", v komentári používateľom ktorý bol už vymazaný",
|
||||
"Write a message …" : "Napísať správu …",
|
||||
"Write a message …" : "Píšte správu …",
|
||||
"\"@\" for mentions, \":\" for emoji, \"/\" for smart picker" : "\"@\" pre spomienky, \":\" pre emotikony, \"/\" pre inteligentný výber",
|
||||
"_%n unread comment_::_%n unread comments_" : ["%n neprečítaný komentár","%n neprečítaných komentárov","%n neprečítaných komentárov","%n neprečítaných komentárov"]
|
||||
},
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@
|
|||
"An error occurred while trying to delete the comment" : "Vyskytla sa chyba pri mazaní komentára",
|
||||
"An error occurred while trying to create the comment" : "Vyskytla sa chyba pri vytváraní komentára",
|
||||
"You were mentioned on \"{file}\", in a comment by a user that has since been deleted" : "Boli ste spomenutý v \"{file}\", v komentári používateľom ktorý bol už vymazaný",
|
||||
"Write a message …" : "Napísať správu …",
|
||||
"Write a message …" : "Píšte správu …",
|
||||
"\"@\" for mentions, \":\" for emoji, \"/\" for smart picker" : "\"@\" pre spomienky, \":\" pre emotikony, \"/\" pre inteligentný výber",
|
||||
"_%n unread comment_::_%n unread comments_" : ["%n neprečítaný komentár","%n neprečítaných komentárov","%n neprečítaných komentárov","%n neprečítaných komentárov"]
|
||||
},"pluralForm" :"nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);"
|
||||
|
|
|
|||
|
|
@ -7,6 +7,10 @@ import Vue from 'vue'
|
|||
import logger from './logger.js'
|
||||
import { getComments } from './services/GetComments.js'
|
||||
|
||||
import { PiniaVuePlugin, createPinia } from 'pinia'
|
||||
|
||||
Vue.use(PiniaVuePlugin)
|
||||
|
||||
let ActivityTabPluginView
|
||||
let ActivityTabPluginInstance
|
||||
|
||||
|
|
@ -16,9 +20,11 @@ let ActivityTabPluginInstance
|
|||
export function registerCommentsPlugins() {
|
||||
window.OCA.Activity.registerSidebarAction({
|
||||
mount: async (el, { context, fileInfo, reload }) => {
|
||||
const pinia = createPinia()
|
||||
|
||||
if (!ActivityTabPluginView) {
|
||||
const { default: ActivityCommmentAction } = await import('./views/ActivityCommentAction.vue')
|
||||
ActivityTabPluginView = Vue.extend(ActivityCommmentAction)
|
||||
ActivityTabPluginView = ActivityCommmentAction
|
||||
}
|
||||
ActivityTabPluginInstance = new ActivityTabPluginView({
|
||||
parent: context,
|
||||
|
|
@ -26,6 +32,7 @@ export function registerCommentsPlugins() {
|
|||
reloadCallback: reload,
|
||||
resourceId: fileInfo.id,
|
||||
},
|
||||
pinia,
|
||||
})
|
||||
ActivityTabPluginInstance.$mount(el)
|
||||
logger.info('Comments plugin mounted in Activity sidebar action', { fileInfo })
|
||||
|
|
@ -42,7 +49,7 @@ export function registerCommentsPlugins() {
|
|||
const { data: comments } = await getComments({ resourceType: 'files', resourceId: fileInfo.id }, { limit, offset })
|
||||
logger.debug('Loaded comments', { fileInfo, comments })
|
||||
const { default: CommentView } = await import('./views/ActivityCommentEntry.vue')
|
||||
const CommentsViewObject = Vue.extend(CommentView)
|
||||
const CommentsViewObject = CommentView
|
||||
|
||||
return comments.map((comment) => ({
|
||||
timestamp: moment(comment.props.creationDateTime).toDate().getTime(),
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
-->
|
||||
<template>
|
||||
<component :is="tag"
|
||||
v-show="!deleted"
|
||||
v-show="!deleted && !isLimbo"
|
||||
:class="{'comment--loading': loading}"
|
||||
class="comment">
|
||||
<!-- Comment header toolbar -->
|
||||
|
|
@ -121,6 +121,8 @@ import IconDelete from 'vue-material-design-icons/Delete.vue'
|
|||
import IconEdit from 'vue-material-design-icons/Pencil.vue'
|
||||
|
||||
import CommentMixin from '../mixins/CommentMixin.js'
|
||||
import { mapStores } from 'pinia'
|
||||
import { useDeletedCommentLimbo } from '../store/deletedCommentLimbo.js'
|
||||
|
||||
// Dynamic loading
|
||||
const NcRichContenteditable = () => import('@nextcloud/vue/dist/Components/NcRichContenteditable.js')
|
||||
|
|
@ -193,6 +195,7 @@ export default {
|
|||
},
|
||||
|
||||
computed: {
|
||||
...mapStores(useDeletedCommentLimbo),
|
||||
|
||||
/**
|
||||
* Is the current user the author of this comment
|
||||
|
|
@ -225,6 +228,10 @@ export default {
|
|||
timestamp() {
|
||||
return Date.parse(this.creationDateTime)
|
||||
},
|
||||
|
||||
isLimbo() {
|
||||
return this.deletedCommentLimboStore.checkForId(this.id)
|
||||
},
|
||||
},
|
||||
|
||||
watch: {
|
||||
|
|
|
|||
|
|
@ -7,6 +7,8 @@ import { showError, showUndo, TOAST_UNDO_TIMEOUT } from '@nextcloud/dialogs'
|
|||
import NewComment from '../services/NewComment.js'
|
||||
import DeleteComment from '../services/DeleteComment.js'
|
||||
import EditComment from '../services/EditComment.js'
|
||||
import { mapStores } from 'pinia'
|
||||
import { useDeletedCommentLimbo } from '../store/deletedCommentLimbo.js'
|
||||
import logger from '../logger.js'
|
||||
|
||||
export default {
|
||||
|
|
@ -37,6 +39,10 @@ export default {
|
|||
}
|
||||
},
|
||||
|
||||
computed: {
|
||||
...mapStores(useDeletedCommentLimbo),
|
||||
},
|
||||
|
||||
methods: {
|
||||
// EDITION
|
||||
onEdit() {
|
||||
|
|
@ -64,11 +70,14 @@ export default {
|
|||
|
||||
// DELETION
|
||||
onDeleteWithUndo() {
|
||||
this.$emit('delete')
|
||||
this.deleted = true
|
||||
this.deletedCommentLimboStore.addId(this.id)
|
||||
const timeOutDelete = setTimeout(this.onDelete, TOAST_UNDO_TIMEOUT)
|
||||
showUndo(t('comments', 'Comment deleted'), () => {
|
||||
clearTimeout(timeOutDelete)
|
||||
this.deleted = false
|
||||
this.deletedCommentLimboStore.removeId(this.id)
|
||||
})
|
||||
},
|
||||
async onDelete() {
|
||||
|
|
@ -80,6 +89,7 @@ export default {
|
|||
showError(t('comments', 'An error occurred while trying to delete the comment'))
|
||||
console.error(error)
|
||||
this.deleted = false
|
||||
this.deletedCommentLimboStore.removeId(this.id)
|
||||
}
|
||||
},
|
||||
|
||||
|
|
|
|||
|
|
@ -6,9 +6,11 @@
|
|||
import { translate as t, translatePlural as n } from '@nextcloud/l10n'
|
||||
import { getRequestToken } from '@nextcloud/auth'
|
||||
import Vue from 'vue'
|
||||
import { PiniaVuePlugin, createPinia } from 'pinia'
|
||||
import CommentsApp from '../views/Comments.vue'
|
||||
import logger from '../logger.js'
|
||||
|
||||
Vue.use(PiniaVuePlugin)
|
||||
// eslint-disable-next-line camelcase
|
||||
__webpack_nonce__ = btoa(getRequestToken())
|
||||
|
||||
|
|
@ -34,6 +36,8 @@ export default class CommentInstance {
|
|||
* @param {object} options the vue options (propsData, parent, el...)
|
||||
*/
|
||||
constructor(resourceType = 'files', options = {}) {
|
||||
const pinia = createPinia()
|
||||
|
||||
// Merge options and set `resourceType` property
|
||||
options = {
|
||||
...options,
|
||||
|
|
@ -41,6 +45,7 @@ export default class CommentInstance {
|
|||
...(options.propsData ?? {}),
|
||||
resourceType,
|
||||
},
|
||||
pinia,
|
||||
}
|
||||
// Init Comments component
|
||||
const View = Vue.extend(CommentsApp)
|
||||
|
|
|
|||
28
apps/comments/src/store/deletedCommentLimbo.js
Normal file
28
apps/comments/src/store/deletedCommentLimbo.js
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
/**
|
||||
* SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
|
||||
* SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
*/
|
||||
|
||||
import { defineStore } from 'pinia'
|
||||
|
||||
export const useDeletedCommentLimbo = defineStore('deletedCommentLimbo', {
|
||||
state: () => ({
|
||||
idsInLimbo: [],
|
||||
}),
|
||||
actions: {
|
||||
addId(id) {
|
||||
this.idsInLimbo.push(id)
|
||||
},
|
||||
|
||||
removeId(id) {
|
||||
const index = this.idsInLimbo.indexOf(id)
|
||||
if (index > -1) {
|
||||
this.idsInLimbo.splice(index, 1)
|
||||
}
|
||||
},
|
||||
|
||||
checkForId(id) {
|
||||
this.idsInLimbo.includes(id)
|
||||
},
|
||||
},
|
||||
})
|
||||
|
|
@ -15,6 +15,7 @@ use OCP\AppFramework\Http\Attribute\FrontpageRoute;
|
|||
use OCP\AppFramework\Http\Attribute\OpenAPI;
|
||||
use OCP\AppFramework\Http\TemplateResponse;
|
||||
use OCP\AppFramework\Services\IInitialState;
|
||||
use OCP\Dashboard\IIconWidget;
|
||||
use OCP\Dashboard\IManager;
|
||||
use OCP\Dashboard\IWidget;
|
||||
use OCP\EventDispatcher\IEventDispatcher;
|
||||
|
|
@ -54,6 +55,7 @@ class DashboardController extends Controller {
|
|||
'id' => $widget->getId(),
|
||||
'title' => $widget->getTitle(),
|
||||
'iconClass' => $widget->getIconClass(),
|
||||
'iconUrl' => $widget instanceof IIconWidget ? $widget->getIconUrl() : '',
|
||||
'url' => $widget->getUrl()
|
||||
];
|
||||
}, $this->dashboardManager->getWidgets());
|
||||
|
|
|
|||
|
|
@ -24,7 +24,12 @@
|
|||
class="panel">
|
||||
<div class="panel--header">
|
||||
<h2>
|
||||
<span :aria-labelledby="`panel-${panels[panelId].id}--header--icon--description`"
|
||||
<img v-if="apiWidgets[panels[panelId].id].icon_url"
|
||||
:alt="apiWidgets[panels[panelId].id].title + ' icon'"
|
||||
:src="apiWidgets[panels[panelId].id].icon_url"
|
||||
aria-hidden="true">
|
||||
<span v-else
|
||||
:aria-labelledby="`panel-${panels[panelId].id}--header--icon--description`"
|
||||
aria-hidden="true"
|
||||
:class="apiWidgets[panels[panelId].id].icon_class"
|
||||
role="img" />
|
||||
|
|
@ -97,7 +102,11 @@
|
|||
:checked="isActive(panel)"
|
||||
@input="updateCheckbox(panel, $event.target.checked)">
|
||||
<label :for="'panel-checkbox-' + panel.id" :class="{ draggable: isActive(panel) }">
|
||||
<span :class="panel.iconClass" aria-hidden="true" />
|
||||
<img v-if="panel.iconUrl"
|
||||
:alt="panel.title + ' icon'"
|
||||
:src="panel.iconUrl"
|
||||
aria-hidden="true">
|
||||
<span v-else :class="panel.iconClass" aria-hidden="true" />
|
||||
{{ panel.title }}
|
||||
</label>
|
||||
</li>
|
||||
|
|
@ -554,6 +563,8 @@ export default {
|
|||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
cursor: grab;
|
||||
|
||||
img,
|
||||
span {
|
||||
background-size: 32px;
|
||||
width: 32px;
|
||||
|
|
@ -564,6 +575,10 @@ export default {
|
|||
margin-top: -6px;
|
||||
margin-left: 6px;
|
||||
}
|
||||
|
||||
img {
|
||||
filter: var(--background-invert-if-dark);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -651,6 +666,7 @@ export default {
|
|||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
|
||||
img,
|
||||
span {
|
||||
position: absolute;
|
||||
top: 16px;
|
||||
|
|
@ -659,6 +675,10 @@ export default {
|
|||
background-size: 24px;
|
||||
}
|
||||
|
||||
img {
|
||||
filter: var(--background-invert-if-dark);
|
||||
}
|
||||
|
||||
&:hover {
|
||||
border-color: var(--color-primary-element);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -185,7 +185,7 @@ OC.L10N.register(
|
|||
"Sunday" : "domingo",
|
||||
"Pick a start time for {dayName}" : "Escolla unha hora de inicio para {dayName}",
|
||||
"Pick a end time for {dayName}" : "Escolla unha hora de finalización para {dayName}",
|
||||
"Automatically set user status to \"Do not disturb\" outside of availability to mute all notifications." : "Estabelecer automaticamente o estado do usuario en «Non molestar» fóra de dispoñibilidade para silenciar todas as notificacións.",
|
||||
"Automatically set user status to \"Do not disturb\" outside of availability to mute all notifications." : "Definir automaticamente o estado do usuario en «Non molestar» fóra de dispoñibilidade para silenciar todas as notificacións.",
|
||||
"Failed to load availability" : "Produciuse un erro ao cargar a dispoñibilidade",
|
||||
"Saved availability" : "Dispoñibilidade gardada",
|
||||
"Failed to save availability" : "Produciuse un erro ao gardar a dispoñibilidade",
|
||||
|
|
|
|||
|
|
@ -183,7 +183,7 @@
|
|||
"Sunday" : "domingo",
|
||||
"Pick a start time for {dayName}" : "Escolla unha hora de inicio para {dayName}",
|
||||
"Pick a end time for {dayName}" : "Escolla unha hora de finalización para {dayName}",
|
||||
"Automatically set user status to \"Do not disturb\" outside of availability to mute all notifications." : "Estabelecer automaticamente o estado do usuario en «Non molestar» fóra de dispoñibilidade para silenciar todas as notificacións.",
|
||||
"Automatically set user status to \"Do not disturb\" outside of availability to mute all notifications." : "Definir automaticamente o estado do usuario en «Non molestar» fóra de dispoñibilidade para silenciar todas as notificacións.",
|
||||
"Failed to load availability" : "Produciuse un erro ao cargar a dispoñibilidade",
|
||||
"Saved availability" : "Dispoñibilidade gardada",
|
||||
"Failed to save availability" : "Produciuse un erro ao gardar a dispoñibilidade",
|
||||
|
|
|
|||
|
|
@ -122,11 +122,11 @@ abstract class Node implements \Sabre\DAV\INode {
|
|||
|
||||
[$parentPath,] = \Sabre\Uri\split($this->path);
|
||||
[, $newName] = \Sabre\Uri\split($name);
|
||||
$newPath = $parentPath . '/' . $newName;
|
||||
|
||||
// verify path of the target
|
||||
$this->verifyPath();
|
||||
$this->verifyPath($newPath);
|
||||
|
||||
$newPath = $parentPath . '/' . $newName;
|
||||
|
||||
if (!$this->fileView->rename($this->path, $newPath)) {
|
||||
throw new \Sabre\DAV\Exception('Failed to rename '. $this->path . ' to ' . $newPath);
|
||||
|
|
@ -355,10 +355,13 @@ abstract class Node implements \Sabre\DAV\INode {
|
|||
return $this->info->getOwner();
|
||||
}
|
||||
|
||||
protected function verifyPath() {
|
||||
protected function verifyPath(?string $path = null): void {
|
||||
try {
|
||||
$fileName = basename($this->info->getPath());
|
||||
$this->fileView->verifyPath($this->path, $fileName);
|
||||
$path = $path ?? $this->info->getPath();
|
||||
$this->fileView->verifyPath(
|
||||
dirname($path),
|
||||
basename($path),
|
||||
);
|
||||
} catch (\OCP\Files\InvalidPathException $ex) {
|
||||
throw new InvalidPath($ex->getMessage());
|
||||
}
|
||||
|
|
|
|||
|
|
@ -397,7 +397,7 @@ class DirectoryTest extends \Test\TestCase {
|
|||
|
||||
public function moveFailedInvalidCharsProvider() {
|
||||
return [
|
||||
['a/b', 'a/*', ['a' => true, 'a/b' => true, 'a/c*' => false], []],
|
||||
['a/valid', "a/i\nvalid", ['a' => true, 'a/valid' => true, 'a/c*' => false], []],
|
||||
];
|
||||
}
|
||||
|
||||
|
|
@ -463,7 +463,7 @@ class DirectoryTest extends \Test\TestCase {
|
|||
|
||||
$sourceNode = new Directory($view, $sourceInfo);
|
||||
$targetNode = $this->getMockBuilder(Directory::class)
|
||||
->setMethods(['childExists'])
|
||||
->onlyMethods(['childExists'])
|
||||
->setConstructorArgs([$view, $targetInfo])
|
||||
->getMock();
|
||||
$targetNode->expects($this->once())->method('childExists')
|
||||
|
|
|
|||
|
|
@ -570,7 +570,7 @@ class FileTest extends TestCase {
|
|||
->method('getRelativePath')
|
||||
->willReturnArgument(0);
|
||||
|
||||
$info = new \OC\Files\FileInfo('/*', $this->getMockStorage(), null, [
|
||||
$info = new \OC\Files\FileInfo("/i\nvalid", $this->getMockStorage(), null, [
|
||||
'permissions' => \OCP\Constants::PERMISSION_ALL,
|
||||
'type' => FileInfo::TYPE_FOLDER,
|
||||
], null);
|
||||
|
|
@ -611,12 +611,13 @@ class FileTest extends TestCase {
|
|||
->method('getRelativePath')
|
||||
->willReturnArgument(0);
|
||||
|
||||
$info = new \OC\Files\FileInfo('/*', $this->getMockStorage(), null, [
|
||||
$info = new \OC\Files\FileInfo('/valid', $this->getMockStorage(), null, [
|
||||
'permissions' => \OCP\Constants::PERMISSION_ALL,
|
||||
'type' => FileInfo::TYPE_FOLDER,
|
||||
], null);
|
||||
$file = new \OCA\DAV\Connector\Sabre\File($view, $info);
|
||||
$file->setName('/super*star.txt');
|
||||
|
||||
$file->setName("/i\nvalid");
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -23,6 +23,7 @@ use OCP\Federation\ICloudFederationProvider;
|
|||
use OCP\Federation\ICloudFederationProviderManager;
|
||||
use OCP\Federation\ICloudFederationShare;
|
||||
use OCP\Federation\ICloudIdManager;
|
||||
use OCP\Files\IFilenameValidator;
|
||||
use OCP\Files\NotFoundException;
|
||||
use OCP\HintException;
|
||||
use OCP\IConfig;
|
||||
|
|
@ -59,6 +60,7 @@ class CloudFederationProviderFiles implements ICloudFederationProvider {
|
|||
private IConfig $config,
|
||||
private Manager $externalShareManager,
|
||||
private LoggerInterface $logger,
|
||||
private IFilenameValidator $filenameValidator,
|
||||
) {
|
||||
}
|
||||
|
||||
|
|
@ -115,7 +117,7 @@ class CloudFederationProviderFiles implements ICloudFederationProvider {
|
|||
}
|
||||
|
||||
if ($remote && $token && $name && $owner && $remoteId && $shareWith) {
|
||||
if (!Util::isValidFileName($name)) {
|
||||
if (!$this->filenameValidator->isFilenameValid($name)) {
|
||||
throw new ProviderCouldNotAddShareException('The mountpoint name contains invalid characters.', '', Http::STATUS_BAD_REQUEST);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -128,7 +128,7 @@
|
|||
for (const i in this.attributes.shareAttributes) {
|
||||
const attr = this.attributes.shareAttributes[i]
|
||||
if (attr.scope === 'permissions' && attr.key === 'download') {
|
||||
return attr.enabled
|
||||
return attr.value === true
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -247,9 +247,9 @@ OC.L10N.register(
|
|||
"The file could not be found or you do not have permissions to view it. Ask the sender to share it." : "Le fichier n'a pas été trouv ou vous n'avez pas les permissions pour le voir. Demandez à l'expéditeur de le partager.",
|
||||
"Your files" : "Vos fichiers",
|
||||
"Open in files" : "Ouvrir dans Fichiers",
|
||||
"Sort favorites first" : "Trier les favoris d'abord",
|
||||
"Sort favorites first" : "Trier les favoris en premier",
|
||||
"Sort folders before files" : "Trier les dossiers avant les fichiers",
|
||||
"Show hidden files" : "Afficher les fichiers masqués",
|
||||
"Show hidden files" : "Montrer les fichiers masqués",
|
||||
"Crop image previews" : "Afficher en miniatures carrées",
|
||||
"Enable the grid view" : "Activer la vue mosaïque",
|
||||
"Additional settings" : "Paramètres supplémentaires",
|
||||
|
|
|
|||
|
|
@ -245,9 +245,9 @@
|
|||
"The file could not be found or you do not have permissions to view it. Ask the sender to share it." : "Le fichier n'a pas été trouv ou vous n'avez pas les permissions pour le voir. Demandez à l'expéditeur de le partager.",
|
||||
"Your files" : "Vos fichiers",
|
||||
"Open in files" : "Ouvrir dans Fichiers",
|
||||
"Sort favorites first" : "Trier les favoris d'abord",
|
||||
"Sort favorites first" : "Trier les favoris en premier",
|
||||
"Sort folders before files" : "Trier les dossiers avant les fichiers",
|
||||
"Show hidden files" : "Afficher les fichiers masqués",
|
||||
"Show hidden files" : "Montrer les fichiers masqués",
|
||||
"Crop image previews" : "Afficher en miniatures carrées",
|
||||
"Enable the grid view" : "Activer la vue mosaïque",
|
||||
"Additional settings" : "Paramètres supplémentaires",
|
||||
|
|
|
|||
|
|
@ -355,7 +355,7 @@ OC.L10N.register(
|
|||
"Choose" : "Escoller",
|
||||
"No files or folders have been deleted yet" : "Aínda non se eliminou ningún ficheiro nin cartafol",
|
||||
"You might not have have permissions to view it, ask the sender to share it" : "É posíbel que non teña permisos para velo, pídalle ao remitente que o comparta",
|
||||
"Set up templates folder" : "Estabelecer un cartafol de modelos",
|
||||
"Set up templates folder" : "Definir un cartafol de modelos",
|
||||
"Toggle %1$s sublist" : "Alternar %1$s sublista",
|
||||
"Toggle grid view" : "Alternar a vista como grade",
|
||||
"Shares" : "Comparticións",
|
||||
|
|
|
|||
|
|
@ -353,7 +353,7 @@
|
|||
"Choose" : "Escoller",
|
||||
"No files or folders have been deleted yet" : "Aínda non se eliminou ningún ficheiro nin cartafol",
|
||||
"You might not have have permissions to view it, ask the sender to share it" : "É posíbel que non teña permisos para velo, pídalle ao remitente que o comparta",
|
||||
"Set up templates folder" : "Estabelecer un cartafol de modelos",
|
||||
"Set up templates folder" : "Definir un cartafol de modelos",
|
||||
"Toggle %1$s sublist" : "Alternar %1$s sublista",
|
||||
"Toggle grid view" : "Alternar a vista como grade",
|
||||
"Shares" : "Comparticións",
|
||||
|
|
|
|||
|
|
@ -224,7 +224,7 @@ OC.L10N.register(
|
|||
"Open the files app settings" : "Odpri nastavitve programa Datoteke",
|
||||
"Files settings" : "Nastavitve datotek",
|
||||
"File cannot be accessed" : "Do datoteke dostop ni mogoč",
|
||||
"Open in files" : "Open in Files",
|
||||
"Open in files" : "Odpri datoteko v mapi",
|
||||
"Sort favorites first" : "Razvrsti najprej priljubljene",
|
||||
"Show hidden files" : "Pokaži skrite datoteke",
|
||||
"Crop image previews" : "Obreži slike predogleda",
|
||||
|
|
@ -244,7 +244,7 @@ OC.L10N.register(
|
|||
"Creating file" : "Poteka ustvarjanje datoteke",
|
||||
"Blank" : "Prazno",
|
||||
"Unable to create new file from template" : "Nove datoteke iz predloge ni mogoče ustvariti",
|
||||
"Delete permanently" : "Trajno izbriši",
|
||||
"Delete permanently" : "Izbriši trajno",
|
||||
"Delete files" : "Izbriši datoteki",
|
||||
"Delete folders" : "Izbriši mape",
|
||||
"Confirm deletion" : "Potrdi brisanje",
|
||||
|
|
|
|||
|
|
@ -222,7 +222,7 @@
|
|||
"Open the files app settings" : "Odpri nastavitve programa Datoteke",
|
||||
"Files settings" : "Nastavitve datotek",
|
||||
"File cannot be accessed" : "Do datoteke dostop ni mogoč",
|
||||
"Open in files" : "Open in Files",
|
||||
"Open in files" : "Odpri datoteko v mapi",
|
||||
"Sort favorites first" : "Razvrsti najprej priljubljene",
|
||||
"Show hidden files" : "Pokaži skrite datoteke",
|
||||
"Crop image previews" : "Obreži slike predogleda",
|
||||
|
|
@ -242,7 +242,7 @@
|
|||
"Creating file" : "Poteka ustvarjanje datoteke",
|
||||
"Blank" : "Prazno",
|
||||
"Unable to create new file from template" : "Nove datoteke iz predloge ni mogoče ustvariti",
|
||||
"Delete permanently" : "Trajno izbriši",
|
||||
"Delete permanently" : "Izbriši trajno",
|
||||
"Delete files" : "Izbriši datoteki",
|
||||
"Delete folders" : "Izbriši mape",
|
||||
"Confirm deletion" : "Potrdi brisanje",
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@ class Capabilities implements ICapability {
|
|||
/**
|
||||
* Return this classes capabilities
|
||||
*
|
||||
* @return array{files: array{'$comment': ?string, bigfilechunking: bool, blacklisted_files: array<mixed>, forbidden_filenames: list<string>, forbidden_filename_characters: list<string>, forbidden_filename_extensions: list<string>}}
|
||||
* @return array{files: array{'$comment': ?string, bigfilechunking: bool, blacklisted_files: array<mixed>, forbidden_filenames: list<string>, forbidden_filename_basenames: list<string>, forbidden_filename_characters: list<string>, forbidden_filename_extensions: list<string>}}
|
||||
*/
|
||||
public function getCapabilities(): array {
|
||||
return [
|
||||
|
|
@ -28,6 +28,7 @@ class Capabilities implements ICapability {
|
|||
'$comment' => '"blacklisted_files" is deprecated as of Nextcloud 30, use "forbidden_filenames" instead',
|
||||
'blacklisted_files' => $this->filenameValidator->getForbiddenFilenames(),
|
||||
'forbidden_filenames' => $this->filenameValidator->getForbiddenFilenames(),
|
||||
'forbidden_filename_basenames' => $this->filenameValidator->getForbiddenBasenames(),
|
||||
'forbidden_filename_characters' => $this->filenameValidator->getForbiddenCharacters(),
|
||||
'forbidden_filename_extensions' => $this->filenameValidator->getForbiddenExtensions(),
|
||||
|
||||
|
|
|
|||
|
|
@ -7,6 +7,7 @@
|
|||
*/
|
||||
namespace OCA\Files\Controller;
|
||||
|
||||
use OC\Files\FilenameValidator;
|
||||
use OCA\Files\Activity\Helper;
|
||||
use OCA\Files\AppInfo\Application;
|
||||
use OCA\Files\Event\LoadAdditionalScriptsEvent;
|
||||
|
|
@ -34,57 +35,31 @@ use OCP\IL10N;
|
|||
use OCP\IRequest;
|
||||
use OCP\IURLGenerator;
|
||||
use OCP\IUserSession;
|
||||
use OCP\Share\IManager;
|
||||
|
||||
/**
|
||||
* @package OCA\Files\Controller
|
||||
*/
|
||||
#[OpenAPI(scope: OpenAPI::SCOPE_IGNORE)]
|
||||
class ViewController extends Controller {
|
||||
private IURLGenerator $urlGenerator;
|
||||
private IL10N $l10n;
|
||||
private IConfig $config;
|
||||
private IEventDispatcher $eventDispatcher;
|
||||
private IUserSession $userSession;
|
||||
private IAppManager $appManager;
|
||||
private IRootFolder $rootFolder;
|
||||
private Helper $activityHelper;
|
||||
private IInitialState $initialState;
|
||||
private ITemplateManager $templateManager;
|
||||
private IManager $shareManager;
|
||||
private UserConfig $userConfig;
|
||||
private ViewConfig $viewConfig;
|
||||
|
||||
public function __construct(string $appName,
|
||||
public function __construct(
|
||||
string $appName,
|
||||
IRequest $request,
|
||||
IURLGenerator $urlGenerator,
|
||||
IL10N $l10n,
|
||||
IConfig $config,
|
||||
IEventDispatcher $eventDispatcher,
|
||||
IUserSession $userSession,
|
||||
IAppManager $appManager,
|
||||
IRootFolder $rootFolder,
|
||||
Helper $activityHelper,
|
||||
IInitialState $initialState,
|
||||
ITemplateManager $templateManager,
|
||||
IManager $shareManager,
|
||||
UserConfig $userConfig,
|
||||
ViewConfig $viewConfig
|
||||
private IURLGenerator $urlGenerator,
|
||||
private IL10N $l10n,
|
||||
private IConfig $config,
|
||||
private IEventDispatcher $eventDispatcher,
|
||||
private IUserSession $userSession,
|
||||
private IAppManager $appManager,
|
||||
private IRootFolder $rootFolder,
|
||||
private Helper $activityHelper,
|
||||
private IInitialState $initialState,
|
||||
private ITemplateManager $templateManager,
|
||||
private UserConfig $userConfig,
|
||||
private ViewConfig $viewConfig,
|
||||
private FilenameValidator $filenameValidator,
|
||||
) {
|
||||
parent::__construct($appName, $request);
|
||||
$this->urlGenerator = $urlGenerator;
|
||||
$this->l10n = $l10n;
|
||||
$this->config = $config;
|
||||
$this->eventDispatcher = $eventDispatcher;
|
||||
$this->userSession = $userSession;
|
||||
$this->appManager = $appManager;
|
||||
$this->rootFolder = $rootFolder;
|
||||
$this->activityHelper = $activityHelper;
|
||||
$this->initialState = $initialState;
|
||||
$this->templateManager = $templateManager;
|
||||
$this->shareManager = $shareManager;
|
||||
$this->userConfig = $userConfig;
|
||||
$this->viewConfig = $viewConfig;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
@ -220,8 +195,9 @@ class ViewController extends Controller {
|
|||
$filesSortingConfig = json_decode($this->config->getUserValue($userId, 'files', 'files_sorting_configs', '{}'), true);
|
||||
$this->initialState->provideInitialState('filesSortingConfig', $filesSortingConfig);
|
||||
|
||||
// Forbidden file characters
|
||||
$forbiddenCharacters = \OCP\Util::getForbiddenFileNameChars();
|
||||
// Forbidden file characters (deprecated use capabilities)
|
||||
// TODO: Remove with next release of `@nextcloud/files`
|
||||
$forbiddenCharacters = $this->filenameValidator->getForbiddenCharacters();
|
||||
$this->initialState->provideInitialState('forbiddenCharacters', $forbiddenCharacters);
|
||||
|
||||
$event = new LoadAdditionalScriptsEvent();
|
||||
|
|
|
|||
|
|
@ -33,6 +33,7 @@
|
|||
"bigfilechunking",
|
||||
"blacklisted_files",
|
||||
"forbidden_filenames",
|
||||
"forbidden_filename_basenames",
|
||||
"forbidden_filename_characters",
|
||||
"forbidden_filename_extensions",
|
||||
"directEditing"
|
||||
|
|
@ -57,6 +58,12 @@
|
|||
"type": "string"
|
||||
}
|
||||
},
|
||||
"forbidden_filename_basenames": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"forbidden_filename_characters": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@ const isDownloadable = function(node: Node) {
|
|||
if (node.attributes['mount-type'] === 'shared') {
|
||||
const shareAttributes = JSON.parse(node.attributes['share-attributes'] ?? 'null')
|
||||
const downloadAttribute = shareAttributes?.find?.((attribute: { scope: string; key: string }) => attribute.scope === 'permissions' && attribute.key === 'download')
|
||||
if (downloadAttribute !== undefined && downloadAttribute.enabled === false) {
|
||||
if (downloadAttribute !== undefined && downloadAttribute.value === false) {
|
||||
return false
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -128,11 +128,8 @@ export const handleCopyMoveNodeTo = async (node: Node, destination: Folder, meth
|
|||
try {
|
||||
// Let the user choose what to do with the conflicting files
|
||||
const { selected, renamed } = await openConflictPicker(destination.path, [node], otherNodes.contents)
|
||||
// if the user selected to keep the old file, and did not select the new file
|
||||
// that means they opted to delete the current node
|
||||
// two empty arrays: either only old files or conflict skipped -> no action required
|
||||
if (!selected.length && !renamed.length) {
|
||||
await client.deleteFile(currentPath)
|
||||
emit('files:node:deleted', node)
|
||||
return
|
||||
}
|
||||
} catch (error) {
|
||||
|
|
|
|||
|
|
@ -24,7 +24,7 @@ export const getQueue = () => {
|
|||
}
|
||||
|
||||
type ShareAttribute = {
|
||||
enabled: boolean
|
||||
value: boolean|string|number|null|object|Array<unknown>
|
||||
key: string
|
||||
scope: string
|
||||
}
|
||||
|
|
@ -48,7 +48,7 @@ export const canMove = (nodes: Node[]) => {
|
|||
export const canDownload = (nodes: Node[]) => {
|
||||
return nodes.every(node => {
|
||||
const shareAttributes = JSON.parse(node.attributes?.['share-attributes'] ?? '[]') as Array<ShareAttribute>
|
||||
return !shareAttributes.some(attribute => attribute.scope === 'permissions' && attribute.enabled === false && attribute.key === 'download')
|
||||
return !shareAttributes.some(attribute => attribute.scope === 'permissions' && attribute.value === false && attribute.key === 'download')
|
||||
|
||||
})
|
||||
}
|
||||
|
|
|
|||
|
|
@ -712,8 +712,9 @@ tbody.files-list__tbody.files-list__tbody--grid {
|
|||
width: var(--row-width);
|
||||
height: var(--row-height);
|
||||
border: none;
|
||||
border-radius: var(--border-radius-large);
|
||||
padding: var(--item-padding);
|
||||
box-sizing: content-box
|
||||
box-sizing: content-box;
|
||||
}
|
||||
|
||||
// Checkbox in the top left
|
||||
|
|
@ -765,10 +766,6 @@ tbody.files-list__tbody.files-list__tbody--grid {
|
|||
height: var(--icon-preview-size);
|
||||
}
|
||||
|
||||
.files-list__row-icon-preview {
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
a.files-list__row-name-link {
|
||||
height: var(--name-height);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -396,14 +396,14 @@ export default defineComponent({
|
|||
return { ...this.$route, query: { dir } }
|
||||
},
|
||||
|
||||
shareAttributes(): number[] | undefined {
|
||||
shareTypesAttributes(): number[] | undefined {
|
||||
if (!this.currentFolder?.attributes?.['share-types']) {
|
||||
return undefined
|
||||
}
|
||||
return Object.values(this.currentFolder?.attributes?.['share-types'] || {}).flat() as number[]
|
||||
},
|
||||
shareButtonLabel() {
|
||||
if (!this.shareAttributes) {
|
||||
if (!this.shareTypesAttributes) {
|
||||
return t('files', 'Share')
|
||||
}
|
||||
|
||||
|
|
@ -413,12 +413,12 @@ export default defineComponent({
|
|||
return t('files', 'Shared')
|
||||
},
|
||||
shareButtonType(): Type | null {
|
||||
if (!this.shareAttributes) {
|
||||
if (!this.shareTypesAttributes) {
|
||||
return null
|
||||
}
|
||||
|
||||
// If all types are links, show the link icon
|
||||
if (this.shareAttributes.some(type => type === Type.SHARE_TYPE_LINK)) {
|
||||
if (this.shareTypesAttributes.some(type => type === Type.SHARE_TYPE_LINK)) {
|
||||
return Type.SHARE_TYPE_LINK
|
||||
}
|
||||
|
||||
|
|
@ -473,6 +473,9 @@ export default defineComponent({
|
|||
// TODO: preserve selection on browsing?
|
||||
this.selectionStore.reset()
|
||||
this.triggerResetSearch()
|
||||
if (window.OCA.Files.Sidebar?.close) {
|
||||
window.OCA.Files.Sidebar.close()
|
||||
}
|
||||
this.fetchContent()
|
||||
|
||||
// Scroll to top, force virtual scroller to re-render
|
||||
|
|
|
|||
|
|
@ -93,7 +93,7 @@ import { emit, subscribe, unsubscribe } from '@nextcloud/event-bus'
|
|||
import { File, Folder, formatFileSize } from '@nextcloud/files'
|
||||
import { encodePath } from '@nextcloud/paths'
|
||||
import { generateRemoteUrl, generateUrl } from '@nextcloud/router'
|
||||
import { Type as ShareTypes } from '@nextcloud/sharing'
|
||||
import { ShareType } from '@nextcloud/sharing'
|
||||
import { mdiStar, mdiStarOutline } from '@mdi/js'
|
||||
import axios from '@nextcloud/axios'
|
||||
import $ from 'jquery'
|
||||
|
|
@ -345,8 +345,8 @@ export default {
|
|||
} else if (fileInfo.mountType !== undefined && fileInfo.mountType !== '') {
|
||||
return OC.MimeType.getIconUrl('dir-' + fileInfo.mountType)
|
||||
} else if (fileInfo.shareTypes && (
|
||||
fileInfo.shareTypes.indexOf(ShareTypes.SHARE_TYPE_LINK) > -1
|
||||
|| fileInfo.shareTypes.indexOf(ShareTypes.SHARE_TYPE_EMAIL) > -1)
|
||||
fileInfo.shareTypes.indexOf(ShareType.Link) > -1
|
||||
|| fileInfo.shareTypes.indexOf(ShareType.Email) > -1)
|
||||
) {
|
||||
return OC.MimeType.getIconUrl('dir-public')
|
||||
} else if (fileInfo.shareTypes && fileInfo.shareTypes.length > 0) {
|
||||
|
|
|
|||
|
|
@ -7,6 +7,7 @@
|
|||
*/
|
||||
namespace OCA\Files\Tests\Controller;
|
||||
|
||||
use OC\Files\FilenameValidator;
|
||||
use OCA\Files\Activity\Helper;
|
||||
use OCA\Files\Controller\ViewController;
|
||||
use OCA\Files\Service\UserConfig;
|
||||
|
|
@ -87,10 +88,12 @@ class ViewControllerTest extends TestCase {
|
|||
$this->activityHelper = $this->createMock(Helper::class);
|
||||
$this->initialState = $this->createMock(IInitialState::class);
|
||||
$this->templateManager = $this->createMock(ITemplateManager::class);
|
||||
$this->shareManager = $this->createMock(IManager::class);
|
||||
$this->userConfig = $this->createMock(UserConfig::class);
|
||||
$this->viewConfig = $this->createMock(ViewConfig::class);
|
||||
$this->viewController = $this->getMockBuilder('\OCA\Files\Controller\ViewController')
|
||||
|
||||
$filenameValidator = $this->createMock(FilenameValidator::class);
|
||||
|
||||
$this->viewController = $this->getMockBuilder(ViewController::class)
|
||||
->setConstructorArgs([
|
||||
'files',
|
||||
$this->request,
|
||||
|
|
@ -104,11 +107,11 @@ class ViewControllerTest extends TestCase {
|
|||
$this->activityHelper,
|
||||
$this->initialState,
|
||||
$this->templateManager,
|
||||
$this->shareManager,
|
||||
$this->userConfig,
|
||||
$this->viewConfig,
|
||||
$filenameValidator,
|
||||
])
|
||||
->setMethods([
|
||||
->onlyMethods([
|
||||
'getStorageInfo',
|
||||
])
|
||||
->getMock();
|
||||
|
|
|
|||
|
|
@ -104,7 +104,7 @@ OC.L10N.register(
|
|||
"Adds basic external storage support" : "Doda osnovno zunanjo podporo shrambe",
|
||||
"Enter missing credentials" : "Vpiši manjkajoča poverila",
|
||||
"New configuration successfully saved" : "Nove nastavitve so uspešno shranjene",
|
||||
"There was an error with this external storage." : "Prišlo je do napake z zunanjo shrambo",
|
||||
"There was an error with this external storage." : "Prišlo je do napake zunanje shrambe.",
|
||||
"Open in Files" : "Odpri v mapi",
|
||||
"External mount error" : "Notranja napaka priklopa",
|
||||
"Storage type" : "Vrsta shrambe",
|
||||
|
|
|
|||
|
|
@ -102,7 +102,7 @@
|
|||
"Adds basic external storage support" : "Doda osnovno zunanjo podporo shrambe",
|
||||
"Enter missing credentials" : "Vpiši manjkajoča poverila",
|
||||
"New configuration successfully saved" : "Nove nastavitve so uspešno shranjene",
|
||||
"There was an error with this external storage." : "Prišlo je do napake z zunanjo shrambo",
|
||||
"There was an error with this external storage." : "Prišlo je do napake zunanje shrambe.",
|
||||
"Open in Files" : "Odpri v mapi",
|
||||
"External mount error" : "Notranja napaka priklopa",
|
||||
"Storage type" : "Vrsta shrambe",
|
||||
|
|
|
|||
|
|
@ -116,6 +116,11 @@ return [
|
|||
'url' => '/api/v1/shares/{id}',
|
||||
'verb' => 'DELETE',
|
||||
],
|
||||
[
|
||||
'name' => 'ShareAPI#sendShareEmail',
|
||||
'url' => '/api/v1/shares/{id}/send-email',
|
||||
'verb' => 'POST',
|
||||
],
|
||||
[
|
||||
'name' => 'ShareAPI#acceptShare',
|
||||
'url' => '/api/v1/shares/pending/{id}',
|
||||
|
|
|
|||
|
|
@ -86,6 +86,7 @@ OC.L10N.register(
|
|||
"Public link sharing is disabled by the administrator" : "المشاركة عن طريق الروابط العامة معطّلة من قِبَل المُشرف",
|
||||
"Public upload disabled by the administrator" : "عمليات الرفع العامة معطّلة من قِبَل المُشرف",
|
||||
"Public upload is only possible for publicly shared folders" : "عمليات الرفع العامة مسموحة فقط في المجلدات المُشارَكة",
|
||||
"Please specify a valid email address" : "من فضلك، عيٍّن عنواناً صحيحاً للبريد الإلكتروني",
|
||||
"Sharing %s sending the password by Nextcloud Talk failed because Nextcloud Talk is not enabled" : "مشاركة %s لارسال كلمة المرور من قبل تطبيق \"المحادثة Talk\" نكست كلاود فشلت بسبب عدم تفعيل التطبيق.",
|
||||
"Sharing %1$s failed because the back end does not allow shares from type %2$s" : "فشلت مشاركة %1$s لأن الخلفية لا تسمح بالمشاركة من النوع %2$s",
|
||||
"Please specify a valid federated account ID" : "رجاءً، حدِّد مُعرِّفاً صحيحاً لحساب اتحادي federated account ID",
|
||||
|
|
@ -98,10 +99,22 @@ OC.L10N.register(
|
|||
"Not a directory" : "ليس مُجلّداً صحيحاً",
|
||||
"Could not lock node" : "تعذّر قَفْل lock النقطة node",
|
||||
"Could not lock path" : "تعذّر قَفْل lock المسار path",
|
||||
"no sharing rights on this item" : "لا توجد حقوق مشاركة في هذا العنصر",
|
||||
"You are not allowed to edit incoming shares" : "أنت غير مسموحٍ لك بتعديل المشاركات الواردة",
|
||||
"Wrong or no update parameter given" : "خطأ أو لم يتم تقديم بارامتر للتحديث update paramete",
|
||||
"You are not allowed to edit link shares that you don't own" : "أنت غير مسموحٍ لك بتعديل مشاركات الروابط التي لا تملكها",
|
||||
"Share must at least have READ or CREATE permissions" : "يجب أن تمتلك المشاركة أذونات الإنشاء CREATE و القراءة READ على الأقل",
|
||||
"Share must have READ permission if UPDATE or DELETE permission is set" : "يجب أن تمتلك المشاركة إذن القراءة READ إذا كانت أذونات UPDATE أو DELETE مُعيّنة ",
|
||||
"\"Sending the password by Nextcloud Talk\" for sharing a file or folder failed because Nextcloud Talk is not enabled." : "\"عملية إرسال كلمة المرور بواسطة تطبيق نكست كلاود للمحادثة Talk\" من أجل مشاركة ملف أو مُجلّد لم تُنفّذ بسبب أن التطبيق غير مُفعّل",
|
||||
"Invalid date. Format must be YYYY-MM-DD" : "التاريخ غير صحيح. يجب أن يكون على الصيغة YYYY-MM-DD",
|
||||
"No sharing rights on this item" : "لا توجد حقوق مشاركة في هذا العنصر",
|
||||
"Invalid share attributes provided: \"%s\"" : "خصائص المشاركة المعطاة غير صحيحة: \"%s\"",
|
||||
"Should not happen, instanceOfStorage but getInstanceOfStorage return null" : "يجب ألّا يحدث هذا. instanceOfStorage لكن getInstanceOfStorage ترجع بقيمة فارغة null",
|
||||
"Should not happen, instanceOfStorage but not a wrapper" : "يجب ألّا يحدث هذا. instanceOfStorage لكن ليست لُفَافة wrapper",
|
||||
"You are not allowed to send mail notifications" : "أنت غير مسموحٍ لك بإرسال إشعارات الإيميل",
|
||||
"No mail notification configured for this share type" : "لا توجد إشعارات إيميل مُهيَّأةً لهذا النوع من المشاركات ",
|
||||
"Wrong password" : "كلمة المرور غير صحيحة",
|
||||
"Error while sending mail notification" : "حدث خطأ أثناء إرسال إشعار بإيميل",
|
||||
"shared by %s" : "تمّت مشاركته مِن قبل %s",
|
||||
"Download all files" : "تنزيل كافة الملفات",
|
||||
"Direct link" : "رابط مباشر",
|
||||
|
|
@ -115,6 +128,61 @@ OC.L10N.register(
|
|||
"Accept" : "قبول",
|
||||
"Decline" : "رفض",
|
||||
"This application enables people to share files within Nextcloud. If enabled, the admin can choose which groups can share files. The applicable people can then share files and folders with other accounts and groups within Nextcloud. In addition, if the admin enables the share link feature, an external link can be used to share files with other people outside of Nextcloud. Admins can also enforce passwords, expirations dates, and enable server to server sharing via share links, as well as sharing from mobile devices.\nTurning the feature off removes shared files and folders on the server for all share recipients, and also on the sync clients and mobile apps. More information is available in the Nextcloud Documentation." : "يُمكِّن هذا التطبيق الأشخاص من مشاركة الملفات داخل نكست كلاود. عند تمكينه، يُمكِّن المشرف تحديد المجموعات التي يمكنها مشاركة الملفات. يمكن للأشخاص المعنيين بعد ذلك مشاركة الملفات والمجلدات مع حسابات ومجموعات أخرى داخل نكست كلاود. بالإضافة إلى ذلك، إذا قام المشرف بتمكين ميزة رابط المشاركة، فيمكن استخدام رابط خارجي لمشاركة الملفات مع أشخاص آخرين خارج نكست كلاود. يمكن للمشرفين أيضًا فرض كلمات المرور و تواريخ انتهاء الصلاحية و تمكين المشاركة من خادوم إلى خادوم عبر روابط المشاركة؛ بالإضافة إلى المشاركة من الأجهزة المحمولة. بالمقابل، يؤدي تعطيل التطبيق إلى إزالة الملفات والمجلدات المشتركة على الخادوم لدي جميع مستلمي المشاركة، و كذلك على عملاء المزامنة و تطبيقات الأجهزة المحمولة. \nللمزيد من المعلومات، أنظُر توثيق نكست كلاود.",
|
||||
"Your administrator has enforced a default expiration date with a maximum {days} days." : "مشرف النظام عندك قام بفرض تاريخ لانتهاء الصلاحية لا يتعدى {days} يوم.",
|
||||
"When should the request expire?" : "متى يجب أن تنتهي صلاحية الطلب؟",
|
||||
"Set a submission expirationDate" : "عيِّن تاريخ انتهاء صلاحية للإرسالية",
|
||||
"Expiration date" : "تاريخ إنتهاء صلاحية المشاركة",
|
||||
"Select a date" : "إختَر تاريخاً",
|
||||
"Your administrator has enforced a password protection." : "مشرف النظام عندك قام بفرض الحماية عن طريق كلمة المرور",
|
||||
"What password should be used for the request?" : "هل يجب استعمال كلمة مرور لهذا الطلب؟",
|
||||
"Set a password" : "تعيين كلمة المرور",
|
||||
"Password" : "كلمة المرور",
|
||||
"Enter a valid password" : "أدخِل كلمة مرور صحيحة",
|
||||
"Generate a new password" : "توليد كلمة مرور جديدة",
|
||||
"The request will expire on {date} at midnight and will be password protected." : "سوف تنتهي صلاحية الطلب في {date} عند منتصف الليل، و سيكون محميّاً بكلمة مرور.",
|
||||
"The request will expire on {date} at midnight." : "سوف تنتهي صلاحية الطلب في {date} عند منتصف الليل.",
|
||||
"The request will be password protected." : "سوف يكون الطلب محميّاً بكلمة مرور.",
|
||||
"Once created, you can share the link below to allow people to upload files to your directory." : "بمجرد الإنشاء، يمكنك مشاركة الرابط أدناه للسماح للأشخاص بتحميل الملفات إلى الدليل الخاص بك.",
|
||||
"Share link" : "رابط المشاركة",
|
||||
"Copy to clipboard" : "نسخ الرابط إلى الحافظة",
|
||||
"Send link via email" : "إرسال رابط عبر الإيميل",
|
||||
"Enter an email address or paste a list" : "أدخِل عنوان إيميل أو إلصِق قائمةً",
|
||||
"Remove email" : "إحذِف الإيميل",
|
||||
"Automatically copying failed, please copy the share link manually" : "تعذّر النسخ التلقائي. قم رجاءً بنسخ رابط المشاركة يدويّاً",
|
||||
"Link copied to clipboard" : "تمّ نسخ الرابط إلى الحافظة",
|
||||
"Email already added" : "الإيميل سبقت إضافته سلفاً",
|
||||
"Invalid email address" : "عنوان الإيميل غير صحيح",
|
||||
"_1 email address already added_::_{count} email addresses already added_" : ["{count} عنوان إيميل سبقت إضافته سلفاً","1 عنوان إيميل سبقت إضافته سلفاً","{count} عنوان إيميل سبقت إضافته سلفاً","{count} عناوين إيميل سبقت إضافتهت سلفاً","{count} عناوين إيميل سبقت إضافتها سلفاً","{count} عناوين إيميل سبقت إضافتها سلفاً"],
|
||||
"_1 email address added_::_{count} email addresses added_" : ["{count} عنوان إيميل تمت إضافته","1 عنوان إيميل تمت إضافته","{count} عناوين إيميل تمت إضافتها","{count} عناوين إيميل تمت إضافتها","{count} عناوين إيميل تمت إضافتها","{count} عناوين إيميل تمت إضافتها"],
|
||||
"What are you requesting?" : "ماذا تطلب؟",
|
||||
"Request subject" : "موضوع الطلب",
|
||||
"Birthday party photos, History assignment…" : "صور حفلات الميلاد، أو تاريخ المهام، ....",
|
||||
"Where should these files go?" : "أين يجب أن يتم نقل هذه الملفات؟",
|
||||
"The uploaded files are visible only to you unless you choose to share them." : "الملفات المرفوعة تكون ظاهرةً لك إلّا إذا قررت مشاركتها",
|
||||
"Upload destination" : "مَقصِد رفع الملفات",
|
||||
"Select a destination" : "إختَر المَقصِد",
|
||||
"Revert to default" : "عُد إلى التلقائي",
|
||||
"Add a note" : "أضِف ملاحظةً",
|
||||
"Note for recipient" : "ملاحظة للمُستَلِم",
|
||||
"Add a note to help people understand what you are requesting." : "أضِف ملاحظة لتوضح للآخرين ما تطلبه",
|
||||
"Select" : "حدِّد",
|
||||
"Create a file request" : "إنشاء طلب لملف",
|
||||
"File request created" : "تمّ إنشاء طلب لملف",
|
||||
"Collect files from others even if they do not have an account." : "جمِّع الملفات من الآخرين حتى لو لم يكونوا يملكون حساباتٍ",
|
||||
"To ensure you can receive files, verify you have enough storage available." : "لضمان استلامك للملفات، تحقَّق من كفاية حصتك التخزينية.",
|
||||
"File request" : "طلب الملف",
|
||||
"Cancel" : "إلغاء",
|
||||
"Cancel the file request creation" : "إلغاء عملية إنشاء طلب الملف",
|
||||
"Previous step" : "الخطوة السابقة",
|
||||
"Continue" : "مُتابعة",
|
||||
"Close" : "إغلاق",
|
||||
"Please select a folder, you cannot share the root directory." : "من فضلك، إختَر مجلداً. لا يمكنك مشاركة الدليل الجذر.",
|
||||
"File request created and emails sent" : "تمّ إنشاء طلب الملف و تمّ إرسال الإيميلات",
|
||||
"Error creating the share: {errorMessage}" : "خطأ في إنشاء المشاركة: {errorMessage}",
|
||||
"Error creating the share" : "خطأ في إنشاء المشاركة",
|
||||
"Error sending emails: {errorMessage}" : "حدث خطأ في إرسال الإيميلات: {errorMessage}",
|
||||
"Error sending emails" : "حدث خطأ في إرسال الإيميلات",
|
||||
"_Close and send email_::_Close and send {count} emails_" : ["أغلِق و أرسِل{count} إيميل","أغلِق و أرسِل الإيميل","أغلِق و أرسِل {count} إيميل","أغلِق و أرسِل {count} إيميلات","أغلِق و أرسِل {count} إيميلات","أغلِق و أرسِل {count} إيميلات"],
|
||||
"Sharing" : "المشاركة",
|
||||
"Accept shares from other accounts and groups by default" : "إقبَل المشاركات من حسابات و مجموعات أخرى بشكل تلقائي ",
|
||||
"Error while toggling options" : "خطأ أثناء تبديل الخيارات",
|
||||
|
|
@ -149,17 +217,17 @@ OC.L10N.register(
|
|||
"Expiration date (enforced)" : "تاريخ انتهاء الصلاحية (إلزامي)",
|
||||
"Enter a date" : "أدخِل تاريخاً",
|
||||
"Create share" : "إنشاء مشاركة",
|
||||
"Cancel" : "إلغاء",
|
||||
"Customize link" : "خصِّص الرابط",
|
||||
"Generate QR code" : "توليد كود \"كيو آر\" QR",
|
||||
"Add another link" : "أضِف رابطاً آخر",
|
||||
"Create a new share link" : "أنشِيءْ رابط مشاركة جديد",
|
||||
"{shareWith} by {initiator}" : "{shareWith} مِن قِبَل {initiator}",
|
||||
"Shared via link by {initiator}" : "تمّت المشاركة عبر رابط من قِبَل {initator}",
|
||||
"File request ({label})" : "طلب الملف ({label})",
|
||||
"Mail share ({label})" : "مشاركة البريد ({label})",
|
||||
"Share link ({label})" : "رابط المشاركة ({label})",
|
||||
"Mail share" : "مشاركة الإيميل",
|
||||
"Share link ({index})" : "رابط المشاركة ({index})",
|
||||
"Share link" : "رابط المشاركة",
|
||||
"Actions for \"{title}\"" : "إجراءات لـ \"{title}\"",
|
||||
"Copy public link of \"{title}\" to clipboard" : "إنسَخ الرابط العام لـ \"{title}\" إلى الحافظة",
|
||||
"Error, please enter proper password and/or expiration date" : "خطأ؛ يرجى إدخال كلمة المرور الصحيحة أو تاريخ انتهاء الصلاحية",
|
||||
|
|
@ -168,7 +236,6 @@ OC.L10N.register(
|
|||
"Quick share options, the current selected is \"{selectedOption}\"" : "خيارات المشاركة السريعة. الاختيار الحالي هو \"{selectedOption}\"",
|
||||
"View only" : "للعرض فقط",
|
||||
"Can edit" : "يمكنه التعديل",
|
||||
"File drop" : "اسقاط الملف",
|
||||
"Custom permissions" : "أذُونَات مخصصة",
|
||||
"Search for share recipients" : "البحث عن مُستَلِمِي المشاركة",
|
||||
"No recommendations. Start typing." : "لا توجد توصيات. إبدأ الكتابة.",
|
||||
|
|
@ -192,12 +259,10 @@ OC.L10N.register(
|
|||
"Advanced settings" : "الإعدادات المتقدمة",
|
||||
"Share label" : "لاصق label المشاركة",
|
||||
"Set password" : "تعيين كلمة المرور",
|
||||
"Password" : "كلمة المرور",
|
||||
"Password expires {passwordExpirationTime}" : "صلاحية كلمة المرور تنتهي في {passwordExpirationTime}",
|
||||
"Password expired" : "كلمة المرور إنتهت صلاحيتها",
|
||||
"Video verification" : "التحقُّق من الفيديو",
|
||||
"Set expiration date" : "تعيين تاريخ إنتهاء الصلاحية",
|
||||
"Expiration date" : "تاريخ إنتهاء صلاحية المشاركة",
|
||||
"Hide download" : "إخفاء التنزيل",
|
||||
"Allow download" : "إسمَح بالتنزيل",
|
||||
"Note to recipient" : "ملاحظة للمستلم",
|
||||
|
|
@ -221,6 +286,7 @@ OC.L10N.register(
|
|||
"Toggle list of others with access to this directory" : "تعطيل/تفعيل قائمة الآخرين الذين لديهم حق الوصول إلى هذا الدليل",
|
||||
"Toggle list of others with access to this file" : "تعطيل/تفعيل قائمة الآخرين الذين لديهم حق الوصول إلى هذا الملف",
|
||||
"Unable to fetch inherited shares" : "تعذّر جلب المشاركات الموروثة inherited shares",
|
||||
"_The following email address is not valid: {emails}_::_The following email addresses are not valid: {emails}_" : ["عنوان الإيميل التالي غير صحيح: {emails}","عنوان الإيميل التالي غير صحيح: {emails}","عنوان الإيميل التالي غير صحيح: {emails}","عناوين الإيميل التالية غير صحيحة: {emails}","عناوين الإيميل التالية غير صحيحة: {emails}","عناوين الإيميل التالية غير صحيحة: {emails}"],
|
||||
"Unable to load the shares list" : "تعذّر تحميل قائمة المشاركات",
|
||||
"Expires {relativetime}" : "تنتهي الصلاحية في {relativetime}",
|
||||
"this share just expired." : "صلاحية هذه المشاركة إنتَهَت للتَّوّ.",
|
||||
|
|
@ -234,13 +300,12 @@ OC.L10N.register(
|
|||
"Shared by {ownerDisplayName}" : "تمّت مشاركته من قِبَل {ownerDisplayName}",
|
||||
"Show sharing options" : "أعرُض خيارات المشاركة",
|
||||
"Link to a file" : "رابط إلى ملف",
|
||||
"Error creating the share: {errorMessage}" : "خطأ في إنشاء المشاركة: {errorMessage}",
|
||||
"Error creating the share" : "خطأ في إنشاء المشاركة",
|
||||
"Error updating the share: {errorMessage}" : "خطأ في تعديل المشاركة: {errorMessage}",
|
||||
"Error updating the share" : "خطأ في تحديث المشاركة",
|
||||
"File \"{path}\" has been unshared" : "الملف \"{path}\" تمّ إلغاء مشاركته",
|
||||
"Folder \"{path}\" has been unshared" : "المجلّد \"{path}\" تمّ إلغاء مشاركته",
|
||||
"Share {propertyName} saved" : "المُشارَكة {propertyName} تمّ حفظها",
|
||||
"Create new file request" : "إنشاء طلب جديد لملف",
|
||||
"Shared by" : "تمّت مشاركته من قِبَل",
|
||||
"Shared with" : "تمّت مشاركته مع",
|
||||
"Password created successfully" : "تمّ إنشاء كلمة المرور بنجاح",
|
||||
|
|
@ -302,9 +367,9 @@ OC.L10N.register(
|
|||
"Bundled permissions" : "أذونات مُجمّعة",
|
||||
"Only works for users with access to this folder" : "صالحٌ فقط للمستخدمين الذين لديهم حق الوصول إلى هذا المجلد",
|
||||
"Only works for users with access to this file" : "صالحٌ فقط للمستخدمين الذين لديهم حق الوصول إلى هذا الملف",
|
||||
"File drop" : "اسقاط الملف",
|
||||
"Circle" : "الدائرة ",
|
||||
"Update" : "تحديث",
|
||||
"Share with " : "شَارِك مع",
|
||||
"No other users with access found" : "لم يتم العثور على مستخدمين آخرين لهم حق الوصول",
|
||||
"No entries found in this folder" : "لا يوجد مدخلات في هذا المجلد ",
|
||||
"Name" : "الاسم",
|
||||
|
|
|
|||
|
|
@ -84,6 +84,7 @@
|
|||
"Public link sharing is disabled by the administrator" : "المشاركة عن طريق الروابط العامة معطّلة من قِبَل المُشرف",
|
||||
"Public upload disabled by the administrator" : "عمليات الرفع العامة معطّلة من قِبَل المُشرف",
|
||||
"Public upload is only possible for publicly shared folders" : "عمليات الرفع العامة مسموحة فقط في المجلدات المُشارَكة",
|
||||
"Please specify a valid email address" : "من فضلك، عيٍّن عنواناً صحيحاً للبريد الإلكتروني",
|
||||
"Sharing %s sending the password by Nextcloud Talk failed because Nextcloud Talk is not enabled" : "مشاركة %s لارسال كلمة المرور من قبل تطبيق \"المحادثة Talk\" نكست كلاود فشلت بسبب عدم تفعيل التطبيق.",
|
||||
"Sharing %1$s failed because the back end does not allow shares from type %2$s" : "فشلت مشاركة %1$s لأن الخلفية لا تسمح بالمشاركة من النوع %2$s",
|
||||
"Please specify a valid federated account ID" : "رجاءً، حدِّد مُعرِّفاً صحيحاً لحساب اتحادي federated account ID",
|
||||
|
|
@ -96,10 +97,22 @@
|
|||
"Not a directory" : "ليس مُجلّداً صحيحاً",
|
||||
"Could not lock node" : "تعذّر قَفْل lock النقطة node",
|
||||
"Could not lock path" : "تعذّر قَفْل lock المسار path",
|
||||
"no sharing rights on this item" : "لا توجد حقوق مشاركة في هذا العنصر",
|
||||
"You are not allowed to edit incoming shares" : "أنت غير مسموحٍ لك بتعديل المشاركات الواردة",
|
||||
"Wrong or no update parameter given" : "خطأ أو لم يتم تقديم بارامتر للتحديث update paramete",
|
||||
"You are not allowed to edit link shares that you don't own" : "أنت غير مسموحٍ لك بتعديل مشاركات الروابط التي لا تملكها",
|
||||
"Share must at least have READ or CREATE permissions" : "يجب أن تمتلك المشاركة أذونات الإنشاء CREATE و القراءة READ على الأقل",
|
||||
"Share must have READ permission if UPDATE or DELETE permission is set" : "يجب أن تمتلك المشاركة إذن القراءة READ إذا كانت أذونات UPDATE أو DELETE مُعيّنة ",
|
||||
"\"Sending the password by Nextcloud Talk\" for sharing a file or folder failed because Nextcloud Talk is not enabled." : "\"عملية إرسال كلمة المرور بواسطة تطبيق نكست كلاود للمحادثة Talk\" من أجل مشاركة ملف أو مُجلّد لم تُنفّذ بسبب أن التطبيق غير مُفعّل",
|
||||
"Invalid date. Format must be YYYY-MM-DD" : "التاريخ غير صحيح. يجب أن يكون على الصيغة YYYY-MM-DD",
|
||||
"No sharing rights on this item" : "لا توجد حقوق مشاركة في هذا العنصر",
|
||||
"Invalid share attributes provided: \"%s\"" : "خصائص المشاركة المعطاة غير صحيحة: \"%s\"",
|
||||
"Should not happen, instanceOfStorage but getInstanceOfStorage return null" : "يجب ألّا يحدث هذا. instanceOfStorage لكن getInstanceOfStorage ترجع بقيمة فارغة null",
|
||||
"Should not happen, instanceOfStorage but not a wrapper" : "يجب ألّا يحدث هذا. instanceOfStorage لكن ليست لُفَافة wrapper",
|
||||
"You are not allowed to send mail notifications" : "أنت غير مسموحٍ لك بإرسال إشعارات الإيميل",
|
||||
"No mail notification configured for this share type" : "لا توجد إشعارات إيميل مُهيَّأةً لهذا النوع من المشاركات ",
|
||||
"Wrong password" : "كلمة المرور غير صحيحة",
|
||||
"Error while sending mail notification" : "حدث خطأ أثناء إرسال إشعار بإيميل",
|
||||
"shared by %s" : "تمّت مشاركته مِن قبل %s",
|
||||
"Download all files" : "تنزيل كافة الملفات",
|
||||
"Direct link" : "رابط مباشر",
|
||||
|
|
@ -113,6 +126,61 @@
|
|||
"Accept" : "قبول",
|
||||
"Decline" : "رفض",
|
||||
"This application enables people to share files within Nextcloud. If enabled, the admin can choose which groups can share files. The applicable people can then share files and folders with other accounts and groups within Nextcloud. In addition, if the admin enables the share link feature, an external link can be used to share files with other people outside of Nextcloud. Admins can also enforce passwords, expirations dates, and enable server to server sharing via share links, as well as sharing from mobile devices.\nTurning the feature off removes shared files and folders on the server for all share recipients, and also on the sync clients and mobile apps. More information is available in the Nextcloud Documentation." : "يُمكِّن هذا التطبيق الأشخاص من مشاركة الملفات داخل نكست كلاود. عند تمكينه، يُمكِّن المشرف تحديد المجموعات التي يمكنها مشاركة الملفات. يمكن للأشخاص المعنيين بعد ذلك مشاركة الملفات والمجلدات مع حسابات ومجموعات أخرى داخل نكست كلاود. بالإضافة إلى ذلك، إذا قام المشرف بتمكين ميزة رابط المشاركة، فيمكن استخدام رابط خارجي لمشاركة الملفات مع أشخاص آخرين خارج نكست كلاود. يمكن للمشرفين أيضًا فرض كلمات المرور و تواريخ انتهاء الصلاحية و تمكين المشاركة من خادوم إلى خادوم عبر روابط المشاركة؛ بالإضافة إلى المشاركة من الأجهزة المحمولة. بالمقابل، يؤدي تعطيل التطبيق إلى إزالة الملفات والمجلدات المشتركة على الخادوم لدي جميع مستلمي المشاركة، و كذلك على عملاء المزامنة و تطبيقات الأجهزة المحمولة. \nللمزيد من المعلومات، أنظُر توثيق نكست كلاود.",
|
||||
"Your administrator has enforced a default expiration date with a maximum {days} days." : "مشرف النظام عندك قام بفرض تاريخ لانتهاء الصلاحية لا يتعدى {days} يوم.",
|
||||
"When should the request expire?" : "متى يجب أن تنتهي صلاحية الطلب؟",
|
||||
"Set a submission expirationDate" : "عيِّن تاريخ انتهاء صلاحية للإرسالية",
|
||||
"Expiration date" : "تاريخ إنتهاء صلاحية المشاركة",
|
||||
"Select a date" : "إختَر تاريخاً",
|
||||
"Your administrator has enforced a password protection." : "مشرف النظام عندك قام بفرض الحماية عن طريق كلمة المرور",
|
||||
"What password should be used for the request?" : "هل يجب استعمال كلمة مرور لهذا الطلب؟",
|
||||
"Set a password" : "تعيين كلمة المرور",
|
||||
"Password" : "كلمة المرور",
|
||||
"Enter a valid password" : "أدخِل كلمة مرور صحيحة",
|
||||
"Generate a new password" : "توليد كلمة مرور جديدة",
|
||||
"The request will expire on {date} at midnight and will be password protected." : "سوف تنتهي صلاحية الطلب في {date} عند منتصف الليل، و سيكون محميّاً بكلمة مرور.",
|
||||
"The request will expire on {date} at midnight." : "سوف تنتهي صلاحية الطلب في {date} عند منتصف الليل.",
|
||||
"The request will be password protected." : "سوف يكون الطلب محميّاً بكلمة مرور.",
|
||||
"Once created, you can share the link below to allow people to upload files to your directory." : "بمجرد الإنشاء، يمكنك مشاركة الرابط أدناه للسماح للأشخاص بتحميل الملفات إلى الدليل الخاص بك.",
|
||||
"Share link" : "رابط المشاركة",
|
||||
"Copy to clipboard" : "نسخ الرابط إلى الحافظة",
|
||||
"Send link via email" : "إرسال رابط عبر الإيميل",
|
||||
"Enter an email address or paste a list" : "أدخِل عنوان إيميل أو إلصِق قائمةً",
|
||||
"Remove email" : "إحذِف الإيميل",
|
||||
"Automatically copying failed, please copy the share link manually" : "تعذّر النسخ التلقائي. قم رجاءً بنسخ رابط المشاركة يدويّاً",
|
||||
"Link copied to clipboard" : "تمّ نسخ الرابط إلى الحافظة",
|
||||
"Email already added" : "الإيميل سبقت إضافته سلفاً",
|
||||
"Invalid email address" : "عنوان الإيميل غير صحيح",
|
||||
"_1 email address already added_::_{count} email addresses already added_" : ["{count} عنوان إيميل سبقت إضافته سلفاً","1 عنوان إيميل سبقت إضافته سلفاً","{count} عنوان إيميل سبقت إضافته سلفاً","{count} عناوين إيميل سبقت إضافتهت سلفاً","{count} عناوين إيميل سبقت إضافتها سلفاً","{count} عناوين إيميل سبقت إضافتها سلفاً"],
|
||||
"_1 email address added_::_{count} email addresses added_" : ["{count} عنوان إيميل تمت إضافته","1 عنوان إيميل تمت إضافته","{count} عناوين إيميل تمت إضافتها","{count} عناوين إيميل تمت إضافتها","{count} عناوين إيميل تمت إضافتها","{count} عناوين إيميل تمت إضافتها"],
|
||||
"What are you requesting?" : "ماذا تطلب؟",
|
||||
"Request subject" : "موضوع الطلب",
|
||||
"Birthday party photos, History assignment…" : "صور حفلات الميلاد، أو تاريخ المهام، ....",
|
||||
"Where should these files go?" : "أين يجب أن يتم نقل هذه الملفات؟",
|
||||
"The uploaded files are visible only to you unless you choose to share them." : "الملفات المرفوعة تكون ظاهرةً لك إلّا إذا قررت مشاركتها",
|
||||
"Upload destination" : "مَقصِد رفع الملفات",
|
||||
"Select a destination" : "إختَر المَقصِد",
|
||||
"Revert to default" : "عُد إلى التلقائي",
|
||||
"Add a note" : "أضِف ملاحظةً",
|
||||
"Note for recipient" : "ملاحظة للمُستَلِم",
|
||||
"Add a note to help people understand what you are requesting." : "أضِف ملاحظة لتوضح للآخرين ما تطلبه",
|
||||
"Select" : "حدِّد",
|
||||
"Create a file request" : "إنشاء طلب لملف",
|
||||
"File request created" : "تمّ إنشاء طلب لملف",
|
||||
"Collect files from others even if they do not have an account." : "جمِّع الملفات من الآخرين حتى لو لم يكونوا يملكون حساباتٍ",
|
||||
"To ensure you can receive files, verify you have enough storage available." : "لضمان استلامك للملفات، تحقَّق من كفاية حصتك التخزينية.",
|
||||
"File request" : "طلب الملف",
|
||||
"Cancel" : "إلغاء",
|
||||
"Cancel the file request creation" : "إلغاء عملية إنشاء طلب الملف",
|
||||
"Previous step" : "الخطوة السابقة",
|
||||
"Continue" : "مُتابعة",
|
||||
"Close" : "إغلاق",
|
||||
"Please select a folder, you cannot share the root directory." : "من فضلك، إختَر مجلداً. لا يمكنك مشاركة الدليل الجذر.",
|
||||
"File request created and emails sent" : "تمّ إنشاء طلب الملف و تمّ إرسال الإيميلات",
|
||||
"Error creating the share: {errorMessage}" : "خطأ في إنشاء المشاركة: {errorMessage}",
|
||||
"Error creating the share" : "خطأ في إنشاء المشاركة",
|
||||
"Error sending emails: {errorMessage}" : "حدث خطأ في إرسال الإيميلات: {errorMessage}",
|
||||
"Error sending emails" : "حدث خطأ في إرسال الإيميلات",
|
||||
"_Close and send email_::_Close and send {count} emails_" : ["أغلِق و أرسِل{count} إيميل","أغلِق و أرسِل الإيميل","أغلِق و أرسِل {count} إيميل","أغلِق و أرسِل {count} إيميلات","أغلِق و أرسِل {count} إيميلات","أغلِق و أرسِل {count} إيميلات"],
|
||||
"Sharing" : "المشاركة",
|
||||
"Accept shares from other accounts and groups by default" : "إقبَل المشاركات من حسابات و مجموعات أخرى بشكل تلقائي ",
|
||||
"Error while toggling options" : "خطأ أثناء تبديل الخيارات",
|
||||
|
|
@ -147,17 +215,17 @@
|
|||
"Expiration date (enforced)" : "تاريخ انتهاء الصلاحية (إلزامي)",
|
||||
"Enter a date" : "أدخِل تاريخاً",
|
||||
"Create share" : "إنشاء مشاركة",
|
||||
"Cancel" : "إلغاء",
|
||||
"Customize link" : "خصِّص الرابط",
|
||||
"Generate QR code" : "توليد كود \"كيو آر\" QR",
|
||||
"Add another link" : "أضِف رابطاً آخر",
|
||||
"Create a new share link" : "أنشِيءْ رابط مشاركة جديد",
|
||||
"{shareWith} by {initiator}" : "{shareWith} مِن قِبَل {initiator}",
|
||||
"Shared via link by {initiator}" : "تمّت المشاركة عبر رابط من قِبَل {initator}",
|
||||
"File request ({label})" : "طلب الملف ({label})",
|
||||
"Mail share ({label})" : "مشاركة البريد ({label})",
|
||||
"Share link ({label})" : "رابط المشاركة ({label})",
|
||||
"Mail share" : "مشاركة الإيميل",
|
||||
"Share link ({index})" : "رابط المشاركة ({index})",
|
||||
"Share link" : "رابط المشاركة",
|
||||
"Actions for \"{title}\"" : "إجراءات لـ \"{title}\"",
|
||||
"Copy public link of \"{title}\" to clipboard" : "إنسَخ الرابط العام لـ \"{title}\" إلى الحافظة",
|
||||
"Error, please enter proper password and/or expiration date" : "خطأ؛ يرجى إدخال كلمة المرور الصحيحة أو تاريخ انتهاء الصلاحية",
|
||||
|
|
@ -166,7 +234,6 @@
|
|||
"Quick share options, the current selected is \"{selectedOption}\"" : "خيارات المشاركة السريعة. الاختيار الحالي هو \"{selectedOption}\"",
|
||||
"View only" : "للعرض فقط",
|
||||
"Can edit" : "يمكنه التعديل",
|
||||
"File drop" : "اسقاط الملف",
|
||||
"Custom permissions" : "أذُونَات مخصصة",
|
||||
"Search for share recipients" : "البحث عن مُستَلِمِي المشاركة",
|
||||
"No recommendations. Start typing." : "لا توجد توصيات. إبدأ الكتابة.",
|
||||
|
|
@ -190,12 +257,10 @@
|
|||
"Advanced settings" : "الإعدادات المتقدمة",
|
||||
"Share label" : "لاصق label المشاركة",
|
||||
"Set password" : "تعيين كلمة المرور",
|
||||
"Password" : "كلمة المرور",
|
||||
"Password expires {passwordExpirationTime}" : "صلاحية كلمة المرور تنتهي في {passwordExpirationTime}",
|
||||
"Password expired" : "كلمة المرور إنتهت صلاحيتها",
|
||||
"Video verification" : "التحقُّق من الفيديو",
|
||||
"Set expiration date" : "تعيين تاريخ إنتهاء الصلاحية",
|
||||
"Expiration date" : "تاريخ إنتهاء صلاحية المشاركة",
|
||||
"Hide download" : "إخفاء التنزيل",
|
||||
"Allow download" : "إسمَح بالتنزيل",
|
||||
"Note to recipient" : "ملاحظة للمستلم",
|
||||
|
|
@ -219,6 +284,7 @@
|
|||
"Toggle list of others with access to this directory" : "تعطيل/تفعيل قائمة الآخرين الذين لديهم حق الوصول إلى هذا الدليل",
|
||||
"Toggle list of others with access to this file" : "تعطيل/تفعيل قائمة الآخرين الذين لديهم حق الوصول إلى هذا الملف",
|
||||
"Unable to fetch inherited shares" : "تعذّر جلب المشاركات الموروثة inherited shares",
|
||||
"_The following email address is not valid: {emails}_::_The following email addresses are not valid: {emails}_" : ["عنوان الإيميل التالي غير صحيح: {emails}","عنوان الإيميل التالي غير صحيح: {emails}","عنوان الإيميل التالي غير صحيح: {emails}","عناوين الإيميل التالية غير صحيحة: {emails}","عناوين الإيميل التالية غير صحيحة: {emails}","عناوين الإيميل التالية غير صحيحة: {emails}"],
|
||||
"Unable to load the shares list" : "تعذّر تحميل قائمة المشاركات",
|
||||
"Expires {relativetime}" : "تنتهي الصلاحية في {relativetime}",
|
||||
"this share just expired." : "صلاحية هذه المشاركة إنتَهَت للتَّوّ.",
|
||||
|
|
@ -232,13 +298,12 @@
|
|||
"Shared by {ownerDisplayName}" : "تمّت مشاركته من قِبَل {ownerDisplayName}",
|
||||
"Show sharing options" : "أعرُض خيارات المشاركة",
|
||||
"Link to a file" : "رابط إلى ملف",
|
||||
"Error creating the share: {errorMessage}" : "خطأ في إنشاء المشاركة: {errorMessage}",
|
||||
"Error creating the share" : "خطأ في إنشاء المشاركة",
|
||||
"Error updating the share: {errorMessage}" : "خطأ في تعديل المشاركة: {errorMessage}",
|
||||
"Error updating the share" : "خطأ في تحديث المشاركة",
|
||||
"File \"{path}\" has been unshared" : "الملف \"{path}\" تمّ إلغاء مشاركته",
|
||||
"Folder \"{path}\" has been unshared" : "المجلّد \"{path}\" تمّ إلغاء مشاركته",
|
||||
"Share {propertyName} saved" : "المُشارَكة {propertyName} تمّ حفظها",
|
||||
"Create new file request" : "إنشاء طلب جديد لملف",
|
||||
"Shared by" : "تمّت مشاركته من قِبَل",
|
||||
"Shared with" : "تمّت مشاركته مع",
|
||||
"Password created successfully" : "تمّ إنشاء كلمة المرور بنجاح",
|
||||
|
|
@ -300,9 +365,9 @@
|
|||
"Bundled permissions" : "أذونات مُجمّعة",
|
||||
"Only works for users with access to this folder" : "صالحٌ فقط للمستخدمين الذين لديهم حق الوصول إلى هذا المجلد",
|
||||
"Only works for users with access to this file" : "صالحٌ فقط للمستخدمين الذين لديهم حق الوصول إلى هذا الملف",
|
||||
"File drop" : "اسقاط الملف",
|
||||
"Circle" : "الدائرة ",
|
||||
"Update" : "تحديث",
|
||||
"Share with " : "شَارِك مع",
|
||||
"No other users with access found" : "لم يتم العثور على مستخدمين آخرين لهم حق الوصول",
|
||||
"No entries found in this folder" : "لا يوجد مدخلات في هذا المجلد ",
|
||||
"Name" : "الاسم",
|
||||
|
|
|
|||
|
|
@ -102,6 +102,7 @@ OC.L10N.register(
|
|||
"Share must at least have READ or CREATE permissions" : "L'elementu compartíu ha tener polo menos los permisos READ o CREATE",
|
||||
"Share must have READ permission if UPDATE or DELETE permission is set" : "L'elementu compartíu ha tener el permisu READ si s'afitaron los permisos UPDATE o DELETE",
|
||||
"\"Sending the password by Nextcloud Talk\" for sharing a file or folder failed because Nextcloud Talk is not enabled." : "Nun se pudo unviar la contraseña per Talk pa compartir un ficheru o una carpeta porque esta aplicación nun ta activada.",
|
||||
"Wrong password" : "La contraseña ye incorreuta",
|
||||
"shared by %s" : "elementu compartíu por %s",
|
||||
"Download all files" : "Baxar tolos ficheros",
|
||||
"Direct link" : "Enllaz direutu",
|
||||
|
|
@ -115,6 +116,17 @@ OC.L10N.register(
|
|||
"Accept" : "Aceptar",
|
||||
"Decline" : "Refugar",
|
||||
"This application enables people to share files within Nextcloud. If enabled, the admin can choose which groups can share files. The applicable people can then share files and folders with other accounts and groups within Nextcloud. In addition, if the admin enables the share link feature, an external link can be used to share files with other people outside of Nextcloud. Admins can also enforce passwords, expirations dates, and enable server to server sharing via share links, as well as sharing from mobile devices.\nTurning the feature off removes shared files and folders on the server for all share recipients, and also on the sync clients and mobile apps. More information is available in the Nextcloud Documentation." : "Esta aplicación permite a les persones compartir ficheros en Nextcloud. Si s'activa, l'alministración pue escoyer los grupos que pue compartir ficheros. Les persones con permisu puen compartir ficheros y carpetes con otres persones y grupos de Nextclouod. Amás, si l'alministración activa la función de compartir enllaces, puen usase enllaces esternos pa compartir ficheros con otres persones fuera de Nextcloud. L'alministración tamién pue aplicar contraseñes, dates de caducidá y activar l'usu compartíu ente sirvidores pente enllaces d'usu compartíu, amás de l'usu compartíu dende preseos móviles.\nSi se desactiva la función, desaníciense los ficheros y carpetes compartíos del sirvidor pa tolos destinatarios y tamién pa los veceros de sincronización y les aplicaciones pa móviles. Tienes más información disponible na documentación de Nextcloud.",
|
||||
"Expiration date" : "Data de caducidá",
|
||||
"Password" : "Contraseña",
|
||||
"Share link" : "Compartir l'enllaz",
|
||||
"Copy to clipboard" : "Copiar nel cartafueyu",
|
||||
"Link copied to clipboard" : "L'enllaz copióse nel cartafueyu",
|
||||
"Select" : "Seleicionar",
|
||||
"Cancel" : "Encaboxar",
|
||||
"Continue" : "Siguir",
|
||||
"Close" : "Zarrar",
|
||||
"Error creating the share: {errorMessage}" : "Hebo un error al crear la compartición: {errorMessage}",
|
||||
"Error creating the share" : "Hebo un error al crear la compartición",
|
||||
"Sharing" : "Compartición",
|
||||
"Accept shares from other accounts and groups by default" : "Aceptar elementos compartíos d'otres cuentes y grupos por defeutu",
|
||||
"Error while toggling options" : "Hebo un error mentanto s'alternaba les opciones",
|
||||
|
|
@ -149,7 +161,6 @@ OC.L10N.register(
|
|||
"Expiration date (enforced)" : "Data de caducidá (obligatoria)",
|
||||
"Enter a date" : "Introduz una data",
|
||||
"Create share" : "Crear l'elementu compartíu",
|
||||
"Cancel" : "Encaboxar",
|
||||
"Customize link" : "Personalizar l'enllaz",
|
||||
"Generate QR code" : "Xenerar un códigu QR",
|
||||
"Add another link" : "Amestar otru enllaz",
|
||||
|
|
@ -159,7 +170,6 @@ OC.L10N.register(
|
|||
"Mail share ({label})" : "Unviar l'elementu compartíu per corréu electrónicu ({label})",
|
||||
"Share link ({label})" : "Compartir l'enllaz ({label})",
|
||||
"Share link ({index})" : "Compartir l'enllaz ({index})",
|
||||
"Share link" : "Compartir l'enllaz",
|
||||
"Actions for \"{title}\"" : "Aiciones pa: {title}",
|
||||
"Copy public link of \"{title}\" to clipboard" : "Copiar l'enllaz públicu de «{title}» nel cartafueyu",
|
||||
"Error, please enter proper password and/or expiration date" : "Error, introduz la contraseña y/o la data de caducidá correutos",
|
||||
|
|
@ -168,7 +178,6 @@ OC.L10N.register(
|
|||
"Quick share options, the current selected is \"{selectedOption}\"" : "Opciones de compartición rápida, la opción seleicionada anguaño ye «selectedOption}»",
|
||||
"View only" : "Ver namás",
|
||||
"Can edit" : "Pue editar",
|
||||
"File drop" : "Suelta de ficheros",
|
||||
"Custom permissions" : "Personlizar los permisos",
|
||||
"Search for share recipients" : "Buscar destinatarios del elementu compartíu",
|
||||
"No recommendations. Start typing." : "Nun hai nenguna recomendación. Comienza a escribir",
|
||||
|
|
@ -192,12 +201,10 @@ OC.L10N.register(
|
|||
"Advanced settings" : "Configuración avanzada",
|
||||
"Share label" : "Etiqueta d'usu compartíu",
|
||||
"Set password" : "Afitar la contraseña",
|
||||
"Password" : "Contraseña",
|
||||
"Password expires {passwordExpirationTime}" : "La contraseña caduca: {passwordExpirationTime}",
|
||||
"Password expired" : "La contraseña caducó",
|
||||
"Video verification" : "Verificación per videu",
|
||||
"Set expiration date" : "Afitar la data de caducidá",
|
||||
"Expiration date" : "Data de caducidá",
|
||||
"Hide download" : "Anubrir la descarga",
|
||||
"Allow download" : "Permitir la descarga",
|
||||
"Note to recipient" : "Nota al destinatariu",
|
||||
|
|
@ -234,8 +241,6 @@ OC.L10N.register(
|
|||
"Shared by {ownerDisplayName}" : "Elementu compartíu por {ownerDisplayName}",
|
||||
"Show sharing options" : "Amosar les opciones de compartición",
|
||||
"Link to a file" : "Enllaciar a un ficheru",
|
||||
"Error creating the share: {errorMessage}" : "Hebo un error al crear la compartición: {errorMessage}",
|
||||
"Error creating the share" : "Hebo un error al crear la compartición",
|
||||
"Error updating the share: {errorMessage}" : "Hebo un error al anovar la compartición: {errorMessage}",
|
||||
"Error updating the share" : "Hebo un error la compartición",
|
||||
"File \"{path}\" has been unshared" : "El camín «{path}» dexó compartise",
|
||||
|
|
@ -302,9 +307,9 @@ OC.L10N.register(
|
|||
"Bundled permissions" : "Permisos agrupaos",
|
||||
"Only works for users with access to this folder" : "Namás funciona pa los usuarios con accesu a esta carpeta",
|
||||
"Only works for users with access to this file" : "Namás funciona pa los usuarios con accesu a esti ficheru",
|
||||
"File drop" : "Suelta de ficheros",
|
||||
"Circle" : "Círculu",
|
||||
"Update" : "Anovar",
|
||||
"Share with " : "Compartir con",
|
||||
"No other users with access found" : "Nun s'atopó nengún usuariu más con accesu",
|
||||
"No entries found in this folder" : "Nun s'atopó nenguna entrada nesta carpeta",
|
||||
"Name" : "Nome",
|
||||
|
|
|
|||
|
|
@ -100,6 +100,7 @@
|
|||
"Share must at least have READ or CREATE permissions" : "L'elementu compartíu ha tener polo menos los permisos READ o CREATE",
|
||||
"Share must have READ permission if UPDATE or DELETE permission is set" : "L'elementu compartíu ha tener el permisu READ si s'afitaron los permisos UPDATE o DELETE",
|
||||
"\"Sending the password by Nextcloud Talk\" for sharing a file or folder failed because Nextcloud Talk is not enabled." : "Nun se pudo unviar la contraseña per Talk pa compartir un ficheru o una carpeta porque esta aplicación nun ta activada.",
|
||||
"Wrong password" : "La contraseña ye incorreuta",
|
||||
"shared by %s" : "elementu compartíu por %s",
|
||||
"Download all files" : "Baxar tolos ficheros",
|
||||
"Direct link" : "Enllaz direutu",
|
||||
|
|
@ -113,6 +114,17 @@
|
|||
"Accept" : "Aceptar",
|
||||
"Decline" : "Refugar",
|
||||
"This application enables people to share files within Nextcloud. If enabled, the admin can choose which groups can share files. The applicable people can then share files and folders with other accounts and groups within Nextcloud. In addition, if the admin enables the share link feature, an external link can be used to share files with other people outside of Nextcloud. Admins can also enforce passwords, expirations dates, and enable server to server sharing via share links, as well as sharing from mobile devices.\nTurning the feature off removes shared files and folders on the server for all share recipients, and also on the sync clients and mobile apps. More information is available in the Nextcloud Documentation." : "Esta aplicación permite a les persones compartir ficheros en Nextcloud. Si s'activa, l'alministración pue escoyer los grupos que pue compartir ficheros. Les persones con permisu puen compartir ficheros y carpetes con otres persones y grupos de Nextclouod. Amás, si l'alministración activa la función de compartir enllaces, puen usase enllaces esternos pa compartir ficheros con otres persones fuera de Nextcloud. L'alministración tamién pue aplicar contraseñes, dates de caducidá y activar l'usu compartíu ente sirvidores pente enllaces d'usu compartíu, amás de l'usu compartíu dende preseos móviles.\nSi se desactiva la función, desaníciense los ficheros y carpetes compartíos del sirvidor pa tolos destinatarios y tamién pa los veceros de sincronización y les aplicaciones pa móviles. Tienes más información disponible na documentación de Nextcloud.",
|
||||
"Expiration date" : "Data de caducidá",
|
||||
"Password" : "Contraseña",
|
||||
"Share link" : "Compartir l'enllaz",
|
||||
"Copy to clipboard" : "Copiar nel cartafueyu",
|
||||
"Link copied to clipboard" : "L'enllaz copióse nel cartafueyu",
|
||||
"Select" : "Seleicionar",
|
||||
"Cancel" : "Encaboxar",
|
||||
"Continue" : "Siguir",
|
||||
"Close" : "Zarrar",
|
||||
"Error creating the share: {errorMessage}" : "Hebo un error al crear la compartición: {errorMessage}",
|
||||
"Error creating the share" : "Hebo un error al crear la compartición",
|
||||
"Sharing" : "Compartición",
|
||||
"Accept shares from other accounts and groups by default" : "Aceptar elementos compartíos d'otres cuentes y grupos por defeutu",
|
||||
"Error while toggling options" : "Hebo un error mentanto s'alternaba les opciones",
|
||||
|
|
@ -147,7 +159,6 @@
|
|||
"Expiration date (enforced)" : "Data de caducidá (obligatoria)",
|
||||
"Enter a date" : "Introduz una data",
|
||||
"Create share" : "Crear l'elementu compartíu",
|
||||
"Cancel" : "Encaboxar",
|
||||
"Customize link" : "Personalizar l'enllaz",
|
||||
"Generate QR code" : "Xenerar un códigu QR",
|
||||
"Add another link" : "Amestar otru enllaz",
|
||||
|
|
@ -157,7 +168,6 @@
|
|||
"Mail share ({label})" : "Unviar l'elementu compartíu per corréu electrónicu ({label})",
|
||||
"Share link ({label})" : "Compartir l'enllaz ({label})",
|
||||
"Share link ({index})" : "Compartir l'enllaz ({index})",
|
||||
"Share link" : "Compartir l'enllaz",
|
||||
"Actions for \"{title}\"" : "Aiciones pa: {title}",
|
||||
"Copy public link of \"{title}\" to clipboard" : "Copiar l'enllaz públicu de «{title}» nel cartafueyu",
|
||||
"Error, please enter proper password and/or expiration date" : "Error, introduz la contraseña y/o la data de caducidá correutos",
|
||||
|
|
@ -166,7 +176,6 @@
|
|||
"Quick share options, the current selected is \"{selectedOption}\"" : "Opciones de compartición rápida, la opción seleicionada anguaño ye «selectedOption}»",
|
||||
"View only" : "Ver namás",
|
||||
"Can edit" : "Pue editar",
|
||||
"File drop" : "Suelta de ficheros",
|
||||
"Custom permissions" : "Personlizar los permisos",
|
||||
"Search for share recipients" : "Buscar destinatarios del elementu compartíu",
|
||||
"No recommendations. Start typing." : "Nun hai nenguna recomendación. Comienza a escribir",
|
||||
|
|
@ -190,12 +199,10 @@
|
|||
"Advanced settings" : "Configuración avanzada",
|
||||
"Share label" : "Etiqueta d'usu compartíu",
|
||||
"Set password" : "Afitar la contraseña",
|
||||
"Password" : "Contraseña",
|
||||
"Password expires {passwordExpirationTime}" : "La contraseña caduca: {passwordExpirationTime}",
|
||||
"Password expired" : "La contraseña caducó",
|
||||
"Video verification" : "Verificación per videu",
|
||||
"Set expiration date" : "Afitar la data de caducidá",
|
||||
"Expiration date" : "Data de caducidá",
|
||||
"Hide download" : "Anubrir la descarga",
|
||||
"Allow download" : "Permitir la descarga",
|
||||
"Note to recipient" : "Nota al destinatariu",
|
||||
|
|
@ -232,8 +239,6 @@
|
|||
"Shared by {ownerDisplayName}" : "Elementu compartíu por {ownerDisplayName}",
|
||||
"Show sharing options" : "Amosar les opciones de compartición",
|
||||
"Link to a file" : "Enllaciar a un ficheru",
|
||||
"Error creating the share: {errorMessage}" : "Hebo un error al crear la compartición: {errorMessage}",
|
||||
"Error creating the share" : "Hebo un error al crear la compartición",
|
||||
"Error updating the share: {errorMessage}" : "Hebo un error al anovar la compartición: {errorMessage}",
|
||||
"Error updating the share" : "Hebo un error la compartición",
|
||||
"File \"{path}\" has been unshared" : "El camín «{path}» dexó compartise",
|
||||
|
|
@ -300,9 +305,9 @@
|
|||
"Bundled permissions" : "Permisos agrupaos",
|
||||
"Only works for users with access to this folder" : "Namás funciona pa los usuarios con accesu a esta carpeta",
|
||||
"Only works for users with access to this file" : "Namás funciona pa los usuarios con accesu a esti ficheru",
|
||||
"File drop" : "Suelta de ficheros",
|
||||
"Circle" : "Círculu",
|
||||
"Update" : "Anovar",
|
||||
"Share with " : "Compartir con",
|
||||
"No other users with access found" : "Nun s'atopó nengún usuariu más con accesu",
|
||||
"No entries found in this folder" : "Nun s'atopó nenguna entrada nesta carpeta",
|
||||
"Name" : "Nome",
|
||||
|
|
|
|||
|
|
@ -100,6 +100,7 @@ OC.L10N.register(
|
|||
"Share must at least have READ or CREATE permissions" : "Споделянето трябва да има права поне за ЧЕТЕНЕ или СЪЗДАВАНЕ",
|
||||
"Share must have READ permission if UPDATE or DELETE permission is set" : "Споделянето трябва да има право за ЧЕТЕНЕ ако е зададено право за ОБНОВЯВАНЕ или за ИЗТРИВАНЕ",
|
||||
"\"Sending the password by Nextcloud Talk\" for sharing a file or folder failed because Nextcloud Talk is not enabled." : "„Изпращането на паролата от Nextcloud Talk“ за споделяне на файл или папка не беше успешно, тъй като Nextcloud Talk не е активиран.",
|
||||
"Wrong password" : "Грешна парола",
|
||||
"shared by %s" : "споделено от %s",
|
||||
"Download all files" : "Изтегли всички файлове",
|
||||
"Direct link" : "Директна връзка",
|
||||
|
|
@ -112,6 +113,19 @@ OC.L10N.register(
|
|||
"You received {share} to group {group} as a share by {user}" : "Получихте {share} за група {group} като споделяне от {user}",
|
||||
"Accept" : "Приемане",
|
||||
"Decline" : "Отхвърляне",
|
||||
"Expiration date" : "Валидност",
|
||||
"Set a password" : "Задаване на парола",
|
||||
"Password" : "Парола",
|
||||
"Share link" : "Връзка за споделяне",
|
||||
"Copy to clipboard" : "Копиране в клипборда",
|
||||
"Send link via email" : "Сподели връзка с имейл",
|
||||
"Link copied to clipboard" : "Връзката е копирана в клипборда",
|
||||
"Select" : "Избери",
|
||||
"Cancel" : "Отказ",
|
||||
"Continue" : "Продължаване",
|
||||
"Close" : "Затваряне",
|
||||
"Error creating the share: {errorMessage}" : "Грешка при създаване на споделянето: {errorMessage}",
|
||||
"Error creating the share" : "Грешка при създаване на споделянето",
|
||||
"Sharing" : "Споделяне",
|
||||
"Error while toggling options" : "Грешка при превключване на опциите",
|
||||
"Set default folder for accepted shares" : "Задаване на папка по подразбиране за приети споделяния",
|
||||
|
|
@ -142,7 +156,6 @@ OC.L10N.register(
|
|||
"Expiration date (enforced)" : "Дата на изтичане (приложена)",
|
||||
"Enter a date" : "Въведи дата",
|
||||
"Create share" : "Създаване на споделяне",
|
||||
"Cancel" : "Отказ",
|
||||
"Add another link" : "Добави още една връзка",
|
||||
"Create a new share link" : "Създаване на нова връзка за споделяне",
|
||||
"{shareWith} by {initiator}" : "{shareWith} чрез {initiator}",
|
||||
|
|
@ -150,7 +163,6 @@ OC.L10N.register(
|
|||
"Mail share ({label})" : "Споделяне на поща ({label})",
|
||||
"Share link ({label})" : "Споделяне на връзка ({label})",
|
||||
"Share link ({index})" : "Споделяне на връзка ({index})",
|
||||
"Share link" : "Връзка за споделяне",
|
||||
"Actions for \"{title}\"" : "Действия за „{title}“",
|
||||
"Copy public link of \"{title}\" to clipboard" : "Копиране на публичната връзка на „{title}“ в клипборда",
|
||||
"Error, please enter proper password and/or expiration date" : "Грешка, моля да въведете правилната парола и / или срок на годност",
|
||||
|
|
@ -158,7 +170,6 @@ OC.L10N.register(
|
|||
"Error while creating the share" : "Грешка при създаване на споделянето",
|
||||
"View only" : "Само изглед",
|
||||
"Can edit" : "Може да се редактира",
|
||||
"File drop" : "Пускане/Преместване/ на файл",
|
||||
"Custom permissions" : "Персонализиране на права",
|
||||
"Search for share recipients" : "Търсене на получатели на споделяне",
|
||||
"No recommendations. Start typing." : "Няма препоръки. Започнете да пишете.",
|
||||
|
|
@ -179,12 +190,10 @@ OC.L10N.register(
|
|||
"Allow editing" : "Разреши редактиране",
|
||||
"Advanced settings" : "Допълнителни настройки",
|
||||
"Share label" : " Споделяне на етикет",
|
||||
"Password" : "Парола",
|
||||
"Password expires {passwordExpirationTime}" : "Паролата изтича {passwordExpirationTime}",
|
||||
"Password expired" : "Паролата е изтекла",
|
||||
"Video verification" : "Видео потвърждение",
|
||||
"Set expiration date" : "Срок на валидност",
|
||||
"Expiration date" : "Валидност",
|
||||
"Hide download" : "Скрий свалянето",
|
||||
"Allow download" : "Позволяване на изтегляне/сваляне/",
|
||||
"Note to recipient" : "Бележка за получателя",
|
||||
|
|
@ -203,8 +212,6 @@ OC.L10N.register(
|
|||
"Shared with you by {owner}" : "Споделено с Вас от {owner}.",
|
||||
"Shared" : "Споделен",
|
||||
"Link to a file" : "Линк към файл",
|
||||
"Error creating the share: {errorMessage}" : "Грешка при създаване на споделянето: {errorMessage}",
|
||||
"Error creating the share" : "Грешка при създаване на споделянето",
|
||||
"Error updating the share: {errorMessage}" : "Грешка приактуализиране на споделянето: {errorMessage}",
|
||||
"Error updating the share" : "Грешка при актуализиране на споделянето",
|
||||
"File \"{path}\" has been unshared" : "Файл „{path}“ не е споделен",
|
||||
|
|
@ -259,6 +266,7 @@ OC.L10N.register(
|
|||
"Bundled permissions" : "Пакет от права",
|
||||
"Only works for users with access to this folder" : "Работи само за потребители, които имат достъп до тази папка",
|
||||
"Only works for users with access to this file" : "Работи само за потребители, които имат достъп до този файл",
|
||||
"File drop" : "Пускане/Преместване/ на файл",
|
||||
"Circle" : "Кръг",
|
||||
"Update" : "Обновяване",
|
||||
"No other users with access found" : "Няма намерени други потребители с достъп",
|
||||
|
|
|
|||
|
|
@ -98,6 +98,7 @@
|
|||
"Share must at least have READ or CREATE permissions" : "Споделянето трябва да има права поне за ЧЕТЕНЕ или СЪЗДАВАНЕ",
|
||||
"Share must have READ permission if UPDATE or DELETE permission is set" : "Споделянето трябва да има право за ЧЕТЕНЕ ако е зададено право за ОБНОВЯВАНЕ или за ИЗТРИВАНЕ",
|
||||
"\"Sending the password by Nextcloud Talk\" for sharing a file or folder failed because Nextcloud Talk is not enabled." : "„Изпращането на паролата от Nextcloud Talk“ за споделяне на файл или папка не беше успешно, тъй като Nextcloud Talk не е активиран.",
|
||||
"Wrong password" : "Грешна парола",
|
||||
"shared by %s" : "споделено от %s",
|
||||
"Download all files" : "Изтегли всички файлове",
|
||||
"Direct link" : "Директна връзка",
|
||||
|
|
@ -110,6 +111,19 @@
|
|||
"You received {share} to group {group} as a share by {user}" : "Получихте {share} за група {group} като споделяне от {user}",
|
||||
"Accept" : "Приемане",
|
||||
"Decline" : "Отхвърляне",
|
||||
"Expiration date" : "Валидност",
|
||||
"Set a password" : "Задаване на парола",
|
||||
"Password" : "Парола",
|
||||
"Share link" : "Връзка за споделяне",
|
||||
"Copy to clipboard" : "Копиране в клипборда",
|
||||
"Send link via email" : "Сподели връзка с имейл",
|
||||
"Link copied to clipboard" : "Връзката е копирана в клипборда",
|
||||
"Select" : "Избери",
|
||||
"Cancel" : "Отказ",
|
||||
"Continue" : "Продължаване",
|
||||
"Close" : "Затваряне",
|
||||
"Error creating the share: {errorMessage}" : "Грешка при създаване на споделянето: {errorMessage}",
|
||||
"Error creating the share" : "Грешка при създаване на споделянето",
|
||||
"Sharing" : "Споделяне",
|
||||
"Error while toggling options" : "Грешка при превключване на опциите",
|
||||
"Set default folder for accepted shares" : "Задаване на папка по подразбиране за приети споделяния",
|
||||
|
|
@ -140,7 +154,6 @@
|
|||
"Expiration date (enforced)" : "Дата на изтичане (приложена)",
|
||||
"Enter a date" : "Въведи дата",
|
||||
"Create share" : "Създаване на споделяне",
|
||||
"Cancel" : "Отказ",
|
||||
"Add another link" : "Добави още една връзка",
|
||||
"Create a new share link" : "Създаване на нова връзка за споделяне",
|
||||
"{shareWith} by {initiator}" : "{shareWith} чрез {initiator}",
|
||||
|
|
@ -148,7 +161,6 @@
|
|||
"Mail share ({label})" : "Споделяне на поща ({label})",
|
||||
"Share link ({label})" : "Споделяне на връзка ({label})",
|
||||
"Share link ({index})" : "Споделяне на връзка ({index})",
|
||||
"Share link" : "Връзка за споделяне",
|
||||
"Actions for \"{title}\"" : "Действия за „{title}“",
|
||||
"Copy public link of \"{title}\" to clipboard" : "Копиране на публичната връзка на „{title}“ в клипборда",
|
||||
"Error, please enter proper password and/or expiration date" : "Грешка, моля да въведете правилната парола и / или срок на годност",
|
||||
|
|
@ -156,7 +168,6 @@
|
|||
"Error while creating the share" : "Грешка при създаване на споделянето",
|
||||
"View only" : "Само изглед",
|
||||
"Can edit" : "Може да се редактира",
|
||||
"File drop" : "Пускане/Преместване/ на файл",
|
||||
"Custom permissions" : "Персонализиране на права",
|
||||
"Search for share recipients" : "Търсене на получатели на споделяне",
|
||||
"No recommendations. Start typing." : "Няма препоръки. Започнете да пишете.",
|
||||
|
|
@ -177,12 +188,10 @@
|
|||
"Allow editing" : "Разреши редактиране",
|
||||
"Advanced settings" : "Допълнителни настройки",
|
||||
"Share label" : " Споделяне на етикет",
|
||||
"Password" : "Парола",
|
||||
"Password expires {passwordExpirationTime}" : "Паролата изтича {passwordExpirationTime}",
|
||||
"Password expired" : "Паролата е изтекла",
|
||||
"Video verification" : "Видео потвърждение",
|
||||
"Set expiration date" : "Срок на валидност",
|
||||
"Expiration date" : "Валидност",
|
||||
"Hide download" : "Скрий свалянето",
|
||||
"Allow download" : "Позволяване на изтегляне/сваляне/",
|
||||
"Note to recipient" : "Бележка за получателя",
|
||||
|
|
@ -201,8 +210,6 @@
|
|||
"Shared with you by {owner}" : "Споделено с Вас от {owner}.",
|
||||
"Shared" : "Споделен",
|
||||
"Link to a file" : "Линк към файл",
|
||||
"Error creating the share: {errorMessage}" : "Грешка при създаване на споделянето: {errorMessage}",
|
||||
"Error creating the share" : "Грешка при създаване на споделянето",
|
||||
"Error updating the share: {errorMessage}" : "Грешка приактуализиране на споделянето: {errorMessage}",
|
||||
"Error updating the share" : "Грешка при актуализиране на споделянето",
|
||||
"File \"{path}\" has been unshared" : "Файл „{path}“ не е споделен",
|
||||
|
|
@ -257,6 +264,7 @@
|
|||
"Bundled permissions" : "Пакет от права",
|
||||
"Only works for users with access to this folder" : "Работи само за потребители, които имат достъп до тази папка",
|
||||
"Only works for users with access to this file" : "Работи само за потребители, които имат достъп до този файл",
|
||||
"File drop" : "Пускане/Преместване/ на файл",
|
||||
"Circle" : "Кръг",
|
||||
"Update" : "Обновяване",
|
||||
"No other users with access found" : "Няма намерени други потребители с достъп",
|
||||
|
|
|
|||
|
|
@ -102,6 +102,7 @@ OC.L10N.register(
|
|||
"Share must at least have READ or CREATE permissions" : "L'element compartit ha de tenir almenys permisos de lectura o creació",
|
||||
"Share must have READ permission if UPDATE or DELETE permission is set" : "L'element compartit ha de tenir permís de lectura si s'ha establert permís d'actualització o supressió",
|
||||
"\"Sending the password by Nextcloud Talk\" for sharing a file or folder failed because Nextcloud Talk is not enabled." : "No s'ha pogut enviar la contrasenya per Converses del Nextcloud per a compartir un fitxer o una carpeta perquè l'aplicació Converses del Nextcloud no està habilitada.",
|
||||
"Wrong password" : "Contrasenya incorrecta",
|
||||
"shared by %s" : "compartit per %s",
|
||||
"Download all files" : "Baixa tots els fitxers",
|
||||
"Direct link" : "Enllaç directe",
|
||||
|
|
@ -115,6 +116,17 @@ OC.L10N.register(
|
|||
"Accept" : "Accepta",
|
||||
"Decline" : "Rebutja",
|
||||
"This application enables people to share files within Nextcloud. If enabled, the admin can choose which groups can share files. The applicable people can then share files and folders with other accounts and groups within Nextcloud. In addition, if the admin enables the share link feature, an external link can be used to share files with other people outside of Nextcloud. Admins can also enforce passwords, expirations dates, and enable server to server sharing via share links, as well as sharing from mobile devices.\nTurning the feature off removes shared files and folders on the server for all share recipients, and also on the sync clients and mobile apps. More information is available in the Nextcloud Documentation." : "Aquesta aplicació permet a les persones compartir fitxers en el Nextcloud. Si està habilitada, l'administrador pot triar quins grups poden compartir fitxers. Les persones amb permís poden compartir fitxers i carpetes amb altres comptes i grups del Nextcloud. A més, si l'administrador activa la característica de compartir enllaços, es poden utilitzar enllaços externs per a compartir fitxers amb altres comptes fora del Nextcloud. Els administradors també poden aplicar contrasenyes, dates de caducitat i habilitar l'ús compartit entre servidors mitjançant enllaços d'ús compartit, així com l'ús compartit des de dispositius mòbils.\nSi inhabiliteu la característica, se suprimiran els fitxers i les carpetes compartides del servidor per a tots els destinataris i també per als clients de sincronització i les aplicacions per a mòbils. Podeu trobar més informació en la documentació del Nextcloud.",
|
||||
"Expiration date" : "Data de caducitat",
|
||||
"Set a password" : "Configura una contrasenya",
|
||||
"Password" : "Contrasenya",
|
||||
"Share link" : "Comparteix un enllaç",
|
||||
"Copy to clipboard" : "Copia-ho al porta-retalls",
|
||||
"Link copied to clipboard" : "Enllaç copiat al porta-retalls",
|
||||
"Cancel" : "Cancel·la",
|
||||
"Continue" : "Continuar",
|
||||
"Close" : "Tanca",
|
||||
"Error creating the share: {errorMessage}" : "S'ha produït un error en crear l'element compartit: {errorMessage}",
|
||||
"Error creating the share" : "S'ha produït un error en crear l'element compartit",
|
||||
"Sharing" : "Ús compartit",
|
||||
"Accept shares from other accounts and groups by default" : "Accepta els elements compartits d'altres comptes i grups per defecte",
|
||||
"Error while toggling options" : "S'ha produït un error en canviar les opcions",
|
||||
|
|
@ -149,7 +161,6 @@ OC.L10N.register(
|
|||
"Expiration date (enforced)" : "Data de venciment (obligatori)",
|
||||
"Enter a date" : "Introduïu una data",
|
||||
"Create share" : "Crea l'element compartit",
|
||||
"Cancel" : "Cancel·la",
|
||||
"Customize link" : "Personalitza l'enllaç",
|
||||
"Generate QR code" : "Genera un codi QR",
|
||||
"Add another link" : "Afegeix un altre enllaç",
|
||||
|
|
@ -159,7 +170,6 @@ OC.L10N.register(
|
|||
"Mail share ({label})" : "Comparteix per correu ({label})",
|
||||
"Share link ({label})" : "Comparteix un enllaç ({label})",
|
||||
"Share link ({index})" : "Comparteix un enllaç ({index})",
|
||||
"Share link" : "Comparteix un enllaç",
|
||||
"Actions for \"{title}\"" : "Accions per a «{title}»",
|
||||
"Copy public link of \"{title}\" to clipboard" : "Copia l'enllaç públic de «{title}» al porta-retalls",
|
||||
"Error, please enter proper password and/or expiration date" : "S'ha produït un error, introduïu la contrasenya o la data de caducitat adequada",
|
||||
|
|
@ -168,7 +178,6 @@ OC.L10N.register(
|
|||
"Quick share options, the current selected is \"{selectedOption}\"" : "Opcions ràpides d'ús compartit, l'opció seleccionada actualment és «{selectedOption}»",
|
||||
"View only" : "Només visualitació",
|
||||
"Can edit" : "Pot editar",
|
||||
"File drop" : "Pujada de fitxers",
|
||||
"Custom permissions" : "Permisos personalitzats",
|
||||
"Search for share recipients" : "Cerqueu destinataris de l'element compartit",
|
||||
"No recommendations. Start typing." : "No hi ha cap recomanació. Comenceu a escriure.",
|
||||
|
|
@ -192,12 +201,10 @@ OC.L10N.register(
|
|||
"Advanced settings" : "Paràmetres avançats",
|
||||
"Share label" : "Etiqueta d'ús compartit",
|
||||
"Set password" : "Estableix una contrasenya",
|
||||
"Password" : "Contrasenya",
|
||||
"Password expires {passwordExpirationTime}" : "La contrasenya caduca el {passwordExpirationTime}",
|
||||
"Password expired" : "La contrasenya ha caducat",
|
||||
"Video verification" : "Verificació de vídeo",
|
||||
"Set expiration date" : "Estableix la data de caducitat",
|
||||
"Expiration date" : "Data de caducitat",
|
||||
"Hide download" : "Amaga la baixada",
|
||||
"Allow download" : "Permet la baixada",
|
||||
"Note to recipient" : "Nota per al destinatari",
|
||||
|
|
@ -234,8 +241,6 @@ OC.L10N.register(
|
|||
"Shared by {ownerDisplayName}" : "Compartit per {ownerDisplayName}",
|
||||
"Show sharing options" : "Mostra les opcions d'ús compartit",
|
||||
"Link to a file" : "Enllaç a un fitxer",
|
||||
"Error creating the share: {errorMessage}" : "S'ha produït un error en crear l'element compartit: {errorMessage}",
|
||||
"Error creating the share" : "S'ha produït un error en crear l'element compartit",
|
||||
"Error updating the share: {errorMessage}" : "S'ha produït un error en actualitzar l'element compartit: {errorMessage}",
|
||||
"Error updating the share" : "S'ha produït un error en actualitzar l'element compartit",
|
||||
"File \"{path}\" has been unshared" : "El fitxer «{path}» s'ha deixat de compartir",
|
||||
|
|
@ -302,9 +307,9 @@ OC.L10N.register(
|
|||
"Bundled permissions" : "Permisos agrupats",
|
||||
"Only works for users with access to this folder" : "Només funciona per als usuaris amb accés a aquesta carpeta",
|
||||
"Only works for users with access to this file" : "Només funciona per als usuaris amb accés a aquest fitxer",
|
||||
"File drop" : "Pujada de fitxers",
|
||||
"Circle" : "Cercle",
|
||||
"Update" : "Actualitza",
|
||||
"Share with " : "Comparteix amb",
|
||||
"No other users with access found" : "No s'ha trobat cap altre usuari amb accés",
|
||||
"No entries found in this folder" : "No hi ha cap entrada en aquesta carpeta",
|
||||
"Name" : "Nom",
|
||||
|
|
|
|||
|
|
@ -100,6 +100,7 @@
|
|||
"Share must at least have READ or CREATE permissions" : "L'element compartit ha de tenir almenys permisos de lectura o creació",
|
||||
"Share must have READ permission if UPDATE or DELETE permission is set" : "L'element compartit ha de tenir permís de lectura si s'ha establert permís d'actualització o supressió",
|
||||
"\"Sending the password by Nextcloud Talk\" for sharing a file or folder failed because Nextcloud Talk is not enabled." : "No s'ha pogut enviar la contrasenya per Converses del Nextcloud per a compartir un fitxer o una carpeta perquè l'aplicació Converses del Nextcloud no està habilitada.",
|
||||
"Wrong password" : "Contrasenya incorrecta",
|
||||
"shared by %s" : "compartit per %s",
|
||||
"Download all files" : "Baixa tots els fitxers",
|
||||
"Direct link" : "Enllaç directe",
|
||||
|
|
@ -113,6 +114,17 @@
|
|||
"Accept" : "Accepta",
|
||||
"Decline" : "Rebutja",
|
||||
"This application enables people to share files within Nextcloud. If enabled, the admin can choose which groups can share files. The applicable people can then share files and folders with other accounts and groups within Nextcloud. In addition, if the admin enables the share link feature, an external link can be used to share files with other people outside of Nextcloud. Admins can also enforce passwords, expirations dates, and enable server to server sharing via share links, as well as sharing from mobile devices.\nTurning the feature off removes shared files and folders on the server for all share recipients, and also on the sync clients and mobile apps. More information is available in the Nextcloud Documentation." : "Aquesta aplicació permet a les persones compartir fitxers en el Nextcloud. Si està habilitada, l'administrador pot triar quins grups poden compartir fitxers. Les persones amb permís poden compartir fitxers i carpetes amb altres comptes i grups del Nextcloud. A més, si l'administrador activa la característica de compartir enllaços, es poden utilitzar enllaços externs per a compartir fitxers amb altres comptes fora del Nextcloud. Els administradors també poden aplicar contrasenyes, dates de caducitat i habilitar l'ús compartit entre servidors mitjançant enllaços d'ús compartit, així com l'ús compartit des de dispositius mòbils.\nSi inhabiliteu la característica, se suprimiran els fitxers i les carpetes compartides del servidor per a tots els destinataris i també per als clients de sincronització i les aplicacions per a mòbils. Podeu trobar més informació en la documentació del Nextcloud.",
|
||||
"Expiration date" : "Data de caducitat",
|
||||
"Set a password" : "Configura una contrasenya",
|
||||
"Password" : "Contrasenya",
|
||||
"Share link" : "Comparteix un enllaç",
|
||||
"Copy to clipboard" : "Copia-ho al porta-retalls",
|
||||
"Link copied to clipboard" : "Enllaç copiat al porta-retalls",
|
||||
"Cancel" : "Cancel·la",
|
||||
"Continue" : "Continuar",
|
||||
"Close" : "Tanca",
|
||||
"Error creating the share: {errorMessage}" : "S'ha produït un error en crear l'element compartit: {errorMessage}",
|
||||
"Error creating the share" : "S'ha produït un error en crear l'element compartit",
|
||||
"Sharing" : "Ús compartit",
|
||||
"Accept shares from other accounts and groups by default" : "Accepta els elements compartits d'altres comptes i grups per defecte",
|
||||
"Error while toggling options" : "S'ha produït un error en canviar les opcions",
|
||||
|
|
@ -147,7 +159,6 @@
|
|||
"Expiration date (enforced)" : "Data de venciment (obligatori)",
|
||||
"Enter a date" : "Introduïu una data",
|
||||
"Create share" : "Crea l'element compartit",
|
||||
"Cancel" : "Cancel·la",
|
||||
"Customize link" : "Personalitza l'enllaç",
|
||||
"Generate QR code" : "Genera un codi QR",
|
||||
"Add another link" : "Afegeix un altre enllaç",
|
||||
|
|
@ -157,7 +168,6 @@
|
|||
"Mail share ({label})" : "Comparteix per correu ({label})",
|
||||
"Share link ({label})" : "Comparteix un enllaç ({label})",
|
||||
"Share link ({index})" : "Comparteix un enllaç ({index})",
|
||||
"Share link" : "Comparteix un enllaç",
|
||||
"Actions for \"{title}\"" : "Accions per a «{title}»",
|
||||
"Copy public link of \"{title}\" to clipboard" : "Copia l'enllaç públic de «{title}» al porta-retalls",
|
||||
"Error, please enter proper password and/or expiration date" : "S'ha produït un error, introduïu la contrasenya o la data de caducitat adequada",
|
||||
|
|
@ -166,7 +176,6 @@
|
|||
"Quick share options, the current selected is \"{selectedOption}\"" : "Opcions ràpides d'ús compartit, l'opció seleccionada actualment és «{selectedOption}»",
|
||||
"View only" : "Només visualitació",
|
||||
"Can edit" : "Pot editar",
|
||||
"File drop" : "Pujada de fitxers",
|
||||
"Custom permissions" : "Permisos personalitzats",
|
||||
"Search for share recipients" : "Cerqueu destinataris de l'element compartit",
|
||||
"No recommendations. Start typing." : "No hi ha cap recomanació. Comenceu a escriure.",
|
||||
|
|
@ -190,12 +199,10 @@
|
|||
"Advanced settings" : "Paràmetres avançats",
|
||||
"Share label" : "Etiqueta d'ús compartit",
|
||||
"Set password" : "Estableix una contrasenya",
|
||||
"Password" : "Contrasenya",
|
||||
"Password expires {passwordExpirationTime}" : "La contrasenya caduca el {passwordExpirationTime}",
|
||||
"Password expired" : "La contrasenya ha caducat",
|
||||
"Video verification" : "Verificació de vídeo",
|
||||
"Set expiration date" : "Estableix la data de caducitat",
|
||||
"Expiration date" : "Data de caducitat",
|
||||
"Hide download" : "Amaga la baixada",
|
||||
"Allow download" : "Permet la baixada",
|
||||
"Note to recipient" : "Nota per al destinatari",
|
||||
|
|
@ -232,8 +239,6 @@
|
|||
"Shared by {ownerDisplayName}" : "Compartit per {ownerDisplayName}",
|
||||
"Show sharing options" : "Mostra les opcions d'ús compartit",
|
||||
"Link to a file" : "Enllaç a un fitxer",
|
||||
"Error creating the share: {errorMessage}" : "S'ha produït un error en crear l'element compartit: {errorMessage}",
|
||||
"Error creating the share" : "S'ha produït un error en crear l'element compartit",
|
||||
"Error updating the share: {errorMessage}" : "S'ha produït un error en actualitzar l'element compartit: {errorMessage}",
|
||||
"Error updating the share" : "S'ha produït un error en actualitzar l'element compartit",
|
||||
"File \"{path}\" has been unshared" : "El fitxer «{path}» s'ha deixat de compartir",
|
||||
|
|
@ -300,9 +305,9 @@
|
|||
"Bundled permissions" : "Permisos agrupats",
|
||||
"Only works for users with access to this folder" : "Només funciona per als usuaris amb accés a aquesta carpeta",
|
||||
"Only works for users with access to this file" : "Només funciona per als usuaris amb accés a aquest fitxer",
|
||||
"File drop" : "Pujada de fitxers",
|
||||
"Circle" : "Cercle",
|
||||
"Update" : "Actualitza",
|
||||
"Share with " : "Comparteix amb",
|
||||
"No other users with access found" : "No s'ha trobat cap altre usuari amb accés",
|
||||
"No entries found in this folder" : "No hi ha cap entrada en aquesta carpeta",
|
||||
"Name" : "Nom",
|
||||
|
|
|
|||
|
|
@ -100,6 +100,7 @@ OC.L10N.register(
|
|||
"Share must at least have READ or CREATE permissions" : "Je třeba, aby sdílení mělo alespoň oprávnění pro ČÍST nebo VYTVÁŘET",
|
||||
"Share must have READ permission if UPDATE or DELETE permission is set" : "Pokud je nastaveno oprávnění AKTUALIZOVAT nebo MAZAT je třeba, aby sdílení mělo oprávnění ČÍST",
|
||||
"\"Sending the password by Nextcloud Talk\" for sharing a file or folder failed because Nextcloud Talk is not enabled." : "„Zaslání hesla prostřednictvím Nextcloud Talk“ pro sdílení souboru či složky se nezdařilo protože Nextcloud Talk není zapnuté.",
|
||||
"Wrong password" : "Nesprávné heslo",
|
||||
"shared by %s" : "sdílí %s",
|
||||
"Download all files" : "Stáhnout všechny soubory",
|
||||
"Direct link" : "Přímý odkaz",
|
||||
|
|
@ -112,6 +113,19 @@ OC.L10N.register(
|
|||
"You received {share} to group {group} as a share by {user}" : "Obdrželi jste {share} do skupiny {group} jako sdílení od {user}",
|
||||
"Accept" : "Přijmout",
|
||||
"Decline" : "Odmítnout",
|
||||
"Expiration date" : "Datum skončení platnosti",
|
||||
"Set a password" : "Nastavit heslo",
|
||||
"Password" : "Heslo",
|
||||
"Share link" : "Odkaz pro sdílení",
|
||||
"Copy to clipboard" : "Zkopírovat do schránky",
|
||||
"Send link via email" : "Odeslat odkaz přes email",
|
||||
"Link copied to clipboard" : "Odkaz zkopírován do schánky",
|
||||
"Select" : "Vybrat",
|
||||
"Cancel" : "Storno",
|
||||
"Continue" : "Pokračovat",
|
||||
"Close" : "Zavřít",
|
||||
"Error creating the share: {errorMessage}" : "Chyba při vytváření sdílení: {errorMessage}",
|
||||
"Error creating the share" : "Chyba při vytváření sdílení",
|
||||
"Sharing" : "Sdílení",
|
||||
"Error while toggling options" : "Chyba při přepínání voleb",
|
||||
"Set default folder for accepted shares" : "Nastavit výchozí složku pro přijatá sdílení",
|
||||
|
|
@ -143,7 +157,6 @@ OC.L10N.register(
|
|||
"Expiration date (enforced)" : "Datum skončení platnosti (vynuceno)",
|
||||
"Enter a date" : "Zadejte datum",
|
||||
"Create share" : "Vytvořit sdílení",
|
||||
"Cancel" : "Storno",
|
||||
"Customize link" : "Přizpůsobit odkaz",
|
||||
"Add another link" : "Přidat další odkaz",
|
||||
"Create a new share link" : "Vytvořit nový odkaz pro sdílení",
|
||||
|
|
@ -152,7 +165,6 @@ OC.L10N.register(
|
|||
"Mail share ({label})" : "Sdílení e-mailem ({label})",
|
||||
"Share link ({label})" : "Odkaz na sdílení ({label})",
|
||||
"Share link ({index})" : "Odkaz na sdílení ({index})",
|
||||
"Share link" : "Odkaz pro sdílení",
|
||||
"Actions for \"{title}\"" : "Akce pro „{title}",
|
||||
"Copy public link of \"{title}\" to clipboard" : "Zkopírovat veřejný odkaz na „{title}“ do schránky",
|
||||
"Error, please enter proper password and/or expiration date" : "Chyba – zadejte správné heslo a/nebo datum skončení platnosti",
|
||||
|
|
@ -160,7 +172,6 @@ OC.L10N.register(
|
|||
"Error while creating the share" : "Chyba při vytváření sdílení",
|
||||
"View only" : "Pouze prohlížet",
|
||||
"Can edit" : "Může upravovat",
|
||||
"File drop" : "Předání souboru",
|
||||
"Custom permissions" : "Uživatelsky určená oprávnění",
|
||||
"Search for share recipients" : "Vyhledat příjemce sdílení",
|
||||
"No recommendations. Start typing." : "Žádná doporučení. Pište",
|
||||
|
|
@ -183,12 +194,10 @@ OC.L10N.register(
|
|||
"Advanced settings" : "Pokročilá nastavení",
|
||||
"Share label" : "Štítek sdílení",
|
||||
"Set password" : "Nastavit heslo",
|
||||
"Password" : "Heslo",
|
||||
"Password expires {passwordExpirationTime}" : "Platnost hesla skončí {passwordExpirationTime}",
|
||||
"Password expired" : "Platnost hesla skončila",
|
||||
"Video verification" : "Ověřování pomocí videa",
|
||||
"Set expiration date" : "Nastavit datum skončení platnosti",
|
||||
"Expiration date" : "Datum skončení platnosti",
|
||||
"Hide download" : "Skrýt stahování",
|
||||
"Allow download" : "Umožnit stahování",
|
||||
"Note to recipient" : "Poznámka pro příjemce",
|
||||
|
|
@ -222,8 +231,6 @@ OC.L10N.register(
|
|||
"Shared by {ownerDisplayName}" : "Nasdílel(a) {ownerDisplayName}",
|
||||
"Show sharing options" : "Zobrazit předvolby pro sdílení",
|
||||
"Link to a file" : "Odkaz na soubor",
|
||||
"Error creating the share: {errorMessage}" : "Chyba při vytváření sdílení: {errorMessage}",
|
||||
"Error creating the share" : "Chyba při vytváření sdílení",
|
||||
"Error updating the share: {errorMessage}" : "Chyba při aktualizaci sdílení: {errorMessage}",
|
||||
"Error updating the share" : "Chyba při aktualizaci sdílení",
|
||||
"File \"{path}\" has been unshared" : "Sdílení souboru „{path}“ bylo zrušeno",
|
||||
|
|
@ -290,9 +297,9 @@ OC.L10N.register(
|
|||
"Bundled permissions" : "Předvolená oprávnění",
|
||||
"Only works for users with access to this folder" : "Funguje pouze pro uživatele, kteří mají přístup k této složce",
|
||||
"Only works for users with access to this file" : "Funguje pouze pro uživatele, kteří mají přístup k tomuto souboru",
|
||||
"File drop" : "Předání souboru",
|
||||
"Circle" : "Okruh",
|
||||
"Update" : "Aktualizovat",
|
||||
"Share with " : "Sdílet s",
|
||||
"No other users with access found" : "Nenalezeni žádní další uživatelé, kteří mají přístup",
|
||||
"No entries found in this folder" : "V této složce nebylo nic nalezeno",
|
||||
"Name" : "Název",
|
||||
|
|
|
|||
|
|
@ -98,6 +98,7 @@
|
|||
"Share must at least have READ or CREATE permissions" : "Je třeba, aby sdílení mělo alespoň oprávnění pro ČÍST nebo VYTVÁŘET",
|
||||
"Share must have READ permission if UPDATE or DELETE permission is set" : "Pokud je nastaveno oprávnění AKTUALIZOVAT nebo MAZAT je třeba, aby sdílení mělo oprávnění ČÍST",
|
||||
"\"Sending the password by Nextcloud Talk\" for sharing a file or folder failed because Nextcloud Talk is not enabled." : "„Zaslání hesla prostřednictvím Nextcloud Talk“ pro sdílení souboru či složky se nezdařilo protože Nextcloud Talk není zapnuté.",
|
||||
"Wrong password" : "Nesprávné heslo",
|
||||
"shared by %s" : "sdílí %s",
|
||||
"Download all files" : "Stáhnout všechny soubory",
|
||||
"Direct link" : "Přímý odkaz",
|
||||
|
|
@ -110,6 +111,19 @@
|
|||
"You received {share} to group {group} as a share by {user}" : "Obdrželi jste {share} do skupiny {group} jako sdílení od {user}",
|
||||
"Accept" : "Přijmout",
|
||||
"Decline" : "Odmítnout",
|
||||
"Expiration date" : "Datum skončení platnosti",
|
||||
"Set a password" : "Nastavit heslo",
|
||||
"Password" : "Heslo",
|
||||
"Share link" : "Odkaz pro sdílení",
|
||||
"Copy to clipboard" : "Zkopírovat do schránky",
|
||||
"Send link via email" : "Odeslat odkaz přes email",
|
||||
"Link copied to clipboard" : "Odkaz zkopírován do schánky",
|
||||
"Select" : "Vybrat",
|
||||
"Cancel" : "Storno",
|
||||
"Continue" : "Pokračovat",
|
||||
"Close" : "Zavřít",
|
||||
"Error creating the share: {errorMessage}" : "Chyba při vytváření sdílení: {errorMessage}",
|
||||
"Error creating the share" : "Chyba při vytváření sdílení",
|
||||
"Sharing" : "Sdílení",
|
||||
"Error while toggling options" : "Chyba při přepínání voleb",
|
||||
"Set default folder for accepted shares" : "Nastavit výchozí složku pro přijatá sdílení",
|
||||
|
|
@ -141,7 +155,6 @@
|
|||
"Expiration date (enforced)" : "Datum skončení platnosti (vynuceno)",
|
||||
"Enter a date" : "Zadejte datum",
|
||||
"Create share" : "Vytvořit sdílení",
|
||||
"Cancel" : "Storno",
|
||||
"Customize link" : "Přizpůsobit odkaz",
|
||||
"Add another link" : "Přidat další odkaz",
|
||||
"Create a new share link" : "Vytvořit nový odkaz pro sdílení",
|
||||
|
|
@ -150,7 +163,6 @@
|
|||
"Mail share ({label})" : "Sdílení e-mailem ({label})",
|
||||
"Share link ({label})" : "Odkaz na sdílení ({label})",
|
||||
"Share link ({index})" : "Odkaz na sdílení ({index})",
|
||||
"Share link" : "Odkaz pro sdílení",
|
||||
"Actions for \"{title}\"" : "Akce pro „{title}",
|
||||
"Copy public link of \"{title}\" to clipboard" : "Zkopírovat veřejný odkaz na „{title}“ do schránky",
|
||||
"Error, please enter proper password and/or expiration date" : "Chyba – zadejte správné heslo a/nebo datum skončení platnosti",
|
||||
|
|
@ -158,7 +170,6 @@
|
|||
"Error while creating the share" : "Chyba při vytváření sdílení",
|
||||
"View only" : "Pouze prohlížet",
|
||||
"Can edit" : "Může upravovat",
|
||||
"File drop" : "Předání souboru",
|
||||
"Custom permissions" : "Uživatelsky určená oprávnění",
|
||||
"Search for share recipients" : "Vyhledat příjemce sdílení",
|
||||
"No recommendations. Start typing." : "Žádná doporučení. Pište",
|
||||
|
|
@ -181,12 +192,10 @@
|
|||
"Advanced settings" : "Pokročilá nastavení",
|
||||
"Share label" : "Štítek sdílení",
|
||||
"Set password" : "Nastavit heslo",
|
||||
"Password" : "Heslo",
|
||||
"Password expires {passwordExpirationTime}" : "Platnost hesla skončí {passwordExpirationTime}",
|
||||
"Password expired" : "Platnost hesla skončila",
|
||||
"Video verification" : "Ověřování pomocí videa",
|
||||
"Set expiration date" : "Nastavit datum skončení platnosti",
|
||||
"Expiration date" : "Datum skončení platnosti",
|
||||
"Hide download" : "Skrýt stahování",
|
||||
"Allow download" : "Umožnit stahování",
|
||||
"Note to recipient" : "Poznámka pro příjemce",
|
||||
|
|
@ -220,8 +229,6 @@
|
|||
"Shared by {ownerDisplayName}" : "Nasdílel(a) {ownerDisplayName}",
|
||||
"Show sharing options" : "Zobrazit předvolby pro sdílení",
|
||||
"Link to a file" : "Odkaz na soubor",
|
||||
"Error creating the share: {errorMessage}" : "Chyba při vytváření sdílení: {errorMessage}",
|
||||
"Error creating the share" : "Chyba při vytváření sdílení",
|
||||
"Error updating the share: {errorMessage}" : "Chyba při aktualizaci sdílení: {errorMessage}",
|
||||
"Error updating the share" : "Chyba při aktualizaci sdílení",
|
||||
"File \"{path}\" has been unshared" : "Sdílení souboru „{path}“ bylo zrušeno",
|
||||
|
|
@ -288,9 +295,9 @@
|
|||
"Bundled permissions" : "Předvolená oprávnění",
|
||||
"Only works for users with access to this folder" : "Funguje pouze pro uživatele, kteří mají přístup k této složce",
|
||||
"Only works for users with access to this file" : "Funguje pouze pro uživatele, kteří mají přístup k tomuto souboru",
|
||||
"File drop" : "Předání souboru",
|
||||
"Circle" : "Okruh",
|
||||
"Update" : "Aktualizovat",
|
||||
"Share with " : "Sdílet s",
|
||||
"No other users with access found" : "Nenalezeni žádní další uživatelé, kteří mají přístup",
|
||||
"No entries found in this folder" : "V této složce nebylo nic nalezeno",
|
||||
"Name" : "Název",
|
||||
|
|
|
|||
|
|
@ -99,12 +99,25 @@ OC.L10N.register(
|
|||
"Could not lock node" : "Kunne ikke låse node",
|
||||
"Could not lock path" : "Stien kunne ikke låses",
|
||||
"Wrong or no update parameter given" : "Forkert eller manglende opdateringsparameter",
|
||||
"Wrong password" : "Forkert adgangskode",
|
||||
"shared by %s" : "delt af %s",
|
||||
"Direct link" : "Direkte link",
|
||||
"Share API is disabled" : "Delings-API er slået fra",
|
||||
"File sharing" : "Fildeling",
|
||||
"Accept" : "Accepter",
|
||||
"Decline" : "Afvis",
|
||||
"Expiration date" : "Udløbsdato",
|
||||
"Set a password" : "Indstil en adgangskode",
|
||||
"Password" : "Kodeord",
|
||||
"Share link" : "Del link",
|
||||
"Copy to clipboard" : "Kopier til udklipsholder",
|
||||
"Send link via email" : "Send link via e-mail",
|
||||
"Link copied to clipboard" : "Link kopieret til udklipsholder",
|
||||
"Select" : "Vælg",
|
||||
"Cancel" : "Annullér",
|
||||
"Continue" : "Videre",
|
||||
"Close" : "Luk",
|
||||
"Error creating the share" : "Fejl ved skabelse af delt drev",
|
||||
"Sharing" : "Deling",
|
||||
"Reset" : "Nulstil",
|
||||
"Invalid path selected" : "Ugyldig sti valgt.",
|
||||
|
|
@ -121,13 +134,10 @@ OC.L10N.register(
|
|||
"Password protection" : "Adgangskodebeskyttelse",
|
||||
"Enter a password" : "Indtast en adgangskode",
|
||||
"Enter a date" : "Indtast en dato",
|
||||
"Cancel" : "Annullér",
|
||||
"Add another link" : "Tilføj et link mere",
|
||||
"Create a new share link" : "Opret et nyt delingslink",
|
||||
"Share link" : "Del link",
|
||||
"View only" : "Kun visning",
|
||||
"Can edit" : "Kan redigere",
|
||||
"File drop" : "Fil drop",
|
||||
"No recommendations. Start typing." : "Ingen anbefalinger. Begynd at skrive.",
|
||||
"Resharing is not allowed" : "Gendeling er ikke tilladt",
|
||||
"Searching …" : "Søger ...",
|
||||
|
|
@ -140,9 +150,7 @@ OC.L10N.register(
|
|||
"Allow editing" : "Tillad redigering",
|
||||
"Advanced settings" : "Avancerede indstillinger",
|
||||
"Set password" : "Sæt password",
|
||||
"Password" : "Kodeord",
|
||||
"Set expiration date" : "Angiv udløbsdato",
|
||||
"Expiration date" : "Udløbsdato",
|
||||
"Hide download" : "Skjul download",
|
||||
"Note to recipient" : "Note til modtager",
|
||||
"Read" : "Læst",
|
||||
|
|
@ -155,7 +163,6 @@ OC.L10N.register(
|
|||
"Shared with you by {owner}" : "Delt med dig {owner}",
|
||||
"Open in Files" : "Vis i filer",
|
||||
"Shared" : "Delt",
|
||||
"Error creating the share" : "Fejl ved skabelse af delt drev",
|
||||
"Shared by" : "Delt af",
|
||||
"Shared with" : "Delt med",
|
||||
"Shared with you and the group {group} by {owner}" : "Delt med dig og grupp {group} af {owner}",
|
||||
|
|
@ -198,9 +205,9 @@ OC.L10N.register(
|
|||
"Upload" : "Send",
|
||||
"Only works for users with access to this folder" : "Virker kun for brugere med adgang til denne folder",
|
||||
"Only works for users with access to this file" : "Virker kun for brugere med adgang til denne fil",
|
||||
"File drop" : "Fil drop",
|
||||
"Circle" : "Cirkel",
|
||||
"Update" : "Opdatér",
|
||||
"Share with " : "Del med",
|
||||
"No other users with access found" : "Ingen andre brugere med adgang fundet",
|
||||
"No entries found in this folder" : "Der blev ikke fundet poster i denne mappe",
|
||||
"Name" : "Navn",
|
||||
|
|
|
|||
|
|
@ -97,12 +97,25 @@
|
|||
"Could not lock node" : "Kunne ikke låse node",
|
||||
"Could not lock path" : "Stien kunne ikke låses",
|
||||
"Wrong or no update parameter given" : "Forkert eller manglende opdateringsparameter",
|
||||
"Wrong password" : "Forkert adgangskode",
|
||||
"shared by %s" : "delt af %s",
|
||||
"Direct link" : "Direkte link",
|
||||
"Share API is disabled" : "Delings-API er slået fra",
|
||||
"File sharing" : "Fildeling",
|
||||
"Accept" : "Accepter",
|
||||
"Decline" : "Afvis",
|
||||
"Expiration date" : "Udløbsdato",
|
||||
"Set a password" : "Indstil en adgangskode",
|
||||
"Password" : "Kodeord",
|
||||
"Share link" : "Del link",
|
||||
"Copy to clipboard" : "Kopier til udklipsholder",
|
||||
"Send link via email" : "Send link via e-mail",
|
||||
"Link copied to clipboard" : "Link kopieret til udklipsholder",
|
||||
"Select" : "Vælg",
|
||||
"Cancel" : "Annullér",
|
||||
"Continue" : "Videre",
|
||||
"Close" : "Luk",
|
||||
"Error creating the share" : "Fejl ved skabelse af delt drev",
|
||||
"Sharing" : "Deling",
|
||||
"Reset" : "Nulstil",
|
||||
"Invalid path selected" : "Ugyldig sti valgt.",
|
||||
|
|
@ -119,13 +132,10 @@
|
|||
"Password protection" : "Adgangskodebeskyttelse",
|
||||
"Enter a password" : "Indtast en adgangskode",
|
||||
"Enter a date" : "Indtast en dato",
|
||||
"Cancel" : "Annullér",
|
||||
"Add another link" : "Tilføj et link mere",
|
||||
"Create a new share link" : "Opret et nyt delingslink",
|
||||
"Share link" : "Del link",
|
||||
"View only" : "Kun visning",
|
||||
"Can edit" : "Kan redigere",
|
||||
"File drop" : "Fil drop",
|
||||
"No recommendations. Start typing." : "Ingen anbefalinger. Begynd at skrive.",
|
||||
"Resharing is not allowed" : "Gendeling er ikke tilladt",
|
||||
"Searching …" : "Søger ...",
|
||||
|
|
@ -138,9 +148,7 @@
|
|||
"Allow editing" : "Tillad redigering",
|
||||
"Advanced settings" : "Avancerede indstillinger",
|
||||
"Set password" : "Sæt password",
|
||||
"Password" : "Kodeord",
|
||||
"Set expiration date" : "Angiv udløbsdato",
|
||||
"Expiration date" : "Udløbsdato",
|
||||
"Hide download" : "Skjul download",
|
||||
"Note to recipient" : "Note til modtager",
|
||||
"Read" : "Læst",
|
||||
|
|
@ -153,7 +161,6 @@
|
|||
"Shared with you by {owner}" : "Delt med dig {owner}",
|
||||
"Open in Files" : "Vis i filer",
|
||||
"Shared" : "Delt",
|
||||
"Error creating the share" : "Fejl ved skabelse af delt drev",
|
||||
"Shared by" : "Delt af",
|
||||
"Shared with" : "Delt med",
|
||||
"Shared with you and the group {group} by {owner}" : "Delt med dig og grupp {group} af {owner}",
|
||||
|
|
@ -196,9 +203,9 @@
|
|||
"Upload" : "Send",
|
||||
"Only works for users with access to this folder" : "Virker kun for brugere med adgang til denne folder",
|
||||
"Only works for users with access to this file" : "Virker kun for brugere med adgang til denne fil",
|
||||
"File drop" : "Fil drop",
|
||||
"Circle" : "Cirkel",
|
||||
"Update" : "Opdatér",
|
||||
"Share with " : "Del med",
|
||||
"No other users with access found" : "Ingen andre brugere med adgang fundet",
|
||||
"No entries found in this folder" : "Der blev ikke fundet poster i denne mappe",
|
||||
"Name" : "Navn",
|
||||
|
|
|
|||
|
|
@ -100,6 +100,7 @@ OC.L10N.register(
|
|||
"Share must at least have READ or CREATE permissions" : "Freigabe muss mindestens Lese- oder Erstell-Rechte haben",
|
||||
"Share must have READ permission if UPDATE or DELETE permission is set" : "Die Freigabe muss das Recht Lesen haben, wenn das Recht für Aktualisieren oder Löschen gesetzt ist",
|
||||
"\"Sending the password by Nextcloud Talk\" for sharing a file or folder failed because Nextcloud Talk is not enabled." : "\"Senden des Passwortes über Nextcloud Talk\" zum Teilen einer Datei gescheitert, da Nextcloud Talk nicht verfügbar ist.",
|
||||
"Wrong password" : "Falsches Passwort",
|
||||
"shared by %s" : "von %s geteilt",
|
||||
"Download all files" : "Alle Dateien herunterladen",
|
||||
"Direct link" : "Direkter Link",
|
||||
|
|
@ -112,6 +113,19 @@ OC.L10N.register(
|
|||
"You received {share} to group {group} as a share by {user}" : "Du hast {share} zur Gruppe {group} als Freigabe von {user} empfangen",
|
||||
"Accept" : "Akzeptieren",
|
||||
"Decline" : "Ablehnen",
|
||||
"Expiration date" : "Ablaufdatum",
|
||||
"Set a password" : "Benötigt keine Übersetzung. Hier wird nur die formelle Übersetzung verwendet (de_DE).",
|
||||
"Password" : "Passwort",
|
||||
"Share link" : "Link teilen",
|
||||
"Copy to clipboard" : "In die Zwischenablage kopieren",
|
||||
"Send link via email" : "Link als E-Mail verschicken",
|
||||
"Link copied to clipboard" : "Link wurde in die Zwischenablage kopiert",
|
||||
"Select" : "Auswählen",
|
||||
"Cancel" : "Abbrechen",
|
||||
"Continue" : "Fortsetzen",
|
||||
"Close" : "Schließen",
|
||||
"Error creating the share: {errorMessage}" : "Fehler beim Erstellen der Freigabe: {errorMessage}",
|
||||
"Error creating the share" : "Fehler beim Erstellen der Freigabe",
|
||||
"Sharing" : "Teilen",
|
||||
"Error while toggling options" : "Fehler beim Umschalten der Optionen",
|
||||
"Set default folder for accepted shares" : "Standardordner für akzeptierte Freigaben wählen",
|
||||
|
|
@ -145,7 +159,6 @@ OC.L10N.register(
|
|||
"Expiration date (enforced)" : "Ablaufdatum (erzwungen)",
|
||||
"Enter a date" : "Datum eingeben",
|
||||
"Create share" : "Freigabe erstellen",
|
||||
"Cancel" : "Abbrechen",
|
||||
"Customize link" : "Freigabelink anpassen",
|
||||
"Add another link" : "Weiteren Link hinzufügen",
|
||||
"Create a new share link" : "Neuen Freigabe-Link erstellen",
|
||||
|
|
@ -154,7 +167,6 @@ OC.L10N.register(
|
|||
"Mail share ({label})" : "Mail teilen ({label})",
|
||||
"Share link ({label})" : "Link teilen ({label})",
|
||||
"Share link ({index})" : "Link teilen ({index})",
|
||||
"Share link" : "Link teilen",
|
||||
"Actions for \"{title}\"" : "Aktionen für \"{title}\"",
|
||||
"Copy public link of \"{title}\" to clipboard" : "Öffentlichen Link von \"{title}\" in die Zwischenablage kopieren",
|
||||
"Error, please enter proper password and/or expiration date" : "Fehler. Bitte gib das richtige Passwort und/oder Ablaufdatum ein.",
|
||||
|
|
@ -162,7 +174,6 @@ OC.L10N.register(
|
|||
"Error while creating the share" : "Fehler beim Erstellen der Freigabe",
|
||||
"View only" : "Nur anzeigen",
|
||||
"Can edit" : "Kann bearbeiten",
|
||||
"File drop" : "Dateiablage",
|
||||
"Custom permissions" : "Benutzerdefinierte Berechtigungen",
|
||||
"Search for share recipients" : "Nach Freigabe-Empfängern suchen",
|
||||
"No recommendations. Start typing." : "Keine Empfehlungen. Beginne mit der Eingabe.",
|
||||
|
|
@ -185,12 +196,10 @@ OC.L10N.register(
|
|||
"Advanced settings" : "Erweiterte Einstellungen",
|
||||
"Share label" : "Freigabe-Label",
|
||||
"Set password" : "Passwort setzen",
|
||||
"Password" : "Passwort",
|
||||
"Password expires {passwordExpirationTime}" : "Passwort läuft um {passwordExpirationTime} ab",
|
||||
"Password expired" : "Passwort abgelaufen",
|
||||
"Video verification" : "Videoüberprüfung",
|
||||
"Set expiration date" : "Ablaufdatum setzen",
|
||||
"Expiration date" : "Ablaufdatum",
|
||||
"Hide download" : "Download verbergen",
|
||||
"Allow download" : "Download erlauben",
|
||||
"Note to recipient" : "Notiz an Empfänger",
|
||||
|
|
@ -218,8 +227,6 @@ OC.L10N.register(
|
|||
"Shared by {ownerDisplayName}" : "Geteilt von {ownerDisplayName}",
|
||||
"Show sharing options" : "Freigabeoptionen anzeigen",
|
||||
"Link to a file" : "Mit einer Datei verknüpfen",
|
||||
"Error creating the share: {errorMessage}" : "Fehler beim Erstellen der Freigabe: {errorMessage}",
|
||||
"Error creating the share" : "Fehler beim Erstellen der Freigabe",
|
||||
"Error updating the share: {errorMessage}" : "Fehler beim Aktualisieren der Freigabe: {errorMessage}",
|
||||
"Error updating the share" : "Fehler beim Aktualisieren der Freigabe",
|
||||
"File \"{path}\" has been unshared" : "Freigabe für die Datei \"{path}\" wurde entfernt.",
|
||||
|
|
@ -286,9 +293,9 @@ OC.L10N.register(
|
|||
"Bundled permissions" : "Gebündelte Berechtigungen",
|
||||
"Only works for users with access to this folder" : "Funktioniert nur für Benutzer, die Zugriff auf diesen Ordner haben",
|
||||
"Only works for users with access to this file" : "Funktioniert nur für Benutzer, die Zugriff auf diese Datei haben",
|
||||
"File drop" : "Dateiablage",
|
||||
"Circle" : "Kreis",
|
||||
"Update" : "Aktualisieren",
|
||||
"Share with " : "Teilen mit",
|
||||
"No other users with access found" : "Keine anderen Benutzer mit Zugriff gefunden",
|
||||
"No entries found in this folder" : "Keine Einträge in diesem Ordner gefunden",
|
||||
"Name" : "Name",
|
||||
|
|
|
|||
|
|
@ -98,6 +98,7 @@
|
|||
"Share must at least have READ or CREATE permissions" : "Freigabe muss mindestens Lese- oder Erstell-Rechte haben",
|
||||
"Share must have READ permission if UPDATE or DELETE permission is set" : "Die Freigabe muss das Recht Lesen haben, wenn das Recht für Aktualisieren oder Löschen gesetzt ist",
|
||||
"\"Sending the password by Nextcloud Talk\" for sharing a file or folder failed because Nextcloud Talk is not enabled." : "\"Senden des Passwortes über Nextcloud Talk\" zum Teilen einer Datei gescheitert, da Nextcloud Talk nicht verfügbar ist.",
|
||||
"Wrong password" : "Falsches Passwort",
|
||||
"shared by %s" : "von %s geteilt",
|
||||
"Download all files" : "Alle Dateien herunterladen",
|
||||
"Direct link" : "Direkter Link",
|
||||
|
|
@ -110,6 +111,19 @@
|
|||
"You received {share} to group {group} as a share by {user}" : "Du hast {share} zur Gruppe {group} als Freigabe von {user} empfangen",
|
||||
"Accept" : "Akzeptieren",
|
||||
"Decline" : "Ablehnen",
|
||||
"Expiration date" : "Ablaufdatum",
|
||||
"Set a password" : "Benötigt keine Übersetzung. Hier wird nur die formelle Übersetzung verwendet (de_DE).",
|
||||
"Password" : "Passwort",
|
||||
"Share link" : "Link teilen",
|
||||
"Copy to clipboard" : "In die Zwischenablage kopieren",
|
||||
"Send link via email" : "Link als E-Mail verschicken",
|
||||
"Link copied to clipboard" : "Link wurde in die Zwischenablage kopiert",
|
||||
"Select" : "Auswählen",
|
||||
"Cancel" : "Abbrechen",
|
||||
"Continue" : "Fortsetzen",
|
||||
"Close" : "Schließen",
|
||||
"Error creating the share: {errorMessage}" : "Fehler beim Erstellen der Freigabe: {errorMessage}",
|
||||
"Error creating the share" : "Fehler beim Erstellen der Freigabe",
|
||||
"Sharing" : "Teilen",
|
||||
"Error while toggling options" : "Fehler beim Umschalten der Optionen",
|
||||
"Set default folder for accepted shares" : "Standardordner für akzeptierte Freigaben wählen",
|
||||
|
|
@ -143,7 +157,6 @@
|
|||
"Expiration date (enforced)" : "Ablaufdatum (erzwungen)",
|
||||
"Enter a date" : "Datum eingeben",
|
||||
"Create share" : "Freigabe erstellen",
|
||||
"Cancel" : "Abbrechen",
|
||||
"Customize link" : "Freigabelink anpassen",
|
||||
"Add another link" : "Weiteren Link hinzufügen",
|
||||
"Create a new share link" : "Neuen Freigabe-Link erstellen",
|
||||
|
|
@ -152,7 +165,6 @@
|
|||
"Mail share ({label})" : "Mail teilen ({label})",
|
||||
"Share link ({label})" : "Link teilen ({label})",
|
||||
"Share link ({index})" : "Link teilen ({index})",
|
||||
"Share link" : "Link teilen",
|
||||
"Actions for \"{title}\"" : "Aktionen für \"{title}\"",
|
||||
"Copy public link of \"{title}\" to clipboard" : "Öffentlichen Link von \"{title}\" in die Zwischenablage kopieren",
|
||||
"Error, please enter proper password and/or expiration date" : "Fehler. Bitte gib das richtige Passwort und/oder Ablaufdatum ein.",
|
||||
|
|
@ -160,7 +172,6 @@
|
|||
"Error while creating the share" : "Fehler beim Erstellen der Freigabe",
|
||||
"View only" : "Nur anzeigen",
|
||||
"Can edit" : "Kann bearbeiten",
|
||||
"File drop" : "Dateiablage",
|
||||
"Custom permissions" : "Benutzerdefinierte Berechtigungen",
|
||||
"Search for share recipients" : "Nach Freigabe-Empfängern suchen",
|
||||
"No recommendations. Start typing." : "Keine Empfehlungen. Beginne mit der Eingabe.",
|
||||
|
|
@ -183,12 +194,10 @@
|
|||
"Advanced settings" : "Erweiterte Einstellungen",
|
||||
"Share label" : "Freigabe-Label",
|
||||
"Set password" : "Passwort setzen",
|
||||
"Password" : "Passwort",
|
||||
"Password expires {passwordExpirationTime}" : "Passwort läuft um {passwordExpirationTime} ab",
|
||||
"Password expired" : "Passwort abgelaufen",
|
||||
"Video verification" : "Videoüberprüfung",
|
||||
"Set expiration date" : "Ablaufdatum setzen",
|
||||
"Expiration date" : "Ablaufdatum",
|
||||
"Hide download" : "Download verbergen",
|
||||
"Allow download" : "Download erlauben",
|
||||
"Note to recipient" : "Notiz an Empfänger",
|
||||
|
|
@ -216,8 +225,6 @@
|
|||
"Shared by {ownerDisplayName}" : "Geteilt von {ownerDisplayName}",
|
||||
"Show sharing options" : "Freigabeoptionen anzeigen",
|
||||
"Link to a file" : "Mit einer Datei verknüpfen",
|
||||
"Error creating the share: {errorMessage}" : "Fehler beim Erstellen der Freigabe: {errorMessage}",
|
||||
"Error creating the share" : "Fehler beim Erstellen der Freigabe",
|
||||
"Error updating the share: {errorMessage}" : "Fehler beim Aktualisieren der Freigabe: {errorMessage}",
|
||||
"Error updating the share" : "Fehler beim Aktualisieren der Freigabe",
|
||||
"File \"{path}\" has been unshared" : "Freigabe für die Datei \"{path}\" wurde entfernt.",
|
||||
|
|
@ -284,9 +291,9 @@
|
|||
"Bundled permissions" : "Gebündelte Berechtigungen",
|
||||
"Only works for users with access to this folder" : "Funktioniert nur für Benutzer, die Zugriff auf diesen Ordner haben",
|
||||
"Only works for users with access to this file" : "Funktioniert nur für Benutzer, die Zugriff auf diese Datei haben",
|
||||
"File drop" : "Dateiablage",
|
||||
"Circle" : "Kreis",
|
||||
"Update" : "Aktualisieren",
|
||||
"Share with " : "Teilen mit",
|
||||
"No other users with access found" : "Keine anderen Benutzer mit Zugriff gefunden",
|
||||
"No entries found in this folder" : "Keine Einträge in diesem Ordner gefunden",
|
||||
"Name" : "Name",
|
||||
|
|
|
|||
|
|
@ -86,6 +86,7 @@ OC.L10N.register(
|
|||
"Public link sharing is disabled by the administrator" : "Die öffentliche Freigabe von Links ist durch den Administrator deaktiviert",
|
||||
"Public upload disabled by the administrator" : "Das öffentliche Hochladen ist durch den Administrator deaktiviert",
|
||||
"Public upload is only possible for publicly shared folders" : "Das öffentliche Hochladen ist nur für öffentlich freigegebene Ordner erlaubt",
|
||||
"Please specify a valid email address" : "Bitte eine gültige E-Mail-Adresse eingeben",
|
||||
"Sharing %s sending the password by Nextcloud Talk failed because Nextcloud Talk is not enabled" : "%s Freigeben: Senden des Passwortes über Nextcloud Talk gescheitert, da Nextcloud Talk nicht aktiviert ist",
|
||||
"Sharing %1$s failed because the back end does not allow shares from type %2$s" : "Freigabe von %1$s fehlgeschlagen, da das Backend die Freigabe vom Typ %2$s nicht erlaubt",
|
||||
"Please specify a valid federated account ID" : "Bitte geben Sie eine gültige Federated-Konto-ID ein",
|
||||
|
|
@ -98,10 +99,22 @@ OC.L10N.register(
|
|||
"Not a directory" : "Kein Verzeichnis",
|
||||
"Could not lock node" : "Knotenpunkt konnte nicht gesperrt werden",
|
||||
"Could not lock path" : "Pfad konnte nicht gesperrt werden",
|
||||
"no sharing rights on this item" : "Hierfür bestehen keine Freigaberechte",
|
||||
"You are not allowed to edit incoming shares" : "Sie dürfen eingehende Freigaben nicht bearbeiten",
|
||||
"Wrong or no update parameter given" : "Es wurde ein falscher oder kein Updateparameter angegeben",
|
||||
"You are not allowed to edit link shares that you don't own" : "Sie dürfen keine Linkfreigaben bearbeiten, die Sie nicht besitzen",
|
||||
"Share must at least have READ or CREATE permissions" : "Freigabe muss mindestens LESEN- oder ERSTELLEN-Rechte haben",
|
||||
"Share must have READ permission if UPDATE or DELETE permission is set" : "Die Freigabe muss das Recht LESEN haben, wenn das Recht AKTUALISIEREN oder LÖSCHEN gesetzt ist",
|
||||
"\"Sending the password by Nextcloud Talk\" for sharing a file or folder failed because Nextcloud Talk is not enabled." : "\"Senden des Passwortes über Nextcloud Talk\" zum Teilen einer Datei gescheitert, da Nextcloud Talk nicht verfügbar ist.",
|
||||
"Invalid date. Format must be YYYY-MM-DD" : "Ungültiges Datum. Zulässiges Datumsformat: JJJJ-MM-TT",
|
||||
"No sharing rights on this item" : "Hierfür bestehen keine Freigaberechte",
|
||||
"Invalid share attributes provided: \"%s\"" : "Ungültige Freigabeattribute angegeben: \"%s\"",
|
||||
"Should not happen, instanceOfStorage but getInstanceOfStorage return null" : "Das sollte nicht passieren, instanceOfStorage aber getInstanceOfStorage gibt Null zurück",
|
||||
"Should not happen, instanceOfStorage but not a wrapper" : "Das sollte nicht passieren, instanceOfStorage aber kein Wrapper",
|
||||
"You are not allowed to send mail notifications" : "Sie dürfen keine E-Mail-Benachrichtigungen senden",
|
||||
"No mail notification configured for this share type" : "Für diesen Freigabetyp ist keine E-Mail-Benachrichtigung eingerichtet",
|
||||
"Wrong password" : "Falsches Passwort",
|
||||
"Error while sending mail notification" : "Fehler beim Sendern der E-Mail-Benachrichtigung",
|
||||
"shared by %s" : "von %s geteilt",
|
||||
"Download all files" : "Alle Dateien herunterladen",
|
||||
"Direct link" : "Direkter Link",
|
||||
|
|
@ -115,6 +128,61 @@ OC.L10N.register(
|
|||
"Accept" : "Akzeptieren",
|
||||
"Decline" : "Ablehnen",
|
||||
"This application enables people to share files within Nextcloud. If enabled, the admin can choose which groups can share files. The applicable people can then share files and folders with other accounts and groups within Nextcloud. In addition, if the admin enables the share link feature, an external link can be used to share files with other people outside of Nextcloud. Admins can also enforce passwords, expirations dates, and enable server to server sharing via share links, as well as sharing from mobile devices.\nTurning the feature off removes shared files and folders on the server for all share recipients, and also on the sync clients and mobile apps. More information is available in the Nextcloud Documentation." : "Diese App ermöglicht es Personen, Dateien innerhalb von Nextcloud zu teilen. Wenn aktiviert, kann die Administration wählen, welche Gruppen Dateien teilen können. Die entsprechenden Personen können dann Dateien und Ordner mit anderen Personen und Gruppen innerhalb von Nextcloud teilen. Wenn der Administrator die Funktion zum Teilen von Links aktiviert, kann ein externer Link verwendet werden, um Dateien mit anderen Personen außerhalb von Nextcloud zu teilen. Administratoren können auch Passwörter und Ablaufdaten erzwingen und die Freigabe von Server zu Server über Freigabelinks sowie die Freigabe von mobilen Geräten aus aktivieren.\nWenn Sie die Funktion deaktivieren, werden freigegebene Dateien und Ordner auf dem Server für alle Freigabeempfänger und auch auf den Sync-Clients und mobilen Apps entfernt. Weitere Informationen finden Sie in der Nextcloud-Dokumentation.",
|
||||
"Your administrator has enforced a default expiration date with a maximum {days} days." : "Ihre Administration hat ein Standardablaufdatum mit einer maximalen Anzahl von {days} Tagen erzwungen.",
|
||||
"When should the request expire?" : "Wann soll die Anfrage ablaufen?",
|
||||
"Set a submission expirationDate" : "Ablaufdatum für die Übermittlung festlegen",
|
||||
"Expiration date" : "Ablaufdatum",
|
||||
"Select a date" : "Datum auswählen",
|
||||
"Your administrator has enforced a password protection." : "Ihre Administration erzwingt einen Passwortschutz",
|
||||
"What password should be used for the request?" : "Welches Passwort soll für die Anfrage verwendet werden?",
|
||||
"Set a password" : "Passwort setzen",
|
||||
"Password" : "Passwort",
|
||||
"Enter a valid password" : "Ein gültige Passwort eingeben",
|
||||
"Generate a new password" : "Ein neues Passwort erstellen",
|
||||
"The request will expire on {date} at midnight and will be password protected." : "Die Anfrage läuft am {date} um Mitternacht ab und ist passwortgeschützt.",
|
||||
"The request will expire on {date} at midnight." : "Die Anfrage läuft am {date} um Mitternacht ab.",
|
||||
"The request will be password protected." : "Die Anfrage wird passwortgeschützt sein.",
|
||||
"Once created, you can share the link below to allow people to upload files to your directory." : "Nach der Erstellung können Sie den unten stehenden Link freigeben, damit Dateien von Anderen in Ihr Verzeichnis hochgeladen werden können.",
|
||||
"Share link" : "Link teilen",
|
||||
"Copy to clipboard" : "In die Zwischenablage kopieren",
|
||||
"Send link via email" : "Link per E-Mail verschicken",
|
||||
"Enter an email address or paste a list" : "E-Mail-Adresse eingeben oder eine Liste einfügen",
|
||||
"Remove email" : "E-Mail-Adresse entfernen",
|
||||
"Automatically copying failed, please copy the share link manually" : "Automatisches Kopieren ist fehlgeschlagen, bitte den Freigabelink manuell kopieren",
|
||||
"Link copied to clipboard" : "Link wurde in die Zwischenablage kopiert",
|
||||
"Email already added" : "E-Mail-Adresse wurde bereits hinzugefügt",
|
||||
"Invalid email address" : "Ungültige E-Mail-Adresse",
|
||||
"_1 email address already added_::_{count} email addresses already added_" : ["1 E-Mail-Adresse bereits hinzugefügt","{count} E-Mail-Adressen bereits hinzugefügt"],
|
||||
"_1 email address added_::_{count} email addresses added_" : ["1 E-Mail-Adresse hinzugefügt","{count} E-Mail-Adressen hinzugefügt"],
|
||||
"What are you requesting?" : "Was fragen Sie an?",
|
||||
"Request subject" : "Betreff der Anfrage",
|
||||
"Birthday party photos, History assignment…" : "Fotos von Geburtstagsfeiern, Geschichtsaufgaben…",
|
||||
"Where should these files go?" : "Wo sollen diese Dateien gespeichert werden?",
|
||||
"The uploaded files are visible only to you unless you choose to share them." : "Die hochgeladenen Dateien sind nur für Sie sichtbar, so lange Sie sie nicht freizugeben.",
|
||||
"Upload destination" : "Ziel für das Hochladen",
|
||||
"Select a destination" : "Ein Ziel wählen",
|
||||
"Revert to default" : "Auf Standard zurücksetzen",
|
||||
"Add a note" : "Notiz hinzufügen",
|
||||
"Note for recipient" : "Notiz für den Empfänger",
|
||||
"Add a note to help people understand what you are requesting." : "Fügen Sie eine Notiz hinzu, damit die Adressaten verstehen, was Sie anfragen.",
|
||||
"Select" : "Auswählen",
|
||||
"Create a file request" : "Eine Dateianfrage erstellen",
|
||||
"File request created" : "Dateianfrage erstellt",
|
||||
"Collect files from others even if they do not have an account." : "Dateien von anderen sammeln, auch wenn diese kein Konto haben.",
|
||||
"To ensure you can receive files, verify you have enough storage available." : "Um sicherzustellen, dass Sie Dateien empfangen können, überprüfen Sie, ob Ihnen genügend Speicherplatz zur Verfügung steht.",
|
||||
"File request" : "Dateianfrage",
|
||||
"Cancel" : "Abbrechen",
|
||||
"Cancel the file request creation" : "Erstellung der Dateianfrage abbrechen",
|
||||
"Previous step" : "Vorheriger Schritt",
|
||||
"Continue" : "Fortsetzen",
|
||||
"Close" : "Schließen",
|
||||
"Please select a folder, you cannot share the root directory." : "Bitte wählen Sie einen Ordner aus. Das Rootverzeichnis kann nicht freigegeben werden.",
|
||||
"File request created and emails sent" : "Dateianfrage erstellt und E-Mail versandt",
|
||||
"Error creating the share: {errorMessage}" : "Fehler beim Erstellen der Freigabe: {errorMessage}",
|
||||
"Error creating the share" : "Fehler beim Erstellen der Freigabe",
|
||||
"Error sending emails: {errorMessage}" : "Fehler beim E-Mailversand: {errorMessage}",
|
||||
"Error sending emails" : "Fehler beim E-Mailversand",
|
||||
"_Close and send email_::_Close and send {count} emails_" : ["Schließen und E-Mail versenden","Schließen und {count} E-Mails versenden"],
|
||||
"Sharing" : "Teilen",
|
||||
"Accept shares from other accounts and groups by default" : "Freigaben von anderen Konten und Gruppen standardmäßig annehmen",
|
||||
"Error while toggling options" : "Fehler beim Umschalten der Optionen",
|
||||
|
|
@ -149,17 +217,17 @@ OC.L10N.register(
|
|||
"Expiration date (enforced)" : "Ablaufdatum (erzwungen)",
|
||||
"Enter a date" : "Datum eingeben",
|
||||
"Create share" : "Freigabe erstellen",
|
||||
"Cancel" : "Abbrechen",
|
||||
"Customize link" : "Link anpassen",
|
||||
"Generate QR code" : "QR-Code erzeugen",
|
||||
"Add another link" : "Weiteren Link hinzufügen",
|
||||
"Create a new share link" : "Neuen Freigabe-Link erstellen",
|
||||
"{shareWith} by {initiator}" : "{shareWith} von {initiator}",
|
||||
"Shared via link by {initiator}" : "Geteilt mittels Link von {initiator}",
|
||||
"File request ({label})" : "Dateianfrage ({label})",
|
||||
"Mail share ({label})" : "Mail-Freigabe ({label})",
|
||||
"Share link ({label})" : "Link teilen ({label})",
|
||||
"Mail share" : "E-Mail-Freigabe",
|
||||
"Share link ({index})" : "Link teilen ({index})",
|
||||
"Share link" : "Link teilen",
|
||||
"Actions for \"{title}\"" : "Aktionen für \"{title}\"",
|
||||
"Copy public link of \"{title}\" to clipboard" : "Öffentlichen Link von \"{title}\" in die Zwischenablage kopieren",
|
||||
"Error, please enter proper password and/or expiration date" : "Fehler. Bitte gebe das richtige Passwort und/oder Ablaufdatum ein",
|
||||
|
|
@ -168,7 +236,6 @@ OC.L10N.register(
|
|||
"Quick share options, the current selected is \"{selectedOption}\"" : "Schnelle Freigabeoptionen, aktuell ausgewählt ist \"{selectedOption}\"",
|
||||
"View only" : "Nur anzeigen",
|
||||
"Can edit" : "Kann bearbeiten",
|
||||
"File drop" : "Dateiablage",
|
||||
"Custom permissions" : "Benutzerdefinierte Berechtigungen",
|
||||
"Search for share recipients" : "Nach Freigabeempfängern suchen",
|
||||
"No recommendations. Start typing." : "Keine Empfehlungen. Beginnen Sie mit der Eingabe.",
|
||||
|
|
@ -192,12 +259,10 @@ OC.L10N.register(
|
|||
"Advanced settings" : "Erweiterte Einstellungen",
|
||||
"Share label" : "Freigabe-Label",
|
||||
"Set password" : "Passwort festlegen",
|
||||
"Password" : "Passwort",
|
||||
"Password expires {passwordExpirationTime}" : "Passwort läuft ab um {passwordExpirationTime}",
|
||||
"Password expired" : "Passwort abgelaufen",
|
||||
"Video verification" : "Videoüberprüfung",
|
||||
"Set expiration date" : "Ablaufdatum setzen",
|
||||
"Expiration date" : "Ablaufdatum",
|
||||
"Hide download" : "Download verbergen",
|
||||
"Allow download" : "Download erlauben",
|
||||
"Note to recipient" : "Notiz an Empfänger",
|
||||
|
|
@ -221,6 +286,7 @@ OC.L10N.register(
|
|||
"Toggle list of others with access to this directory" : "Liste anderer Benutzer mit Zugriff auf dieses Verzeichnis umschalten",
|
||||
"Toggle list of others with access to this file" : "Liste anderer Benutzer mit Zugriff auf diese Datei umschalten",
|
||||
"Unable to fetch inherited shares" : "Laden der vererbten Freigaben fehlgeschlagen",
|
||||
"_The following email address is not valid: {emails}_::_The following email addresses are not valid: {emails}_" : ["Die folgende E-Mail-Adresse ist ungültig: ","Die folgenden E-Mail-Adressen sind ungültig: {emails}"],
|
||||
"Unable to load the shares list" : "Liste der Freigaben kann nicht geladen werden",
|
||||
"Expires {relativetime}" : "Läuft {relativetime} ab",
|
||||
"this share just expired." : "Diese Freigabe ist gerade abgelaufen.",
|
||||
|
|
@ -234,13 +300,12 @@ OC.L10N.register(
|
|||
"Shared by {ownerDisplayName}" : "Geteilt von {ownerDisplayName}",
|
||||
"Show sharing options" : "Freigabeoptionen anzeigen",
|
||||
"Link to a file" : "Mit einer Datei verknüpfen",
|
||||
"Error creating the share: {errorMessage}" : "Fehler beim Erstellen der Freigabe: {errorMessage}",
|
||||
"Error creating the share" : "Fehler beim Erstellen der Freigabe",
|
||||
"Error updating the share: {errorMessage}" : "Fehler beim Aktualisieren der Freigabe: {errorMessage}",
|
||||
"Error updating the share" : "Fehler beim Aktualisieren der Freigabe",
|
||||
"File \"{path}\" has been unshared" : "Freigabe für die Datei \"{path}\" wurde entfernt",
|
||||
"Folder \"{path}\" has been unshared" : "Freigabe für den Ordner \"{path}\" wurde entfernt",
|
||||
"Share {propertyName} saved" : "Freigabe {propertyName} gespeichert",
|
||||
"Create new file request" : "Neue Dateianfrage erstellen",
|
||||
"Shared by" : "Geteilt von",
|
||||
"Shared with" : "Geteilt mit",
|
||||
"Password created successfully" : "Passwort erstellt",
|
||||
|
|
@ -302,9 +367,9 @@ OC.L10N.register(
|
|||
"Bundled permissions" : "Gebündelte Berechtigungen",
|
||||
"Only works for users with access to this folder" : "Funktioniert nur für Benutzer, die Zugriff auf diesen Ordner haben",
|
||||
"Only works for users with access to this file" : "Funktioniert nur für Benutzer, die Zugriff auf diese Datei haben",
|
||||
"File drop" : "Dateiablage",
|
||||
"Circle" : "Kreis",
|
||||
"Update" : "Aktualisieren",
|
||||
"Share with " : "Teilen mit ",
|
||||
"No other users with access found" : "Keine anderen Benutzer mit Zugriff gefunden",
|
||||
"No entries found in this folder" : "Keine Einträge in diesem Ordner gefunden",
|
||||
"Name" : "Name",
|
||||
|
|
|
|||
|
|
@ -84,6 +84,7 @@
|
|||
"Public link sharing is disabled by the administrator" : "Die öffentliche Freigabe von Links ist durch den Administrator deaktiviert",
|
||||
"Public upload disabled by the administrator" : "Das öffentliche Hochladen ist durch den Administrator deaktiviert",
|
||||
"Public upload is only possible for publicly shared folders" : "Das öffentliche Hochladen ist nur für öffentlich freigegebene Ordner erlaubt",
|
||||
"Please specify a valid email address" : "Bitte eine gültige E-Mail-Adresse eingeben",
|
||||
"Sharing %s sending the password by Nextcloud Talk failed because Nextcloud Talk is not enabled" : "%s Freigeben: Senden des Passwortes über Nextcloud Talk gescheitert, da Nextcloud Talk nicht aktiviert ist",
|
||||
"Sharing %1$s failed because the back end does not allow shares from type %2$s" : "Freigabe von %1$s fehlgeschlagen, da das Backend die Freigabe vom Typ %2$s nicht erlaubt",
|
||||
"Please specify a valid federated account ID" : "Bitte geben Sie eine gültige Federated-Konto-ID ein",
|
||||
|
|
@ -96,10 +97,22 @@
|
|||
"Not a directory" : "Kein Verzeichnis",
|
||||
"Could not lock node" : "Knotenpunkt konnte nicht gesperrt werden",
|
||||
"Could not lock path" : "Pfad konnte nicht gesperrt werden",
|
||||
"no sharing rights on this item" : "Hierfür bestehen keine Freigaberechte",
|
||||
"You are not allowed to edit incoming shares" : "Sie dürfen eingehende Freigaben nicht bearbeiten",
|
||||
"Wrong or no update parameter given" : "Es wurde ein falscher oder kein Updateparameter angegeben",
|
||||
"You are not allowed to edit link shares that you don't own" : "Sie dürfen keine Linkfreigaben bearbeiten, die Sie nicht besitzen",
|
||||
"Share must at least have READ or CREATE permissions" : "Freigabe muss mindestens LESEN- oder ERSTELLEN-Rechte haben",
|
||||
"Share must have READ permission if UPDATE or DELETE permission is set" : "Die Freigabe muss das Recht LESEN haben, wenn das Recht AKTUALISIEREN oder LÖSCHEN gesetzt ist",
|
||||
"\"Sending the password by Nextcloud Talk\" for sharing a file or folder failed because Nextcloud Talk is not enabled." : "\"Senden des Passwortes über Nextcloud Talk\" zum Teilen einer Datei gescheitert, da Nextcloud Talk nicht verfügbar ist.",
|
||||
"Invalid date. Format must be YYYY-MM-DD" : "Ungültiges Datum. Zulässiges Datumsformat: JJJJ-MM-TT",
|
||||
"No sharing rights on this item" : "Hierfür bestehen keine Freigaberechte",
|
||||
"Invalid share attributes provided: \"%s\"" : "Ungültige Freigabeattribute angegeben: \"%s\"",
|
||||
"Should not happen, instanceOfStorage but getInstanceOfStorage return null" : "Das sollte nicht passieren, instanceOfStorage aber getInstanceOfStorage gibt Null zurück",
|
||||
"Should not happen, instanceOfStorage but not a wrapper" : "Das sollte nicht passieren, instanceOfStorage aber kein Wrapper",
|
||||
"You are not allowed to send mail notifications" : "Sie dürfen keine E-Mail-Benachrichtigungen senden",
|
||||
"No mail notification configured for this share type" : "Für diesen Freigabetyp ist keine E-Mail-Benachrichtigung eingerichtet",
|
||||
"Wrong password" : "Falsches Passwort",
|
||||
"Error while sending mail notification" : "Fehler beim Sendern der E-Mail-Benachrichtigung",
|
||||
"shared by %s" : "von %s geteilt",
|
||||
"Download all files" : "Alle Dateien herunterladen",
|
||||
"Direct link" : "Direkter Link",
|
||||
|
|
@ -113,6 +126,61 @@
|
|||
"Accept" : "Akzeptieren",
|
||||
"Decline" : "Ablehnen",
|
||||
"This application enables people to share files within Nextcloud. If enabled, the admin can choose which groups can share files. The applicable people can then share files and folders with other accounts and groups within Nextcloud. In addition, if the admin enables the share link feature, an external link can be used to share files with other people outside of Nextcloud. Admins can also enforce passwords, expirations dates, and enable server to server sharing via share links, as well as sharing from mobile devices.\nTurning the feature off removes shared files and folders on the server for all share recipients, and also on the sync clients and mobile apps. More information is available in the Nextcloud Documentation." : "Diese App ermöglicht es Personen, Dateien innerhalb von Nextcloud zu teilen. Wenn aktiviert, kann die Administration wählen, welche Gruppen Dateien teilen können. Die entsprechenden Personen können dann Dateien und Ordner mit anderen Personen und Gruppen innerhalb von Nextcloud teilen. Wenn der Administrator die Funktion zum Teilen von Links aktiviert, kann ein externer Link verwendet werden, um Dateien mit anderen Personen außerhalb von Nextcloud zu teilen. Administratoren können auch Passwörter und Ablaufdaten erzwingen und die Freigabe von Server zu Server über Freigabelinks sowie die Freigabe von mobilen Geräten aus aktivieren.\nWenn Sie die Funktion deaktivieren, werden freigegebene Dateien und Ordner auf dem Server für alle Freigabeempfänger und auch auf den Sync-Clients und mobilen Apps entfernt. Weitere Informationen finden Sie in der Nextcloud-Dokumentation.",
|
||||
"Your administrator has enforced a default expiration date with a maximum {days} days." : "Ihre Administration hat ein Standardablaufdatum mit einer maximalen Anzahl von {days} Tagen erzwungen.",
|
||||
"When should the request expire?" : "Wann soll die Anfrage ablaufen?",
|
||||
"Set a submission expirationDate" : "Ablaufdatum für die Übermittlung festlegen",
|
||||
"Expiration date" : "Ablaufdatum",
|
||||
"Select a date" : "Datum auswählen",
|
||||
"Your administrator has enforced a password protection." : "Ihre Administration erzwingt einen Passwortschutz",
|
||||
"What password should be used for the request?" : "Welches Passwort soll für die Anfrage verwendet werden?",
|
||||
"Set a password" : "Passwort setzen",
|
||||
"Password" : "Passwort",
|
||||
"Enter a valid password" : "Ein gültige Passwort eingeben",
|
||||
"Generate a new password" : "Ein neues Passwort erstellen",
|
||||
"The request will expire on {date} at midnight and will be password protected." : "Die Anfrage läuft am {date} um Mitternacht ab und ist passwortgeschützt.",
|
||||
"The request will expire on {date} at midnight." : "Die Anfrage läuft am {date} um Mitternacht ab.",
|
||||
"The request will be password protected." : "Die Anfrage wird passwortgeschützt sein.",
|
||||
"Once created, you can share the link below to allow people to upload files to your directory." : "Nach der Erstellung können Sie den unten stehenden Link freigeben, damit Dateien von Anderen in Ihr Verzeichnis hochgeladen werden können.",
|
||||
"Share link" : "Link teilen",
|
||||
"Copy to clipboard" : "In die Zwischenablage kopieren",
|
||||
"Send link via email" : "Link per E-Mail verschicken",
|
||||
"Enter an email address or paste a list" : "E-Mail-Adresse eingeben oder eine Liste einfügen",
|
||||
"Remove email" : "E-Mail-Adresse entfernen",
|
||||
"Automatically copying failed, please copy the share link manually" : "Automatisches Kopieren ist fehlgeschlagen, bitte den Freigabelink manuell kopieren",
|
||||
"Link copied to clipboard" : "Link wurde in die Zwischenablage kopiert",
|
||||
"Email already added" : "E-Mail-Adresse wurde bereits hinzugefügt",
|
||||
"Invalid email address" : "Ungültige E-Mail-Adresse",
|
||||
"_1 email address already added_::_{count} email addresses already added_" : ["1 E-Mail-Adresse bereits hinzugefügt","{count} E-Mail-Adressen bereits hinzugefügt"],
|
||||
"_1 email address added_::_{count} email addresses added_" : ["1 E-Mail-Adresse hinzugefügt","{count} E-Mail-Adressen hinzugefügt"],
|
||||
"What are you requesting?" : "Was fragen Sie an?",
|
||||
"Request subject" : "Betreff der Anfrage",
|
||||
"Birthday party photos, History assignment…" : "Fotos von Geburtstagsfeiern, Geschichtsaufgaben…",
|
||||
"Where should these files go?" : "Wo sollen diese Dateien gespeichert werden?",
|
||||
"The uploaded files are visible only to you unless you choose to share them." : "Die hochgeladenen Dateien sind nur für Sie sichtbar, so lange Sie sie nicht freizugeben.",
|
||||
"Upload destination" : "Ziel für das Hochladen",
|
||||
"Select a destination" : "Ein Ziel wählen",
|
||||
"Revert to default" : "Auf Standard zurücksetzen",
|
||||
"Add a note" : "Notiz hinzufügen",
|
||||
"Note for recipient" : "Notiz für den Empfänger",
|
||||
"Add a note to help people understand what you are requesting." : "Fügen Sie eine Notiz hinzu, damit die Adressaten verstehen, was Sie anfragen.",
|
||||
"Select" : "Auswählen",
|
||||
"Create a file request" : "Eine Dateianfrage erstellen",
|
||||
"File request created" : "Dateianfrage erstellt",
|
||||
"Collect files from others even if they do not have an account." : "Dateien von anderen sammeln, auch wenn diese kein Konto haben.",
|
||||
"To ensure you can receive files, verify you have enough storage available." : "Um sicherzustellen, dass Sie Dateien empfangen können, überprüfen Sie, ob Ihnen genügend Speicherplatz zur Verfügung steht.",
|
||||
"File request" : "Dateianfrage",
|
||||
"Cancel" : "Abbrechen",
|
||||
"Cancel the file request creation" : "Erstellung der Dateianfrage abbrechen",
|
||||
"Previous step" : "Vorheriger Schritt",
|
||||
"Continue" : "Fortsetzen",
|
||||
"Close" : "Schließen",
|
||||
"Please select a folder, you cannot share the root directory." : "Bitte wählen Sie einen Ordner aus. Das Rootverzeichnis kann nicht freigegeben werden.",
|
||||
"File request created and emails sent" : "Dateianfrage erstellt und E-Mail versandt",
|
||||
"Error creating the share: {errorMessage}" : "Fehler beim Erstellen der Freigabe: {errorMessage}",
|
||||
"Error creating the share" : "Fehler beim Erstellen der Freigabe",
|
||||
"Error sending emails: {errorMessage}" : "Fehler beim E-Mailversand: {errorMessage}",
|
||||
"Error sending emails" : "Fehler beim E-Mailversand",
|
||||
"_Close and send email_::_Close and send {count} emails_" : ["Schließen und E-Mail versenden","Schließen und {count} E-Mails versenden"],
|
||||
"Sharing" : "Teilen",
|
||||
"Accept shares from other accounts and groups by default" : "Freigaben von anderen Konten und Gruppen standardmäßig annehmen",
|
||||
"Error while toggling options" : "Fehler beim Umschalten der Optionen",
|
||||
|
|
@ -147,17 +215,17 @@
|
|||
"Expiration date (enforced)" : "Ablaufdatum (erzwungen)",
|
||||
"Enter a date" : "Datum eingeben",
|
||||
"Create share" : "Freigabe erstellen",
|
||||
"Cancel" : "Abbrechen",
|
||||
"Customize link" : "Link anpassen",
|
||||
"Generate QR code" : "QR-Code erzeugen",
|
||||
"Add another link" : "Weiteren Link hinzufügen",
|
||||
"Create a new share link" : "Neuen Freigabe-Link erstellen",
|
||||
"{shareWith} by {initiator}" : "{shareWith} von {initiator}",
|
||||
"Shared via link by {initiator}" : "Geteilt mittels Link von {initiator}",
|
||||
"File request ({label})" : "Dateianfrage ({label})",
|
||||
"Mail share ({label})" : "Mail-Freigabe ({label})",
|
||||
"Share link ({label})" : "Link teilen ({label})",
|
||||
"Mail share" : "E-Mail-Freigabe",
|
||||
"Share link ({index})" : "Link teilen ({index})",
|
||||
"Share link" : "Link teilen",
|
||||
"Actions for \"{title}\"" : "Aktionen für \"{title}\"",
|
||||
"Copy public link of \"{title}\" to clipboard" : "Öffentlichen Link von \"{title}\" in die Zwischenablage kopieren",
|
||||
"Error, please enter proper password and/or expiration date" : "Fehler. Bitte gebe das richtige Passwort und/oder Ablaufdatum ein",
|
||||
|
|
@ -166,7 +234,6 @@
|
|||
"Quick share options, the current selected is \"{selectedOption}\"" : "Schnelle Freigabeoptionen, aktuell ausgewählt ist \"{selectedOption}\"",
|
||||
"View only" : "Nur anzeigen",
|
||||
"Can edit" : "Kann bearbeiten",
|
||||
"File drop" : "Dateiablage",
|
||||
"Custom permissions" : "Benutzerdefinierte Berechtigungen",
|
||||
"Search for share recipients" : "Nach Freigabeempfängern suchen",
|
||||
"No recommendations. Start typing." : "Keine Empfehlungen. Beginnen Sie mit der Eingabe.",
|
||||
|
|
@ -190,12 +257,10 @@
|
|||
"Advanced settings" : "Erweiterte Einstellungen",
|
||||
"Share label" : "Freigabe-Label",
|
||||
"Set password" : "Passwort festlegen",
|
||||
"Password" : "Passwort",
|
||||
"Password expires {passwordExpirationTime}" : "Passwort läuft ab um {passwordExpirationTime}",
|
||||
"Password expired" : "Passwort abgelaufen",
|
||||
"Video verification" : "Videoüberprüfung",
|
||||
"Set expiration date" : "Ablaufdatum setzen",
|
||||
"Expiration date" : "Ablaufdatum",
|
||||
"Hide download" : "Download verbergen",
|
||||
"Allow download" : "Download erlauben",
|
||||
"Note to recipient" : "Notiz an Empfänger",
|
||||
|
|
@ -219,6 +284,7 @@
|
|||
"Toggle list of others with access to this directory" : "Liste anderer Benutzer mit Zugriff auf dieses Verzeichnis umschalten",
|
||||
"Toggle list of others with access to this file" : "Liste anderer Benutzer mit Zugriff auf diese Datei umschalten",
|
||||
"Unable to fetch inherited shares" : "Laden der vererbten Freigaben fehlgeschlagen",
|
||||
"_The following email address is not valid: {emails}_::_The following email addresses are not valid: {emails}_" : ["Die folgende E-Mail-Adresse ist ungültig: ","Die folgenden E-Mail-Adressen sind ungültig: {emails}"],
|
||||
"Unable to load the shares list" : "Liste der Freigaben kann nicht geladen werden",
|
||||
"Expires {relativetime}" : "Läuft {relativetime} ab",
|
||||
"this share just expired." : "Diese Freigabe ist gerade abgelaufen.",
|
||||
|
|
@ -232,13 +298,12 @@
|
|||
"Shared by {ownerDisplayName}" : "Geteilt von {ownerDisplayName}",
|
||||
"Show sharing options" : "Freigabeoptionen anzeigen",
|
||||
"Link to a file" : "Mit einer Datei verknüpfen",
|
||||
"Error creating the share: {errorMessage}" : "Fehler beim Erstellen der Freigabe: {errorMessage}",
|
||||
"Error creating the share" : "Fehler beim Erstellen der Freigabe",
|
||||
"Error updating the share: {errorMessage}" : "Fehler beim Aktualisieren der Freigabe: {errorMessage}",
|
||||
"Error updating the share" : "Fehler beim Aktualisieren der Freigabe",
|
||||
"File \"{path}\" has been unshared" : "Freigabe für die Datei \"{path}\" wurde entfernt",
|
||||
"Folder \"{path}\" has been unshared" : "Freigabe für den Ordner \"{path}\" wurde entfernt",
|
||||
"Share {propertyName} saved" : "Freigabe {propertyName} gespeichert",
|
||||
"Create new file request" : "Neue Dateianfrage erstellen",
|
||||
"Shared by" : "Geteilt von",
|
||||
"Shared with" : "Geteilt mit",
|
||||
"Password created successfully" : "Passwort erstellt",
|
||||
|
|
@ -300,9 +365,9 @@
|
|||
"Bundled permissions" : "Gebündelte Berechtigungen",
|
||||
"Only works for users with access to this folder" : "Funktioniert nur für Benutzer, die Zugriff auf diesen Ordner haben",
|
||||
"Only works for users with access to this file" : "Funktioniert nur für Benutzer, die Zugriff auf diese Datei haben",
|
||||
"File drop" : "Dateiablage",
|
||||
"Circle" : "Kreis",
|
||||
"Update" : "Aktualisieren",
|
||||
"Share with " : "Teilen mit ",
|
||||
"No other users with access found" : "Keine anderen Benutzer mit Zugriff gefunden",
|
||||
"No entries found in this folder" : "Keine Einträge in diesem Ordner gefunden",
|
||||
"Name" : "Name",
|
||||
|
|
|
|||
|
|
@ -98,6 +98,7 @@ OC.L10N.register(
|
|||
"Wrong or no update parameter given" : "Λάθος ή καμία παράμετρος αναβάθμισης δεν δόθηκε",
|
||||
"Share must at least have READ or CREATE permissions" : "Το κοινόχρηστο πρέπει να έχει τουλάχιστον άδεια για ΑΝΑΓΝΩΣΗ ή ΔΗΜΙΟΥΡΓΙΑ",
|
||||
"Share must have READ permission if UPDATE or DELETE permission is set" : "Το κοινόχρηστο πρέπει να έχει άδεια ΑΝΑΓΝΩΣΗ αν οριστεί άδεια ΕΝΗΜΕΡΩΣΗ ή ΔΙΑΓΡΑΦΗ",
|
||||
"Wrong password" : "Λάθος κωδικός πρόσβασης",
|
||||
"shared by %s" : "Διαμοιράστηκε από 1 %s",
|
||||
"Download all files" : "Λήψη όλων των αρχείων",
|
||||
"Direct link" : "Άμεσος σύνδεσμος",
|
||||
|
|
@ -109,6 +110,19 @@ OC.L10N.register(
|
|||
"You received {share} to group {group} as a share by {user}" : "Λάβατε το {share} ομάδας {group} ως κοινή χρήση από τον {user}",
|
||||
"Accept" : "Αποδοχή",
|
||||
"Decline" : "Απόρριψη",
|
||||
"Expiration date" : "Ημερομηνία λήξης",
|
||||
"Set a password" : "Ορισμός συνθηματικού",
|
||||
"Password" : "Συνθηματικό",
|
||||
"Share link" : "Διαμοιρασμός συνδέσμου",
|
||||
"Copy to clipboard" : "Αντιγραφή στο πρόχειρο",
|
||||
"Send link via email" : "Αποστολή συνδέσμου μέσω email",
|
||||
"Link copied to clipboard" : "Ο σύνδεσμος αντιγράφηκε στο πρόχειρο",
|
||||
"Select" : "Επιλογή",
|
||||
"Cancel" : "Ακύρωση",
|
||||
"Continue" : "Συνεχίστε",
|
||||
"Close" : "Κλείσιμο",
|
||||
"Error creating the share: {errorMessage}" : "Σφάλμα κατά τη δημιουργία της κοινής χρήσης: {errorMessage}",
|
||||
"Error creating the share" : "Σφάλμα κατά την δημιουργία κοινόχρηστου",
|
||||
"Sharing" : "Διαμοιρασμός",
|
||||
"Accept shares from other accounts and groups by default" : "Αποδοχή κοινόχρηστων από άλλους λογαριασμούς και ομάδες από προεπιλογή",
|
||||
"Error while toggling options" : "Σφάλμα κατά την εναλλαγή επιλογών",
|
||||
|
|
@ -142,7 +156,6 @@ OC.L10N.register(
|
|||
"Expiration date (enforced)" : "Ημερομηνία λήξης (υποχρεωτικά)",
|
||||
"Enter a date" : "Προσθέστε ημερομηνία",
|
||||
"Create share" : "Δημιουργήστε κοινή χρήση",
|
||||
"Cancel" : "Ακύρωση",
|
||||
"Customize link" : "Προσαρμογή συνδέσμου",
|
||||
"Generate QR code" : "Δημιουργία QR code",
|
||||
"Add another link" : "Προσθήκη άλλου συνδέσμου",
|
||||
|
|
@ -150,7 +163,6 @@ OC.L10N.register(
|
|||
"{shareWith} by {initiator}" : "{shareWith} από {initiator}",
|
||||
"Shared via link by {initiator}" : "Διαμοιράστηκε μέσω συνδέσμου {initiator}",
|
||||
"Share link ({label})" : "Σύνδεσμος κοινής χρήσης ({label})",
|
||||
"Share link" : "Διαμοιρασμός συνδέσμου",
|
||||
"Actions for \"{title}\"" : "Ενέργειες για \"{title}\"",
|
||||
"Copy public link of \"{title}\" to clipboard" : "Αντιγραφή του δημόσιου συνδέσμου \"{title}\" στο πρόχειρο",
|
||||
"Error, please enter proper password and/or expiration date" : "Σφάλμα, παρακαλώ εισάγετε τον σωστό κωδικό πρόσβασης και/ή ημερομηνία λήξης",
|
||||
|
|
@ -158,7 +170,6 @@ OC.L10N.register(
|
|||
"Error while creating the share" : "Σφάλμα κατά τη δημιουργία κοινόχρηστου",
|
||||
"View only" : "Μόνο για προβολή",
|
||||
"Can edit" : "Δυνατότητα επεξεργασίας",
|
||||
"File drop" : "Απόθεση αρχείου",
|
||||
"Custom permissions" : "Προσαρμοσμένα δικαιώματα",
|
||||
"Search for share recipients" : "Αναζήτηση για παραλήπτες διαμοιρασμού",
|
||||
"No recommendations. Start typing." : "Δεν υπάρχουν συστάσεις. Αρχίστε να πληκτρολογείτε.",
|
||||
|
|
@ -179,11 +190,9 @@ OC.L10N.register(
|
|||
"Advanced settings" : "Ρυθμίσεις για προχωρημένους",
|
||||
"Share label" : "Ετικέτα διαμοιρασμού",
|
||||
"Set password" : "Ορισμός κωδικού πρόσβασης",
|
||||
"Password" : "Συνθηματικό",
|
||||
"Password expired" : "Ο κωδικός πρόσβασης έληξε",
|
||||
"Video verification" : "Επαλήθευση βίντεο",
|
||||
"Set expiration date" : "Ορισμός ημερομηνίας λήξης",
|
||||
"Expiration date" : "Ημερομηνία λήξης",
|
||||
"Hide download" : "Απόκρυψη λήψης",
|
||||
"Allow download" : "Να επιτρέπεται η λήψη",
|
||||
"Note to recipient" : "Σημείωση προς τον παραλήπτη",
|
||||
|
|
@ -213,8 +222,6 @@ OC.L10N.register(
|
|||
"Shared" : "Κοινόχρηστα",
|
||||
"Show sharing options" : "Εμφάνιση επιλογών κοινής χρήσης",
|
||||
"Link to a file" : "Σύνδεσμος σε αρχείο",
|
||||
"Error creating the share: {errorMessage}" : "Σφάλμα κατά τη δημιουργία της κοινής χρήσης: {errorMessage}",
|
||||
"Error creating the share" : "Σφάλμα κατά την δημιουργία κοινόχρηστου",
|
||||
"Error updating the share: {errorMessage}" : "Σφάλμα κατά τη δημιουργία της κοινής χρήσης: {errorMessage}",
|
||||
"Error updating the share" : "Σφάλμα κατά την ενημέρωση του κοινόχρηστου",
|
||||
"Shared by" : "Διαμοιράστηκε από",
|
||||
|
|
@ -276,9 +283,9 @@ OC.L10N.register(
|
|||
"Bundled permissions" : "Ομαδοποιημένα δικαιώματα",
|
||||
"Only works for users with access to this folder" : "Δουλεύει μόνο για χρήστες με πρόσβαση σε αυτό το φάκελο",
|
||||
"Only works for users with access to this file" : "Δουλεύει μόνο για χρήστες με πρόσβαση στο αρχείο",
|
||||
"File drop" : "Απόθεση αρχείου",
|
||||
"Circle" : "Κύκλος",
|
||||
"Update" : "Ενημέρωση",
|
||||
"Share with " : "Κοινή χρήση με",
|
||||
"No other users with access found" : "Δεν βρέθηκαν άλλοι χρήστες με πρόσβαση",
|
||||
"No entries found in this folder" : "Δεν βρέθηκαν καταχωρήσεις σε αυτόν το φάκελο",
|
||||
"Name" : "Όνομα",
|
||||
|
|
|
|||
|
|
@ -96,6 +96,7 @@
|
|||
"Wrong or no update parameter given" : "Λάθος ή καμία παράμετρος αναβάθμισης δεν δόθηκε",
|
||||
"Share must at least have READ or CREATE permissions" : "Το κοινόχρηστο πρέπει να έχει τουλάχιστον άδεια για ΑΝΑΓΝΩΣΗ ή ΔΗΜΙΟΥΡΓΙΑ",
|
||||
"Share must have READ permission if UPDATE or DELETE permission is set" : "Το κοινόχρηστο πρέπει να έχει άδεια ΑΝΑΓΝΩΣΗ αν οριστεί άδεια ΕΝΗΜΕΡΩΣΗ ή ΔΙΑΓΡΑΦΗ",
|
||||
"Wrong password" : "Λάθος κωδικός πρόσβασης",
|
||||
"shared by %s" : "Διαμοιράστηκε από 1 %s",
|
||||
"Download all files" : "Λήψη όλων των αρχείων",
|
||||
"Direct link" : "Άμεσος σύνδεσμος",
|
||||
|
|
@ -107,6 +108,19 @@
|
|||
"You received {share} to group {group} as a share by {user}" : "Λάβατε το {share} ομάδας {group} ως κοινή χρήση από τον {user}",
|
||||
"Accept" : "Αποδοχή",
|
||||
"Decline" : "Απόρριψη",
|
||||
"Expiration date" : "Ημερομηνία λήξης",
|
||||
"Set a password" : "Ορισμός συνθηματικού",
|
||||
"Password" : "Συνθηματικό",
|
||||
"Share link" : "Διαμοιρασμός συνδέσμου",
|
||||
"Copy to clipboard" : "Αντιγραφή στο πρόχειρο",
|
||||
"Send link via email" : "Αποστολή συνδέσμου μέσω email",
|
||||
"Link copied to clipboard" : "Ο σύνδεσμος αντιγράφηκε στο πρόχειρο",
|
||||
"Select" : "Επιλογή",
|
||||
"Cancel" : "Ακύρωση",
|
||||
"Continue" : "Συνεχίστε",
|
||||
"Close" : "Κλείσιμο",
|
||||
"Error creating the share: {errorMessage}" : "Σφάλμα κατά τη δημιουργία της κοινής χρήσης: {errorMessage}",
|
||||
"Error creating the share" : "Σφάλμα κατά την δημιουργία κοινόχρηστου",
|
||||
"Sharing" : "Διαμοιρασμός",
|
||||
"Accept shares from other accounts and groups by default" : "Αποδοχή κοινόχρηστων από άλλους λογαριασμούς και ομάδες από προεπιλογή",
|
||||
"Error while toggling options" : "Σφάλμα κατά την εναλλαγή επιλογών",
|
||||
|
|
@ -140,7 +154,6 @@
|
|||
"Expiration date (enforced)" : "Ημερομηνία λήξης (υποχρεωτικά)",
|
||||
"Enter a date" : "Προσθέστε ημερομηνία",
|
||||
"Create share" : "Δημιουργήστε κοινή χρήση",
|
||||
"Cancel" : "Ακύρωση",
|
||||
"Customize link" : "Προσαρμογή συνδέσμου",
|
||||
"Generate QR code" : "Δημιουργία QR code",
|
||||
"Add another link" : "Προσθήκη άλλου συνδέσμου",
|
||||
|
|
@ -148,7 +161,6 @@
|
|||
"{shareWith} by {initiator}" : "{shareWith} από {initiator}",
|
||||
"Shared via link by {initiator}" : "Διαμοιράστηκε μέσω συνδέσμου {initiator}",
|
||||
"Share link ({label})" : "Σύνδεσμος κοινής χρήσης ({label})",
|
||||
"Share link" : "Διαμοιρασμός συνδέσμου",
|
||||
"Actions for \"{title}\"" : "Ενέργειες για \"{title}\"",
|
||||
"Copy public link of \"{title}\" to clipboard" : "Αντιγραφή του δημόσιου συνδέσμου \"{title}\" στο πρόχειρο",
|
||||
"Error, please enter proper password and/or expiration date" : "Σφάλμα, παρακαλώ εισάγετε τον σωστό κωδικό πρόσβασης και/ή ημερομηνία λήξης",
|
||||
|
|
@ -156,7 +168,6 @@
|
|||
"Error while creating the share" : "Σφάλμα κατά τη δημιουργία κοινόχρηστου",
|
||||
"View only" : "Μόνο για προβολή",
|
||||
"Can edit" : "Δυνατότητα επεξεργασίας",
|
||||
"File drop" : "Απόθεση αρχείου",
|
||||
"Custom permissions" : "Προσαρμοσμένα δικαιώματα",
|
||||
"Search for share recipients" : "Αναζήτηση για παραλήπτες διαμοιρασμού",
|
||||
"No recommendations. Start typing." : "Δεν υπάρχουν συστάσεις. Αρχίστε να πληκτρολογείτε.",
|
||||
|
|
@ -177,11 +188,9 @@
|
|||
"Advanced settings" : "Ρυθμίσεις για προχωρημένους",
|
||||
"Share label" : "Ετικέτα διαμοιρασμού",
|
||||
"Set password" : "Ορισμός κωδικού πρόσβασης",
|
||||
"Password" : "Συνθηματικό",
|
||||
"Password expired" : "Ο κωδικός πρόσβασης έληξε",
|
||||
"Video verification" : "Επαλήθευση βίντεο",
|
||||
"Set expiration date" : "Ορισμός ημερομηνίας λήξης",
|
||||
"Expiration date" : "Ημερομηνία λήξης",
|
||||
"Hide download" : "Απόκρυψη λήψης",
|
||||
"Allow download" : "Να επιτρέπεται η λήψη",
|
||||
"Note to recipient" : "Σημείωση προς τον παραλήπτη",
|
||||
|
|
@ -211,8 +220,6 @@
|
|||
"Shared" : "Κοινόχρηστα",
|
||||
"Show sharing options" : "Εμφάνιση επιλογών κοινής χρήσης",
|
||||
"Link to a file" : "Σύνδεσμος σε αρχείο",
|
||||
"Error creating the share: {errorMessage}" : "Σφάλμα κατά τη δημιουργία της κοινής χρήσης: {errorMessage}",
|
||||
"Error creating the share" : "Σφάλμα κατά την δημιουργία κοινόχρηστου",
|
||||
"Error updating the share: {errorMessage}" : "Σφάλμα κατά τη δημιουργία της κοινής χρήσης: {errorMessage}",
|
||||
"Error updating the share" : "Σφάλμα κατά την ενημέρωση του κοινόχρηστου",
|
||||
"Shared by" : "Διαμοιράστηκε από",
|
||||
|
|
@ -274,9 +281,9 @@
|
|||
"Bundled permissions" : "Ομαδοποιημένα δικαιώματα",
|
||||
"Only works for users with access to this folder" : "Δουλεύει μόνο για χρήστες με πρόσβαση σε αυτό το φάκελο",
|
||||
"Only works for users with access to this file" : "Δουλεύει μόνο για χρήστες με πρόσβαση στο αρχείο",
|
||||
"File drop" : "Απόθεση αρχείου",
|
||||
"Circle" : "Κύκλος",
|
||||
"Update" : "Ενημέρωση",
|
||||
"Share with " : "Κοινή χρήση με",
|
||||
"No other users with access found" : "Δεν βρέθηκαν άλλοι χρήστες με πρόσβαση",
|
||||
"No entries found in this folder" : "Δεν βρέθηκαν καταχωρήσεις σε αυτόν το φάκελο",
|
||||
"Name" : "Όνομα",
|
||||
|
|
|
|||
|
|
@ -86,6 +86,7 @@ OC.L10N.register(
|
|||
"Public link sharing is disabled by the administrator" : "Public link sharing is disabled by the administrator",
|
||||
"Public upload disabled by the administrator" : "Public upload disabled by the administrator",
|
||||
"Public upload is only possible for publicly shared folders" : "Public upload is only possible for publicly shared folders",
|
||||
"Please specify a valid email address" : "Please specify a valid email address",
|
||||
"Sharing %s sending the password by Nextcloud Talk failed because Nextcloud Talk is not enabled" : "Sharing %s sending the password by Nextcloud Talk failed because Nextcloud Talk is not enabled",
|
||||
"Sharing %1$s failed because the back end does not allow shares from type %2$s" : "Sharing %1$s failed because the back end does not allow shares from type %2$s",
|
||||
"Please specify a valid federated account ID" : "Please specify a valid federated account ID",
|
||||
|
|
@ -98,10 +99,22 @@ OC.L10N.register(
|
|||
"Not a directory" : "Not a directory",
|
||||
"Could not lock node" : "Could not lock node",
|
||||
"Could not lock path" : "Could not lock path",
|
||||
"no sharing rights on this item" : "no sharing rights on this item",
|
||||
"You are not allowed to edit incoming shares" : "You are not allowed to edit incoming shares",
|
||||
"Wrong or no update parameter given" : "Wrong or no update parameter given",
|
||||
"You are not allowed to edit link shares that you don't own" : "You are not allowed to edit link shares that you don't own",
|
||||
"Share must at least have READ or CREATE permissions" : "Share must at least have READ or CREATE permissions",
|
||||
"Share must have READ permission if UPDATE or DELETE permission is set" : "Share must have READ permission if UPDATE or DELETE permission is set",
|
||||
"\"Sending the password by Nextcloud Talk\" for sharing a file or folder failed because Nextcloud Talk is not enabled." : "\"Sending the password by Nextcloud Talk\" for sharing a file or folder failed because Nextcloud Talk is not enabled.",
|
||||
"Invalid date. Format must be YYYY-MM-DD" : "Invalid date. Format must be YYYY-MM-DD",
|
||||
"No sharing rights on this item" : "No sharing rights on this item",
|
||||
"Invalid share attributes provided: \"%s\"" : "Invalid share attributes provided: \"%s\"",
|
||||
"Should not happen, instanceOfStorage but getInstanceOfStorage return null" : "Should not happen, instanceOfStorage but getInstanceOfStorage return null",
|
||||
"Should not happen, instanceOfStorage but not a wrapper" : "Should not happen, instanceOfStorage but not a wrapper",
|
||||
"You are not allowed to send mail notifications" : "You are not allowed to send mail notifications",
|
||||
"No mail notification configured for this share type" : "No mail notification configured for this share type",
|
||||
"Wrong password" : "Incorrect password",
|
||||
"Error while sending mail notification" : "Error while sending mail notification",
|
||||
"shared by %s" : "shared by %s",
|
||||
"Download all files" : "Download all files",
|
||||
"Direct link" : "Direct link",
|
||||
|
|
@ -115,6 +128,61 @@ OC.L10N.register(
|
|||
"Accept" : "Accept",
|
||||
"Decline" : "Decline",
|
||||
"This application enables people to share files within Nextcloud. If enabled, the admin can choose which groups can share files. The applicable people can then share files and folders with other accounts and groups within Nextcloud. In addition, if the admin enables the share link feature, an external link can be used to share files with other people outside of Nextcloud. Admins can also enforce passwords, expirations dates, and enable server to server sharing via share links, as well as sharing from mobile devices.\nTurning the feature off removes shared files and folders on the server for all share recipients, and also on the sync clients and mobile apps. More information is available in the Nextcloud Documentation." : "This application enables people to share files within Nextcloud. If enabled, the admin can choose which groups can share files. The applicable people can then share files and folders with other accounts and groups within Nextcloud. In addition, if the admin enables the share link feature, an external link can be used to share files with other people outside of Nextcloud. Admins can also enforce passwords, expirations dates, and enable server to server sharing via share links, as well as sharing from mobile devices.\nTurning the feature off removes shared files and folders on the server for all share recipients, and also on the sync clients and mobile apps. More information is available in the Nextcloud Documentation.",
|
||||
"Your administrator has enforced a default expiration date with a maximum {days} days." : "Your administrator has enforced a default expiration date with a maximum {days} days.",
|
||||
"When should the request expire?" : "When should the request expire?",
|
||||
"Set a submission expirationDate" : "Set a submission expirationDate",
|
||||
"Expiration date" : "Expiration date",
|
||||
"Select a date" : "Select a date",
|
||||
"Your administrator has enforced a password protection." : "Your administrator has enforced a password protection.",
|
||||
"What password should be used for the request?" : "What password should be used for the request?",
|
||||
"Set a password" : "Set a password",
|
||||
"Password" : "Password",
|
||||
"Enter a valid password" : "Enter a valid password",
|
||||
"Generate a new password" : "Generate a new password",
|
||||
"The request will expire on {date} at midnight and will be password protected." : "The request will expire on {date} at midnight and will be password protected.",
|
||||
"The request will expire on {date} at midnight." : "The request will expire on {date} at midnight.",
|
||||
"The request will be password protected." : "The request will be password protected.",
|
||||
"Once created, you can share the link below to allow people to upload files to your directory." : "Once created, you can share the link below to allow people to upload files to your directory.",
|
||||
"Share link" : "Share link",
|
||||
"Copy to clipboard" : "Copy to clipboard",
|
||||
"Send link via email" : "Send link via email",
|
||||
"Enter an email address or paste a list" : "Enter an email address or paste a list",
|
||||
"Remove email" : "Remove email",
|
||||
"Automatically copying failed, please copy the share link manually" : "Automatically copying failed, please copy the share link manually",
|
||||
"Link copied to clipboard" : "Link copied to clipboard",
|
||||
"Email already added" : "Email already added",
|
||||
"Invalid email address" : "Invalid email address",
|
||||
"_1 email address already added_::_{count} email addresses already added_" : ["1 email address already added","{count} email addresses already added"],
|
||||
"_1 email address added_::_{count} email addresses added_" : ["1 email address added","{count} email addresses added"],
|
||||
"What are you requesting?" : "What are you requesting?",
|
||||
"Request subject" : "Request subject",
|
||||
"Birthday party photos, History assignment…" : "Birthday party photos, History assignment…",
|
||||
"Where should these files go?" : "Where should these files go?",
|
||||
"The uploaded files are visible only to you unless you choose to share them." : "The uploaded files are visible only to you unless you choose to share them.",
|
||||
"Upload destination" : "Upload destination",
|
||||
"Select a destination" : "Select a destination",
|
||||
"Revert to default" : "Revert to default",
|
||||
"Add a note" : "Add a note",
|
||||
"Note for recipient" : "Note for recipient",
|
||||
"Add a note to help people understand what you are requesting." : "Add a note to help people understand what you are requesting.",
|
||||
"Select" : "Select",
|
||||
"Create a file request" : "Create a file request",
|
||||
"File request created" : "File request created",
|
||||
"Collect files from others even if they do not have an account." : "Collect files from others even if they do not have an account.",
|
||||
"To ensure you can receive files, verify you have enough storage available." : "To ensure you can receive files, verify you have enough storage available.",
|
||||
"File request" : "File request",
|
||||
"Cancel" : "Cancel",
|
||||
"Cancel the file request creation" : "Cancel the file request creation",
|
||||
"Previous step" : "Previous step",
|
||||
"Continue" : "Continue",
|
||||
"Close" : "Close",
|
||||
"Please select a folder, you cannot share the root directory." : "Please select a folder, you cannot share the root directory.",
|
||||
"File request created and emails sent" : "File request created and emails sent",
|
||||
"Error creating the share: {errorMessage}" : "Error creating the share: {errorMessage}",
|
||||
"Error creating the share" : "Error creating the share",
|
||||
"Error sending emails: {errorMessage}" : "Error sending emails: {errorMessage}",
|
||||
"Error sending emails" : "Error sending emails",
|
||||
"_Close and send email_::_Close and send {count} emails_" : ["Close and send email","Close and send {count} emails"],
|
||||
"Sharing" : "Sharing",
|
||||
"Accept shares from other accounts and groups by default" : "Accept shares from other accounts and groups by default",
|
||||
"Error while toggling options" : "Error while toggling options",
|
||||
|
|
@ -149,17 +217,17 @@ OC.L10N.register(
|
|||
"Expiration date (enforced)" : "Expiration date (enforced)",
|
||||
"Enter a date" : "Enter a date",
|
||||
"Create share" : "Create share",
|
||||
"Cancel" : "Cancel",
|
||||
"Customize link" : "Customise link",
|
||||
"Generate QR code" : "Generate QR code",
|
||||
"Add another link" : "Add another link",
|
||||
"Create a new share link" : "Create a new share link",
|
||||
"{shareWith} by {initiator}" : "{shareWith} by {initiator}",
|
||||
"Shared via link by {initiator}" : "Shared via link by {initiator}",
|
||||
"File request ({label})" : "File request ({label})",
|
||||
"Mail share ({label})" : "Mail share ({label})",
|
||||
"Share link ({label})" : "Share link ({label})",
|
||||
"Mail share" : "Mail share",
|
||||
"Share link ({index})" : "Share link ({index})",
|
||||
"Share link" : "Share link",
|
||||
"Actions for \"{title}\"" : "Actions for \"{title}\"",
|
||||
"Copy public link of \"{title}\" to clipboard" : "Copy public link of \"{title}\" to clipboard",
|
||||
"Error, please enter proper password and/or expiration date" : "Error, please enter proper password and/or expiration date",
|
||||
|
|
@ -168,7 +236,6 @@ OC.L10N.register(
|
|||
"Quick share options, the current selected is \"{selectedOption}\"" : "Quick share options, the current selected is \"{selectedOption}\"",
|
||||
"View only" : "View only",
|
||||
"Can edit" : "Can edit",
|
||||
"File drop" : "File drop",
|
||||
"Custom permissions" : "Custom permissions",
|
||||
"Search for share recipients" : "Search for share recipients",
|
||||
"No recommendations. Start typing." : "No recommendations. Start typing.",
|
||||
|
|
@ -192,12 +259,10 @@ OC.L10N.register(
|
|||
"Advanced settings" : "Advanced settings",
|
||||
"Share label" : "Share label",
|
||||
"Set password" : "Set password",
|
||||
"Password" : "Password",
|
||||
"Password expires {passwordExpirationTime}" : "Password expires {passwordExpirationTime}",
|
||||
"Password expired" : "Password expired",
|
||||
"Video verification" : "Video verification",
|
||||
"Set expiration date" : "Set expiration date",
|
||||
"Expiration date" : "Expiration date",
|
||||
"Hide download" : "Hide download",
|
||||
"Allow download" : "Allow download",
|
||||
"Note to recipient" : "Note to recipient",
|
||||
|
|
@ -221,6 +286,7 @@ OC.L10N.register(
|
|||
"Toggle list of others with access to this directory" : "Toggle list of others with access to this directory",
|
||||
"Toggle list of others with access to this file" : "Toggle list of others with access to this file",
|
||||
"Unable to fetch inherited shares" : "Unable to fetch inherited shares",
|
||||
"_The following email address is not valid: {emails}_::_The following email addresses are not valid: {emails}_" : ["The following email address is not valid: {emails}","The following email addresses are not valid: {emails}"],
|
||||
"Unable to load the shares list" : "Unable to load the shares list",
|
||||
"Expires {relativetime}" : "Expires {relativetime}",
|
||||
"this share just expired." : "this share just expired.",
|
||||
|
|
@ -234,13 +300,12 @@ OC.L10N.register(
|
|||
"Shared by {ownerDisplayName}" : "Shared by {ownerDisplayName}",
|
||||
"Show sharing options" : "Show sharing options",
|
||||
"Link to a file" : "Link to a file",
|
||||
"Error creating the share: {errorMessage}" : "Error creating the share: {errorMessage}",
|
||||
"Error creating the share" : "Error creating the share",
|
||||
"Error updating the share: {errorMessage}" : "Error updating the share: {errorMessage}",
|
||||
"Error updating the share" : "Error updating the share",
|
||||
"File \"{path}\" has been unshared" : "File \"{path}\" has been unshared",
|
||||
"Folder \"{path}\" has been unshared" : "Folder \"{path}\" has been unshared",
|
||||
"Share {propertyName} saved" : "Share {propertyName} saved",
|
||||
"Create new file request" : "Create new file request",
|
||||
"Shared by" : "Shared by",
|
||||
"Shared with" : "Shared with",
|
||||
"Password created successfully" : "Password created successfully",
|
||||
|
|
@ -302,9 +367,9 @@ OC.L10N.register(
|
|||
"Bundled permissions" : "Bundled permissions",
|
||||
"Only works for users with access to this folder" : "Only works for users with access to this folder",
|
||||
"Only works for users with access to this file" : "Only works for users with access to this file",
|
||||
"File drop" : "File drop",
|
||||
"Circle" : "Circle",
|
||||
"Update" : "Update",
|
||||
"Share with " : "Share with ",
|
||||
"No other users with access found" : "No other users with access found",
|
||||
"No entries found in this folder" : "No entries found in this folder",
|
||||
"Name" : "Name",
|
||||
|
|
|
|||
|
|
@ -84,6 +84,7 @@
|
|||
"Public link sharing is disabled by the administrator" : "Public link sharing is disabled by the administrator",
|
||||
"Public upload disabled by the administrator" : "Public upload disabled by the administrator",
|
||||
"Public upload is only possible for publicly shared folders" : "Public upload is only possible for publicly shared folders",
|
||||
"Please specify a valid email address" : "Please specify a valid email address",
|
||||
"Sharing %s sending the password by Nextcloud Talk failed because Nextcloud Talk is not enabled" : "Sharing %s sending the password by Nextcloud Talk failed because Nextcloud Talk is not enabled",
|
||||
"Sharing %1$s failed because the back end does not allow shares from type %2$s" : "Sharing %1$s failed because the back end does not allow shares from type %2$s",
|
||||
"Please specify a valid federated account ID" : "Please specify a valid federated account ID",
|
||||
|
|
@ -96,10 +97,22 @@
|
|||
"Not a directory" : "Not a directory",
|
||||
"Could not lock node" : "Could not lock node",
|
||||
"Could not lock path" : "Could not lock path",
|
||||
"no sharing rights on this item" : "no sharing rights on this item",
|
||||
"You are not allowed to edit incoming shares" : "You are not allowed to edit incoming shares",
|
||||
"Wrong or no update parameter given" : "Wrong or no update parameter given",
|
||||
"You are not allowed to edit link shares that you don't own" : "You are not allowed to edit link shares that you don't own",
|
||||
"Share must at least have READ or CREATE permissions" : "Share must at least have READ or CREATE permissions",
|
||||
"Share must have READ permission if UPDATE or DELETE permission is set" : "Share must have READ permission if UPDATE or DELETE permission is set",
|
||||
"\"Sending the password by Nextcloud Talk\" for sharing a file or folder failed because Nextcloud Talk is not enabled." : "\"Sending the password by Nextcloud Talk\" for sharing a file or folder failed because Nextcloud Talk is not enabled.",
|
||||
"Invalid date. Format must be YYYY-MM-DD" : "Invalid date. Format must be YYYY-MM-DD",
|
||||
"No sharing rights on this item" : "No sharing rights on this item",
|
||||
"Invalid share attributes provided: \"%s\"" : "Invalid share attributes provided: \"%s\"",
|
||||
"Should not happen, instanceOfStorage but getInstanceOfStorage return null" : "Should not happen, instanceOfStorage but getInstanceOfStorage return null",
|
||||
"Should not happen, instanceOfStorage but not a wrapper" : "Should not happen, instanceOfStorage but not a wrapper",
|
||||
"You are not allowed to send mail notifications" : "You are not allowed to send mail notifications",
|
||||
"No mail notification configured for this share type" : "No mail notification configured for this share type",
|
||||
"Wrong password" : "Incorrect password",
|
||||
"Error while sending mail notification" : "Error while sending mail notification",
|
||||
"shared by %s" : "shared by %s",
|
||||
"Download all files" : "Download all files",
|
||||
"Direct link" : "Direct link",
|
||||
|
|
@ -113,6 +126,61 @@
|
|||
"Accept" : "Accept",
|
||||
"Decline" : "Decline",
|
||||
"This application enables people to share files within Nextcloud. If enabled, the admin can choose which groups can share files. The applicable people can then share files and folders with other accounts and groups within Nextcloud. In addition, if the admin enables the share link feature, an external link can be used to share files with other people outside of Nextcloud. Admins can also enforce passwords, expirations dates, and enable server to server sharing via share links, as well as sharing from mobile devices.\nTurning the feature off removes shared files and folders on the server for all share recipients, and also on the sync clients and mobile apps. More information is available in the Nextcloud Documentation." : "This application enables people to share files within Nextcloud. If enabled, the admin can choose which groups can share files. The applicable people can then share files and folders with other accounts and groups within Nextcloud. In addition, if the admin enables the share link feature, an external link can be used to share files with other people outside of Nextcloud. Admins can also enforce passwords, expirations dates, and enable server to server sharing via share links, as well as sharing from mobile devices.\nTurning the feature off removes shared files and folders on the server for all share recipients, and also on the sync clients and mobile apps. More information is available in the Nextcloud Documentation.",
|
||||
"Your administrator has enforced a default expiration date with a maximum {days} days." : "Your administrator has enforced a default expiration date with a maximum {days} days.",
|
||||
"When should the request expire?" : "When should the request expire?",
|
||||
"Set a submission expirationDate" : "Set a submission expirationDate",
|
||||
"Expiration date" : "Expiration date",
|
||||
"Select a date" : "Select a date",
|
||||
"Your administrator has enforced a password protection." : "Your administrator has enforced a password protection.",
|
||||
"What password should be used for the request?" : "What password should be used for the request?",
|
||||
"Set a password" : "Set a password",
|
||||
"Password" : "Password",
|
||||
"Enter a valid password" : "Enter a valid password",
|
||||
"Generate a new password" : "Generate a new password",
|
||||
"The request will expire on {date} at midnight and will be password protected." : "The request will expire on {date} at midnight and will be password protected.",
|
||||
"The request will expire on {date} at midnight." : "The request will expire on {date} at midnight.",
|
||||
"The request will be password protected." : "The request will be password protected.",
|
||||
"Once created, you can share the link below to allow people to upload files to your directory." : "Once created, you can share the link below to allow people to upload files to your directory.",
|
||||
"Share link" : "Share link",
|
||||
"Copy to clipboard" : "Copy to clipboard",
|
||||
"Send link via email" : "Send link via email",
|
||||
"Enter an email address or paste a list" : "Enter an email address or paste a list",
|
||||
"Remove email" : "Remove email",
|
||||
"Automatically copying failed, please copy the share link manually" : "Automatically copying failed, please copy the share link manually",
|
||||
"Link copied to clipboard" : "Link copied to clipboard",
|
||||
"Email already added" : "Email already added",
|
||||
"Invalid email address" : "Invalid email address",
|
||||
"_1 email address already added_::_{count} email addresses already added_" : ["1 email address already added","{count} email addresses already added"],
|
||||
"_1 email address added_::_{count} email addresses added_" : ["1 email address added","{count} email addresses added"],
|
||||
"What are you requesting?" : "What are you requesting?",
|
||||
"Request subject" : "Request subject",
|
||||
"Birthday party photos, History assignment…" : "Birthday party photos, History assignment…",
|
||||
"Where should these files go?" : "Where should these files go?",
|
||||
"The uploaded files are visible only to you unless you choose to share them." : "The uploaded files are visible only to you unless you choose to share them.",
|
||||
"Upload destination" : "Upload destination",
|
||||
"Select a destination" : "Select a destination",
|
||||
"Revert to default" : "Revert to default",
|
||||
"Add a note" : "Add a note",
|
||||
"Note for recipient" : "Note for recipient",
|
||||
"Add a note to help people understand what you are requesting." : "Add a note to help people understand what you are requesting.",
|
||||
"Select" : "Select",
|
||||
"Create a file request" : "Create a file request",
|
||||
"File request created" : "File request created",
|
||||
"Collect files from others even if they do not have an account." : "Collect files from others even if they do not have an account.",
|
||||
"To ensure you can receive files, verify you have enough storage available." : "To ensure you can receive files, verify you have enough storage available.",
|
||||
"File request" : "File request",
|
||||
"Cancel" : "Cancel",
|
||||
"Cancel the file request creation" : "Cancel the file request creation",
|
||||
"Previous step" : "Previous step",
|
||||
"Continue" : "Continue",
|
||||
"Close" : "Close",
|
||||
"Please select a folder, you cannot share the root directory." : "Please select a folder, you cannot share the root directory.",
|
||||
"File request created and emails sent" : "File request created and emails sent",
|
||||
"Error creating the share: {errorMessage}" : "Error creating the share: {errorMessage}",
|
||||
"Error creating the share" : "Error creating the share",
|
||||
"Error sending emails: {errorMessage}" : "Error sending emails: {errorMessage}",
|
||||
"Error sending emails" : "Error sending emails",
|
||||
"_Close and send email_::_Close and send {count} emails_" : ["Close and send email","Close and send {count} emails"],
|
||||
"Sharing" : "Sharing",
|
||||
"Accept shares from other accounts and groups by default" : "Accept shares from other accounts and groups by default",
|
||||
"Error while toggling options" : "Error while toggling options",
|
||||
|
|
@ -147,17 +215,17 @@
|
|||
"Expiration date (enforced)" : "Expiration date (enforced)",
|
||||
"Enter a date" : "Enter a date",
|
||||
"Create share" : "Create share",
|
||||
"Cancel" : "Cancel",
|
||||
"Customize link" : "Customise link",
|
||||
"Generate QR code" : "Generate QR code",
|
||||
"Add another link" : "Add another link",
|
||||
"Create a new share link" : "Create a new share link",
|
||||
"{shareWith} by {initiator}" : "{shareWith} by {initiator}",
|
||||
"Shared via link by {initiator}" : "Shared via link by {initiator}",
|
||||
"File request ({label})" : "File request ({label})",
|
||||
"Mail share ({label})" : "Mail share ({label})",
|
||||
"Share link ({label})" : "Share link ({label})",
|
||||
"Mail share" : "Mail share",
|
||||
"Share link ({index})" : "Share link ({index})",
|
||||
"Share link" : "Share link",
|
||||
"Actions for \"{title}\"" : "Actions for \"{title}\"",
|
||||
"Copy public link of \"{title}\" to clipboard" : "Copy public link of \"{title}\" to clipboard",
|
||||
"Error, please enter proper password and/or expiration date" : "Error, please enter proper password and/or expiration date",
|
||||
|
|
@ -166,7 +234,6 @@
|
|||
"Quick share options, the current selected is \"{selectedOption}\"" : "Quick share options, the current selected is \"{selectedOption}\"",
|
||||
"View only" : "View only",
|
||||
"Can edit" : "Can edit",
|
||||
"File drop" : "File drop",
|
||||
"Custom permissions" : "Custom permissions",
|
||||
"Search for share recipients" : "Search for share recipients",
|
||||
"No recommendations. Start typing." : "No recommendations. Start typing.",
|
||||
|
|
@ -190,12 +257,10 @@
|
|||
"Advanced settings" : "Advanced settings",
|
||||
"Share label" : "Share label",
|
||||
"Set password" : "Set password",
|
||||
"Password" : "Password",
|
||||
"Password expires {passwordExpirationTime}" : "Password expires {passwordExpirationTime}",
|
||||
"Password expired" : "Password expired",
|
||||
"Video verification" : "Video verification",
|
||||
"Set expiration date" : "Set expiration date",
|
||||
"Expiration date" : "Expiration date",
|
||||
"Hide download" : "Hide download",
|
||||
"Allow download" : "Allow download",
|
||||
"Note to recipient" : "Note to recipient",
|
||||
|
|
@ -219,6 +284,7 @@
|
|||
"Toggle list of others with access to this directory" : "Toggle list of others with access to this directory",
|
||||
"Toggle list of others with access to this file" : "Toggle list of others with access to this file",
|
||||
"Unable to fetch inherited shares" : "Unable to fetch inherited shares",
|
||||
"_The following email address is not valid: {emails}_::_The following email addresses are not valid: {emails}_" : ["The following email address is not valid: {emails}","The following email addresses are not valid: {emails}"],
|
||||
"Unable to load the shares list" : "Unable to load the shares list",
|
||||
"Expires {relativetime}" : "Expires {relativetime}",
|
||||
"this share just expired." : "this share just expired.",
|
||||
|
|
@ -232,13 +298,12 @@
|
|||
"Shared by {ownerDisplayName}" : "Shared by {ownerDisplayName}",
|
||||
"Show sharing options" : "Show sharing options",
|
||||
"Link to a file" : "Link to a file",
|
||||
"Error creating the share: {errorMessage}" : "Error creating the share: {errorMessage}",
|
||||
"Error creating the share" : "Error creating the share",
|
||||
"Error updating the share: {errorMessage}" : "Error updating the share: {errorMessage}",
|
||||
"Error updating the share" : "Error updating the share",
|
||||
"File \"{path}\" has been unshared" : "File \"{path}\" has been unshared",
|
||||
"Folder \"{path}\" has been unshared" : "Folder \"{path}\" has been unshared",
|
||||
"Share {propertyName} saved" : "Share {propertyName} saved",
|
||||
"Create new file request" : "Create new file request",
|
||||
"Shared by" : "Shared by",
|
||||
"Shared with" : "Shared with",
|
||||
"Password created successfully" : "Password created successfully",
|
||||
|
|
@ -300,9 +365,9 @@
|
|||
"Bundled permissions" : "Bundled permissions",
|
||||
"Only works for users with access to this folder" : "Only works for users with access to this folder",
|
||||
"Only works for users with access to this file" : "Only works for users with access to this file",
|
||||
"File drop" : "File drop",
|
||||
"Circle" : "Circle",
|
||||
"Update" : "Update",
|
||||
"Share with " : "Share with ",
|
||||
"No other users with access found" : "No other users with access found",
|
||||
"No entries found in this folder" : "No entries found in this folder",
|
||||
"Name" : "Name",
|
||||
|
|
|
|||
|
|
@ -88,6 +88,7 @@ OC.L10N.register(
|
|||
"Not a directory" : "Ne estas dosierujo",
|
||||
"Could not lock path" : "Ne eblis ŝlosi vojon",
|
||||
"Wrong or no update parameter given" : "Neniu aŭ neĝusta ĝisdatiga parametro donita",
|
||||
"Wrong password" : "Neĝusta pasvorto",
|
||||
"shared by %s" : "kunhavigita de %s",
|
||||
"Download all files" : "Elŝuti ĉiujn dosierojn",
|
||||
"Direct link" : "Direkta ligilo",
|
||||
|
|
@ -99,6 +100,15 @@ OC.L10N.register(
|
|||
"You received {share} to group {group} as a share by {user}" : "Vi ricevis „{share}“ al grupo {group} kiel kunhavon el {user}",
|
||||
"Accept" : "Akcepti",
|
||||
"Decline" : "Malakcepti",
|
||||
"Expiration date" : "Limdato",
|
||||
"Share link" : "Kunhavigi ligilon",
|
||||
"Copy to clipboard" : "Kopii tondejen",
|
||||
"Link copied to clipboard" : "Ligilo kopiita al tondujo",
|
||||
"Select" : "Elekti",
|
||||
"Cancel" : "Nuligi",
|
||||
"Continue" : "Daŭrigi",
|
||||
"Close" : "Malfermi",
|
||||
"Error creating the share" : "Eraro dum kreo de la kunhavigo",
|
||||
"Sharing" : "Kunhavigo",
|
||||
"Reset" : "Restarigi",
|
||||
"Unknown error" : "Nekonata eraro",
|
||||
|
|
@ -120,11 +130,9 @@ OC.L10N.register(
|
|||
"Enter a password" : "Entajpu pasvorton",
|
||||
"Expiration date (enforced)" : "Limdato (efektiva)",
|
||||
"Enter a date" : "Entajpu daton",
|
||||
"Cancel" : "Nuligi",
|
||||
"Add another link" : "Aldoni plian ligilon",
|
||||
"Create a new share link" : "Krei novan kunhavan ligilon",
|
||||
"Shared via link by {initiator}" : "Kunhavata per ligilo de {initiator}",
|
||||
"Share link" : "Kunhavigi ligilon",
|
||||
"Error, please enter proper password and/or expiration date" : "Eraro; entajpu ĝustan pasvorton aŭ limdaton",
|
||||
"Can edit" : "Povas redakti",
|
||||
"No recommendations. Start typing." : "Neniu propono. Ektajpu.",
|
||||
|
|
@ -140,7 +148,6 @@ OC.L10N.register(
|
|||
"Allow editing" : "Permesi modifon",
|
||||
"Advanced settings" : "Altanivela agordo",
|
||||
"Set expiration date" : "Uzi limdaton",
|
||||
"Expiration date" : "Limdato",
|
||||
"Hide download" : "Kaŝi elŝuton",
|
||||
"Note to recipient" : "Noto por la ricevonto",
|
||||
"Enter a note for the share recipient" : "Entajpu noton por la ricevonto",
|
||||
|
|
@ -154,7 +161,6 @@ OC.L10N.register(
|
|||
"Shared with you by {owner}" : "Kunhavigita kun vi de {owner}",
|
||||
"Shared" : "Kunhavigita",
|
||||
"Link to a file" : "Ligilo al dosiero",
|
||||
"Error creating the share" : "Eraro dum kreo de la kunhavigo",
|
||||
"Error updating the share" : "Eraro dum ĝisdatigo de la kunhavigo",
|
||||
"Shared by" : "Kunhavigita de",
|
||||
"Shared with" : "Kunhavigita kun",
|
||||
|
|
|
|||
|
|
@ -86,6 +86,7 @@
|
|||
"Not a directory" : "Ne estas dosierujo",
|
||||
"Could not lock path" : "Ne eblis ŝlosi vojon",
|
||||
"Wrong or no update parameter given" : "Neniu aŭ neĝusta ĝisdatiga parametro donita",
|
||||
"Wrong password" : "Neĝusta pasvorto",
|
||||
"shared by %s" : "kunhavigita de %s",
|
||||
"Download all files" : "Elŝuti ĉiujn dosierojn",
|
||||
"Direct link" : "Direkta ligilo",
|
||||
|
|
@ -97,6 +98,15 @@
|
|||
"You received {share} to group {group} as a share by {user}" : "Vi ricevis „{share}“ al grupo {group} kiel kunhavon el {user}",
|
||||
"Accept" : "Akcepti",
|
||||
"Decline" : "Malakcepti",
|
||||
"Expiration date" : "Limdato",
|
||||
"Share link" : "Kunhavigi ligilon",
|
||||
"Copy to clipboard" : "Kopii tondejen",
|
||||
"Link copied to clipboard" : "Ligilo kopiita al tondujo",
|
||||
"Select" : "Elekti",
|
||||
"Cancel" : "Nuligi",
|
||||
"Continue" : "Daŭrigi",
|
||||
"Close" : "Malfermi",
|
||||
"Error creating the share" : "Eraro dum kreo de la kunhavigo",
|
||||
"Sharing" : "Kunhavigo",
|
||||
"Reset" : "Restarigi",
|
||||
"Unknown error" : "Nekonata eraro",
|
||||
|
|
@ -118,11 +128,9 @@
|
|||
"Enter a password" : "Entajpu pasvorton",
|
||||
"Expiration date (enforced)" : "Limdato (efektiva)",
|
||||
"Enter a date" : "Entajpu daton",
|
||||
"Cancel" : "Nuligi",
|
||||
"Add another link" : "Aldoni plian ligilon",
|
||||
"Create a new share link" : "Krei novan kunhavan ligilon",
|
||||
"Shared via link by {initiator}" : "Kunhavata per ligilo de {initiator}",
|
||||
"Share link" : "Kunhavigi ligilon",
|
||||
"Error, please enter proper password and/or expiration date" : "Eraro; entajpu ĝustan pasvorton aŭ limdaton",
|
||||
"Can edit" : "Povas redakti",
|
||||
"No recommendations. Start typing." : "Neniu propono. Ektajpu.",
|
||||
|
|
@ -138,7 +146,6 @@
|
|||
"Allow editing" : "Permesi modifon",
|
||||
"Advanced settings" : "Altanivela agordo",
|
||||
"Set expiration date" : "Uzi limdaton",
|
||||
"Expiration date" : "Limdato",
|
||||
"Hide download" : "Kaŝi elŝuton",
|
||||
"Note to recipient" : "Noto por la ricevonto",
|
||||
"Enter a note for the share recipient" : "Entajpu noton por la ricevonto",
|
||||
|
|
@ -152,7 +159,6 @@
|
|||
"Shared with you by {owner}" : "Kunhavigita kun vi de {owner}",
|
||||
"Shared" : "Kunhavigita",
|
||||
"Link to a file" : "Ligilo al dosiero",
|
||||
"Error creating the share" : "Eraro dum kreo de la kunhavigo",
|
||||
"Error updating the share" : "Eraro dum ĝisdatigo de la kunhavigo",
|
||||
"Shared by" : "Kunhavigita de",
|
||||
"Shared with" : "Kunhavigita kun",
|
||||
|
|
|
|||
|
|
@ -102,6 +102,7 @@ OC.L10N.register(
|
|||
"Share must at least have READ or CREATE permissions" : "El recurso compartido debe tener al menos el permiso de LECTURA o CREACIÓN",
|
||||
"Share must have READ permission if UPDATE or DELETE permission is set" : "El recurso compartido debe tener el permiso de LECTURA si el permiso de ACTUALIZAR o ELIMINAR está activado.",
|
||||
"\"Sending the password by Nextcloud Talk\" for sharing a file or folder failed because Nextcloud Talk is not enabled." : "\"El envío de la contraseña por Nextcloud Talk\" para compartir un archivo o carpeta falló porque Nextcloud Talk no está habilitado.",
|
||||
"Wrong password" : "Contraseña incorrecta",
|
||||
"shared by %s" : "compartido por %s",
|
||||
"Download all files" : "Descargar todos los archivos",
|
||||
"Direct link" : "Enlace directo",
|
||||
|
|
@ -115,6 +116,19 @@ OC.L10N.register(
|
|||
"Accept" : "Aceptar",
|
||||
"Decline" : "Declinar",
|
||||
"This application enables people to share files within Nextcloud. If enabled, the admin can choose which groups can share files. The applicable people can then share files and folders with other accounts and groups within Nextcloud. In addition, if the admin enables the share link feature, an external link can be used to share files with other people outside of Nextcloud. Admins can also enforce passwords, expirations dates, and enable server to server sharing via share links, as well as sharing from mobile devices.\nTurning the feature off removes shared files and folders on the server for all share recipients, and also on the sync clients and mobile apps. More information is available in the Nextcloud Documentation." : "Esta aplicación permite a los usuarios compartir archivos dentro de Nextcloud. Si se activa, el administrador puede elegir qué grupos pueden compartir archivos. Los usuarios aplicables pueden entonces compartir archivos y carpetas con otros usuarios y grupos dentro de Nextcloud. Además, si el administrador activa la característica de enlace compartido, se puede usar un enlace externo para compartir archivos con otros usuarios fuera de Nextcloud. Los administradores pueden obligar a usar contraseñas o fechas de caducidad y activar el compartir de servidor a servidor vía enlaces compartidos, así como compartir desde dispositivos móviles.\nQuitar esta característica elimina los archivos compartidos y las carpetas en el servidor, para todos los receptores, y también los clientes de sincronización y móviles. Más información disponible en la Documentación de Nextcloud.",
|
||||
"Expiration date" : "Fecha de caducidad",
|
||||
"Set a password" : "Configura una contraseña",
|
||||
"Password" : "Contraseña",
|
||||
"Share link" : "Compartir enlace",
|
||||
"Copy to clipboard" : "Copiar al portapapeles",
|
||||
"Send link via email" : "Enviar el link por email",
|
||||
"Link copied to clipboard" : "Enlace copiado al portapapeles",
|
||||
"Select" : "Seleccionar",
|
||||
"Cancel" : "Cancelar",
|
||||
"Continue" : "Continuar",
|
||||
"Close" : "Cerrar",
|
||||
"Error creating the share: {errorMessage}" : "Error al crear el recurso compartido: {errorMessage}",
|
||||
"Error creating the share" : "Error quitando el recurso compartido",
|
||||
"Sharing" : "Compartir",
|
||||
"Accept shares from other accounts and groups by default" : "Aceptar recursos compartidos de otras cuentas y grupos por defecto",
|
||||
"Error while toggling options" : "Error cambiar las opciones",
|
||||
|
|
@ -149,7 +163,6 @@ OC.L10N.register(
|
|||
"Expiration date (enforced)" : "Fecha de caducidad (impuesta)",
|
||||
"Enter a date" : "Introduzca una fecha",
|
||||
"Create share" : "Crear un recurso compartido",
|
||||
"Cancel" : "Cancelar",
|
||||
"Customize link" : "Personalizar enlace",
|
||||
"Generate QR code" : "Generar código QR",
|
||||
"Add another link" : "Añadir otro enlace",
|
||||
|
|
@ -159,7 +172,6 @@ OC.L10N.register(
|
|||
"Mail share ({label})" : "Compartir correo ({label})",
|
||||
"Share link ({label})" : "Compartir enlace ({label})",
|
||||
"Share link ({index})" : "Compartir enlace ({index})",
|
||||
"Share link" : "Compartir enlace",
|
||||
"Actions for \"{title}\"" : "Acciones para \"{title}\"",
|
||||
"Copy public link of \"{title}\" to clipboard" : "Copiar enlace público de \"{title}\" al portapapeles",
|
||||
"Error, please enter proper password and/or expiration date" : "Error, por favor, introduce la contraseña y/o fecha de caducidad adecuada",
|
||||
|
|
@ -168,7 +180,6 @@ OC.L10N.register(
|
|||
"Quick share options, the current selected is \"{selectedOption}\"" : "Opciones rápidas de compartir, la seleccionada actualmente es \"{selectedOption}\"",
|
||||
"View only" : "Solo lectura",
|
||||
"Can edit" : "Puede editar",
|
||||
"File drop" : "Entrega de archivos",
|
||||
"Custom permissions" : "Permisos personalizados",
|
||||
"Search for share recipients" : "Buscar destinatarios del compartido",
|
||||
"No recommendations. Start typing." : "No hay recomendaciones. Comience a escribir.",
|
||||
|
|
@ -192,12 +203,10 @@ OC.L10N.register(
|
|||
"Advanced settings" : "Configuración avanzada",
|
||||
"Share label" : "Compartir etiqueta",
|
||||
"Set password" : "Crear contraseña",
|
||||
"Password" : "Contraseña",
|
||||
"Password expires {passwordExpirationTime}" : "La contraseña caduca el {passwordExpirationTime}",
|
||||
"Password expired" : "Contraseña caducada",
|
||||
"Video verification" : "Verificación por vídeo",
|
||||
"Set expiration date" : "Fijar fecha de caducidad",
|
||||
"Expiration date" : "Fecha de caducidad",
|
||||
"Hide download" : "Ocultar descarga",
|
||||
"Allow download" : "Permitir descarga",
|
||||
"Note to recipient" : "Nota para el destinatario",
|
||||
|
|
@ -234,8 +243,6 @@ OC.L10N.register(
|
|||
"Shared by {ownerDisplayName}" : "Compartido por {ownerDisplayName}",
|
||||
"Show sharing options" : "Mostrar opciones de compartir",
|
||||
"Link to a file" : "Enlace al archivo",
|
||||
"Error creating the share: {errorMessage}" : "Error al crear el recurso compartido: {errorMessage}",
|
||||
"Error creating the share" : "Error quitando el recurso compartido",
|
||||
"Error updating the share: {errorMessage}" : "Error al actualizar el recurso compartido: {errorMessage}",
|
||||
"Error updating the share" : "Error actualizando el recurso compartido",
|
||||
"File \"{path}\" has been unshared" : "El archivo \"{path}\" se dejó de compartir",
|
||||
|
|
@ -302,9 +309,9 @@ OC.L10N.register(
|
|||
"Bundled permissions" : "Permisos agrupados",
|
||||
"Only works for users with access to this folder" : "Sólo funciona para usuarios con acceso a esta carpeta",
|
||||
"Only works for users with access to this file" : "Sólo funciona para usuarios con acceso a este archivo",
|
||||
"File drop" : "Entrega de archivos",
|
||||
"Circle" : "Círculo",
|
||||
"Update" : "Actualizar",
|
||||
"Share with " : "Compartir con",
|
||||
"No other users with access found" : "No se encontraron otros usuarios con acceso",
|
||||
"No entries found in this folder" : "No hay nada en esta carpeta",
|
||||
"Name" : "Nombre",
|
||||
|
|
|
|||
|
|
@ -100,6 +100,7 @@
|
|||
"Share must at least have READ or CREATE permissions" : "El recurso compartido debe tener al menos el permiso de LECTURA o CREACIÓN",
|
||||
"Share must have READ permission if UPDATE or DELETE permission is set" : "El recurso compartido debe tener el permiso de LECTURA si el permiso de ACTUALIZAR o ELIMINAR está activado.",
|
||||
"\"Sending the password by Nextcloud Talk\" for sharing a file or folder failed because Nextcloud Talk is not enabled." : "\"El envío de la contraseña por Nextcloud Talk\" para compartir un archivo o carpeta falló porque Nextcloud Talk no está habilitado.",
|
||||
"Wrong password" : "Contraseña incorrecta",
|
||||
"shared by %s" : "compartido por %s",
|
||||
"Download all files" : "Descargar todos los archivos",
|
||||
"Direct link" : "Enlace directo",
|
||||
|
|
@ -113,6 +114,19 @@
|
|||
"Accept" : "Aceptar",
|
||||
"Decline" : "Declinar",
|
||||
"This application enables people to share files within Nextcloud. If enabled, the admin can choose which groups can share files. The applicable people can then share files and folders with other accounts and groups within Nextcloud. In addition, if the admin enables the share link feature, an external link can be used to share files with other people outside of Nextcloud. Admins can also enforce passwords, expirations dates, and enable server to server sharing via share links, as well as sharing from mobile devices.\nTurning the feature off removes shared files and folders on the server for all share recipients, and also on the sync clients and mobile apps. More information is available in the Nextcloud Documentation." : "Esta aplicación permite a los usuarios compartir archivos dentro de Nextcloud. Si se activa, el administrador puede elegir qué grupos pueden compartir archivos. Los usuarios aplicables pueden entonces compartir archivos y carpetas con otros usuarios y grupos dentro de Nextcloud. Además, si el administrador activa la característica de enlace compartido, se puede usar un enlace externo para compartir archivos con otros usuarios fuera de Nextcloud. Los administradores pueden obligar a usar contraseñas o fechas de caducidad y activar el compartir de servidor a servidor vía enlaces compartidos, así como compartir desde dispositivos móviles.\nQuitar esta característica elimina los archivos compartidos y las carpetas en el servidor, para todos los receptores, y también los clientes de sincronización y móviles. Más información disponible en la Documentación de Nextcloud.",
|
||||
"Expiration date" : "Fecha de caducidad",
|
||||
"Set a password" : "Configura una contraseña",
|
||||
"Password" : "Contraseña",
|
||||
"Share link" : "Compartir enlace",
|
||||
"Copy to clipboard" : "Copiar al portapapeles",
|
||||
"Send link via email" : "Enviar el link por email",
|
||||
"Link copied to clipboard" : "Enlace copiado al portapapeles",
|
||||
"Select" : "Seleccionar",
|
||||
"Cancel" : "Cancelar",
|
||||
"Continue" : "Continuar",
|
||||
"Close" : "Cerrar",
|
||||
"Error creating the share: {errorMessage}" : "Error al crear el recurso compartido: {errorMessage}",
|
||||
"Error creating the share" : "Error quitando el recurso compartido",
|
||||
"Sharing" : "Compartir",
|
||||
"Accept shares from other accounts and groups by default" : "Aceptar recursos compartidos de otras cuentas y grupos por defecto",
|
||||
"Error while toggling options" : "Error cambiar las opciones",
|
||||
|
|
@ -147,7 +161,6 @@
|
|||
"Expiration date (enforced)" : "Fecha de caducidad (impuesta)",
|
||||
"Enter a date" : "Introduzca una fecha",
|
||||
"Create share" : "Crear un recurso compartido",
|
||||
"Cancel" : "Cancelar",
|
||||
"Customize link" : "Personalizar enlace",
|
||||
"Generate QR code" : "Generar código QR",
|
||||
"Add another link" : "Añadir otro enlace",
|
||||
|
|
@ -157,7 +170,6 @@
|
|||
"Mail share ({label})" : "Compartir correo ({label})",
|
||||
"Share link ({label})" : "Compartir enlace ({label})",
|
||||
"Share link ({index})" : "Compartir enlace ({index})",
|
||||
"Share link" : "Compartir enlace",
|
||||
"Actions for \"{title}\"" : "Acciones para \"{title}\"",
|
||||
"Copy public link of \"{title}\" to clipboard" : "Copiar enlace público de \"{title}\" al portapapeles",
|
||||
"Error, please enter proper password and/or expiration date" : "Error, por favor, introduce la contraseña y/o fecha de caducidad adecuada",
|
||||
|
|
@ -166,7 +178,6 @@
|
|||
"Quick share options, the current selected is \"{selectedOption}\"" : "Opciones rápidas de compartir, la seleccionada actualmente es \"{selectedOption}\"",
|
||||
"View only" : "Solo lectura",
|
||||
"Can edit" : "Puede editar",
|
||||
"File drop" : "Entrega de archivos",
|
||||
"Custom permissions" : "Permisos personalizados",
|
||||
"Search for share recipients" : "Buscar destinatarios del compartido",
|
||||
"No recommendations. Start typing." : "No hay recomendaciones. Comience a escribir.",
|
||||
|
|
@ -190,12 +201,10 @@
|
|||
"Advanced settings" : "Configuración avanzada",
|
||||
"Share label" : "Compartir etiqueta",
|
||||
"Set password" : "Crear contraseña",
|
||||
"Password" : "Contraseña",
|
||||
"Password expires {passwordExpirationTime}" : "La contraseña caduca el {passwordExpirationTime}",
|
||||
"Password expired" : "Contraseña caducada",
|
||||
"Video verification" : "Verificación por vídeo",
|
||||
"Set expiration date" : "Fijar fecha de caducidad",
|
||||
"Expiration date" : "Fecha de caducidad",
|
||||
"Hide download" : "Ocultar descarga",
|
||||
"Allow download" : "Permitir descarga",
|
||||
"Note to recipient" : "Nota para el destinatario",
|
||||
|
|
@ -232,8 +241,6 @@
|
|||
"Shared by {ownerDisplayName}" : "Compartido por {ownerDisplayName}",
|
||||
"Show sharing options" : "Mostrar opciones de compartir",
|
||||
"Link to a file" : "Enlace al archivo",
|
||||
"Error creating the share: {errorMessage}" : "Error al crear el recurso compartido: {errorMessage}",
|
||||
"Error creating the share" : "Error quitando el recurso compartido",
|
||||
"Error updating the share: {errorMessage}" : "Error al actualizar el recurso compartido: {errorMessage}",
|
||||
"Error updating the share" : "Error actualizando el recurso compartido",
|
||||
"File \"{path}\" has been unshared" : "El archivo \"{path}\" se dejó de compartir",
|
||||
|
|
@ -300,9 +307,9 @@
|
|||
"Bundled permissions" : "Permisos agrupados",
|
||||
"Only works for users with access to this folder" : "Sólo funciona para usuarios con acceso a esta carpeta",
|
||||
"Only works for users with access to this file" : "Sólo funciona para usuarios con acceso a este archivo",
|
||||
"File drop" : "Entrega de archivos",
|
||||
"Circle" : "Círculo",
|
||||
"Update" : "Actualizar",
|
||||
"Share with " : "Compartir con",
|
||||
"No other users with access found" : "No se encontraron otros usuarios con acceso",
|
||||
"No entries found in this folder" : "No hay nada en esta carpeta",
|
||||
"Name" : "Nombre",
|
||||
|
|
|
|||
|
|
@ -100,6 +100,7 @@ OC.L10N.register(
|
|||
"Share must at least have READ or CREATE permissions" : "La compartición debe tener al menos permisos de LECTURA o CREACIÓN",
|
||||
"Share must have READ permission if UPDATE or DELETE permission is set" : "La compartición debe tener permisos de LECTURA si se establecen permisos de ACTUALIZACIÓN o ELIMINACIÓN",
|
||||
"\"Sending the password by Nextcloud Talk\" for sharing a file or folder failed because Nextcloud Talk is not enabled." : "\"Error al enviar la contraseña por Nextcloud Talk\" al compartir un archivo o carpeta porque Nextcloud Talk no está habilitado.",
|
||||
"Wrong password" : "Contraseña incorrecta",
|
||||
"shared by %s" : "compartido por %s",
|
||||
"Download all files" : "Descargar todos los archivos",
|
||||
"Direct link" : "Enlace directo",
|
||||
|
|
@ -112,6 +113,16 @@ OC.L10N.register(
|
|||
"You received {share} to group {group} as a share by {user}" : "Recibiste {share} como compartición de {user} al grupo {group}",
|
||||
"Accept" : "Aceptar",
|
||||
"Decline" : "Declinar",
|
||||
"Expiration date" : "Fecha de expiración",
|
||||
"Set a password" : "Establecer una contraseña",
|
||||
"Share link" : "Compartir enlace",
|
||||
"Copy to clipboard" : "Copiar al portapapeles",
|
||||
"Link copied to clipboard" : "Enlace copiado al portapapeles",
|
||||
"Cancel" : "Cancelar",
|
||||
"Continue" : "Continuar",
|
||||
"Close" : "Cerrar",
|
||||
"Error creating the share: {errorMessage}" : "Error al crear la compartición: {errorMessage}",
|
||||
"Error creating the share" : "Error al crear la compartición",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Error while toggling options" : "Error al cambiar las opciones",
|
||||
"Set default folder for accepted shares" : "Establecer carpeta predeterminada para comparticiones aceptadas",
|
||||
|
|
@ -142,7 +153,6 @@ OC.L10N.register(
|
|||
"Expiration date (enforced)" : "Fecha de vencimiento (exigida)",
|
||||
"Enter a date" : "Ingresa una fecha",
|
||||
"Create share" : "Crear compartición",
|
||||
"Cancel" : "Cancelar",
|
||||
"Add another link" : "Agregar otro enlace",
|
||||
"Create a new share link" : "Crear un nuevo enlace compartido",
|
||||
"{shareWith} by {initiator}" : "{shareWith} por {initiator}",
|
||||
|
|
@ -150,14 +160,12 @@ OC.L10N.register(
|
|||
"Mail share ({label})" : "Compartir por correo electrónico ({label})",
|
||||
"Share link ({label})" : "Enlace compartido ({label})",
|
||||
"Share link ({index})" : "Enlace compartido ({index})",
|
||||
"Share link" : "Compartir enlace",
|
||||
"Actions for \"{title}\"" : "Acciones para \"{title}\"",
|
||||
"Copy public link of \"{title}\" to clipboard" : "Copiar enlace público de \"{title}\" al portapapeles",
|
||||
"Error, please enter proper password and/or expiration date" : "Error, por favor ingresa una contraseña y/o fecha de vencimiento adecuadas",
|
||||
"Link share created" : "Enlace compartido creado",
|
||||
"Error while creating the share" : "Error al crear la compartición",
|
||||
"View only" : "Solo vista",
|
||||
"File drop" : "Soltar archivo",
|
||||
"Custom permissions" : "Permisos personalizados",
|
||||
"Search for share recipients" : "Buscar destinatarios de la compartición",
|
||||
"No recommendations. Start typing." : "No hay recomendaciones. Comienza a escribir.",
|
||||
|
|
@ -182,7 +190,6 @@ OC.L10N.register(
|
|||
"Password expired" : "Contraseña expirada",
|
||||
"Video verification" : "Verificación de video",
|
||||
"Set expiration date" : "Establecer fecha de expiración",
|
||||
"Expiration date" : "Fecha de expiración",
|
||||
"Hide download" : "Ocultar descarga",
|
||||
"Allow download" : "Permitir descarga",
|
||||
"Note to recipient" : "Nota para el destinatario",
|
||||
|
|
@ -204,8 +211,6 @@ OC.L10N.register(
|
|||
"_Restore share_::_Restore shares_" : ["Restaurar compartición","Restaurar comparticiones","Restaurar comparticiones"],
|
||||
"Shared" : "Compartido",
|
||||
"Link to a file" : "Enlazar a un archivo",
|
||||
"Error creating the share: {errorMessage}" : "Error al crear la compartición: {errorMessage}",
|
||||
"Error creating the share" : "Error al crear la compartición",
|
||||
"Error updating the share: {errorMessage}" : "Error al actualizar la compartición: {errorMessage}",
|
||||
"Error updating the share" : "Error al actualizar la compartición",
|
||||
"File \"{path}\" has been unshared" : "El archivo \"{path}\" ha dejado de compartirse",
|
||||
|
|
@ -272,6 +277,7 @@ OC.L10N.register(
|
|||
"Bundled permissions" : "Permisos integrados",
|
||||
"Only works for users with access to this folder" : "Solo funciona para usuarios con acceso a esta carpeta",
|
||||
"Only works for users with access to this file" : "Solo funciona para usuarios con acceso a este archivo",
|
||||
"File drop" : "Soltar archivo",
|
||||
"Circle" : "Círculo",
|
||||
"Update" : "Actualizar",
|
||||
"No other users with access found" : "No se encontraron otros usuarios con acceso",
|
||||
|
|
|
|||
|
|
@ -98,6 +98,7 @@
|
|||
"Share must at least have READ or CREATE permissions" : "La compartición debe tener al menos permisos de LECTURA o CREACIÓN",
|
||||
"Share must have READ permission if UPDATE or DELETE permission is set" : "La compartición debe tener permisos de LECTURA si se establecen permisos de ACTUALIZACIÓN o ELIMINACIÓN",
|
||||
"\"Sending the password by Nextcloud Talk\" for sharing a file or folder failed because Nextcloud Talk is not enabled." : "\"Error al enviar la contraseña por Nextcloud Talk\" al compartir un archivo o carpeta porque Nextcloud Talk no está habilitado.",
|
||||
"Wrong password" : "Contraseña incorrecta",
|
||||
"shared by %s" : "compartido por %s",
|
||||
"Download all files" : "Descargar todos los archivos",
|
||||
"Direct link" : "Enlace directo",
|
||||
|
|
@ -110,6 +111,16 @@
|
|||
"You received {share} to group {group} as a share by {user}" : "Recibiste {share} como compartición de {user} al grupo {group}",
|
||||
"Accept" : "Aceptar",
|
||||
"Decline" : "Declinar",
|
||||
"Expiration date" : "Fecha de expiración",
|
||||
"Set a password" : "Establecer una contraseña",
|
||||
"Share link" : "Compartir enlace",
|
||||
"Copy to clipboard" : "Copiar al portapapeles",
|
||||
"Link copied to clipboard" : "Enlace copiado al portapapeles",
|
||||
"Cancel" : "Cancelar",
|
||||
"Continue" : "Continuar",
|
||||
"Close" : "Cerrar",
|
||||
"Error creating the share: {errorMessage}" : "Error al crear la compartición: {errorMessage}",
|
||||
"Error creating the share" : "Error al crear la compartición",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Error while toggling options" : "Error al cambiar las opciones",
|
||||
"Set default folder for accepted shares" : "Establecer carpeta predeterminada para comparticiones aceptadas",
|
||||
|
|
@ -140,7 +151,6 @@
|
|||
"Expiration date (enforced)" : "Fecha de vencimiento (exigida)",
|
||||
"Enter a date" : "Ingresa una fecha",
|
||||
"Create share" : "Crear compartición",
|
||||
"Cancel" : "Cancelar",
|
||||
"Add another link" : "Agregar otro enlace",
|
||||
"Create a new share link" : "Crear un nuevo enlace compartido",
|
||||
"{shareWith} by {initiator}" : "{shareWith} por {initiator}",
|
||||
|
|
@ -148,14 +158,12 @@
|
|||
"Mail share ({label})" : "Compartir por correo electrónico ({label})",
|
||||
"Share link ({label})" : "Enlace compartido ({label})",
|
||||
"Share link ({index})" : "Enlace compartido ({index})",
|
||||
"Share link" : "Compartir enlace",
|
||||
"Actions for \"{title}\"" : "Acciones para \"{title}\"",
|
||||
"Copy public link of \"{title}\" to clipboard" : "Copiar enlace público de \"{title}\" al portapapeles",
|
||||
"Error, please enter proper password and/or expiration date" : "Error, por favor ingresa una contraseña y/o fecha de vencimiento adecuadas",
|
||||
"Link share created" : "Enlace compartido creado",
|
||||
"Error while creating the share" : "Error al crear la compartición",
|
||||
"View only" : "Solo vista",
|
||||
"File drop" : "Soltar archivo",
|
||||
"Custom permissions" : "Permisos personalizados",
|
||||
"Search for share recipients" : "Buscar destinatarios de la compartición",
|
||||
"No recommendations. Start typing." : "No hay recomendaciones. Comienza a escribir.",
|
||||
|
|
@ -180,7 +188,6 @@
|
|||
"Password expired" : "Contraseña expirada",
|
||||
"Video verification" : "Verificación de video",
|
||||
"Set expiration date" : "Establecer fecha de expiración",
|
||||
"Expiration date" : "Fecha de expiración",
|
||||
"Hide download" : "Ocultar descarga",
|
||||
"Allow download" : "Permitir descarga",
|
||||
"Note to recipient" : "Nota para el destinatario",
|
||||
|
|
@ -202,8 +209,6 @@
|
|||
"_Restore share_::_Restore shares_" : ["Restaurar compartición","Restaurar comparticiones","Restaurar comparticiones"],
|
||||
"Shared" : "Compartido",
|
||||
"Link to a file" : "Enlazar a un archivo",
|
||||
"Error creating the share: {errorMessage}" : "Error al crear la compartición: {errorMessage}",
|
||||
"Error creating the share" : "Error al crear la compartición",
|
||||
"Error updating the share: {errorMessage}" : "Error al actualizar la compartición: {errorMessage}",
|
||||
"Error updating the share" : "Error al actualizar la compartición",
|
||||
"File \"{path}\" has been unshared" : "El archivo \"{path}\" ha dejado de compartirse",
|
||||
|
|
@ -270,6 +275,7 @@
|
|||
"Bundled permissions" : "Permisos integrados",
|
||||
"Only works for users with access to this folder" : "Solo funciona para usuarios con acceso a esta carpeta",
|
||||
"Only works for users with access to this file" : "Solo funciona para usuarios con acceso a este archivo",
|
||||
"File drop" : "Soltar archivo",
|
||||
"Circle" : "Círculo",
|
||||
"Update" : "Actualizar",
|
||||
"No other users with access found" : "No se encontraron otros usuarios con acceso",
|
||||
|
|
|
|||
|
|
@ -102,6 +102,7 @@ OC.L10N.register(
|
|||
"Share must at least have READ or CREATE permissions" : "El recurso compartido debe tener al menos el permiso de LECTURA o CREACIÓN",
|
||||
"Share must have READ permission if UPDATE or DELETE permission is set" : "El recurso compartido debe tener el permiso de LECTURA si el permiso de ACTUALIZAR o ELIMINAR está configurado",
|
||||
"\"Sending the password by Nextcloud Talk\" for sharing a file or folder failed because Nextcloud Talk is not enabled." : "\"Enviar la contraseña por Nextcloud Talk\" para compartir un archivo o carpeta falló porque Nextcloud Talk no está habilitado.",
|
||||
"Wrong password" : "Contraseña incorrecta",
|
||||
"shared by %s" : "compartido por %s",
|
||||
"Download all files" : "Descargar todos los archivos",
|
||||
"Direct link" : "Liga directa",
|
||||
|
|
@ -114,6 +115,19 @@ OC.L10N.register(
|
|||
"You received {share} to group {group} as a share by {user}" : "Ha recibido {share} para el grupo {group} como un recurso compartido por {user}",
|
||||
"Accept" : "Aceptar",
|
||||
"Decline" : "Rechazar",
|
||||
"Expiration date" : "Fecha de expiración",
|
||||
"Set a password" : "Establecer una contraseña",
|
||||
"Password" : "Contraseña",
|
||||
"Share link" : "Compartir liga",
|
||||
"Copy to clipboard" : "Copiar al portapapeles",
|
||||
"Send link via email" : "Enviar la liga por correo electrónico",
|
||||
"Link copied to clipboard" : "Enlace copiado al portapapeles",
|
||||
"Select" : "Seleccionar",
|
||||
"Cancel" : "Cancelar",
|
||||
"Continue" : "Continuar",
|
||||
"Close" : "Cerrar",
|
||||
"Error creating the share: {errorMessage}" : "Error al crear el recurso compartido: {errorMessage}",
|
||||
"Error creating the share" : "Error al crear el recurso compartido",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Accept shares from other accounts and groups by default" : "Aceptar recursos compartidos de otros usuarios y grupos por defecto",
|
||||
"Error while toggling options" : "Error al alternar las opciones",
|
||||
|
|
@ -148,7 +162,6 @@ OC.L10N.register(
|
|||
"Expiration date (enforced)" : "Fecha de caducidad (impuesta)",
|
||||
"Enter a date" : "Ingrese una fecha",
|
||||
"Create share" : "Crear recurso compartido",
|
||||
"Cancel" : "Cancelar",
|
||||
"Customize link" : "Personalizar enlace",
|
||||
"Generate QR code" : "Generar código QR",
|
||||
"Add another link" : "Añadir otro enlace",
|
||||
|
|
@ -158,7 +171,6 @@ OC.L10N.register(
|
|||
"Mail share ({label})" : "Compartir correo ({label})",
|
||||
"Share link ({label})" : "Compartir enlace ({label})",
|
||||
"Share link ({index})" : "Compartir enlace ({index})",
|
||||
"Share link" : "Compartir liga",
|
||||
"Actions for \"{title}\"" : "Acciones para \"{title}\"",
|
||||
"Copy public link of \"{title}\" to clipboard" : "Copiar enlace público de \"{title}\" al portapapeles",
|
||||
"Error, please enter proper password and/or expiration date" : "Error, por favor ingrese una contraseña y/o fecha de caducidad adecuadas",
|
||||
|
|
@ -167,7 +179,6 @@ OC.L10N.register(
|
|||
"Quick share options, the current selected is \"{selectedOption}\"" : "Opciones rápidas de compartir, la seleccionada actualmente es \"{selectedOption}\"",
|
||||
"View only" : "Sólo lectura",
|
||||
"Can edit" : "Puede editar",
|
||||
"File drop" : "Soltar archivo",
|
||||
"Custom permissions" : "Permisos personalizados",
|
||||
"Search for share recipients" : "Buscar destinatarios del recurso compartido",
|
||||
"No recommendations. Start typing." : "Sin recomendaciones. Empiece a escribir.",
|
||||
|
|
@ -191,12 +202,10 @@ OC.L10N.register(
|
|||
"Advanced settings" : "Configuraciones avanzadas",
|
||||
"Share label" : "Etiqueta del recurso compartido",
|
||||
"Set password" : "Establecer contraseña",
|
||||
"Password" : "Contraseña",
|
||||
"Password expires {passwordExpirationTime}" : "La contraseña caduca el {passwordExpirationTime}",
|
||||
"Password expired" : "Contraseña caduca",
|
||||
"Video verification" : "Verificación de video",
|
||||
"Set expiration date" : "Establece la fecha de expiración",
|
||||
"Expiration date" : "Fecha de expiración",
|
||||
"Hide download" : "Ocultar descarga",
|
||||
"Allow download" : "Permitir descarga",
|
||||
"Note to recipient" : "Nota al destinatario",
|
||||
|
|
@ -233,8 +242,6 @@ OC.L10N.register(
|
|||
"Shared by {ownerDisplayName}" : "Compartido por {ownerDisplayName}",
|
||||
"Show sharing options" : "Mostrar opciones de compartir",
|
||||
"Link to a file" : "Enlazar a un archivo",
|
||||
"Error creating the share: {errorMessage}" : "Error al crear el recurso compartido: {errorMessage}",
|
||||
"Error creating the share" : "Error al crear el recurso compartido",
|
||||
"Error updating the share: {errorMessage}" : "Error al actualizar el recurso compartido: {errorMessage}",
|
||||
"Error updating the share" : "Error al actualizar el recurso compartido",
|
||||
"File \"{path}\" has been unshared" : "Se dejó de compartir el archivo \"{path}\"",
|
||||
|
|
@ -301,9 +308,9 @@ OC.L10N.register(
|
|||
"Bundled permissions" : "Permisos integrados",
|
||||
"Only works for users with access to this folder" : "Sólo funciona para usuarios con acceso a esta carpeta",
|
||||
"Only works for users with access to this file" : "Sólo funciona para usuarios con acceso a este archivo",
|
||||
"File drop" : "Soltar archivo",
|
||||
"Circle" : "Círculo",
|
||||
"Update" : "Actualizar",
|
||||
"Share with " : "Compartir con",
|
||||
"No other users with access found" : "No se encontraron otros usuarios con acceso",
|
||||
"No entries found in this folder" : "No se encontraron elementos en esta carpeta",
|
||||
"Name" : "Nombre",
|
||||
|
|
|
|||
|
|
@ -100,6 +100,7 @@
|
|||
"Share must at least have READ or CREATE permissions" : "El recurso compartido debe tener al menos el permiso de LECTURA o CREACIÓN",
|
||||
"Share must have READ permission if UPDATE or DELETE permission is set" : "El recurso compartido debe tener el permiso de LECTURA si el permiso de ACTUALIZAR o ELIMINAR está configurado",
|
||||
"\"Sending the password by Nextcloud Talk\" for sharing a file or folder failed because Nextcloud Talk is not enabled." : "\"Enviar la contraseña por Nextcloud Talk\" para compartir un archivo o carpeta falló porque Nextcloud Talk no está habilitado.",
|
||||
"Wrong password" : "Contraseña incorrecta",
|
||||
"shared by %s" : "compartido por %s",
|
||||
"Download all files" : "Descargar todos los archivos",
|
||||
"Direct link" : "Liga directa",
|
||||
|
|
@ -112,6 +113,19 @@
|
|||
"You received {share} to group {group} as a share by {user}" : "Ha recibido {share} para el grupo {group} como un recurso compartido por {user}",
|
||||
"Accept" : "Aceptar",
|
||||
"Decline" : "Rechazar",
|
||||
"Expiration date" : "Fecha de expiración",
|
||||
"Set a password" : "Establecer una contraseña",
|
||||
"Password" : "Contraseña",
|
||||
"Share link" : "Compartir liga",
|
||||
"Copy to clipboard" : "Copiar al portapapeles",
|
||||
"Send link via email" : "Enviar la liga por correo electrónico",
|
||||
"Link copied to clipboard" : "Enlace copiado al portapapeles",
|
||||
"Select" : "Seleccionar",
|
||||
"Cancel" : "Cancelar",
|
||||
"Continue" : "Continuar",
|
||||
"Close" : "Cerrar",
|
||||
"Error creating the share: {errorMessage}" : "Error al crear el recurso compartido: {errorMessage}",
|
||||
"Error creating the share" : "Error al crear el recurso compartido",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Accept shares from other accounts and groups by default" : "Aceptar recursos compartidos de otros usuarios y grupos por defecto",
|
||||
"Error while toggling options" : "Error al alternar las opciones",
|
||||
|
|
@ -146,7 +160,6 @@
|
|||
"Expiration date (enforced)" : "Fecha de caducidad (impuesta)",
|
||||
"Enter a date" : "Ingrese una fecha",
|
||||
"Create share" : "Crear recurso compartido",
|
||||
"Cancel" : "Cancelar",
|
||||
"Customize link" : "Personalizar enlace",
|
||||
"Generate QR code" : "Generar código QR",
|
||||
"Add another link" : "Añadir otro enlace",
|
||||
|
|
@ -156,7 +169,6 @@
|
|||
"Mail share ({label})" : "Compartir correo ({label})",
|
||||
"Share link ({label})" : "Compartir enlace ({label})",
|
||||
"Share link ({index})" : "Compartir enlace ({index})",
|
||||
"Share link" : "Compartir liga",
|
||||
"Actions for \"{title}\"" : "Acciones para \"{title}\"",
|
||||
"Copy public link of \"{title}\" to clipboard" : "Copiar enlace público de \"{title}\" al portapapeles",
|
||||
"Error, please enter proper password and/or expiration date" : "Error, por favor ingrese una contraseña y/o fecha de caducidad adecuadas",
|
||||
|
|
@ -165,7 +177,6 @@
|
|||
"Quick share options, the current selected is \"{selectedOption}\"" : "Opciones rápidas de compartir, la seleccionada actualmente es \"{selectedOption}\"",
|
||||
"View only" : "Sólo lectura",
|
||||
"Can edit" : "Puede editar",
|
||||
"File drop" : "Soltar archivo",
|
||||
"Custom permissions" : "Permisos personalizados",
|
||||
"Search for share recipients" : "Buscar destinatarios del recurso compartido",
|
||||
"No recommendations. Start typing." : "Sin recomendaciones. Empiece a escribir.",
|
||||
|
|
@ -189,12 +200,10 @@
|
|||
"Advanced settings" : "Configuraciones avanzadas",
|
||||
"Share label" : "Etiqueta del recurso compartido",
|
||||
"Set password" : "Establecer contraseña",
|
||||
"Password" : "Contraseña",
|
||||
"Password expires {passwordExpirationTime}" : "La contraseña caduca el {passwordExpirationTime}",
|
||||
"Password expired" : "Contraseña caduca",
|
||||
"Video verification" : "Verificación de video",
|
||||
"Set expiration date" : "Establece la fecha de expiración",
|
||||
"Expiration date" : "Fecha de expiración",
|
||||
"Hide download" : "Ocultar descarga",
|
||||
"Allow download" : "Permitir descarga",
|
||||
"Note to recipient" : "Nota al destinatario",
|
||||
|
|
@ -231,8 +240,6 @@
|
|||
"Shared by {ownerDisplayName}" : "Compartido por {ownerDisplayName}",
|
||||
"Show sharing options" : "Mostrar opciones de compartir",
|
||||
"Link to a file" : "Enlazar a un archivo",
|
||||
"Error creating the share: {errorMessage}" : "Error al crear el recurso compartido: {errorMessage}",
|
||||
"Error creating the share" : "Error al crear el recurso compartido",
|
||||
"Error updating the share: {errorMessage}" : "Error al actualizar el recurso compartido: {errorMessage}",
|
||||
"Error updating the share" : "Error al actualizar el recurso compartido",
|
||||
"File \"{path}\" has been unshared" : "Se dejó de compartir el archivo \"{path}\"",
|
||||
|
|
@ -299,9 +306,9 @@
|
|||
"Bundled permissions" : "Permisos integrados",
|
||||
"Only works for users with access to this folder" : "Sólo funciona para usuarios con acceso a esta carpeta",
|
||||
"Only works for users with access to this file" : "Sólo funciona para usuarios con acceso a este archivo",
|
||||
"File drop" : "Soltar archivo",
|
||||
"Circle" : "Círculo",
|
||||
"Update" : "Actualizar",
|
||||
"Share with " : "Compartir con",
|
||||
"No other users with access found" : "No se encontraron otros usuarios con acceso",
|
||||
"No entries found in this folder" : "No se encontraron elementos en esta carpeta",
|
||||
"Name" : "Nombre",
|
||||
|
|
|
|||
|
|
@ -86,6 +86,7 @@ OC.L10N.register(
|
|||
"Public link sharing is disabled by the administrator" : "Administratzaileak estekak publikoki partekatzea desgaitu du",
|
||||
"Public upload disabled by the administrator" : "Administratzaileak igoera publikoak desgaitu ditu",
|
||||
"Public upload is only possible for publicly shared folders" : "Igoera publikoa publikoki partekatutako karpetetan egin daiteke soilik",
|
||||
"Please specify a valid email address" : "Zehaztu baliozko helbide elektroniko bat",
|
||||
"Sharing %s sending the password by Nextcloud Talk failed because Nextcloud Talk is not enabled" : " %s Nextcloud Talk-etik pasahitza bidaliz partekatzeak huts egin du, Nextcloud Talk ez dagoelako gaituta",
|
||||
"Sharing %1$s failed because the back end does not allow shares from type %2$s" : " %1$s partekatzeak huts egin du, atzealdeak %2$s motako partekatzeak ez dituelako onartzen",
|
||||
"Please specify a valid federated account ID" : "Zehaztu baliozko federatutako kontu ID bat",
|
||||
|
|
@ -98,10 +99,20 @@ OC.L10N.register(
|
|||
"Not a directory" : "Ez da direktorio bat",
|
||||
"Could not lock node" : "Ezin izan da nodoa blokeatu",
|
||||
"Could not lock path" : "Ezin izan da bidea blokeatu",
|
||||
"no sharing rights on this item" : "Ez dago baimenik fitxategi hau partekatzeko",
|
||||
"You are not allowed to edit incoming shares" : "Ez duzu baimenik zuri partekaturikoak editatzeko",
|
||||
"Wrong or no update parameter given" : "Eguneraketa parametrorik ez da eman edo okerra da",
|
||||
"You are not allowed to edit link shares that you don't own" : "Ezin dituzu editatu zureak ez diren partekatze estekak",
|
||||
"Share must at least have READ or CREATE permissions" : "Partekatzeak gutxienez IRAKURRI edo SORTU egiteko baimenak behar ditu",
|
||||
"Share must have READ permission if UPDATE or DELETE permission is set" : "Partekatzeak IRAKURRI egiteko baimenak behar ditu, EGUNERATU edo EZABATU baimenak baldin badauzka",
|
||||
"\"Sending the password by Nextcloud Talk\" for sharing a file or folder failed because Nextcloud Talk is not enabled." : "\"Nextcloud Talk-ek pasahitza bidaltzeak\" huts egin du ez dagoelako Nextcloud Talk gaituta fitxategi edo karpeta bat partekatzeko.",
|
||||
"Invalid date. Format must be YYYY-MM-DD" : "Data baliogabea. UUU-HH-EE gisako formatua izan behar du",
|
||||
"No sharing rights on this item" : "Ez dago baimenik fitxategi hau partekatzeko",
|
||||
"Invalid share attributes provided: \"%s\"" : "Baliogabeko partekatze atributuak eman dira: \"%s\"",
|
||||
"You are not allowed to send mail notifications" : "Ezin dituzu email bidezko jakinarazpenak bidali",
|
||||
"No mail notification configured for this share type" : "Partekatze mota honentzat ez dago email jakinarazpenik konfiguratuta",
|
||||
"Wrong password" : "Pasahitz okerra",
|
||||
"Error while sending mail notification" : "Errorea email jakinarazpena bidaltzean",
|
||||
"shared by %s" : "%s erabiltzaileak partekatua",
|
||||
"Download all files" : "Deskargatu fitxategi guztiak",
|
||||
"Direct link" : "Esteka zuzena",
|
||||
|
|
@ -115,6 +126,60 @@ OC.L10N.register(
|
|||
"Accept" : "Onartu",
|
||||
"Decline" : "Uko egin",
|
||||
"This application enables people to share files within Nextcloud. If enabled, the admin can choose which groups can share files. The applicable people can then share files and folders with other accounts and groups within Nextcloud. In addition, if the admin enables the share link feature, an external link can be used to share files with other people outside of Nextcloud. Admins can also enforce passwords, expirations dates, and enable server to server sharing via share links, as well as sharing from mobile devices.\nTurning the feature off removes shared files and folders on the server for all share recipients, and also on the sync clients and mobile apps. More information is available in the Nextcloud Documentation." : "Aplikazio honek Nextcloud-en fitxategiak partekatzeko aukera ematen du. Gaituta badago, administratzaileak aukeratu dezake zein taldek parteka ditzaketen fitxategiak. Ondoren, baimendutako pertsonek fitxategiak eta karpetak parteka ditzakete Nextcloud-eko beste kontu eta talde batzuekin. Gainera, administratzaileak partekatzeko estekaren funtzioa gaitzen badu, kanpoko esteka bat erabil daiteke fitxategiak Nextcloud-etik kanpoko beste pertsonekin partekatzeko. Administratzaileek ere ezar ditzakete pasahitzak eta iraungitze-datak, bai eta gaitu zerbitzaritik zerbitzarira fitxategiak esteken bidez partekatzea, baita gailu mugikorretatik partekatzea ere.\nFuntzioa desaktibatuz gero, zerbitzarian partekatutako fitxategiak eta karpetak kentzen dira partekatutako hartzaile guztientzat, baita sinkronizazio-bezeroetan eta mugikorreko aplikazioetan ere. Informazio gehiago eskuragarri dago Nextcloud Dokumentazioan.",
|
||||
"Your administrator has enforced a default expiration date with a maximum {days} days." : "Zure administratzaileak {days}eguneko muga maximoa jarri die iraungitze datei.",
|
||||
"When should the request expire?" : "Noiz iraungi beharko luke eskaerak?",
|
||||
"Expiration date" : "Iraungitze-data",
|
||||
"Select a date" : "Hautatu data bat",
|
||||
"Your administrator has enforced a password protection." : "Zure administratzaileak pasahitzez babestu behar dela ezarri du.",
|
||||
"What password should be used for the request?" : "Zein pasahitz erabili behar litzateke eskaera honetarako?",
|
||||
"Set a password" : "Ezarri pasahitz bat",
|
||||
"Password" : "Pasahitza",
|
||||
"Enter a valid password" : "Sartu baliozko pasahitz bat",
|
||||
"Generate a new password" : "Sortu pasahitz berria",
|
||||
"The request will expire on {date} at midnight and will be password protected." : "Eskaera {date} egunean iraungiko da gauerdian eta pasahitzez babestuta egongo da.",
|
||||
"The request will expire on {date} at midnight." : "Eskaera {date} egunean iraungiko da gauerdian.",
|
||||
"The request will be password protected." : "Eskaera pasahitzez babestuta egongo da.",
|
||||
"Once created, you can share the link below to allow people to upload files to your directory." : "Sortu ondoren, beheko esteka partekatu dezakezu jendeak zure direktoriora fitxategiak igotzeko aukera izan dezan.",
|
||||
"Share link" : "Partekatu esteka",
|
||||
"Copy to clipboard" : "Kopiatu arbelera",
|
||||
"Send link via email" : "Bidali esteka posta elektronikoz",
|
||||
"Enter an email address or paste a list" : "Sartu helbide elektroniko bat edo itsatsi zerrenda bat",
|
||||
"Remove email" : "Kendu helbide elektronikoa",
|
||||
"Automatically copying failed, please copy the share link manually" : "Autimatikoki kopiatzeak huts egin du, kopiatu eskuz partekatze esteka",
|
||||
"Link copied to clipboard" : "Arbelara kopiatutako esteka",
|
||||
"Email already added" : "Helbide elektronikoa dagoeneko gehituta dago",
|
||||
"Invalid email address" : "Baliogabeko helbide elektronikoa",
|
||||
"_1 email address already added_::_{count} email addresses already added_" : ["Helbide elektroniko 1 gehitu da dagoeneko","{count} helbide elektroniko gehitu dira dagoeneko"],
|
||||
"_1 email address added_::_{count} email addresses added_" : ["Helbide elektroniko 1 gehitu da","{count} helbide elektroniko gehitu dira"],
|
||||
"What are you requesting?" : "Zer eskatu nahi duzu?",
|
||||
"Request subject" : "Eskaeraren gaia",
|
||||
"Birthday party photos, History assignment…" : "Urtebetetze festako argazkiak, Historiako apunteak...",
|
||||
"Where should these files go?" : "Nora joan behar lukete fitxategi hauek?",
|
||||
"The uploaded files are visible only to you unless you choose to share them." : "Igotzen diren fitxategiak zeuk bakarrik ikus ditzakezu, partekatzea erabakitzen duzun artean.",
|
||||
"Upload destination" : "Igo helmuga",
|
||||
"Select a destination" : "Hautatu helmuga bat",
|
||||
"Revert to default" : "Itzuli aukera lehenetsira",
|
||||
"Add a note" : "Gehitu oharra",
|
||||
"Note for recipient" : "Hartzailearentzako oharra",
|
||||
"Add a note to help people understand what you are requesting." : "Gehitu ohar bat jendeak uler dezan zer eskatzen ari zaren.",
|
||||
"Select" : "Hautatu",
|
||||
"Create a file request" : "Sortu fitxategi eskaera",
|
||||
"File request created" : "Fitxategi eskaera ondo sortu da",
|
||||
"Collect files from others even if they do not have an account." : "Bildu beste pertsona batzuen fitxategiak, nahiz eta beraiek kontua ez izan.",
|
||||
"To ensure you can receive files, verify you have enough storage available." : "Fitxategiak jaso ditzakezula bermatzeko, ziurta ezazu badaukazula nahikoa biltegiratze leku.",
|
||||
"File request" : "Fitxategi eskaera",
|
||||
"Cancel" : "Utzi",
|
||||
"Cancel the file request creation" : "Utzi bertan behera fitxategi eskaera sortzea",
|
||||
"Previous step" : "Aurreko urratsa",
|
||||
"Continue" : "Jarraitu",
|
||||
"Close" : "Itxi",
|
||||
"Please select a folder, you cannot share the root directory." : "Aukeratu karpeta bat, ezin duzu erro karpeta partekatu.",
|
||||
"File request created and emails sent" : "Fitxategi eskaera sortu da eta mezu elektronikoak bidali dira",
|
||||
"Error creating the share: {errorMessage}" : "Errorea partekatzea sortzean: {errorMessage}",
|
||||
"Error creating the share" : "Errorea partekatzea sortzean",
|
||||
"Error sending emails: {errorMessage}" : "Errorea mezu elektronikoak bidaltzean: {errorMessage}",
|
||||
"Error sending emails" : "Errorea mezu elektronikoak bidaltzean",
|
||||
"_Close and send email_::_Close and send {count} emails_" : ["Itxi eta bidali mezu elektronikoa","Itxi eta bidali {count} mezu elektroniko"],
|
||||
"Sharing" : "Partekatzea",
|
||||
"Accept shares from other accounts and groups by default" : "Onartu beste kontu eta talde batzuetako partekatzeak modu lehenetsian",
|
||||
"Error while toggling options" : "Errorea aukerak aldatzean",
|
||||
|
|
@ -149,17 +214,17 @@ OC.L10N.register(
|
|||
"Expiration date (enforced)" : "Iraungitze-data (betearazita)",
|
||||
"Enter a date" : "Sartu data bat",
|
||||
"Create share" : "Sortu partekatzea",
|
||||
"Cancel" : "Utzi",
|
||||
"Customize link" : "Pertsonalizatu esteka",
|
||||
"Generate QR code" : "Sortu QR kodea",
|
||||
"Add another link" : "Gehitu beste esteka bat",
|
||||
"Create a new share link" : "Sortu partekatze esteka berria",
|
||||
"{shareWith} by {initiator}" : "{initiator} erabiltzaileak {shareWith} ",
|
||||
"Shared via link by {initiator}" : "{initiator} erabiltzaileak esteka bidez partekatua",
|
||||
"File request ({label})" : "Fitxategi eskaera ({label})",
|
||||
"Mail share ({label})" : "Posta partekatzea ({label})",
|
||||
"Share link ({label})" : "Partekatu ({label}) eskeka",
|
||||
"Mail share" : "Posta partekatzea",
|
||||
"Share link ({index})" : "Partekatu ({index}) esteka",
|
||||
"Share link" : "Partekatu esteka",
|
||||
"Actions for \"{title}\"" : "\"{title}\"-ren ekintzak",
|
||||
"Copy public link of \"{title}\" to clipboard" : "Kopiatu \"{title}\"-ren esteka publikoa arbelean",
|
||||
"Error, please enter proper password and/or expiration date" : "Errorea, sartu dagokion pasahitza edo/eta iraungitze-data",
|
||||
|
|
@ -168,7 +233,6 @@ OC.L10N.register(
|
|||
"Quick share options, the current selected is \"{selectedOption}\"" : "Partekatzeko aukera bizkorrak, une honetan hautatutakoa \"{selectedOption}\" da",
|
||||
"View only" : "Ikustea soilik",
|
||||
"Can edit" : "Editatu dezake",
|
||||
"File drop" : "Fitxategiak jaregin",
|
||||
"Custom permissions" : "Baimen pertsonalizatuak",
|
||||
"Search for share recipients" : "Bilatu partekatze-hartzaileak",
|
||||
"No recommendations. Start typing." : "Gomendiorik ez. Hasi idazten.",
|
||||
|
|
@ -192,12 +256,10 @@ OC.L10N.register(
|
|||
"Advanced settings" : "Ezarpen aurreratuak",
|
||||
"Share label" : "Partekatu etiketa",
|
||||
"Set password" : "Pasahitza ezarri",
|
||||
"Password" : "Pasahitza",
|
||||
"Password expires {passwordExpirationTime}" : "Pasahitza {passwordExpirationTime} iraungiko da",
|
||||
"Password expired" : "Pasahitza iraungi da",
|
||||
"Video verification" : "Bideo egiaztapena",
|
||||
"Set expiration date" : "Ezarri iraungitze-data",
|
||||
"Expiration date" : "Iraungitze-data",
|
||||
"Hide download" : "Ezkutatu deskarga",
|
||||
"Allow download" : "Baimendu deskarga",
|
||||
"Note to recipient" : "Oharra hartzailearentzat",
|
||||
|
|
@ -221,6 +283,7 @@ OC.L10N.register(
|
|||
"Toggle list of others with access to this directory" : "Txandakatu direktorio honetara sarbidea duten beste erabiltzaileen zerrenda",
|
||||
"Toggle list of others with access to this file" : "Txandakatu fitxategi honetara sarbidea duten beste erabiltzaileen zerrenda",
|
||||
"Unable to fetch inherited shares" : "Ezin izan dira heredatutako partekatzeak eskuratu",
|
||||
"_The following email address is not valid: {emails}_::_The following email addresses are not valid: {emails}_" : ["Ondorengo helbide elektronikoa ez da baliozkoa: {emails}","Ondorengo helbide elektronikoak ez dira baliozkoak: {emails}"],
|
||||
"Unable to load the shares list" : "Ezin izan da partekatzeen zerrenda kargatu",
|
||||
"Expires {relativetime}" : "Iraungitzea: {relativetime}",
|
||||
"this share just expired." : "partekatze hau oraintxe iraungi da.",
|
||||
|
|
@ -234,13 +297,12 @@ OC.L10N.register(
|
|||
"Shared by {ownerDisplayName}" : "{ownerDisplayName}-(e)k partekatuta",
|
||||
"Show sharing options" : "Erakutsi partekatzeko aukerak",
|
||||
"Link to a file" : "Esteka fitxategi batera",
|
||||
"Error creating the share: {errorMessage}" : "Errorea partekatzea sortzean: {errorMessage}",
|
||||
"Error creating the share" : "Errorea partekatzea sortzean",
|
||||
"Error updating the share: {errorMessage}" : " Errorea partekatzea eguneratzean {errorMessage}",
|
||||
"Error updating the share" : "Errorea partekatzea eguneratzen",
|
||||
"File \"{path}\" has been unshared" : "\"{path}\" fitxategiaren partekatzea eten da",
|
||||
"Folder \"{path}\" has been unshared" : "\"{path}\" karpetaren partekatzea eten da",
|
||||
"Share {propertyName} saved" : "Partekatu {propertyName} gordeta",
|
||||
"Create new file request" : "Sortu fitxategi eskaera berria",
|
||||
"Shared by" : "Honek partekatua",
|
||||
"Shared with" : "Honekin partekatua",
|
||||
"Password created successfully" : "Pasahitza ongi sortu da",
|
||||
|
|
@ -302,9 +364,9 @@ OC.L10N.register(
|
|||
"Bundled permissions" : "Baimen multzoak",
|
||||
"Only works for users with access to this folder" : "Karpeta atzitu dezaketen erabiltzaileentzat bakarrik funtzionatzen du",
|
||||
"Only works for users with access to this file" : "Fitxategi hau atzitu dezaketen erabiltzaileentzat bakarrik funtzionatzen du",
|
||||
"File drop" : "Fitxategiak jaregin",
|
||||
"Circle" : "Zirkulua",
|
||||
"Update" : "Eguneratu",
|
||||
"Share with " : "Partekatu honekin",
|
||||
"No other users with access found" : "Ez da sarbidea duen erabiltzailerik aurkitu",
|
||||
"No entries found in this folder" : "Karpeta honetan ez da sarreraik aurkitu",
|
||||
"Name" : "Izena",
|
||||
|
|
|
|||
|
|
@ -84,6 +84,7 @@
|
|||
"Public link sharing is disabled by the administrator" : "Administratzaileak estekak publikoki partekatzea desgaitu du",
|
||||
"Public upload disabled by the administrator" : "Administratzaileak igoera publikoak desgaitu ditu",
|
||||
"Public upload is only possible for publicly shared folders" : "Igoera publikoa publikoki partekatutako karpetetan egin daiteke soilik",
|
||||
"Please specify a valid email address" : "Zehaztu baliozko helbide elektroniko bat",
|
||||
"Sharing %s sending the password by Nextcloud Talk failed because Nextcloud Talk is not enabled" : " %s Nextcloud Talk-etik pasahitza bidaliz partekatzeak huts egin du, Nextcloud Talk ez dagoelako gaituta",
|
||||
"Sharing %1$s failed because the back end does not allow shares from type %2$s" : " %1$s partekatzeak huts egin du, atzealdeak %2$s motako partekatzeak ez dituelako onartzen",
|
||||
"Please specify a valid federated account ID" : "Zehaztu baliozko federatutako kontu ID bat",
|
||||
|
|
@ -96,10 +97,20 @@
|
|||
"Not a directory" : "Ez da direktorio bat",
|
||||
"Could not lock node" : "Ezin izan da nodoa blokeatu",
|
||||
"Could not lock path" : "Ezin izan da bidea blokeatu",
|
||||
"no sharing rights on this item" : "Ez dago baimenik fitxategi hau partekatzeko",
|
||||
"You are not allowed to edit incoming shares" : "Ez duzu baimenik zuri partekaturikoak editatzeko",
|
||||
"Wrong or no update parameter given" : "Eguneraketa parametrorik ez da eman edo okerra da",
|
||||
"You are not allowed to edit link shares that you don't own" : "Ezin dituzu editatu zureak ez diren partekatze estekak",
|
||||
"Share must at least have READ or CREATE permissions" : "Partekatzeak gutxienez IRAKURRI edo SORTU egiteko baimenak behar ditu",
|
||||
"Share must have READ permission if UPDATE or DELETE permission is set" : "Partekatzeak IRAKURRI egiteko baimenak behar ditu, EGUNERATU edo EZABATU baimenak baldin badauzka",
|
||||
"\"Sending the password by Nextcloud Talk\" for sharing a file or folder failed because Nextcloud Talk is not enabled." : "\"Nextcloud Talk-ek pasahitza bidaltzeak\" huts egin du ez dagoelako Nextcloud Talk gaituta fitxategi edo karpeta bat partekatzeko.",
|
||||
"Invalid date. Format must be YYYY-MM-DD" : "Data baliogabea. UUU-HH-EE gisako formatua izan behar du",
|
||||
"No sharing rights on this item" : "Ez dago baimenik fitxategi hau partekatzeko",
|
||||
"Invalid share attributes provided: \"%s\"" : "Baliogabeko partekatze atributuak eman dira: \"%s\"",
|
||||
"You are not allowed to send mail notifications" : "Ezin dituzu email bidezko jakinarazpenak bidali",
|
||||
"No mail notification configured for this share type" : "Partekatze mota honentzat ez dago email jakinarazpenik konfiguratuta",
|
||||
"Wrong password" : "Pasahitz okerra",
|
||||
"Error while sending mail notification" : "Errorea email jakinarazpena bidaltzean",
|
||||
"shared by %s" : "%s erabiltzaileak partekatua",
|
||||
"Download all files" : "Deskargatu fitxategi guztiak",
|
||||
"Direct link" : "Esteka zuzena",
|
||||
|
|
@ -113,6 +124,60 @@
|
|||
"Accept" : "Onartu",
|
||||
"Decline" : "Uko egin",
|
||||
"This application enables people to share files within Nextcloud. If enabled, the admin can choose which groups can share files. The applicable people can then share files and folders with other accounts and groups within Nextcloud. In addition, if the admin enables the share link feature, an external link can be used to share files with other people outside of Nextcloud. Admins can also enforce passwords, expirations dates, and enable server to server sharing via share links, as well as sharing from mobile devices.\nTurning the feature off removes shared files and folders on the server for all share recipients, and also on the sync clients and mobile apps. More information is available in the Nextcloud Documentation." : "Aplikazio honek Nextcloud-en fitxategiak partekatzeko aukera ematen du. Gaituta badago, administratzaileak aukeratu dezake zein taldek parteka ditzaketen fitxategiak. Ondoren, baimendutako pertsonek fitxategiak eta karpetak parteka ditzakete Nextcloud-eko beste kontu eta talde batzuekin. Gainera, administratzaileak partekatzeko estekaren funtzioa gaitzen badu, kanpoko esteka bat erabil daiteke fitxategiak Nextcloud-etik kanpoko beste pertsonekin partekatzeko. Administratzaileek ere ezar ditzakete pasahitzak eta iraungitze-datak, bai eta gaitu zerbitzaritik zerbitzarira fitxategiak esteken bidez partekatzea, baita gailu mugikorretatik partekatzea ere.\nFuntzioa desaktibatuz gero, zerbitzarian partekatutako fitxategiak eta karpetak kentzen dira partekatutako hartzaile guztientzat, baita sinkronizazio-bezeroetan eta mugikorreko aplikazioetan ere. Informazio gehiago eskuragarri dago Nextcloud Dokumentazioan.",
|
||||
"Your administrator has enforced a default expiration date with a maximum {days} days." : "Zure administratzaileak {days}eguneko muga maximoa jarri die iraungitze datei.",
|
||||
"When should the request expire?" : "Noiz iraungi beharko luke eskaerak?",
|
||||
"Expiration date" : "Iraungitze-data",
|
||||
"Select a date" : "Hautatu data bat",
|
||||
"Your administrator has enforced a password protection." : "Zure administratzaileak pasahitzez babestu behar dela ezarri du.",
|
||||
"What password should be used for the request?" : "Zein pasahitz erabili behar litzateke eskaera honetarako?",
|
||||
"Set a password" : "Ezarri pasahitz bat",
|
||||
"Password" : "Pasahitza",
|
||||
"Enter a valid password" : "Sartu baliozko pasahitz bat",
|
||||
"Generate a new password" : "Sortu pasahitz berria",
|
||||
"The request will expire on {date} at midnight and will be password protected." : "Eskaera {date} egunean iraungiko da gauerdian eta pasahitzez babestuta egongo da.",
|
||||
"The request will expire on {date} at midnight." : "Eskaera {date} egunean iraungiko da gauerdian.",
|
||||
"The request will be password protected." : "Eskaera pasahitzez babestuta egongo da.",
|
||||
"Once created, you can share the link below to allow people to upload files to your directory." : "Sortu ondoren, beheko esteka partekatu dezakezu jendeak zure direktoriora fitxategiak igotzeko aukera izan dezan.",
|
||||
"Share link" : "Partekatu esteka",
|
||||
"Copy to clipboard" : "Kopiatu arbelera",
|
||||
"Send link via email" : "Bidali esteka posta elektronikoz",
|
||||
"Enter an email address or paste a list" : "Sartu helbide elektroniko bat edo itsatsi zerrenda bat",
|
||||
"Remove email" : "Kendu helbide elektronikoa",
|
||||
"Automatically copying failed, please copy the share link manually" : "Autimatikoki kopiatzeak huts egin du, kopiatu eskuz partekatze esteka",
|
||||
"Link copied to clipboard" : "Arbelara kopiatutako esteka",
|
||||
"Email already added" : "Helbide elektronikoa dagoeneko gehituta dago",
|
||||
"Invalid email address" : "Baliogabeko helbide elektronikoa",
|
||||
"_1 email address already added_::_{count} email addresses already added_" : ["Helbide elektroniko 1 gehitu da dagoeneko","{count} helbide elektroniko gehitu dira dagoeneko"],
|
||||
"_1 email address added_::_{count} email addresses added_" : ["Helbide elektroniko 1 gehitu da","{count} helbide elektroniko gehitu dira"],
|
||||
"What are you requesting?" : "Zer eskatu nahi duzu?",
|
||||
"Request subject" : "Eskaeraren gaia",
|
||||
"Birthday party photos, History assignment…" : "Urtebetetze festako argazkiak, Historiako apunteak...",
|
||||
"Where should these files go?" : "Nora joan behar lukete fitxategi hauek?",
|
||||
"The uploaded files are visible only to you unless you choose to share them." : "Igotzen diren fitxategiak zeuk bakarrik ikus ditzakezu, partekatzea erabakitzen duzun artean.",
|
||||
"Upload destination" : "Igo helmuga",
|
||||
"Select a destination" : "Hautatu helmuga bat",
|
||||
"Revert to default" : "Itzuli aukera lehenetsira",
|
||||
"Add a note" : "Gehitu oharra",
|
||||
"Note for recipient" : "Hartzailearentzako oharra",
|
||||
"Add a note to help people understand what you are requesting." : "Gehitu ohar bat jendeak uler dezan zer eskatzen ari zaren.",
|
||||
"Select" : "Hautatu",
|
||||
"Create a file request" : "Sortu fitxategi eskaera",
|
||||
"File request created" : "Fitxategi eskaera ondo sortu da",
|
||||
"Collect files from others even if they do not have an account." : "Bildu beste pertsona batzuen fitxategiak, nahiz eta beraiek kontua ez izan.",
|
||||
"To ensure you can receive files, verify you have enough storage available." : "Fitxategiak jaso ditzakezula bermatzeko, ziurta ezazu badaukazula nahikoa biltegiratze leku.",
|
||||
"File request" : "Fitxategi eskaera",
|
||||
"Cancel" : "Utzi",
|
||||
"Cancel the file request creation" : "Utzi bertan behera fitxategi eskaera sortzea",
|
||||
"Previous step" : "Aurreko urratsa",
|
||||
"Continue" : "Jarraitu",
|
||||
"Close" : "Itxi",
|
||||
"Please select a folder, you cannot share the root directory." : "Aukeratu karpeta bat, ezin duzu erro karpeta partekatu.",
|
||||
"File request created and emails sent" : "Fitxategi eskaera sortu da eta mezu elektronikoak bidali dira",
|
||||
"Error creating the share: {errorMessage}" : "Errorea partekatzea sortzean: {errorMessage}",
|
||||
"Error creating the share" : "Errorea partekatzea sortzean",
|
||||
"Error sending emails: {errorMessage}" : "Errorea mezu elektronikoak bidaltzean: {errorMessage}",
|
||||
"Error sending emails" : "Errorea mezu elektronikoak bidaltzean",
|
||||
"_Close and send email_::_Close and send {count} emails_" : ["Itxi eta bidali mezu elektronikoa","Itxi eta bidali {count} mezu elektroniko"],
|
||||
"Sharing" : "Partekatzea",
|
||||
"Accept shares from other accounts and groups by default" : "Onartu beste kontu eta talde batzuetako partekatzeak modu lehenetsian",
|
||||
"Error while toggling options" : "Errorea aukerak aldatzean",
|
||||
|
|
@ -147,17 +212,17 @@
|
|||
"Expiration date (enforced)" : "Iraungitze-data (betearazita)",
|
||||
"Enter a date" : "Sartu data bat",
|
||||
"Create share" : "Sortu partekatzea",
|
||||
"Cancel" : "Utzi",
|
||||
"Customize link" : "Pertsonalizatu esteka",
|
||||
"Generate QR code" : "Sortu QR kodea",
|
||||
"Add another link" : "Gehitu beste esteka bat",
|
||||
"Create a new share link" : "Sortu partekatze esteka berria",
|
||||
"{shareWith} by {initiator}" : "{initiator} erabiltzaileak {shareWith} ",
|
||||
"Shared via link by {initiator}" : "{initiator} erabiltzaileak esteka bidez partekatua",
|
||||
"File request ({label})" : "Fitxategi eskaera ({label})",
|
||||
"Mail share ({label})" : "Posta partekatzea ({label})",
|
||||
"Share link ({label})" : "Partekatu ({label}) eskeka",
|
||||
"Mail share" : "Posta partekatzea",
|
||||
"Share link ({index})" : "Partekatu ({index}) esteka",
|
||||
"Share link" : "Partekatu esteka",
|
||||
"Actions for \"{title}\"" : "\"{title}\"-ren ekintzak",
|
||||
"Copy public link of \"{title}\" to clipboard" : "Kopiatu \"{title}\"-ren esteka publikoa arbelean",
|
||||
"Error, please enter proper password and/or expiration date" : "Errorea, sartu dagokion pasahitza edo/eta iraungitze-data",
|
||||
|
|
@ -166,7 +231,6 @@
|
|||
"Quick share options, the current selected is \"{selectedOption}\"" : "Partekatzeko aukera bizkorrak, une honetan hautatutakoa \"{selectedOption}\" da",
|
||||
"View only" : "Ikustea soilik",
|
||||
"Can edit" : "Editatu dezake",
|
||||
"File drop" : "Fitxategiak jaregin",
|
||||
"Custom permissions" : "Baimen pertsonalizatuak",
|
||||
"Search for share recipients" : "Bilatu partekatze-hartzaileak",
|
||||
"No recommendations. Start typing." : "Gomendiorik ez. Hasi idazten.",
|
||||
|
|
@ -190,12 +254,10 @@
|
|||
"Advanced settings" : "Ezarpen aurreratuak",
|
||||
"Share label" : "Partekatu etiketa",
|
||||
"Set password" : "Pasahitza ezarri",
|
||||
"Password" : "Pasahitza",
|
||||
"Password expires {passwordExpirationTime}" : "Pasahitza {passwordExpirationTime} iraungiko da",
|
||||
"Password expired" : "Pasahitza iraungi da",
|
||||
"Video verification" : "Bideo egiaztapena",
|
||||
"Set expiration date" : "Ezarri iraungitze-data",
|
||||
"Expiration date" : "Iraungitze-data",
|
||||
"Hide download" : "Ezkutatu deskarga",
|
||||
"Allow download" : "Baimendu deskarga",
|
||||
"Note to recipient" : "Oharra hartzailearentzat",
|
||||
|
|
@ -219,6 +281,7 @@
|
|||
"Toggle list of others with access to this directory" : "Txandakatu direktorio honetara sarbidea duten beste erabiltzaileen zerrenda",
|
||||
"Toggle list of others with access to this file" : "Txandakatu fitxategi honetara sarbidea duten beste erabiltzaileen zerrenda",
|
||||
"Unable to fetch inherited shares" : "Ezin izan dira heredatutako partekatzeak eskuratu",
|
||||
"_The following email address is not valid: {emails}_::_The following email addresses are not valid: {emails}_" : ["Ondorengo helbide elektronikoa ez da baliozkoa: {emails}","Ondorengo helbide elektronikoak ez dira baliozkoak: {emails}"],
|
||||
"Unable to load the shares list" : "Ezin izan da partekatzeen zerrenda kargatu",
|
||||
"Expires {relativetime}" : "Iraungitzea: {relativetime}",
|
||||
"this share just expired." : "partekatze hau oraintxe iraungi da.",
|
||||
|
|
@ -232,13 +295,12 @@
|
|||
"Shared by {ownerDisplayName}" : "{ownerDisplayName}-(e)k partekatuta",
|
||||
"Show sharing options" : "Erakutsi partekatzeko aukerak",
|
||||
"Link to a file" : "Esteka fitxategi batera",
|
||||
"Error creating the share: {errorMessage}" : "Errorea partekatzea sortzean: {errorMessage}",
|
||||
"Error creating the share" : "Errorea partekatzea sortzean",
|
||||
"Error updating the share: {errorMessage}" : " Errorea partekatzea eguneratzean {errorMessage}",
|
||||
"Error updating the share" : "Errorea partekatzea eguneratzen",
|
||||
"File \"{path}\" has been unshared" : "\"{path}\" fitxategiaren partekatzea eten da",
|
||||
"Folder \"{path}\" has been unshared" : "\"{path}\" karpetaren partekatzea eten da",
|
||||
"Share {propertyName} saved" : "Partekatu {propertyName} gordeta",
|
||||
"Create new file request" : "Sortu fitxategi eskaera berria",
|
||||
"Shared by" : "Honek partekatua",
|
||||
"Shared with" : "Honekin partekatua",
|
||||
"Password created successfully" : "Pasahitza ongi sortu da",
|
||||
|
|
@ -300,9 +362,9 @@
|
|||
"Bundled permissions" : "Baimen multzoak",
|
||||
"Only works for users with access to this folder" : "Karpeta atzitu dezaketen erabiltzaileentzat bakarrik funtzionatzen du",
|
||||
"Only works for users with access to this file" : "Fitxategi hau atzitu dezaketen erabiltzaileentzat bakarrik funtzionatzen du",
|
||||
"File drop" : "Fitxategiak jaregin",
|
||||
"Circle" : "Zirkulua",
|
||||
"Update" : "Eguneratu",
|
||||
"Share with " : "Partekatu honekin",
|
||||
"No other users with access found" : "Ez da sarbidea duen erabiltzailerik aurkitu",
|
||||
"No entries found in this folder" : "Karpeta honetan ez da sarreraik aurkitu",
|
||||
"Name" : "Izena",
|
||||
|
|
|
|||
|
|
@ -100,6 +100,7 @@ OC.L10N.register(
|
|||
"Share must at least have READ or CREATE permissions" : "Share must at least have READ or CREATE permissions",
|
||||
"Share must have READ permission if UPDATE or DELETE permission is set" : "Share must have READ permission if UPDATE or DELETE permission is set",
|
||||
"\"Sending the password by Nextcloud Talk\" for sharing a file or folder failed because Nextcloud Talk is not enabled." : "\"Sending the password by Nextcloud Talk\" for sharing a file or folder failed because Nextcloud Talk is not enabled.",
|
||||
"Wrong password" : "کلمه عبور اشتباه",
|
||||
"shared by %s" : "اشتراک گذاری شده به میزان %s",
|
||||
"Download all files" : "دانلود همه فایل ها",
|
||||
"Direct link" : "لینک مستقیم",
|
||||
|
|
@ -112,6 +113,18 @@ OC.L10N.register(
|
|||
"You received {share} to group {group} as a share by {user}" : "شما {اشتراک} را به گروه {گروه} به عنوان سهم {user }دریافت کردید",
|
||||
"Accept" : "پذیرفتن",
|
||||
"Decline" : "کاهش می یابد",
|
||||
"Expiration date" : "تاریخ انقضا",
|
||||
"Set a password" : "رمزعبور تنظیم کنید",
|
||||
"Password" : "گذرواژه",
|
||||
"Share link" : "Share link",
|
||||
"Copy to clipboard" : "کپی به کلیپ بورد",
|
||||
"Link copied to clipboard" : "پیوند در حافظه موقت کپی شده",
|
||||
"Select" : "گزینش<br>",
|
||||
"Cancel" : "لغو",
|
||||
"Continue" : "ادامه",
|
||||
"Close" : "بسته",
|
||||
"Error creating the share: {errorMessage}" : "Error creating the share: {errorMessage}",
|
||||
"Error creating the share" : "خطایی در ایجاد اشتراک",
|
||||
"Sharing" : "اشتراک گذاری",
|
||||
"Error while toggling options" : "Error while toggling options",
|
||||
"Set default folder for accepted shares" : "انتخاب پوشه ی پیش فرض برای اشتراک گذاری های پذیرفته شده",
|
||||
|
|
@ -142,7 +155,6 @@ OC.L10N.register(
|
|||
"Expiration date (enforced)" : "تاریخ انقضا (اجباری)",
|
||||
"Enter a date" : "تاریخ را وارد کنید",
|
||||
"Create share" : "ساختن اشتراک",
|
||||
"Cancel" : "لغو",
|
||||
"Add another link" : "پیوند دیگری اضافه کنید",
|
||||
"Create a new share link" : "پیوند اشتراک گذاری جدیدی ایجاد کنید",
|
||||
"{shareWith} by {initiator}" : "{shareWith} by {initiator}",
|
||||
|
|
@ -150,7 +162,6 @@ OC.L10N.register(
|
|||
"Mail share ({label})" : "Mail share ({label})",
|
||||
"Share link ({label})" : "Share link ({label})",
|
||||
"Share link ({index})" : "Share link ({index})",
|
||||
"Share link" : "Share link",
|
||||
"Actions for \"{title}\"" : "Actions for \"{title}\"",
|
||||
"Copy public link of \"{title}\" to clipboard" : "Copy public link of \"{title}\" to clipboard",
|
||||
"Error, please enter proper password and/or expiration date" : "خطا ، لطفاً رمز عبور مناسب و یا تاریخ انقضا را وارد کنید",
|
||||
|
|
@ -158,7 +169,6 @@ OC.L10N.register(
|
|||
"Error while creating the share" : "Error while creating the share",
|
||||
"View only" : "تنها مشاهده",
|
||||
"Can edit" : "توانایی ویرایش",
|
||||
"File drop" : "انداختن پرونده",
|
||||
"Custom permissions" : "Custom permissions",
|
||||
"Search for share recipients" : "Search for share recipients",
|
||||
"No recommendations. Start typing." : "هیچ توصیه ای نیست شروع به تایپ کنید.",
|
||||
|
|
@ -180,12 +190,10 @@ OC.L10N.register(
|
|||
"Advanced settings" : "تنظیمات پیشرفته",
|
||||
"Share label" : "Share label",
|
||||
"Set password" : "تنظیم گذرواژه",
|
||||
"Password" : "گذرواژه",
|
||||
"Password expires {passwordExpirationTime}" : "Password expires {passwordExpirationTime}",
|
||||
"Password expired" : "Password expired",
|
||||
"Video verification" : "تأیید صحت ویدیو",
|
||||
"Set expiration date" : "تنظیم تاریخ انقضا",
|
||||
"Expiration date" : "تاریخ انقضا",
|
||||
"Hide download" : "پنهان کردن بارگیری",
|
||||
"Allow download" : "Allow download",
|
||||
"Note to recipient" : "یادداشت برای گیرنده",
|
||||
|
|
@ -208,8 +216,6 @@ OC.L10N.register(
|
|||
"_Restore share_::_Restore shares_" : ["Restore share","Restore shares"],
|
||||
"Shared" : "به اشتراک گزاشته شده ",
|
||||
"Link to a file" : "پیوند به یک پرونده",
|
||||
"Error creating the share: {errorMessage}" : "Error creating the share: {errorMessage}",
|
||||
"Error creating the share" : "خطایی در ایجاد اشتراک",
|
||||
"Error updating the share: {errorMessage}" : "Error updating the share: {errorMessage}",
|
||||
"Error updating the share" : "خطایی در به روزرسانی اشتراک",
|
||||
"File \"{path}\" has been unshared" : "File \"{path}\" has been unshared",
|
||||
|
|
@ -276,6 +282,7 @@ OC.L10N.register(
|
|||
"Bundled permissions" : "Bundled permissions",
|
||||
"Only works for users with access to this folder" : "فقط برای کاربران دارای دسترسی به این پوشه کار می کند",
|
||||
"Only works for users with access to this file" : "فقط برای کاربران با دسترسی به این پرونده کار می کند",
|
||||
"File drop" : "انداختن پرونده",
|
||||
"Circle" : "حلقه",
|
||||
"Update" : "بهروز رسانی",
|
||||
"No other users with access found" : "هیچ کاربر دیگری با دسترسی یافت نشد",
|
||||
|
|
|
|||
|
|
@ -98,6 +98,7 @@
|
|||
"Share must at least have READ or CREATE permissions" : "Share must at least have READ or CREATE permissions",
|
||||
"Share must have READ permission if UPDATE or DELETE permission is set" : "Share must have READ permission if UPDATE or DELETE permission is set",
|
||||
"\"Sending the password by Nextcloud Talk\" for sharing a file or folder failed because Nextcloud Talk is not enabled." : "\"Sending the password by Nextcloud Talk\" for sharing a file or folder failed because Nextcloud Talk is not enabled.",
|
||||
"Wrong password" : "کلمه عبور اشتباه",
|
||||
"shared by %s" : "اشتراک گذاری شده به میزان %s",
|
||||
"Download all files" : "دانلود همه فایل ها",
|
||||
"Direct link" : "لینک مستقیم",
|
||||
|
|
@ -110,6 +111,18 @@
|
|||
"You received {share} to group {group} as a share by {user}" : "شما {اشتراک} را به گروه {گروه} به عنوان سهم {user }دریافت کردید",
|
||||
"Accept" : "پذیرفتن",
|
||||
"Decline" : "کاهش می یابد",
|
||||
"Expiration date" : "تاریخ انقضا",
|
||||
"Set a password" : "رمزعبور تنظیم کنید",
|
||||
"Password" : "گذرواژه",
|
||||
"Share link" : "Share link",
|
||||
"Copy to clipboard" : "کپی به کلیپ بورد",
|
||||
"Link copied to clipboard" : "پیوند در حافظه موقت کپی شده",
|
||||
"Select" : "گزینش<br>",
|
||||
"Cancel" : "لغو",
|
||||
"Continue" : "ادامه",
|
||||
"Close" : "بسته",
|
||||
"Error creating the share: {errorMessage}" : "Error creating the share: {errorMessage}",
|
||||
"Error creating the share" : "خطایی در ایجاد اشتراک",
|
||||
"Sharing" : "اشتراک گذاری",
|
||||
"Error while toggling options" : "Error while toggling options",
|
||||
"Set default folder for accepted shares" : "انتخاب پوشه ی پیش فرض برای اشتراک گذاری های پذیرفته شده",
|
||||
|
|
@ -140,7 +153,6 @@
|
|||
"Expiration date (enforced)" : "تاریخ انقضا (اجباری)",
|
||||
"Enter a date" : "تاریخ را وارد کنید",
|
||||
"Create share" : "ساختن اشتراک",
|
||||
"Cancel" : "لغو",
|
||||
"Add another link" : "پیوند دیگری اضافه کنید",
|
||||
"Create a new share link" : "پیوند اشتراک گذاری جدیدی ایجاد کنید",
|
||||
"{shareWith} by {initiator}" : "{shareWith} by {initiator}",
|
||||
|
|
@ -148,7 +160,6 @@
|
|||
"Mail share ({label})" : "Mail share ({label})",
|
||||
"Share link ({label})" : "Share link ({label})",
|
||||
"Share link ({index})" : "Share link ({index})",
|
||||
"Share link" : "Share link",
|
||||
"Actions for \"{title}\"" : "Actions for \"{title}\"",
|
||||
"Copy public link of \"{title}\" to clipboard" : "Copy public link of \"{title}\" to clipboard",
|
||||
"Error, please enter proper password and/or expiration date" : "خطا ، لطفاً رمز عبور مناسب و یا تاریخ انقضا را وارد کنید",
|
||||
|
|
@ -156,7 +167,6 @@
|
|||
"Error while creating the share" : "Error while creating the share",
|
||||
"View only" : "تنها مشاهده",
|
||||
"Can edit" : "توانایی ویرایش",
|
||||
"File drop" : "انداختن پرونده",
|
||||
"Custom permissions" : "Custom permissions",
|
||||
"Search for share recipients" : "Search for share recipients",
|
||||
"No recommendations. Start typing." : "هیچ توصیه ای نیست شروع به تایپ کنید.",
|
||||
|
|
@ -178,12 +188,10 @@
|
|||
"Advanced settings" : "تنظیمات پیشرفته",
|
||||
"Share label" : "Share label",
|
||||
"Set password" : "تنظیم گذرواژه",
|
||||
"Password" : "گذرواژه",
|
||||
"Password expires {passwordExpirationTime}" : "Password expires {passwordExpirationTime}",
|
||||
"Password expired" : "Password expired",
|
||||
"Video verification" : "تأیید صحت ویدیو",
|
||||
"Set expiration date" : "تنظیم تاریخ انقضا",
|
||||
"Expiration date" : "تاریخ انقضا",
|
||||
"Hide download" : "پنهان کردن بارگیری",
|
||||
"Allow download" : "Allow download",
|
||||
"Note to recipient" : "یادداشت برای گیرنده",
|
||||
|
|
@ -206,8 +214,6 @@
|
|||
"_Restore share_::_Restore shares_" : ["Restore share","Restore shares"],
|
||||
"Shared" : "به اشتراک گزاشته شده ",
|
||||
"Link to a file" : "پیوند به یک پرونده",
|
||||
"Error creating the share: {errorMessage}" : "Error creating the share: {errorMessage}",
|
||||
"Error creating the share" : "خطایی در ایجاد اشتراک",
|
||||
"Error updating the share: {errorMessage}" : "Error updating the share: {errorMessage}",
|
||||
"Error updating the share" : "خطایی در به روزرسانی اشتراک",
|
||||
"File \"{path}\" has been unshared" : "File \"{path}\" has been unshared",
|
||||
|
|
@ -274,6 +280,7 @@
|
|||
"Bundled permissions" : "Bundled permissions",
|
||||
"Only works for users with access to this folder" : "فقط برای کاربران دارای دسترسی به این پوشه کار می کند",
|
||||
"Only works for users with access to this file" : "فقط برای کاربران با دسترسی به این پرونده کار می کند",
|
||||
"File drop" : "انداختن پرونده",
|
||||
"Circle" : "حلقه",
|
||||
"Update" : "بهروز رسانی",
|
||||
"No other users with access found" : "هیچ کاربر دیگری با دسترسی یافت نشد",
|
||||
|
|
|
|||
|
|
@ -96,6 +96,7 @@ OC.L10N.register(
|
|||
"Could not lock path" : "Polun lukitseminen ei onnistunut",
|
||||
"Wrong or no update parameter given" : "Päivitettävä parametri puuttuu tai on väärin",
|
||||
"Share must at least have READ or CREATE permissions" : "Jaolla tulee olla vähintään luku- tai kirjoitusoikeus",
|
||||
"Wrong password" : "Väärä salasana",
|
||||
"shared by %s" : "käyttäjän %s jakama",
|
||||
"Download all files" : "Lataa kaikki tiedostot",
|
||||
"Direct link" : "Suora linkki",
|
||||
|
|
@ -108,6 +109,19 @@ OC.L10N.register(
|
|||
"You received {share} to group {group} as a share by {user}" : "Vastaanotit jaon {share} ryhmään {group} käyttäjältä {user}",
|
||||
"Accept" : "Hyväksy",
|
||||
"Decline" : "Kieltäydy",
|
||||
"Expiration date" : "Vanhenemispäivä",
|
||||
"Set a password" : "Aseta salasana",
|
||||
"Password" : "Salasana",
|
||||
"Share link" : "Jaa linkki",
|
||||
"Copy to clipboard" : "Kopioi leikepöydälle",
|
||||
"Send link via email" : "Lähetä linkki sähköpostitse",
|
||||
"Link copied to clipboard" : "Linkki kopioitu leikepöydälle",
|
||||
"Select" : "Valitse",
|
||||
"Cancel" : "Peruuta",
|
||||
"Continue" : "Jatka",
|
||||
"Close" : "Sulje",
|
||||
"Error creating the share: {errorMessage}" : "Virhe luotaessa jakoa: {errorMessage}",
|
||||
"Error creating the share" : "Virhe jakoa luotaessa",
|
||||
"Sharing" : "Jakaminen",
|
||||
"Accept shares from other accounts and groups by default" : "Hyväksy jaot muilta tileiltä ja ryhmiltä oletusarvoisesti",
|
||||
"Set default folder for accepted shares" : "Aseta oletuskansio hyväksytyille jaoille",
|
||||
|
|
@ -139,7 +153,6 @@ OC.L10N.register(
|
|||
"Expiration date (enforced)" : "Vanhenemispäivä (pakotettu)",
|
||||
"Enter a date" : "Syötä päivämäärä",
|
||||
"Create share" : "Luo jako",
|
||||
"Cancel" : "Peruuta",
|
||||
"Customize link" : "Mukauta linkkiä",
|
||||
"Generate QR code" : "Luo QR-koodi",
|
||||
"Add another link" : "Lisää toinen linkki",
|
||||
|
|
@ -148,7 +161,6 @@ OC.L10N.register(
|
|||
"Mail share ({label})" : "Sähköpostijako ({label})",
|
||||
"Share link ({label})" : "Jaa linkki ({label})",
|
||||
"Share link ({index})" : "Jaa linkki ({index})",
|
||||
"Share link" : "Jaa linkki",
|
||||
"Actions for \"{title}\"" : "Toiminnot kohteelle \"{title}\"",
|
||||
"Copy public link of \"{title}\" to clipboard" : "Kopioi kohteen \"{title}\" julkinen linkki leikepöydälle",
|
||||
"Error, please enter proper password and/or expiration date" : "Virhe, lisää kelvollinen salasana ja/tai päättymispäivä",
|
||||
|
|
@ -156,7 +168,6 @@ OC.L10N.register(
|
|||
"Error while creating the share" : "Virhe jakoa luotaessa",
|
||||
"View only" : "Vain katselu",
|
||||
"Can edit" : "Voi muokata",
|
||||
"File drop" : "Tiedoston pudotus",
|
||||
"Custom permissions" : "Mukautetut oikeudet",
|
||||
"Search for share recipients" : "Etsi jaon vastaanottajia",
|
||||
"No recommendations. Start typing." : "Ei suosituksia. Aloita kirjoittaminen.",
|
||||
|
|
@ -178,12 +189,10 @@ OC.L10N.register(
|
|||
"Advanced settings" : "Lisäasetukset",
|
||||
"Share label" : "Jaon nimi",
|
||||
"Set password" : "Aseta salasana",
|
||||
"Password" : "Salasana",
|
||||
"Password expires {passwordExpirationTime}" : "Salasana vanhenee {passwordExpirationTime}",
|
||||
"Password expired" : "Salasana vanheni",
|
||||
"Video verification" : "Videovarmistus",
|
||||
"Set expiration date" : "Aseta vanhenemispäivä",
|
||||
"Expiration date" : "Vanhenemispäivä",
|
||||
"Hide download" : "Piilota lataus",
|
||||
"Allow download" : "Salli lataus",
|
||||
"Note to recipient" : "Huomio vastaanottajalle",
|
||||
|
|
@ -216,8 +225,6 @@ OC.L10N.register(
|
|||
"Shared by {ownerDisplayName}" : "Jakanut {ownerDisplayName}",
|
||||
"Show sharing options" : "Näytä jakamisen valinnat",
|
||||
"Link to a file" : "Linkki tiedostoon",
|
||||
"Error creating the share: {errorMessage}" : "Virhe luotaessa jakoa: {errorMessage}",
|
||||
"Error creating the share" : "Virhe jakoa luotaessa",
|
||||
"Error updating the share: {errorMessage}" : "Virhe päivittäessä jakoa: {errorMessage}",
|
||||
"Error updating the share" : "Virhe jakoa päivittäessä",
|
||||
"File \"{path}\" has been unshared" : "Tiedoston \"{path}\" jakaminen on lopetettu",
|
||||
|
|
@ -278,6 +285,7 @@ OC.L10N.register(
|
|||
"Upload" : "Lähetä",
|
||||
"Only works for users with access to this folder" : "Toimii vain käyttäjille, joilla on oikeus tähän kansioon",
|
||||
"Only works for users with access to this file" : "Toimii vain käyttäjille, joilla on käyttöoikeus tähän tiedostoon",
|
||||
"File drop" : "Tiedoston pudotus",
|
||||
"Circle" : "Piiri",
|
||||
"Update" : "Päivitä",
|
||||
"No other users with access found" : "Ei löytynyt muita käyttäjiä, joilla olisi käyttöoikeus",
|
||||
|
|
|
|||
|
|
@ -94,6 +94,7 @@
|
|||
"Could not lock path" : "Polun lukitseminen ei onnistunut",
|
||||
"Wrong or no update parameter given" : "Päivitettävä parametri puuttuu tai on väärin",
|
||||
"Share must at least have READ or CREATE permissions" : "Jaolla tulee olla vähintään luku- tai kirjoitusoikeus",
|
||||
"Wrong password" : "Väärä salasana",
|
||||
"shared by %s" : "käyttäjän %s jakama",
|
||||
"Download all files" : "Lataa kaikki tiedostot",
|
||||
"Direct link" : "Suora linkki",
|
||||
|
|
@ -106,6 +107,19 @@
|
|||
"You received {share} to group {group} as a share by {user}" : "Vastaanotit jaon {share} ryhmään {group} käyttäjältä {user}",
|
||||
"Accept" : "Hyväksy",
|
||||
"Decline" : "Kieltäydy",
|
||||
"Expiration date" : "Vanhenemispäivä",
|
||||
"Set a password" : "Aseta salasana",
|
||||
"Password" : "Salasana",
|
||||
"Share link" : "Jaa linkki",
|
||||
"Copy to clipboard" : "Kopioi leikepöydälle",
|
||||
"Send link via email" : "Lähetä linkki sähköpostitse",
|
||||
"Link copied to clipboard" : "Linkki kopioitu leikepöydälle",
|
||||
"Select" : "Valitse",
|
||||
"Cancel" : "Peruuta",
|
||||
"Continue" : "Jatka",
|
||||
"Close" : "Sulje",
|
||||
"Error creating the share: {errorMessage}" : "Virhe luotaessa jakoa: {errorMessage}",
|
||||
"Error creating the share" : "Virhe jakoa luotaessa",
|
||||
"Sharing" : "Jakaminen",
|
||||
"Accept shares from other accounts and groups by default" : "Hyväksy jaot muilta tileiltä ja ryhmiltä oletusarvoisesti",
|
||||
"Set default folder for accepted shares" : "Aseta oletuskansio hyväksytyille jaoille",
|
||||
|
|
@ -137,7 +151,6 @@
|
|||
"Expiration date (enforced)" : "Vanhenemispäivä (pakotettu)",
|
||||
"Enter a date" : "Syötä päivämäärä",
|
||||
"Create share" : "Luo jako",
|
||||
"Cancel" : "Peruuta",
|
||||
"Customize link" : "Mukauta linkkiä",
|
||||
"Generate QR code" : "Luo QR-koodi",
|
||||
"Add another link" : "Lisää toinen linkki",
|
||||
|
|
@ -146,7 +159,6 @@
|
|||
"Mail share ({label})" : "Sähköpostijako ({label})",
|
||||
"Share link ({label})" : "Jaa linkki ({label})",
|
||||
"Share link ({index})" : "Jaa linkki ({index})",
|
||||
"Share link" : "Jaa linkki",
|
||||
"Actions for \"{title}\"" : "Toiminnot kohteelle \"{title}\"",
|
||||
"Copy public link of \"{title}\" to clipboard" : "Kopioi kohteen \"{title}\" julkinen linkki leikepöydälle",
|
||||
"Error, please enter proper password and/or expiration date" : "Virhe, lisää kelvollinen salasana ja/tai päättymispäivä",
|
||||
|
|
@ -154,7 +166,6 @@
|
|||
"Error while creating the share" : "Virhe jakoa luotaessa",
|
||||
"View only" : "Vain katselu",
|
||||
"Can edit" : "Voi muokata",
|
||||
"File drop" : "Tiedoston pudotus",
|
||||
"Custom permissions" : "Mukautetut oikeudet",
|
||||
"Search for share recipients" : "Etsi jaon vastaanottajia",
|
||||
"No recommendations. Start typing." : "Ei suosituksia. Aloita kirjoittaminen.",
|
||||
|
|
@ -176,12 +187,10 @@
|
|||
"Advanced settings" : "Lisäasetukset",
|
||||
"Share label" : "Jaon nimi",
|
||||
"Set password" : "Aseta salasana",
|
||||
"Password" : "Salasana",
|
||||
"Password expires {passwordExpirationTime}" : "Salasana vanhenee {passwordExpirationTime}",
|
||||
"Password expired" : "Salasana vanheni",
|
||||
"Video verification" : "Videovarmistus",
|
||||
"Set expiration date" : "Aseta vanhenemispäivä",
|
||||
"Expiration date" : "Vanhenemispäivä",
|
||||
"Hide download" : "Piilota lataus",
|
||||
"Allow download" : "Salli lataus",
|
||||
"Note to recipient" : "Huomio vastaanottajalle",
|
||||
|
|
@ -214,8 +223,6 @@
|
|||
"Shared by {ownerDisplayName}" : "Jakanut {ownerDisplayName}",
|
||||
"Show sharing options" : "Näytä jakamisen valinnat",
|
||||
"Link to a file" : "Linkki tiedostoon",
|
||||
"Error creating the share: {errorMessage}" : "Virhe luotaessa jakoa: {errorMessage}",
|
||||
"Error creating the share" : "Virhe jakoa luotaessa",
|
||||
"Error updating the share: {errorMessage}" : "Virhe päivittäessä jakoa: {errorMessage}",
|
||||
"Error updating the share" : "Virhe jakoa päivittäessä",
|
||||
"File \"{path}\" has been unshared" : "Tiedoston \"{path}\" jakaminen on lopetettu",
|
||||
|
|
@ -276,6 +283,7 @@
|
|||
"Upload" : "Lähetä",
|
||||
"Only works for users with access to this folder" : "Toimii vain käyttäjille, joilla on oikeus tähän kansioon",
|
||||
"Only works for users with access to this file" : "Toimii vain käyttäjille, joilla on käyttöoikeus tähän tiedostoon",
|
||||
"File drop" : "Tiedoston pudotus",
|
||||
"Circle" : "Piiri",
|
||||
"Update" : "Päivitä",
|
||||
"No other users with access found" : "Ei löytynyt muita käyttäjiä, joilla olisi käyttöoikeus",
|
||||
|
|
|
|||
|
|
@ -102,6 +102,7 @@ OC.L10N.register(
|
|||
"Share must at least have READ or CREATE permissions" : "Le partage nécessite de disposer à minima des permissions de LECTURE et de CREATION",
|
||||
"Share must have READ permission if UPDATE or DELETE permission is set" : "Le partage doit disposer de l'autorisation LECTURE si l'autorisation METTRE À JOUR ou SUPPRIMER est définie",
|
||||
"\"Sending the password by Nextcloud Talk\" for sharing a file or folder failed because Nextcloud Talk is not enabled." : "\"L'envoi du mot de passe par Nextcloud Talk\" pour partager un fichier a échoué car Nextcloud Talk n'est pas activé",
|
||||
"Wrong password" : "Mot de passe incorrect",
|
||||
"shared by %s" : "partagé par %s",
|
||||
"Download all files" : "Télécharger tous les fichiers",
|
||||
"Direct link" : "Lien direct",
|
||||
|
|
@ -115,6 +116,19 @@ OC.L10N.register(
|
|||
"Accept" : "Accepter",
|
||||
"Decline" : "Décliner",
|
||||
"This application enables people to share files within Nextcloud. If enabled, the admin can choose which groups can share files. The applicable people can then share files and folders with other accounts and groups within Nextcloud. In addition, if the admin enables the share link feature, an external link can be used to share files with other people outside of Nextcloud. Admins can also enforce passwords, expirations dates, and enable server to server sharing via share links, as well as sharing from mobile devices.\nTurning the feature off removes shared files and folders on the server for all share recipients, and also on the sync clients and mobile apps. More information is available in the Nextcloud Documentation." : "Cette application permet aux personnes de partager des fichiers dans Nextcloud. Si cette option est activée, l'administrateur peut choisir quels groupes peuvent partager des fichiers. Les personnes concernées peuvent ensuite partager des fichiers et des dossiers avec d'autres comptes et groupes au sein de Nextcloud. De plus, si l'administrateur active la fonction de lien de partage, un lien externe peut être utilisé pour partager des fichiers avec d'autres personnes en dehors de Nextcloud. Les administrateurs peuvent également faire respecter les mots de passe, les dates d'expiration et permettre le partage de serveur à serveur via des liens de partage, aussi bien que le partage à partir d'appareils mobiles.\nDésactiver cette fonction supprime les fichiers et dossiers partagés sur le serveur pour tous les destinataires de partage, ainsi que sur les clients de synchronisation et les applications mobiles. Plus d'informations sont disponibles dans la documentation Nextcloud.",
|
||||
"Expiration date" : "Date d’expiration",
|
||||
"Set a password" : "Saisissez un mot de passe",
|
||||
"Password" : "Mot de passe",
|
||||
"Share link" : "Lien de partage",
|
||||
"Copy to clipboard" : "Copier dans le presse-papiers",
|
||||
"Send link via email" : "Envoyer le lien par mail",
|
||||
"Link copied to clipboard" : "Lien copié dans le presse-papier",
|
||||
"Select" : "Sélectionner",
|
||||
"Cancel" : "Annuler",
|
||||
"Continue" : "Continuer",
|
||||
"Close" : "Fermer",
|
||||
"Error creating the share: {errorMessage}" : "Erreur à la création du partage : {errorMessage} ",
|
||||
"Error creating the share" : "Erreur lors de la création du partage",
|
||||
"Sharing" : "Partage",
|
||||
"Accept shares from other accounts and groups by default" : "Accepter les partages des autres comptes et groupes par défaut",
|
||||
"Error while toggling options" : "Erreur pendant le choix des options",
|
||||
|
|
@ -149,7 +163,6 @@ OC.L10N.register(
|
|||
"Expiration date (enforced)" : "Date d’expiration (forcée)",
|
||||
"Enter a date" : "Saisissez une date",
|
||||
"Create share" : "Créer un partage",
|
||||
"Cancel" : "Annuler",
|
||||
"Customize link" : "Personnaliser le lien",
|
||||
"Generate QR code" : "Générer un QR code",
|
||||
"Add another link" : "Ajouter un autre lien",
|
||||
|
|
@ -159,7 +172,6 @@ OC.L10N.register(
|
|||
"Mail share ({label})" : "Partager par e-mail ({label}) ",
|
||||
"Share link ({label})" : "Lien de partage ({label})",
|
||||
"Share link ({index})" : "Lien de partage ({index})",
|
||||
"Share link" : "Lien de partage",
|
||||
"Actions for \"{title}\"" : "Actions pour \"{title}\"",
|
||||
"Copy public link of \"{title}\" to clipboard" : "Copier le lien public de \"{title}\" dans le presse-papiers",
|
||||
"Error, please enter proper password and/or expiration date" : "Erreur. Merci d'entrer un mot de passe valide et/ou une date d'expiration",
|
||||
|
|
@ -168,7 +180,6 @@ OC.L10N.register(
|
|||
"Quick share options, the current selected is \"{selectedOption}\"" : "Options de partage rapide, l'option actuellement sélectionnée est « {selectedOption} »",
|
||||
"View only" : "Afficher seulement",
|
||||
"Can edit" : "Peut modifier",
|
||||
"File drop" : "Dépôt de fichier",
|
||||
"Custom permissions" : "Permissions personnalisées",
|
||||
"Search for share recipients" : "Recherche de destinataires de partages",
|
||||
"No recommendations. Start typing." : "Aucune recommandation. Commencez à écrire.",
|
||||
|
|
@ -192,12 +203,10 @@ OC.L10N.register(
|
|||
"Advanced settings" : "Paramètres avancés",
|
||||
"Share label" : "Libellé du partage",
|
||||
"Set password" : "Définir un mot de passe",
|
||||
"Password" : "Mot de passe",
|
||||
"Password expires {passwordExpirationTime}" : "Le mot de passe expire {passwordExpirationTime}",
|
||||
"Password expired" : "Mot de passe expiré",
|
||||
"Video verification" : "Vérification vidéo",
|
||||
"Set expiration date" : "Définir une date d'expiration",
|
||||
"Expiration date" : "Date d’expiration",
|
||||
"Hide download" : "Masquer le téléchargement",
|
||||
"Allow download" : "Autoriser le téléchargement",
|
||||
"Note to recipient" : "Note au destinataire",
|
||||
|
|
@ -234,8 +243,6 @@ OC.L10N.register(
|
|||
"Shared by {ownerDisplayName}" : "Partagé par {ownerDisplayName}",
|
||||
"Show sharing options" : "Afficher les options de partage",
|
||||
"Link to a file" : "Relier à un fichier",
|
||||
"Error creating the share: {errorMessage}" : "Erreur à la création du partage : {errorMessage} ",
|
||||
"Error creating the share" : "Erreur lors de la création du partage",
|
||||
"Error updating the share: {errorMessage}" : "Erreur à la mise à jour du partage\\: {errorMessage} ",
|
||||
"Error updating the share" : "Erreur lors de la mise à jour du partage",
|
||||
"File \"{path}\" has been unshared" : "Le partage du fichier \"{path}\" a été retiré",
|
||||
|
|
@ -302,9 +309,9 @@ OC.L10N.register(
|
|||
"Bundled permissions" : "Autorisations groupées",
|
||||
"Only works for users with access to this folder" : "Fonctionne uniquement pour les utilisateurs ayant accès à ce dossier",
|
||||
"Only works for users with access to this file" : "Fonctionne uniquement pour les utilisateurs ayant accès à ce fichier",
|
||||
"File drop" : "Dépôt de fichier",
|
||||
"Circle" : "Cercle",
|
||||
"Update" : "Mise à jour",
|
||||
"Share with " : "Partager avec ",
|
||||
"No other users with access found" : "Aucun autre utilisateur ayant un accès n'a été trouvé",
|
||||
"No entries found in this folder" : "Aucune entrée trouvée dans ce dossier",
|
||||
"Name" : "Nom",
|
||||
|
|
|
|||
|
|
@ -100,6 +100,7 @@
|
|||
"Share must at least have READ or CREATE permissions" : "Le partage nécessite de disposer à minima des permissions de LECTURE et de CREATION",
|
||||
"Share must have READ permission if UPDATE or DELETE permission is set" : "Le partage doit disposer de l'autorisation LECTURE si l'autorisation METTRE À JOUR ou SUPPRIMER est définie",
|
||||
"\"Sending the password by Nextcloud Talk\" for sharing a file or folder failed because Nextcloud Talk is not enabled." : "\"L'envoi du mot de passe par Nextcloud Talk\" pour partager un fichier a échoué car Nextcloud Talk n'est pas activé",
|
||||
"Wrong password" : "Mot de passe incorrect",
|
||||
"shared by %s" : "partagé par %s",
|
||||
"Download all files" : "Télécharger tous les fichiers",
|
||||
"Direct link" : "Lien direct",
|
||||
|
|
@ -113,6 +114,19 @@
|
|||
"Accept" : "Accepter",
|
||||
"Decline" : "Décliner",
|
||||
"This application enables people to share files within Nextcloud. If enabled, the admin can choose which groups can share files. The applicable people can then share files and folders with other accounts and groups within Nextcloud. In addition, if the admin enables the share link feature, an external link can be used to share files with other people outside of Nextcloud. Admins can also enforce passwords, expirations dates, and enable server to server sharing via share links, as well as sharing from mobile devices.\nTurning the feature off removes shared files and folders on the server for all share recipients, and also on the sync clients and mobile apps. More information is available in the Nextcloud Documentation." : "Cette application permet aux personnes de partager des fichiers dans Nextcloud. Si cette option est activée, l'administrateur peut choisir quels groupes peuvent partager des fichiers. Les personnes concernées peuvent ensuite partager des fichiers et des dossiers avec d'autres comptes et groupes au sein de Nextcloud. De plus, si l'administrateur active la fonction de lien de partage, un lien externe peut être utilisé pour partager des fichiers avec d'autres personnes en dehors de Nextcloud. Les administrateurs peuvent également faire respecter les mots de passe, les dates d'expiration et permettre le partage de serveur à serveur via des liens de partage, aussi bien que le partage à partir d'appareils mobiles.\nDésactiver cette fonction supprime les fichiers et dossiers partagés sur le serveur pour tous les destinataires de partage, ainsi que sur les clients de synchronisation et les applications mobiles. Plus d'informations sont disponibles dans la documentation Nextcloud.",
|
||||
"Expiration date" : "Date d’expiration",
|
||||
"Set a password" : "Saisissez un mot de passe",
|
||||
"Password" : "Mot de passe",
|
||||
"Share link" : "Lien de partage",
|
||||
"Copy to clipboard" : "Copier dans le presse-papiers",
|
||||
"Send link via email" : "Envoyer le lien par mail",
|
||||
"Link copied to clipboard" : "Lien copié dans le presse-papier",
|
||||
"Select" : "Sélectionner",
|
||||
"Cancel" : "Annuler",
|
||||
"Continue" : "Continuer",
|
||||
"Close" : "Fermer",
|
||||
"Error creating the share: {errorMessage}" : "Erreur à la création du partage : {errorMessage} ",
|
||||
"Error creating the share" : "Erreur lors de la création du partage",
|
||||
"Sharing" : "Partage",
|
||||
"Accept shares from other accounts and groups by default" : "Accepter les partages des autres comptes et groupes par défaut",
|
||||
"Error while toggling options" : "Erreur pendant le choix des options",
|
||||
|
|
@ -147,7 +161,6 @@
|
|||
"Expiration date (enforced)" : "Date d’expiration (forcée)",
|
||||
"Enter a date" : "Saisissez une date",
|
||||
"Create share" : "Créer un partage",
|
||||
"Cancel" : "Annuler",
|
||||
"Customize link" : "Personnaliser le lien",
|
||||
"Generate QR code" : "Générer un QR code",
|
||||
"Add another link" : "Ajouter un autre lien",
|
||||
|
|
@ -157,7 +170,6 @@
|
|||
"Mail share ({label})" : "Partager par e-mail ({label}) ",
|
||||
"Share link ({label})" : "Lien de partage ({label})",
|
||||
"Share link ({index})" : "Lien de partage ({index})",
|
||||
"Share link" : "Lien de partage",
|
||||
"Actions for \"{title}\"" : "Actions pour \"{title}\"",
|
||||
"Copy public link of \"{title}\" to clipboard" : "Copier le lien public de \"{title}\" dans le presse-papiers",
|
||||
"Error, please enter proper password and/or expiration date" : "Erreur. Merci d'entrer un mot de passe valide et/ou une date d'expiration",
|
||||
|
|
@ -166,7 +178,6 @@
|
|||
"Quick share options, the current selected is \"{selectedOption}\"" : "Options de partage rapide, l'option actuellement sélectionnée est « {selectedOption} »",
|
||||
"View only" : "Afficher seulement",
|
||||
"Can edit" : "Peut modifier",
|
||||
"File drop" : "Dépôt de fichier",
|
||||
"Custom permissions" : "Permissions personnalisées",
|
||||
"Search for share recipients" : "Recherche de destinataires de partages",
|
||||
"No recommendations. Start typing." : "Aucune recommandation. Commencez à écrire.",
|
||||
|
|
@ -190,12 +201,10 @@
|
|||
"Advanced settings" : "Paramètres avancés",
|
||||
"Share label" : "Libellé du partage",
|
||||
"Set password" : "Définir un mot de passe",
|
||||
"Password" : "Mot de passe",
|
||||
"Password expires {passwordExpirationTime}" : "Le mot de passe expire {passwordExpirationTime}",
|
||||
"Password expired" : "Mot de passe expiré",
|
||||
"Video verification" : "Vérification vidéo",
|
||||
"Set expiration date" : "Définir une date d'expiration",
|
||||
"Expiration date" : "Date d’expiration",
|
||||
"Hide download" : "Masquer le téléchargement",
|
||||
"Allow download" : "Autoriser le téléchargement",
|
||||
"Note to recipient" : "Note au destinataire",
|
||||
|
|
@ -232,8 +241,6 @@
|
|||
"Shared by {ownerDisplayName}" : "Partagé par {ownerDisplayName}",
|
||||
"Show sharing options" : "Afficher les options de partage",
|
||||
"Link to a file" : "Relier à un fichier",
|
||||
"Error creating the share: {errorMessage}" : "Erreur à la création du partage : {errorMessage} ",
|
||||
"Error creating the share" : "Erreur lors de la création du partage",
|
||||
"Error updating the share: {errorMessage}" : "Erreur à la mise à jour du partage\\: {errorMessage} ",
|
||||
"Error updating the share" : "Erreur lors de la mise à jour du partage",
|
||||
"File \"{path}\" has been unshared" : "Le partage du fichier \"{path}\" a été retiré",
|
||||
|
|
@ -300,9 +307,9 @@
|
|||
"Bundled permissions" : "Autorisations groupées",
|
||||
"Only works for users with access to this folder" : "Fonctionne uniquement pour les utilisateurs ayant accès à ce dossier",
|
||||
"Only works for users with access to this file" : "Fonctionne uniquement pour les utilisateurs ayant accès à ce fichier",
|
||||
"File drop" : "Dépôt de fichier",
|
||||
"Circle" : "Cercle",
|
||||
"Update" : "Mise à jour",
|
||||
"Share with " : "Partager avec ",
|
||||
"No other users with access found" : "Aucun autre utilisateur ayant un accès n'a été trouvé",
|
||||
"No entries found in this folder" : "Aucune entrée trouvée dans ce dossier",
|
||||
"Name" : "Nom",
|
||||
|
|
|
|||
|
|
@ -86,6 +86,7 @@ OC.L10N.register(
|
|||
"Public link sharing is disabled by the administrator" : "Tá comhroinnt naisc phoiblí díchumasaithe ag an riarthóir",
|
||||
"Public upload disabled by the administrator" : "Dhíchumasaigh an riarthóir an uaslódáil phoiblí",
|
||||
"Public upload is only possible for publicly shared folders" : "Ní féidir uaslódáil phoiblí a dhéanamh ach amháin ar fhillteáin a chomhroinntear go poiblí",
|
||||
"Please specify a valid email address" : "Sonraigh seoladh ríomhphoist bailí le do thoil",
|
||||
"Sharing %s sending the password by Nextcloud Talk failed because Nextcloud Talk is not enabled" : "Theip ar chomhroinnt %s agus an focal faire á sheoladh ag Nextcloud Talk toisc nach bhfuil Nextcloud Talk cumasaithe",
|
||||
"Sharing %1$s failed because the back end does not allow shares from type %2$s" : "Theip ar chomhroinnt %1$s toisc nach gceadaíonn an cúlcheann scaireanna ón gcineál %2$s",
|
||||
"Please specify a valid federated account ID" : "Sonraigh ID cuntais chónaidhme bailí le do thoil",
|
||||
|
|
@ -98,10 +99,22 @@ OC.L10N.register(
|
|||
"Not a directory" : "Ní eolaire",
|
||||
"Could not lock node" : "Níorbh fhéidir nód a ghlasáil",
|
||||
"Could not lock path" : "Níorbh fhéidir an cosán a ghlasáil",
|
||||
"no sharing rights on this item" : "gan cearta comhroinnte ar an mír seo",
|
||||
"You are not allowed to edit incoming shares" : "Níl cead agat scaireanna isteach a chur in eagar",
|
||||
"Wrong or no update parameter given" : "Paraiméadar nuashonraithe mícheart nó gan aon tugtha",
|
||||
"You are not allowed to edit link shares that you don't own" : "Níl cead agat scaireanna naisc nach leatsa a chur in eagar",
|
||||
"Share must at least have READ or CREATE permissions" : "Caithfidh ceadanna READ nó CREATE a bheith ag sciar ar a laghad",
|
||||
"Share must have READ permission if UPDATE or DELETE permission is set" : "Ní mór cead READ a bheith ag sciar má shocraítear cead UPDATE nó DELETE",
|
||||
"\"Sending the password by Nextcloud Talk\" for sharing a file or folder failed because Nextcloud Talk is not enabled." : "Theip ar \"an focal faire a sheoladh ag Nextcloud Talk\" chun comhad nó fillteán a roinnt toisc nach bhfuil Nextcloud Talk cumasaithe.",
|
||||
"Invalid date. Format must be YYYY-MM-DD" : "Dáta neamhbhailí. Ní mór don fhormáid a bheith BBBB-MM-LL",
|
||||
"No sharing rights on this item" : "Níl aon chearta comhroinnte ar an mír seo",
|
||||
"Invalid share attributes provided: \"%s\"" : "Cuireadh tréithe comhroinnte neamhbhailí: \"%s\"",
|
||||
"Should not happen, instanceOfStorage but getInstanceOfStorage return null" : "Níor cheart go dtarlódh sé, instanceOfStorage ach tuairisceán getInstanceOfStorage null",
|
||||
"Should not happen, instanceOfStorage but not a wrapper" : "Níor cheart go dtarlódh sé, mar shamplaOfStorage ach ní fillteán",
|
||||
"You are not allowed to send mail notifications" : "Níl cead agat fógraí ríomhphoist a sheoladh",
|
||||
"No mail notification configured for this share type" : "Níl aon fhógra ríomhphoist cumraithe don chineál comhroinnte seo",
|
||||
"Wrong password" : "Pasfhocal mícheart",
|
||||
"Error while sending mail notification" : "Earráid agus fógra ríomhphoist á sheoladh",
|
||||
"shared by %s" : "roinnte ag %s",
|
||||
"Download all files" : "Gach comhaid a íoslódáil",
|
||||
"Direct link" : "Nasc díreach",
|
||||
|
|
@ -115,6 +128,61 @@ OC.L10N.register(
|
|||
"Accept" : "Glac",
|
||||
"Decline" : "Meath",
|
||||
"This application enables people to share files within Nextcloud. If enabled, the admin can choose which groups can share files. The applicable people can then share files and folders with other accounts and groups within Nextcloud. In addition, if the admin enables the share link feature, an external link can be used to share files with other people outside of Nextcloud. Admins can also enforce passwords, expirations dates, and enable server to server sharing via share links, as well as sharing from mobile devices.\nTurning the feature off removes shared files and folders on the server for all share recipients, and also on the sync clients and mobile apps. More information is available in the Nextcloud Documentation." : "Cuireann an feidhmchlár seo ar chumas daoine comhaid a roinnt laistigh de Nextcloud. Má tá sé cumasaithe, is féidir leis an riarthóir a roghnú cé na grúpaí ar féidir leo comhaid a roinnt. Is féidir leis na daoine infheidhme comhaid agus fillteáin a roinnt ansin le cuntais agus grúpaí eile laistigh de Nextcloud. Ina theannta sin, má chumasaíonn an riarthóir an ghné nasc comhroinnte, is féidir nasc seachtrach a úsáid chun comhaid a roinnt le daoine eile lasmuigh de Nextcloud. Is féidir le riarthóirí pasfhocail, dátaí éaga a fhorfheidhmiú freisin, agus roinnt freastalaí a chumasú trí naisc scaireanna, chomh maith le comhroinnt ó ghléasanna soghluaiste.\nMá mhúchtar an ghné, baintear comhaid agus fillteáin roinnte ar an bhfreastalaí do gach faighteoir scaireanna, agus freisin ar na cliaint sioncronaithe agus aipeanna móibíleacha. Tá tuilleadh eolais ar fáil sa Doiciméadúchán Nextcloud.",
|
||||
"Your administrator has enforced a default expiration date with a maximum {days} days." : "Tá dáta éaga réamhshocraithe curtha i bhfeidhm ag do riarthóir a bhfuil uasmhéid {days} lá air.",
|
||||
"When should the request expire?" : "Cathain ar cheart don iarratas dul in éag?",
|
||||
"Set a submission expirationDate" : "Socraigh dáta éaga aighneachta",
|
||||
"Expiration date" : "Dáta éaga",
|
||||
"Select a date" : "Roghnaigh dáta",
|
||||
"Your administrator has enforced a password protection." : "Chuir do riarthóir cosaint pasfhocail i bhfeidhm.",
|
||||
"What password should be used for the request?" : "Cén pasfhocal ba chóir a úsáid don iarratas?",
|
||||
"Set a password" : "Socraigh focal faire",
|
||||
"Password" : "Pasfhocal",
|
||||
"Enter a valid password" : "Cuir isteach pasfhocal bailí",
|
||||
"Generate a new password" : "Gin pasfhocal nua",
|
||||
"The request will expire on {date} at midnight and will be password protected." : "Rachaidh an t-iarratas in éag ar {date}ag meán oíche agus beidh sé cosanta ag pasfhocal.",
|
||||
"The request will expire on {date} at midnight." : "Rachaidh an t-iarratas in éag ar{date}ag meán oíche.",
|
||||
"The request will be password protected." : "Beidh an t-iarratas cosanta ag pasfhocal.",
|
||||
"Once created, you can share the link below to allow people to upload files to your directory." : "Nuair a bheidh tú cruthaithe, is féidir leat an nasc thíos a roinnt chun ligean do dhaoine comhaid a uaslódáil chuig do eolaire.",
|
||||
"Share link" : "Comhroinn nasc",
|
||||
"Copy to clipboard" : "Cóipeáil chuig an ngearrthaisce",
|
||||
"Send link via email" : "Seol an nasc trí ríomhphost",
|
||||
"Enter an email address or paste a list" : "Cuir isteach seoladh ríomhphoist nó greamaigh liosta",
|
||||
"Remove email" : "Bain ríomhphost",
|
||||
"Automatically copying failed, please copy the share link manually" : "Theip ar chóipeáil uathoibríoch, cóipeáil an nasc comhroinnte de láimh le do thoil",
|
||||
"Link copied to clipboard" : "Cóipeáladh an nasc chuig an ngearrthaisce",
|
||||
"Email already added" : "Ríomhphost curtha leis cheana féin",
|
||||
"Invalid email address" : "sheoladh ríomhphoist neamhbhailí",
|
||||
"_1 email address already added_::_{count} email addresses already added_" : ["1 seoladh ríomhphoist curtha leis cheana féin","{count} seoladh ríomhphoist curtha leis cheana","{count} seoladh ríomhphoist curtha leis cheana","{count} seoladh ríomhphoist curtha leis cheana","{count} seoladh ríomhphoist curtha leis cheana"],
|
||||
"_1 email address added_::_{count} email addresses added_" : ["Cuireadh 1 seoladh ríomhphoist leis","{count} seoladh ríomhphoist curtha leis","{count} seoladh ríomhphoist curtha leis","{count} seoladh ríomhphoist curtha leis","{count} seoladh ríomhphoist curtha leis"],
|
||||
"What are you requesting?" : "Cad atá á iarraidh agat?",
|
||||
"Request subject" : "Ábhar an iarratais",
|
||||
"Birthday party photos, History assignment…" : "Grianghraif cóisir lá breithe, tasc Staire…",
|
||||
"Where should these files go?" : "Cá háit ar cheart do na comhaid seo dul?",
|
||||
"The uploaded files are visible only to you unless you choose to share them." : "Ní féidir leatsa ach na comhaid uaslódáilte a fheiceáil ach amháin má roghnaíonn tú iad a roinnt.",
|
||||
"Upload destination" : "Íoslódáil an ceann scríbe",
|
||||
"Select a destination" : "Roghnaigh ceann scríbe",
|
||||
"Revert to default" : "Fill ar an réamhshocrú",
|
||||
"Add a note" : "Cuir nóta leis",
|
||||
"Note for recipient" : "Nóta don fhaighteoir",
|
||||
"Add a note to help people understand what you are requesting." : "Cuir nóta leis chun cabhrú le daoine a bhfuil á iarraidh agat a thuiscint.",
|
||||
"Select" : "Roghnaigh",
|
||||
"Create a file request" : "Cruthaigh iarratas comhad",
|
||||
"File request created" : "Cruthaíodh iarratas comhaid",
|
||||
"Collect files from others even if they do not have an account." : "Bailigh comhaid ó dhaoine eile fiú mura bhfuil cuntas acu.",
|
||||
"To ensure you can receive files, verify you have enough storage available." : "Chun a chinntiú gur féidir leat comhaid a fháil, deimhnigh go bhfuil go leor stórála ar fáil agat.",
|
||||
"File request" : "Iarratas comhad",
|
||||
"Cancel" : "Cealaigh",
|
||||
"Cancel the file request creation" : "Cealaigh cruthú an iarratais comhaid",
|
||||
"Previous step" : "An chéim roimhe seo",
|
||||
"Continue" : "Lean ar aghaidh",
|
||||
"Close" : "Dún",
|
||||
"Please select a folder, you cannot share the root directory." : "Roghnaigh fillteán, le do thoil, ní féidir leat an eolaire fréimhe a roinnt.",
|
||||
"File request created and emails sent" : "Cruthaíodh iarratas comhaid agus seoladh ríomhphoist",
|
||||
"Error creating the share: {errorMessage}" : "Earráid agus an sciar á cruthú: {errorMessage}",
|
||||
"Error creating the share" : "Earráid agus an sciar á cruthú",
|
||||
"Error sending emails: {errorMessage}" : "Earráid agus ríomhphoist á seoladh: {errorMessage}",
|
||||
"Error sending emails" : "Earráid agus ríomhphoist á seoladh",
|
||||
"_Close and send email_::_Close and send {count} emails_" : ["Dún agus seol ríomhphost","Dún agus seol {count} ríomhphost","Dún agus seol {count} ríomhphost","Dún agus seol {count} ríomhphost","Dún agus seol {count} ríomhphost"],
|
||||
"Sharing" : "Roinnt",
|
||||
"Accept shares from other accounts and groups by default" : "Glac le scaireanna ó chuntais agus ó ghrúpaí eile de réir réamhshocraithe",
|
||||
"Error while toggling options" : "Earráid agus roghanna á scoránú",
|
||||
|
|
@ -149,17 +217,17 @@ OC.L10N.register(
|
|||
"Expiration date (enforced)" : "Dáta éaga (curtha i bhfeidhm)",
|
||||
"Enter a date" : "Cuir isteach dáta",
|
||||
"Create share" : "Cruthaigh sciar",
|
||||
"Cancel" : "Cealaigh",
|
||||
"Customize link" : "Saincheap nasc",
|
||||
"Generate QR code" : "Gin cód QR",
|
||||
"Add another link" : "Cuir nasc eile leis",
|
||||
"Create a new share link" : "Cruthaigh nasc comhroinnte nua",
|
||||
"{shareWith} by {initiator}" : "{shareWith} le {initiator}",
|
||||
"Shared via link by {initiator}" : "Roinnte trí nasc ag {initiator}",
|
||||
"File request ({label})" : "Iarratas comhaid ({label})",
|
||||
"Mail share ({label})" : "Comhroinnt ríomhphoist ({label})",
|
||||
"Share link ({label})" : "Roinn nasc ({label})",
|
||||
"Mail share" : "Comhroinnt ríomhphoist",
|
||||
"Share link ({index})" : "Roinn nasc ({ index})",
|
||||
"Share link" : "Comhroinn nasc",
|
||||
"Actions for \"{title}\"" : "Gníomhartha le haghaidh \"{title}\"",
|
||||
"Copy public link of \"{title}\" to clipboard" : "Cóipeáil nasc poiblí de \"{title}\" chuig an ngearrthaisce",
|
||||
"Error, please enter proper password and/or expiration date" : "Earráid, cuir isteach pasfhocal ceart agus/nó dáta éaga le do thoil",
|
||||
|
|
@ -168,7 +236,6 @@ OC.L10N.register(
|
|||
"Quick share options, the current selected is \"{selectedOption}\"" : "Roghanna scaireanna tapa, is é \"{selectedOption}\" an rogha reatha",
|
||||
"View only" : "Amharc amháin",
|
||||
"Can edit" : "Is féidir eagarthóireacht a dhéanamh",
|
||||
"File drop" : "Titim comhad",
|
||||
"Custom permissions" : "Ceadanna saincheaptha",
|
||||
"Search for share recipients" : "Cuardaigh faighteoirí scaireanna",
|
||||
"No recommendations. Start typing." : "Gan moltaí. Tosaigh ag clóscríobh.",
|
||||
|
|
@ -192,12 +259,10 @@ OC.L10N.register(
|
|||
"Advanced settings" : "Ardsocruithe",
|
||||
"Share label" : "Comhroinn lipéad",
|
||||
"Set password" : "Socraigh pasfhocal",
|
||||
"Password" : "Pasfhocal",
|
||||
"Password expires {passwordExpirationTime}" : "Téann pasfhocal in éag {passwordExpirationTime}",
|
||||
"Password expired" : "Pasfhocal imithe in éag",
|
||||
"Video verification" : "Fíorú físeán",
|
||||
"Set expiration date" : "Socraigh dáta éaga",
|
||||
"Expiration date" : "Dáta éaga",
|
||||
"Hide download" : "Folaigh íoslódáil",
|
||||
"Allow download" : "Ceadaigh íoslódáil",
|
||||
"Note to recipient" : "Nóta don fhaighteoir",
|
||||
|
|
@ -221,6 +286,7 @@ OC.L10N.register(
|
|||
"Toggle list of others with access to this directory" : "Scoránaigh liosta de na cinn eile a bhfuil rochtain acu ar an eolaire seo",
|
||||
"Toggle list of others with access to this file" : "Scoránaigh liosta de na cinn eile a bhfuil rochtain acu ar an gcomhad seo",
|
||||
"Unable to fetch inherited shares" : "Ní féidir scaireanna le hoidhreacht a fháil",
|
||||
"_The following email address is not valid: {emails}_::_The following email addresses are not valid: {emails}_" : ["Níl an seoladh ríomhphoist seo a leanas bailí: {emails}","Níl na seoltaí ríomhphoist seo a leanas bailí: {emails}","Níl na seoltaí ríomhphoist seo a leanas bailí: {emails}","Níl na seoltaí ríomhphoist seo a leanas bailí: {emails}","Níl na seoltaí ríomhphoist seo a leanas bailí: {emails}"],
|
||||
"Unable to load the shares list" : "Ní féidir an liosta scaireanna a lódáil",
|
||||
"Expires {relativetime}" : "In éag {relativetime}",
|
||||
"this share just expired." : "tá an sciar seo díreach imithe in éag.",
|
||||
|
|
@ -234,13 +300,12 @@ OC.L10N.register(
|
|||
"Shared by {ownerDisplayName}" : "Roinnte ag {ownerDisplayName}",
|
||||
"Show sharing options" : "Taispeáin roghanna comhroinnte",
|
||||
"Link to a file" : "Nasc chuig comhad",
|
||||
"Error creating the share: {errorMessage}" : "Earráid agus an sciar á cruthú: {errorMessage}",
|
||||
"Error creating the share" : "Earráid agus an sciar á cruthú",
|
||||
"Error updating the share: {errorMessage}" : "Earráid agus an sciar á nuashonrú: {errorMessage}",
|
||||
"Error updating the share" : "Earráid agus an sciar á nuashonrú",
|
||||
"File \"{path}\" has been unshared" : "Comhad \"{path}\" díroinnte",
|
||||
"Folder \"{path}\" has been unshared" : "Díroinneadh an fillteán \"{path}\".",
|
||||
"Share {propertyName} saved" : "Roinn {propertyName} sábháilte",
|
||||
"Create new file request" : "Cruthaigh iarratas comhad nua",
|
||||
"Shared by" : "Roinnte ag",
|
||||
"Shared with" : "Roinnte le",
|
||||
"Password created successfully" : "Pasfhocal cruthaithe go rathúil",
|
||||
|
|
@ -302,9 +367,9 @@ OC.L10N.register(
|
|||
"Bundled permissions" : "Ceadanna cuachta",
|
||||
"Only works for users with access to this folder" : "Ní oibríonn sé ach d’úsáideoirí a bhfuil rochtain acu ar an bhfillteán seo",
|
||||
"Only works for users with access to this file" : "Ní oibríonn ach d’úsáideoirí a bhfuil rochtain acu ar an gcomhad seo",
|
||||
"File drop" : "Titim comhad",
|
||||
"Circle" : "Ciorcal",
|
||||
"Update" : "Nuashonrú",
|
||||
"Share with " : "Roinn le",
|
||||
"No other users with access found" : "Níor aimsíodh aon úsáideoir eile a bhfuil rochtain acu",
|
||||
"No entries found in this folder" : "Níor aimsíodh aon iontrálacha san fhillteán seo",
|
||||
"Name" : "Ainm",
|
||||
|
|
|
|||
|
|
@ -84,6 +84,7 @@
|
|||
"Public link sharing is disabled by the administrator" : "Tá comhroinnt naisc phoiblí díchumasaithe ag an riarthóir",
|
||||
"Public upload disabled by the administrator" : "Dhíchumasaigh an riarthóir an uaslódáil phoiblí",
|
||||
"Public upload is only possible for publicly shared folders" : "Ní féidir uaslódáil phoiblí a dhéanamh ach amháin ar fhillteáin a chomhroinntear go poiblí",
|
||||
"Please specify a valid email address" : "Sonraigh seoladh ríomhphoist bailí le do thoil",
|
||||
"Sharing %s sending the password by Nextcloud Talk failed because Nextcloud Talk is not enabled" : "Theip ar chomhroinnt %s agus an focal faire á sheoladh ag Nextcloud Talk toisc nach bhfuil Nextcloud Talk cumasaithe",
|
||||
"Sharing %1$s failed because the back end does not allow shares from type %2$s" : "Theip ar chomhroinnt %1$s toisc nach gceadaíonn an cúlcheann scaireanna ón gcineál %2$s",
|
||||
"Please specify a valid federated account ID" : "Sonraigh ID cuntais chónaidhme bailí le do thoil",
|
||||
|
|
@ -96,10 +97,22 @@
|
|||
"Not a directory" : "Ní eolaire",
|
||||
"Could not lock node" : "Níorbh fhéidir nód a ghlasáil",
|
||||
"Could not lock path" : "Níorbh fhéidir an cosán a ghlasáil",
|
||||
"no sharing rights on this item" : "gan cearta comhroinnte ar an mír seo",
|
||||
"You are not allowed to edit incoming shares" : "Níl cead agat scaireanna isteach a chur in eagar",
|
||||
"Wrong or no update parameter given" : "Paraiméadar nuashonraithe mícheart nó gan aon tugtha",
|
||||
"You are not allowed to edit link shares that you don't own" : "Níl cead agat scaireanna naisc nach leatsa a chur in eagar",
|
||||
"Share must at least have READ or CREATE permissions" : "Caithfidh ceadanna READ nó CREATE a bheith ag sciar ar a laghad",
|
||||
"Share must have READ permission if UPDATE or DELETE permission is set" : "Ní mór cead READ a bheith ag sciar má shocraítear cead UPDATE nó DELETE",
|
||||
"\"Sending the password by Nextcloud Talk\" for sharing a file or folder failed because Nextcloud Talk is not enabled." : "Theip ar \"an focal faire a sheoladh ag Nextcloud Talk\" chun comhad nó fillteán a roinnt toisc nach bhfuil Nextcloud Talk cumasaithe.",
|
||||
"Invalid date. Format must be YYYY-MM-DD" : "Dáta neamhbhailí. Ní mór don fhormáid a bheith BBBB-MM-LL",
|
||||
"No sharing rights on this item" : "Níl aon chearta comhroinnte ar an mír seo",
|
||||
"Invalid share attributes provided: \"%s\"" : "Cuireadh tréithe comhroinnte neamhbhailí: \"%s\"",
|
||||
"Should not happen, instanceOfStorage but getInstanceOfStorage return null" : "Níor cheart go dtarlódh sé, instanceOfStorage ach tuairisceán getInstanceOfStorage null",
|
||||
"Should not happen, instanceOfStorage but not a wrapper" : "Níor cheart go dtarlódh sé, mar shamplaOfStorage ach ní fillteán",
|
||||
"You are not allowed to send mail notifications" : "Níl cead agat fógraí ríomhphoist a sheoladh",
|
||||
"No mail notification configured for this share type" : "Níl aon fhógra ríomhphoist cumraithe don chineál comhroinnte seo",
|
||||
"Wrong password" : "Pasfhocal mícheart",
|
||||
"Error while sending mail notification" : "Earráid agus fógra ríomhphoist á sheoladh",
|
||||
"shared by %s" : "roinnte ag %s",
|
||||
"Download all files" : "Gach comhaid a íoslódáil",
|
||||
"Direct link" : "Nasc díreach",
|
||||
|
|
@ -113,6 +126,61 @@
|
|||
"Accept" : "Glac",
|
||||
"Decline" : "Meath",
|
||||
"This application enables people to share files within Nextcloud. If enabled, the admin can choose which groups can share files. The applicable people can then share files and folders with other accounts and groups within Nextcloud. In addition, if the admin enables the share link feature, an external link can be used to share files with other people outside of Nextcloud. Admins can also enforce passwords, expirations dates, and enable server to server sharing via share links, as well as sharing from mobile devices.\nTurning the feature off removes shared files and folders on the server for all share recipients, and also on the sync clients and mobile apps. More information is available in the Nextcloud Documentation." : "Cuireann an feidhmchlár seo ar chumas daoine comhaid a roinnt laistigh de Nextcloud. Má tá sé cumasaithe, is féidir leis an riarthóir a roghnú cé na grúpaí ar féidir leo comhaid a roinnt. Is féidir leis na daoine infheidhme comhaid agus fillteáin a roinnt ansin le cuntais agus grúpaí eile laistigh de Nextcloud. Ina theannta sin, má chumasaíonn an riarthóir an ghné nasc comhroinnte, is féidir nasc seachtrach a úsáid chun comhaid a roinnt le daoine eile lasmuigh de Nextcloud. Is féidir le riarthóirí pasfhocail, dátaí éaga a fhorfheidhmiú freisin, agus roinnt freastalaí a chumasú trí naisc scaireanna, chomh maith le comhroinnt ó ghléasanna soghluaiste.\nMá mhúchtar an ghné, baintear comhaid agus fillteáin roinnte ar an bhfreastalaí do gach faighteoir scaireanna, agus freisin ar na cliaint sioncronaithe agus aipeanna móibíleacha. Tá tuilleadh eolais ar fáil sa Doiciméadúchán Nextcloud.",
|
||||
"Your administrator has enforced a default expiration date with a maximum {days} days." : "Tá dáta éaga réamhshocraithe curtha i bhfeidhm ag do riarthóir a bhfuil uasmhéid {days} lá air.",
|
||||
"When should the request expire?" : "Cathain ar cheart don iarratas dul in éag?",
|
||||
"Set a submission expirationDate" : "Socraigh dáta éaga aighneachta",
|
||||
"Expiration date" : "Dáta éaga",
|
||||
"Select a date" : "Roghnaigh dáta",
|
||||
"Your administrator has enforced a password protection." : "Chuir do riarthóir cosaint pasfhocail i bhfeidhm.",
|
||||
"What password should be used for the request?" : "Cén pasfhocal ba chóir a úsáid don iarratas?",
|
||||
"Set a password" : "Socraigh focal faire",
|
||||
"Password" : "Pasfhocal",
|
||||
"Enter a valid password" : "Cuir isteach pasfhocal bailí",
|
||||
"Generate a new password" : "Gin pasfhocal nua",
|
||||
"The request will expire on {date} at midnight and will be password protected." : "Rachaidh an t-iarratas in éag ar {date}ag meán oíche agus beidh sé cosanta ag pasfhocal.",
|
||||
"The request will expire on {date} at midnight." : "Rachaidh an t-iarratas in éag ar{date}ag meán oíche.",
|
||||
"The request will be password protected." : "Beidh an t-iarratas cosanta ag pasfhocal.",
|
||||
"Once created, you can share the link below to allow people to upload files to your directory." : "Nuair a bheidh tú cruthaithe, is féidir leat an nasc thíos a roinnt chun ligean do dhaoine comhaid a uaslódáil chuig do eolaire.",
|
||||
"Share link" : "Comhroinn nasc",
|
||||
"Copy to clipboard" : "Cóipeáil chuig an ngearrthaisce",
|
||||
"Send link via email" : "Seol an nasc trí ríomhphost",
|
||||
"Enter an email address or paste a list" : "Cuir isteach seoladh ríomhphoist nó greamaigh liosta",
|
||||
"Remove email" : "Bain ríomhphost",
|
||||
"Automatically copying failed, please copy the share link manually" : "Theip ar chóipeáil uathoibríoch, cóipeáil an nasc comhroinnte de láimh le do thoil",
|
||||
"Link copied to clipboard" : "Cóipeáladh an nasc chuig an ngearrthaisce",
|
||||
"Email already added" : "Ríomhphost curtha leis cheana féin",
|
||||
"Invalid email address" : "sheoladh ríomhphoist neamhbhailí",
|
||||
"_1 email address already added_::_{count} email addresses already added_" : ["1 seoladh ríomhphoist curtha leis cheana féin","{count} seoladh ríomhphoist curtha leis cheana","{count} seoladh ríomhphoist curtha leis cheana","{count} seoladh ríomhphoist curtha leis cheana","{count} seoladh ríomhphoist curtha leis cheana"],
|
||||
"_1 email address added_::_{count} email addresses added_" : ["Cuireadh 1 seoladh ríomhphoist leis","{count} seoladh ríomhphoist curtha leis","{count} seoladh ríomhphoist curtha leis","{count} seoladh ríomhphoist curtha leis","{count} seoladh ríomhphoist curtha leis"],
|
||||
"What are you requesting?" : "Cad atá á iarraidh agat?",
|
||||
"Request subject" : "Ábhar an iarratais",
|
||||
"Birthday party photos, History assignment…" : "Grianghraif cóisir lá breithe, tasc Staire…",
|
||||
"Where should these files go?" : "Cá háit ar cheart do na comhaid seo dul?",
|
||||
"The uploaded files are visible only to you unless you choose to share them." : "Ní féidir leatsa ach na comhaid uaslódáilte a fheiceáil ach amháin má roghnaíonn tú iad a roinnt.",
|
||||
"Upload destination" : "Íoslódáil an ceann scríbe",
|
||||
"Select a destination" : "Roghnaigh ceann scríbe",
|
||||
"Revert to default" : "Fill ar an réamhshocrú",
|
||||
"Add a note" : "Cuir nóta leis",
|
||||
"Note for recipient" : "Nóta don fhaighteoir",
|
||||
"Add a note to help people understand what you are requesting." : "Cuir nóta leis chun cabhrú le daoine a bhfuil á iarraidh agat a thuiscint.",
|
||||
"Select" : "Roghnaigh",
|
||||
"Create a file request" : "Cruthaigh iarratas comhad",
|
||||
"File request created" : "Cruthaíodh iarratas comhaid",
|
||||
"Collect files from others even if they do not have an account." : "Bailigh comhaid ó dhaoine eile fiú mura bhfuil cuntas acu.",
|
||||
"To ensure you can receive files, verify you have enough storage available." : "Chun a chinntiú gur féidir leat comhaid a fháil, deimhnigh go bhfuil go leor stórála ar fáil agat.",
|
||||
"File request" : "Iarratas comhad",
|
||||
"Cancel" : "Cealaigh",
|
||||
"Cancel the file request creation" : "Cealaigh cruthú an iarratais comhaid",
|
||||
"Previous step" : "An chéim roimhe seo",
|
||||
"Continue" : "Lean ar aghaidh",
|
||||
"Close" : "Dún",
|
||||
"Please select a folder, you cannot share the root directory." : "Roghnaigh fillteán, le do thoil, ní féidir leat an eolaire fréimhe a roinnt.",
|
||||
"File request created and emails sent" : "Cruthaíodh iarratas comhaid agus seoladh ríomhphoist",
|
||||
"Error creating the share: {errorMessage}" : "Earráid agus an sciar á cruthú: {errorMessage}",
|
||||
"Error creating the share" : "Earráid agus an sciar á cruthú",
|
||||
"Error sending emails: {errorMessage}" : "Earráid agus ríomhphoist á seoladh: {errorMessage}",
|
||||
"Error sending emails" : "Earráid agus ríomhphoist á seoladh",
|
||||
"_Close and send email_::_Close and send {count} emails_" : ["Dún agus seol ríomhphost","Dún agus seol {count} ríomhphost","Dún agus seol {count} ríomhphost","Dún agus seol {count} ríomhphost","Dún agus seol {count} ríomhphost"],
|
||||
"Sharing" : "Roinnt",
|
||||
"Accept shares from other accounts and groups by default" : "Glac le scaireanna ó chuntais agus ó ghrúpaí eile de réir réamhshocraithe",
|
||||
"Error while toggling options" : "Earráid agus roghanna á scoránú",
|
||||
|
|
@ -147,17 +215,17 @@
|
|||
"Expiration date (enforced)" : "Dáta éaga (curtha i bhfeidhm)",
|
||||
"Enter a date" : "Cuir isteach dáta",
|
||||
"Create share" : "Cruthaigh sciar",
|
||||
"Cancel" : "Cealaigh",
|
||||
"Customize link" : "Saincheap nasc",
|
||||
"Generate QR code" : "Gin cód QR",
|
||||
"Add another link" : "Cuir nasc eile leis",
|
||||
"Create a new share link" : "Cruthaigh nasc comhroinnte nua",
|
||||
"{shareWith} by {initiator}" : "{shareWith} le {initiator}",
|
||||
"Shared via link by {initiator}" : "Roinnte trí nasc ag {initiator}",
|
||||
"File request ({label})" : "Iarratas comhaid ({label})",
|
||||
"Mail share ({label})" : "Comhroinnt ríomhphoist ({label})",
|
||||
"Share link ({label})" : "Roinn nasc ({label})",
|
||||
"Mail share" : "Comhroinnt ríomhphoist",
|
||||
"Share link ({index})" : "Roinn nasc ({ index})",
|
||||
"Share link" : "Comhroinn nasc",
|
||||
"Actions for \"{title}\"" : "Gníomhartha le haghaidh \"{title}\"",
|
||||
"Copy public link of \"{title}\" to clipboard" : "Cóipeáil nasc poiblí de \"{title}\" chuig an ngearrthaisce",
|
||||
"Error, please enter proper password and/or expiration date" : "Earráid, cuir isteach pasfhocal ceart agus/nó dáta éaga le do thoil",
|
||||
|
|
@ -166,7 +234,6 @@
|
|||
"Quick share options, the current selected is \"{selectedOption}\"" : "Roghanna scaireanna tapa, is é \"{selectedOption}\" an rogha reatha",
|
||||
"View only" : "Amharc amháin",
|
||||
"Can edit" : "Is féidir eagarthóireacht a dhéanamh",
|
||||
"File drop" : "Titim comhad",
|
||||
"Custom permissions" : "Ceadanna saincheaptha",
|
||||
"Search for share recipients" : "Cuardaigh faighteoirí scaireanna",
|
||||
"No recommendations. Start typing." : "Gan moltaí. Tosaigh ag clóscríobh.",
|
||||
|
|
@ -190,12 +257,10 @@
|
|||
"Advanced settings" : "Ardsocruithe",
|
||||
"Share label" : "Comhroinn lipéad",
|
||||
"Set password" : "Socraigh pasfhocal",
|
||||
"Password" : "Pasfhocal",
|
||||
"Password expires {passwordExpirationTime}" : "Téann pasfhocal in éag {passwordExpirationTime}",
|
||||
"Password expired" : "Pasfhocal imithe in éag",
|
||||
"Video verification" : "Fíorú físeán",
|
||||
"Set expiration date" : "Socraigh dáta éaga",
|
||||
"Expiration date" : "Dáta éaga",
|
||||
"Hide download" : "Folaigh íoslódáil",
|
||||
"Allow download" : "Ceadaigh íoslódáil",
|
||||
"Note to recipient" : "Nóta don fhaighteoir",
|
||||
|
|
@ -219,6 +284,7 @@
|
|||
"Toggle list of others with access to this directory" : "Scoránaigh liosta de na cinn eile a bhfuil rochtain acu ar an eolaire seo",
|
||||
"Toggle list of others with access to this file" : "Scoránaigh liosta de na cinn eile a bhfuil rochtain acu ar an gcomhad seo",
|
||||
"Unable to fetch inherited shares" : "Ní féidir scaireanna le hoidhreacht a fháil",
|
||||
"_The following email address is not valid: {emails}_::_The following email addresses are not valid: {emails}_" : ["Níl an seoladh ríomhphoist seo a leanas bailí: {emails}","Níl na seoltaí ríomhphoist seo a leanas bailí: {emails}","Níl na seoltaí ríomhphoist seo a leanas bailí: {emails}","Níl na seoltaí ríomhphoist seo a leanas bailí: {emails}","Níl na seoltaí ríomhphoist seo a leanas bailí: {emails}"],
|
||||
"Unable to load the shares list" : "Ní féidir an liosta scaireanna a lódáil",
|
||||
"Expires {relativetime}" : "In éag {relativetime}",
|
||||
"this share just expired." : "tá an sciar seo díreach imithe in éag.",
|
||||
|
|
@ -232,13 +298,12 @@
|
|||
"Shared by {ownerDisplayName}" : "Roinnte ag {ownerDisplayName}",
|
||||
"Show sharing options" : "Taispeáin roghanna comhroinnte",
|
||||
"Link to a file" : "Nasc chuig comhad",
|
||||
"Error creating the share: {errorMessage}" : "Earráid agus an sciar á cruthú: {errorMessage}",
|
||||
"Error creating the share" : "Earráid agus an sciar á cruthú",
|
||||
"Error updating the share: {errorMessage}" : "Earráid agus an sciar á nuashonrú: {errorMessage}",
|
||||
"Error updating the share" : "Earráid agus an sciar á nuashonrú",
|
||||
"File \"{path}\" has been unshared" : "Comhad \"{path}\" díroinnte",
|
||||
"Folder \"{path}\" has been unshared" : "Díroinneadh an fillteán \"{path}\".",
|
||||
"Share {propertyName} saved" : "Roinn {propertyName} sábháilte",
|
||||
"Create new file request" : "Cruthaigh iarratas comhad nua",
|
||||
"Shared by" : "Roinnte ag",
|
||||
"Shared with" : "Roinnte le",
|
||||
"Password created successfully" : "Pasfhocal cruthaithe go rathúil",
|
||||
|
|
@ -300,9 +365,9 @@
|
|||
"Bundled permissions" : "Ceadanna cuachta",
|
||||
"Only works for users with access to this folder" : "Ní oibríonn sé ach d’úsáideoirí a bhfuil rochtain acu ar an bhfillteán seo",
|
||||
"Only works for users with access to this file" : "Ní oibríonn ach d’úsáideoirí a bhfuil rochtain acu ar an gcomhad seo",
|
||||
"File drop" : "Titim comhad",
|
||||
"Circle" : "Ciorcal",
|
||||
"Update" : "Nuashonrú",
|
||||
"Share with " : "Roinn le",
|
||||
"No other users with access found" : "Níor aimsíodh aon úsáideoir eile a bhfuil rochtain acu",
|
||||
"No entries found in this folder" : "Níor aimsíodh aon iontrálacha san fhillteán seo",
|
||||
"Name" : "Ainm",
|
||||
|
|
|
|||
|
|
@ -79,13 +79,14 @@ OC.L10N.register(
|
|||
"Wrong path, file/folder does not exist" : "Ruta errónea, o ficheiro/cartafol non existe",
|
||||
"Could not create share" : "Non foi posíbel crear a compartición",
|
||||
"Invalid permissions" : "Permisos incorrectos",
|
||||
"Invalid date, date format must be YYYY-MM-DD" : "Data incorrecta, o formato da date debe ser AAAA-MM-DD",
|
||||
"Invalid date, date format must be YYYY-MM-DD" : "Data incorrecta, o formato da data debe ser AAAA-MM-DD",
|
||||
"Please specify a valid account to share with" : "Especifique unha conta válida coa que compartir",
|
||||
"Group sharing is disabled by the administrator" : "A opción de compartir en grupo foi desactivada pola administración desta instancia.",
|
||||
"Please specify a valid group" : "Especifique un grupo correcto",
|
||||
"Public link sharing is disabled by the administrator" : "Compartir por ligazón pública foi desactivado pola administración desta instancia.",
|
||||
"Public upload disabled by the administrator" : "O envío público foi desactivado pola administración desta instancia.",
|
||||
"Public upload is only possible for publicly shared folders" : "O envío público só é posíbel para aos cartafoles públicos compartidos",
|
||||
"Please specify a valid email address" : "Especifique un enderezo de correo-e válido",
|
||||
"Sharing %s sending the password by Nextcloud Talk failed because Nextcloud Talk is not enabled" : "Compartir %s enviando o contrasinal por Nextcloud Talk fallou porque Nextcloud Talk non está activado",
|
||||
"Sharing %1$s failed because the back end does not allow shares from type %2$s" : "Fallou a compartición de %1$s, xa que a infraestrutura non permite accións do tipo %2$s",
|
||||
"Please specify a valid federated account ID" : "Especifique un ID de conta federado válido",
|
||||
|
|
@ -98,10 +99,22 @@ OC.L10N.register(
|
|||
"Not a directory" : "Non é un directorio",
|
||||
"Could not lock node" : "Non foi posíbel bloquear o nodo",
|
||||
"Could not lock path" : "Non foi posíbel bloquear a ruta",
|
||||
"no sharing rights on this item" : "non hai dereitos de uso compartido deste elemento",
|
||||
"You are not allowed to edit incoming shares" : "Vde. non ten permiso para editar os recursos compartidos entrantes",
|
||||
"Wrong or no update parameter given" : "Parámetro erróneo ou non actualizado",
|
||||
"You are not allowed to edit link shares that you don't own" : "Vde. non ten permiso para editar as ligazóns compartidas das que non é o propietario",
|
||||
"Share must at least have READ or CREATE permissions" : "Compartir debe ter polo menos permisos de LER ou CREAR",
|
||||
"Share must have READ permission if UPDATE or DELETE permission is set" : "A compartición debe ter permiso de LECTURA se está estabelecido o permiso ACTUALIZAR ou ELIMINAR",
|
||||
"\"Sending the password by Nextcloud Talk\" for sharing a file or folder failed because Nextcloud Talk is not enabled." : "Produciuse un erro ao «enviar o contrasinal mediante Nextcloud Talk» para compartir un ficheiro ou cartafol porque Nextcloud Talk non está activado.",
|
||||
"Invalid date. Format must be YYYY-MM-DD" : "Data incorrecta. O formato debe ser AAAA-MM-DD",
|
||||
"No sharing rights on this item" : "Non hai dereitos de uso compartido deste elemento",
|
||||
"Invalid share attributes provided: \"%s\"" : "Forneceronse atributos non válidos de compartición . «%s»",
|
||||
"Should not happen, instanceOfStorage but getInstanceOfStorage return null" : "Non debería ocorrer, instanceOfStorage mais getInstanceOfStorage devolve valor nulo",
|
||||
"Should not happen, instanceOfStorage but not a wrapper" : "Non debería ocorrer, instanceOfStorage mais non é unha envoltura",
|
||||
"You are not allowed to send mail notifications" : "Vde. non ten permiso para enviar notificacións por correo",
|
||||
"No mail notification configured for this share type" : "Non foi configurada ningunha notificación de correo para este tipo de recurso compartido",
|
||||
"Wrong password" : "Contrasinal erróneo",
|
||||
"Error while sending mail notification" : "Produciuse un erro ao enviar a notificación por correo",
|
||||
"shared by %s" : "compartido por %s",
|
||||
"Download all files" : "Descargar todos os ficheiros",
|
||||
"Direct link" : "Ligazón directa",
|
||||
|
|
@ -115,10 +128,65 @@ OC.L10N.register(
|
|||
"Accept" : "Aceptar",
|
||||
"Decline" : "Declinar",
|
||||
"This application enables people to share files within Nextcloud. If enabled, the admin can choose which groups can share files. The applicable people can then share files and folders with other accounts and groups within Nextcloud. In addition, if the admin enables the share link feature, an external link can be used to share files with other people outside of Nextcloud. Admins can also enforce passwords, expirations dates, and enable server to server sharing via share links, as well as sharing from mobile devices.\nTurning the feature off removes shared files and folders on the server for all share recipients, and also on the sync clients and mobile apps. More information is available in the Nextcloud Documentation." : "Esta aplicación permítelle á xente compartir ficheiros dentro de Nextcloud. Se o activa, a administración do sitio pode escoller que grupos poden compartir ficheiros. As persoas implicadas poderán compartir ficheiros e cartafoles con outras contas e grupos dentro de Nextcloud. Ademais, se a administración activa a característica de ligazón compartida, pode empregarse unha ligazón externa para compartir ficheiros con outras persoas fora de Nextcloud. A administración pode impor o uso de contrasinais ou datas de caducidade e activar a compartición de servidor a servidor mediante ligazóns compartidas, así como compartir dende dispositivos móbiles.\nDesactivar esta característica retira os ficheiros compartidos e os cartafoles do servidor, para todos os receptores, e tamén dos clientes de sincronización e móbiles. Atopará máis información na documentación de Nextcloud.",
|
||||
"Your administrator has enforced a default expiration date with a maximum {days} days." : "A administración do sitio impuxo unha data de caducidade predeterminada cun máximo de {days} días.",
|
||||
"When should the request expire?" : "Cando debe caducar a solicitude?",
|
||||
"Set a submission expirationDate" : "Definir unha data de caducidade de envío",
|
||||
"Expiration date" : "Data de caducidade",
|
||||
"Select a date" : "Seleccione unha data",
|
||||
"Your administrator has enforced a password protection." : "A administración do sitio aplicou unha protección por contrasinal.",
|
||||
"What password should be used for the request?" : "Que contrasinal debe empregarse para a solicitude?",
|
||||
"Set a password" : "Definir un contrasinal",
|
||||
"Password" : "Contrasinal",
|
||||
"Enter a valid password" : "Introduza un contrasinal válido",
|
||||
"Generate a new password" : "Xerar un novo contrasinal",
|
||||
"The request will expire on {date} at midnight and will be password protected." : "A solicitude caducará na media noite do {date} e estará protexida por contrasinal.",
|
||||
"The request will expire on {date} at midnight." : "A solicitude caducará na media noite do {date}.",
|
||||
"The request will be password protected." : "A solicitude estará protexida por contrasinal.",
|
||||
"Once created, you can share the link below to allow people to upload files to your directory." : "Unha vez creada, pode compartir a seguinte ligazón para permitir que as persoas envíen ficheiros ao seu directorio.",
|
||||
"Share link" : "Compartir ligazón",
|
||||
"Copy to clipboard" : "Copiar no portapapeis.",
|
||||
"Send link via email" : "Enviar a ligazón por correo",
|
||||
"Enter an email address or paste a list" : "Introduza un enderezo de correo ou pegue unha lista",
|
||||
"Remove email" : "Retirar o correo",
|
||||
"Automatically copying failed, please copy the share link manually" : "Produciuse un erro ao copiar automaticamente, copie a ligazón para compartir manualmente",
|
||||
"Link copied to clipboard" : "A ligazón foi copiada no portapapeis.",
|
||||
"Email already added" : "O correo xa foi engadido",
|
||||
"Invalid email address" : "Enderezo de correo incorrecto",
|
||||
"_1 email address already added_::_{count} email addresses already added_" : ["Xa se engadiu 1 enderezo de correo","Xa se engadiron {count} enderezos de correo"],
|
||||
"_1 email address added_::_{count} email addresses added_" : ["Engadiuse 1 de correo","Engadíronse {count} enderezos de correo"],
|
||||
"What are you requesting?" : "Que é o que está a solicitar?",
|
||||
"Request subject" : "Asunto da solicitude",
|
||||
"Birthday party photos, History assignment…" : "Fotos da festa de aniversario, tarefa de historia…",
|
||||
"Where should these files go?" : "Onde deben ir estes ficheiros?",
|
||||
"The uploaded files are visible only to you unless you choose to share them." : "Os ficheiros enviados só son visíbeis para Vde. a non ser que decida compartilos.",
|
||||
"Upload destination" : "Destino do envío",
|
||||
"Select a destination" : "Seleccione un destino",
|
||||
"Revert to default" : "Reverter ao predeterminado",
|
||||
"Add a note" : "Engadir unha nota",
|
||||
"Note for recipient" : "Nota para o destinatario",
|
||||
"Add a note to help people understand what you are requesting." : "Engada unha nota para que a xente comprenda o que está a solicitar.",
|
||||
"Select" : "Seleccionar",
|
||||
"Create a file request" : "Crear unha solicitude de ficheiro",
|
||||
"File request created" : "Creouse a solicitude de ficheiro",
|
||||
"Collect files from others even if they do not have an account." : "Recoller os ficheiros doutros aínda que non teñan unha conta.",
|
||||
"To ensure you can receive files, verify you have enough storage available." : "Para asegurarse de que pode recibir ficheiros, verifique que ten dispoñíbel espazo de almacenamento abondo.",
|
||||
"File request" : "Solicitude de ficheiro",
|
||||
"Cancel" : "Cancelar",
|
||||
"Cancel the file request creation" : "Cancelar a creación da solicitude de ficheiro",
|
||||
"Previous step" : "Paso anterior",
|
||||
"Continue" : "Continuar",
|
||||
"Close" : "Pechar",
|
||||
"Please select a folder, you cannot share the root directory." : "Seleccione un cartafol, Vde. non pode compartir o directorio raíz.",
|
||||
"File request created and emails sent" : "Creouse a solicitude de ficheiro e enviáronse os correos",
|
||||
"Error creating the share: {errorMessage}" : "Produciuse un erro ao crear a compartición: {errorMessage}",
|
||||
"Error creating the share" : "Produciuse un erro ao crear a compartición",
|
||||
"Error sending emails: {errorMessage}" : "Produciuse un erro ao enviar os correos: {errorMessage}",
|
||||
"Error sending emails" : "Produciuse un erro ao enviar os correos",
|
||||
"_Close and send email_::_Close and send {count} emails_" : ["Pechar e enviar o correo","Pechar e enviar {count} correos"],
|
||||
"Sharing" : "Compartindo",
|
||||
"Accept shares from other accounts and groups by default" : "Aceptar comparticións doutras contas e grupos de xeito predeterminado",
|
||||
"Error while toggling options" : "Produciuse un erro ao alternar as opcións",
|
||||
"Set default folder for accepted shares" : "Estabelecer o cartafol predeterminado para as s aceptadas",
|
||||
"Set default folder for accepted shares" : "Definir o cartafol predeterminado para as s aceptadas",
|
||||
"Reset" : "Restabelecer",
|
||||
"Reset folder to system default" : "Restabelecer o cartafol ao predeterminado do sistema",
|
||||
"Choose a default folder for accepted shares" : "Escolla un cartafol predeterminado para as comparticións aceptadas",
|
||||
|
|
@ -149,17 +217,17 @@ OC.L10N.register(
|
|||
"Expiration date (enforced)" : "Data de caducidade (obrigada)",
|
||||
"Enter a date" : "Introduza unha data",
|
||||
"Create share" : "Crear elemento compartido",
|
||||
"Cancel" : "Cancelar",
|
||||
"Customize link" : "Personalizar a ligazón",
|
||||
"Generate QR code" : "Xerar un código QR",
|
||||
"Add another link" : "Engadir outra ligazón",
|
||||
"Create a new share link" : "Crear unha nova ligazón de compartición",
|
||||
"{shareWith} by {initiator}" : "{shareWith} por {initiator}",
|
||||
"Shared via link by {initiator}" : "Compartido mediante ligazón por {initiator}",
|
||||
"Mail share ({label})" : "Compartir correo ({label})",
|
||||
"File request ({label})" : "Solicitude de ficheiro ({label})",
|
||||
"Mail share ({label})" : "Compartir por correo ({label})",
|
||||
"Share link ({label})" : "Compartir a ligazón ({label})",
|
||||
"Mail share" : "Compartir por correo",
|
||||
"Share link ({index})" : "Compartir a ligazón ({index})",
|
||||
"Share link" : "Compartir ligazón",
|
||||
"Actions for \"{title}\"" : "Accións para «{title}»",
|
||||
"Copy public link of \"{title}\" to clipboard" : "Copiar a ligazón pública de «{title}» no portapapeis",
|
||||
"Error, please enter proper password and/or expiration date" : "Erro, introduza un contrasinal ou unha data de caducidade correctos",
|
||||
|
|
@ -168,7 +236,6 @@ OC.L10N.register(
|
|||
"Quick share options, the current selected is \"{selectedOption}\"" : "Opcións compartir de forma rápida, a selección actual é \"{selectedOption}\"",
|
||||
"View only" : "Só ver",
|
||||
"Can edit" : "Pode editar",
|
||||
"File drop" : "Soltar o ficheiro",
|
||||
"Custom permissions" : "Permisos personalizados",
|
||||
"Search for share recipients" : "Buscar destinatarios de comparticións",
|
||||
"No recommendations. Start typing." : "Non hai recomendacións. Comece a escribir.",
|
||||
|
|
@ -191,13 +258,11 @@ OC.L10N.register(
|
|||
"Upload only" : "Só enviar",
|
||||
"Advanced settings" : "Axustes avanzados",
|
||||
"Share label" : "Compartir a etiqueta",
|
||||
"Set password" : "Estabelecer o contrasinal",
|
||||
"Password" : "Contrasinal",
|
||||
"Set password" : "Definir o contrasinal",
|
||||
"Password expires {passwordExpirationTime}" : "O contrasinal caduca o {passwordExpirationTime}",
|
||||
"Password expired" : "O contrasinal caducou",
|
||||
"Video verification" : "Verificación de vídeo",
|
||||
"Set expiration date" : "Estabelecer a data de caducidade",
|
||||
"Expiration date" : "Data de caducidade",
|
||||
"Set expiration date" : "Definir a data de caducidade",
|
||||
"Hide download" : "Agochar a descarga",
|
||||
"Allow download" : "Permitir a descarga",
|
||||
"Note to recipient" : "Nota para o destinatario",
|
||||
|
|
@ -221,6 +286,7 @@ OC.L10N.register(
|
|||
"Toggle list of others with access to this directory" : "Alternar a lista doutros con acceso a este directorio",
|
||||
"Toggle list of others with access to this file" : "Alternar a lista doutros con acceso a este ficheiro",
|
||||
"Unable to fetch inherited shares" : "Non é posíbel recuperar as comparticións herdadas",
|
||||
"_The following email address is not valid: {emails}_::_The following email addresses are not valid: {emails}_" : ["O seguinte enderezo de correo non é válido: {emails}","Os seguintes enderezos de correo non son válidos: {emails}"],
|
||||
"Unable to load the shares list" : "Non é posíbel cargar a lista de comparticións",
|
||||
"Expires {relativetime}" : "Caducidades {relativetime}",
|
||||
"this share just expired." : "vén de caducar esta compartición",
|
||||
|
|
@ -234,13 +300,12 @@ OC.L10N.register(
|
|||
"Shared by {ownerDisplayName}" : "Compartido por {ownerDisplayName}",
|
||||
"Show sharing options" : "Amosar as opcións de compartición",
|
||||
"Link to a file" : "Ligazón a un ficheiro",
|
||||
"Error creating the share: {errorMessage}" : "Produciuse un erro ao crear a compartición: {errorMessage}",
|
||||
"Error creating the share" : "Produciuse un erro ao crear a compartición",
|
||||
"Error updating the share: {errorMessage}" : "Produciuse un erro ao actualizar a compartición: {errorMessage}",
|
||||
"Error updating the share" : "Produciuse un erro ao actualizar a compartición",
|
||||
"File \"{path}\" has been unshared" : "Foi retirado o ficheiro compartido «{path}».",
|
||||
"Folder \"{path}\" has been unshared" : "Foi retirado o cartafol compartido «{path}».",
|
||||
"Share {propertyName} saved" : "A compartición {propertyName} foi gardada",
|
||||
"Create new file request" : "Crear unha nova solicitude de ficheiro",
|
||||
"Shared by" : "Compartido por",
|
||||
"Shared with" : "Compartido con",
|
||||
"Password created successfully" : "O contrasinal foi creado correctamente",
|
||||
|
|
@ -302,9 +367,9 @@ OC.L10N.register(
|
|||
"Bundled permissions" : "Permisos agrupados",
|
||||
"Only works for users with access to this folder" : "Só funciona para usuarios con acceso a este cartafol",
|
||||
"Only works for users with access to this file" : "Só funciona para usuarios con acceso a este ficheiro",
|
||||
"File drop" : "Soltar o ficheiro",
|
||||
"Circle" : "Círculo",
|
||||
"Update" : "Actualizar",
|
||||
"Share with " : "Compartir con",
|
||||
"No other users with access found" : "Non se atoparon outros usuarios con acceso",
|
||||
"No entries found in this folder" : "Non se atoparon entradas neste cartafol",
|
||||
"Name" : "Nome",
|
||||
|
|
|
|||
|
|
@ -77,13 +77,14 @@
|
|||
"Wrong path, file/folder does not exist" : "Ruta errónea, o ficheiro/cartafol non existe",
|
||||
"Could not create share" : "Non foi posíbel crear a compartición",
|
||||
"Invalid permissions" : "Permisos incorrectos",
|
||||
"Invalid date, date format must be YYYY-MM-DD" : "Data incorrecta, o formato da date debe ser AAAA-MM-DD",
|
||||
"Invalid date, date format must be YYYY-MM-DD" : "Data incorrecta, o formato da data debe ser AAAA-MM-DD",
|
||||
"Please specify a valid account to share with" : "Especifique unha conta válida coa que compartir",
|
||||
"Group sharing is disabled by the administrator" : "A opción de compartir en grupo foi desactivada pola administración desta instancia.",
|
||||
"Please specify a valid group" : "Especifique un grupo correcto",
|
||||
"Public link sharing is disabled by the administrator" : "Compartir por ligazón pública foi desactivado pola administración desta instancia.",
|
||||
"Public upload disabled by the administrator" : "O envío público foi desactivado pola administración desta instancia.",
|
||||
"Public upload is only possible for publicly shared folders" : "O envío público só é posíbel para aos cartafoles públicos compartidos",
|
||||
"Please specify a valid email address" : "Especifique un enderezo de correo-e válido",
|
||||
"Sharing %s sending the password by Nextcloud Talk failed because Nextcloud Talk is not enabled" : "Compartir %s enviando o contrasinal por Nextcloud Talk fallou porque Nextcloud Talk non está activado",
|
||||
"Sharing %1$s failed because the back end does not allow shares from type %2$s" : "Fallou a compartición de %1$s, xa que a infraestrutura non permite accións do tipo %2$s",
|
||||
"Please specify a valid federated account ID" : "Especifique un ID de conta federado válido",
|
||||
|
|
@ -96,10 +97,22 @@
|
|||
"Not a directory" : "Non é un directorio",
|
||||
"Could not lock node" : "Non foi posíbel bloquear o nodo",
|
||||
"Could not lock path" : "Non foi posíbel bloquear a ruta",
|
||||
"no sharing rights on this item" : "non hai dereitos de uso compartido deste elemento",
|
||||
"You are not allowed to edit incoming shares" : "Vde. non ten permiso para editar os recursos compartidos entrantes",
|
||||
"Wrong or no update parameter given" : "Parámetro erróneo ou non actualizado",
|
||||
"You are not allowed to edit link shares that you don't own" : "Vde. non ten permiso para editar as ligazóns compartidas das que non é o propietario",
|
||||
"Share must at least have READ or CREATE permissions" : "Compartir debe ter polo menos permisos de LER ou CREAR",
|
||||
"Share must have READ permission if UPDATE or DELETE permission is set" : "A compartición debe ter permiso de LECTURA se está estabelecido o permiso ACTUALIZAR ou ELIMINAR",
|
||||
"\"Sending the password by Nextcloud Talk\" for sharing a file or folder failed because Nextcloud Talk is not enabled." : "Produciuse un erro ao «enviar o contrasinal mediante Nextcloud Talk» para compartir un ficheiro ou cartafol porque Nextcloud Talk non está activado.",
|
||||
"Invalid date. Format must be YYYY-MM-DD" : "Data incorrecta. O formato debe ser AAAA-MM-DD",
|
||||
"No sharing rights on this item" : "Non hai dereitos de uso compartido deste elemento",
|
||||
"Invalid share attributes provided: \"%s\"" : "Forneceronse atributos non válidos de compartición . «%s»",
|
||||
"Should not happen, instanceOfStorage but getInstanceOfStorage return null" : "Non debería ocorrer, instanceOfStorage mais getInstanceOfStorage devolve valor nulo",
|
||||
"Should not happen, instanceOfStorage but not a wrapper" : "Non debería ocorrer, instanceOfStorage mais non é unha envoltura",
|
||||
"You are not allowed to send mail notifications" : "Vde. non ten permiso para enviar notificacións por correo",
|
||||
"No mail notification configured for this share type" : "Non foi configurada ningunha notificación de correo para este tipo de recurso compartido",
|
||||
"Wrong password" : "Contrasinal erróneo",
|
||||
"Error while sending mail notification" : "Produciuse un erro ao enviar a notificación por correo",
|
||||
"shared by %s" : "compartido por %s",
|
||||
"Download all files" : "Descargar todos os ficheiros",
|
||||
"Direct link" : "Ligazón directa",
|
||||
|
|
@ -113,10 +126,65 @@
|
|||
"Accept" : "Aceptar",
|
||||
"Decline" : "Declinar",
|
||||
"This application enables people to share files within Nextcloud. If enabled, the admin can choose which groups can share files. The applicable people can then share files and folders with other accounts and groups within Nextcloud. In addition, if the admin enables the share link feature, an external link can be used to share files with other people outside of Nextcloud. Admins can also enforce passwords, expirations dates, and enable server to server sharing via share links, as well as sharing from mobile devices.\nTurning the feature off removes shared files and folders on the server for all share recipients, and also on the sync clients and mobile apps. More information is available in the Nextcloud Documentation." : "Esta aplicación permítelle á xente compartir ficheiros dentro de Nextcloud. Se o activa, a administración do sitio pode escoller que grupos poden compartir ficheiros. As persoas implicadas poderán compartir ficheiros e cartafoles con outras contas e grupos dentro de Nextcloud. Ademais, se a administración activa a característica de ligazón compartida, pode empregarse unha ligazón externa para compartir ficheiros con outras persoas fora de Nextcloud. A administración pode impor o uso de contrasinais ou datas de caducidade e activar a compartición de servidor a servidor mediante ligazóns compartidas, así como compartir dende dispositivos móbiles.\nDesactivar esta característica retira os ficheiros compartidos e os cartafoles do servidor, para todos os receptores, e tamén dos clientes de sincronización e móbiles. Atopará máis información na documentación de Nextcloud.",
|
||||
"Your administrator has enforced a default expiration date with a maximum {days} days." : "A administración do sitio impuxo unha data de caducidade predeterminada cun máximo de {days} días.",
|
||||
"When should the request expire?" : "Cando debe caducar a solicitude?",
|
||||
"Set a submission expirationDate" : "Definir unha data de caducidade de envío",
|
||||
"Expiration date" : "Data de caducidade",
|
||||
"Select a date" : "Seleccione unha data",
|
||||
"Your administrator has enforced a password protection." : "A administración do sitio aplicou unha protección por contrasinal.",
|
||||
"What password should be used for the request?" : "Que contrasinal debe empregarse para a solicitude?",
|
||||
"Set a password" : "Definir un contrasinal",
|
||||
"Password" : "Contrasinal",
|
||||
"Enter a valid password" : "Introduza un contrasinal válido",
|
||||
"Generate a new password" : "Xerar un novo contrasinal",
|
||||
"The request will expire on {date} at midnight and will be password protected." : "A solicitude caducará na media noite do {date} e estará protexida por contrasinal.",
|
||||
"The request will expire on {date} at midnight." : "A solicitude caducará na media noite do {date}.",
|
||||
"The request will be password protected." : "A solicitude estará protexida por contrasinal.",
|
||||
"Once created, you can share the link below to allow people to upload files to your directory." : "Unha vez creada, pode compartir a seguinte ligazón para permitir que as persoas envíen ficheiros ao seu directorio.",
|
||||
"Share link" : "Compartir ligazón",
|
||||
"Copy to clipboard" : "Copiar no portapapeis.",
|
||||
"Send link via email" : "Enviar a ligazón por correo",
|
||||
"Enter an email address or paste a list" : "Introduza un enderezo de correo ou pegue unha lista",
|
||||
"Remove email" : "Retirar o correo",
|
||||
"Automatically copying failed, please copy the share link manually" : "Produciuse un erro ao copiar automaticamente, copie a ligazón para compartir manualmente",
|
||||
"Link copied to clipboard" : "A ligazón foi copiada no portapapeis.",
|
||||
"Email already added" : "O correo xa foi engadido",
|
||||
"Invalid email address" : "Enderezo de correo incorrecto",
|
||||
"_1 email address already added_::_{count} email addresses already added_" : ["Xa se engadiu 1 enderezo de correo","Xa se engadiron {count} enderezos de correo"],
|
||||
"_1 email address added_::_{count} email addresses added_" : ["Engadiuse 1 de correo","Engadíronse {count} enderezos de correo"],
|
||||
"What are you requesting?" : "Que é o que está a solicitar?",
|
||||
"Request subject" : "Asunto da solicitude",
|
||||
"Birthday party photos, History assignment…" : "Fotos da festa de aniversario, tarefa de historia…",
|
||||
"Where should these files go?" : "Onde deben ir estes ficheiros?",
|
||||
"The uploaded files are visible only to you unless you choose to share them." : "Os ficheiros enviados só son visíbeis para Vde. a non ser que decida compartilos.",
|
||||
"Upload destination" : "Destino do envío",
|
||||
"Select a destination" : "Seleccione un destino",
|
||||
"Revert to default" : "Reverter ao predeterminado",
|
||||
"Add a note" : "Engadir unha nota",
|
||||
"Note for recipient" : "Nota para o destinatario",
|
||||
"Add a note to help people understand what you are requesting." : "Engada unha nota para que a xente comprenda o que está a solicitar.",
|
||||
"Select" : "Seleccionar",
|
||||
"Create a file request" : "Crear unha solicitude de ficheiro",
|
||||
"File request created" : "Creouse a solicitude de ficheiro",
|
||||
"Collect files from others even if they do not have an account." : "Recoller os ficheiros doutros aínda que non teñan unha conta.",
|
||||
"To ensure you can receive files, verify you have enough storage available." : "Para asegurarse de que pode recibir ficheiros, verifique que ten dispoñíbel espazo de almacenamento abondo.",
|
||||
"File request" : "Solicitude de ficheiro",
|
||||
"Cancel" : "Cancelar",
|
||||
"Cancel the file request creation" : "Cancelar a creación da solicitude de ficheiro",
|
||||
"Previous step" : "Paso anterior",
|
||||
"Continue" : "Continuar",
|
||||
"Close" : "Pechar",
|
||||
"Please select a folder, you cannot share the root directory." : "Seleccione un cartafol, Vde. non pode compartir o directorio raíz.",
|
||||
"File request created and emails sent" : "Creouse a solicitude de ficheiro e enviáronse os correos",
|
||||
"Error creating the share: {errorMessage}" : "Produciuse un erro ao crear a compartición: {errorMessage}",
|
||||
"Error creating the share" : "Produciuse un erro ao crear a compartición",
|
||||
"Error sending emails: {errorMessage}" : "Produciuse un erro ao enviar os correos: {errorMessage}",
|
||||
"Error sending emails" : "Produciuse un erro ao enviar os correos",
|
||||
"_Close and send email_::_Close and send {count} emails_" : ["Pechar e enviar o correo","Pechar e enviar {count} correos"],
|
||||
"Sharing" : "Compartindo",
|
||||
"Accept shares from other accounts and groups by default" : "Aceptar comparticións doutras contas e grupos de xeito predeterminado",
|
||||
"Error while toggling options" : "Produciuse un erro ao alternar as opcións",
|
||||
"Set default folder for accepted shares" : "Estabelecer o cartafol predeterminado para as s aceptadas",
|
||||
"Set default folder for accepted shares" : "Definir o cartafol predeterminado para as s aceptadas",
|
||||
"Reset" : "Restabelecer",
|
||||
"Reset folder to system default" : "Restabelecer o cartafol ao predeterminado do sistema",
|
||||
"Choose a default folder for accepted shares" : "Escolla un cartafol predeterminado para as comparticións aceptadas",
|
||||
|
|
@ -147,17 +215,17 @@
|
|||
"Expiration date (enforced)" : "Data de caducidade (obrigada)",
|
||||
"Enter a date" : "Introduza unha data",
|
||||
"Create share" : "Crear elemento compartido",
|
||||
"Cancel" : "Cancelar",
|
||||
"Customize link" : "Personalizar a ligazón",
|
||||
"Generate QR code" : "Xerar un código QR",
|
||||
"Add another link" : "Engadir outra ligazón",
|
||||
"Create a new share link" : "Crear unha nova ligazón de compartición",
|
||||
"{shareWith} by {initiator}" : "{shareWith} por {initiator}",
|
||||
"Shared via link by {initiator}" : "Compartido mediante ligazón por {initiator}",
|
||||
"Mail share ({label})" : "Compartir correo ({label})",
|
||||
"File request ({label})" : "Solicitude de ficheiro ({label})",
|
||||
"Mail share ({label})" : "Compartir por correo ({label})",
|
||||
"Share link ({label})" : "Compartir a ligazón ({label})",
|
||||
"Mail share" : "Compartir por correo",
|
||||
"Share link ({index})" : "Compartir a ligazón ({index})",
|
||||
"Share link" : "Compartir ligazón",
|
||||
"Actions for \"{title}\"" : "Accións para «{title}»",
|
||||
"Copy public link of \"{title}\" to clipboard" : "Copiar a ligazón pública de «{title}» no portapapeis",
|
||||
"Error, please enter proper password and/or expiration date" : "Erro, introduza un contrasinal ou unha data de caducidade correctos",
|
||||
|
|
@ -166,7 +234,6 @@
|
|||
"Quick share options, the current selected is \"{selectedOption}\"" : "Opcións compartir de forma rápida, a selección actual é \"{selectedOption}\"",
|
||||
"View only" : "Só ver",
|
||||
"Can edit" : "Pode editar",
|
||||
"File drop" : "Soltar o ficheiro",
|
||||
"Custom permissions" : "Permisos personalizados",
|
||||
"Search for share recipients" : "Buscar destinatarios de comparticións",
|
||||
"No recommendations. Start typing." : "Non hai recomendacións. Comece a escribir.",
|
||||
|
|
@ -189,13 +256,11 @@
|
|||
"Upload only" : "Só enviar",
|
||||
"Advanced settings" : "Axustes avanzados",
|
||||
"Share label" : "Compartir a etiqueta",
|
||||
"Set password" : "Estabelecer o contrasinal",
|
||||
"Password" : "Contrasinal",
|
||||
"Set password" : "Definir o contrasinal",
|
||||
"Password expires {passwordExpirationTime}" : "O contrasinal caduca o {passwordExpirationTime}",
|
||||
"Password expired" : "O contrasinal caducou",
|
||||
"Video verification" : "Verificación de vídeo",
|
||||
"Set expiration date" : "Estabelecer a data de caducidade",
|
||||
"Expiration date" : "Data de caducidade",
|
||||
"Set expiration date" : "Definir a data de caducidade",
|
||||
"Hide download" : "Agochar a descarga",
|
||||
"Allow download" : "Permitir a descarga",
|
||||
"Note to recipient" : "Nota para o destinatario",
|
||||
|
|
@ -219,6 +284,7 @@
|
|||
"Toggle list of others with access to this directory" : "Alternar a lista doutros con acceso a este directorio",
|
||||
"Toggle list of others with access to this file" : "Alternar a lista doutros con acceso a este ficheiro",
|
||||
"Unable to fetch inherited shares" : "Non é posíbel recuperar as comparticións herdadas",
|
||||
"_The following email address is not valid: {emails}_::_The following email addresses are not valid: {emails}_" : ["O seguinte enderezo de correo non é válido: {emails}","Os seguintes enderezos de correo non son válidos: {emails}"],
|
||||
"Unable to load the shares list" : "Non é posíbel cargar a lista de comparticións",
|
||||
"Expires {relativetime}" : "Caducidades {relativetime}",
|
||||
"this share just expired." : "vén de caducar esta compartición",
|
||||
|
|
@ -232,13 +298,12 @@
|
|||
"Shared by {ownerDisplayName}" : "Compartido por {ownerDisplayName}",
|
||||
"Show sharing options" : "Amosar as opcións de compartición",
|
||||
"Link to a file" : "Ligazón a un ficheiro",
|
||||
"Error creating the share: {errorMessage}" : "Produciuse un erro ao crear a compartición: {errorMessage}",
|
||||
"Error creating the share" : "Produciuse un erro ao crear a compartición",
|
||||
"Error updating the share: {errorMessage}" : "Produciuse un erro ao actualizar a compartición: {errorMessage}",
|
||||
"Error updating the share" : "Produciuse un erro ao actualizar a compartición",
|
||||
"File \"{path}\" has been unshared" : "Foi retirado o ficheiro compartido «{path}».",
|
||||
"Folder \"{path}\" has been unshared" : "Foi retirado o cartafol compartido «{path}».",
|
||||
"Share {propertyName} saved" : "A compartición {propertyName} foi gardada",
|
||||
"Create new file request" : "Crear unha nova solicitude de ficheiro",
|
||||
"Shared by" : "Compartido por",
|
||||
"Shared with" : "Compartido con",
|
||||
"Password created successfully" : "O contrasinal foi creado correctamente",
|
||||
|
|
@ -300,9 +365,9 @@
|
|||
"Bundled permissions" : "Permisos agrupados",
|
||||
"Only works for users with access to this folder" : "Só funciona para usuarios con acceso a este cartafol",
|
||||
"Only works for users with access to this file" : "Só funciona para usuarios con acceso a este ficheiro",
|
||||
"File drop" : "Soltar o ficheiro",
|
||||
"Circle" : "Círculo",
|
||||
"Update" : "Actualizar",
|
||||
"Share with " : "Compartir con",
|
||||
"No other users with access found" : "Non se atoparon outros usuarios con acceso",
|
||||
"No entries found in this folder" : "Non se atoparon entradas neste cartafol",
|
||||
"Name" : "Nome",
|
||||
|
|
|
|||
|
|
@ -90,6 +90,7 @@ OC.L10N.register(
|
|||
"Could not lock node" : "לא היה ניתן לנעול את הצומת",
|
||||
"Could not lock path" : "לא ניתן היה לנעול נתיב",
|
||||
"Wrong or no update parameter given" : "משתנה עדכון שניתן שגוי או לא קיים",
|
||||
"Wrong password" : "ססמה שגויה",
|
||||
"shared by %s" : "שותף על ידי %s",
|
||||
"Download all files" : "הורדת כל הקבצים",
|
||||
"Direct link" : "קישור ישיר",
|
||||
|
|
@ -101,6 +102,18 @@ OC.L10N.register(
|
|||
"You received {share} to group {group} as a share by {user}" : "קיבלת {share} לקבוצה {group} כשיתוף על ידי {user}",
|
||||
"Accept" : "קבלה",
|
||||
"Decline" : "דחייה",
|
||||
"Expiration date" : "מועד תפוגה",
|
||||
"Set a password" : "הגדרת ססמה",
|
||||
"Password" : "ססמה",
|
||||
"Share link" : "שיתוף קישור",
|
||||
"Copy to clipboard" : "העתקה ללוח הגזירים",
|
||||
"Send link via email" : "שליחת קישור באמצעות דואר אלקטרוני",
|
||||
"Link copied to clipboard" : "הקישור הועתק ללוח הגזירים",
|
||||
"Select" : "בחר",
|
||||
"Cancel" : "ביטול",
|
||||
"Continue" : "להמשך",
|
||||
"Close" : "סגירה",
|
||||
"Error creating the share" : "יצירת השיתוף נכשלה",
|
||||
"Sharing" : "שיתוף",
|
||||
"Reset" : "איפוס",
|
||||
"Invalid path selected" : "הנתיב שנבחר שגוי",
|
||||
|
|
@ -126,13 +139,11 @@ OC.L10N.register(
|
|||
"Expiration date (enforced)" : "תאריך תפוגה (נאכף)",
|
||||
"Enter a date" : "נא למלא תאריך",
|
||||
"Create share" : "צור שיתוף",
|
||||
"Cancel" : "ביטול",
|
||||
"Add another link" : "הוספת קישור נוסף",
|
||||
"Create a new share link" : "יצירת קישור שיתוף חדש",
|
||||
"{shareWith} by {initiator}" : "{shareWith} באמצעות {initiator}",
|
||||
"Shared via link by {initiator}" : "שותף דרך קישור על ידי {initiator}",
|
||||
"Share link ({label})" : "שתף קישור ({label})",
|
||||
"Share link" : "שיתוף קישור",
|
||||
"Error, please enter proper password and/or expiration date" : "שגיאה, נא למלא ססמה ו/או תאריך תפוגה כראוי",
|
||||
"View only" : "לצפיה בלבד",
|
||||
"Can edit" : "ניתן לערוך",
|
||||
|
|
@ -152,10 +163,8 @@ OC.L10N.register(
|
|||
"Allow editing" : "לאפשר עריכה",
|
||||
"Advanced settings" : "הגדרות מתקדמות",
|
||||
"Share label" : "שתף תווית",
|
||||
"Password" : "ססמה",
|
||||
"Video verification" : "אימות וידאו",
|
||||
"Set expiration date" : "הגדרת תאריך תפוגה",
|
||||
"Expiration date" : "מועד תפוגה",
|
||||
"Hide download" : "הסתרת הורדה",
|
||||
"Note to recipient" : "מסר לנמען",
|
||||
"Enter a note for the share recipient" : "נא להוסיף הערה למקבלי השיתוף",
|
||||
|
|
@ -172,7 +181,6 @@ OC.L10N.register(
|
|||
"Shared with you by {owner}" : "שותף אתך על ידי {owner}",
|
||||
"Shared" : "משותף",
|
||||
"Link to a file" : "קישור לקובץ",
|
||||
"Error creating the share" : "יצירת השיתוף נכשלה",
|
||||
"Error updating the share" : "שגיאה בעדכון השיתוף",
|
||||
"Shared by" : "שותף על־ידי",
|
||||
"Shared with" : "משותף עם",
|
||||
|
|
|
|||
|
|
@ -88,6 +88,7 @@
|
|||
"Could not lock node" : "לא היה ניתן לנעול את הצומת",
|
||||
"Could not lock path" : "לא ניתן היה לנעול נתיב",
|
||||
"Wrong or no update parameter given" : "משתנה עדכון שניתן שגוי או לא קיים",
|
||||
"Wrong password" : "ססמה שגויה",
|
||||
"shared by %s" : "שותף על ידי %s",
|
||||
"Download all files" : "הורדת כל הקבצים",
|
||||
"Direct link" : "קישור ישיר",
|
||||
|
|
@ -99,6 +100,18 @@
|
|||
"You received {share} to group {group} as a share by {user}" : "קיבלת {share} לקבוצה {group} כשיתוף על ידי {user}",
|
||||
"Accept" : "קבלה",
|
||||
"Decline" : "דחייה",
|
||||
"Expiration date" : "מועד תפוגה",
|
||||
"Set a password" : "הגדרת ססמה",
|
||||
"Password" : "ססמה",
|
||||
"Share link" : "שיתוף קישור",
|
||||
"Copy to clipboard" : "העתקה ללוח הגזירים",
|
||||
"Send link via email" : "שליחת קישור באמצעות דואר אלקטרוני",
|
||||
"Link copied to clipboard" : "הקישור הועתק ללוח הגזירים",
|
||||
"Select" : "בחר",
|
||||
"Cancel" : "ביטול",
|
||||
"Continue" : "להמשך",
|
||||
"Close" : "סגירה",
|
||||
"Error creating the share" : "יצירת השיתוף נכשלה",
|
||||
"Sharing" : "שיתוף",
|
||||
"Reset" : "איפוס",
|
||||
"Invalid path selected" : "הנתיב שנבחר שגוי",
|
||||
|
|
@ -124,13 +137,11 @@
|
|||
"Expiration date (enforced)" : "תאריך תפוגה (נאכף)",
|
||||
"Enter a date" : "נא למלא תאריך",
|
||||
"Create share" : "צור שיתוף",
|
||||
"Cancel" : "ביטול",
|
||||
"Add another link" : "הוספת קישור נוסף",
|
||||
"Create a new share link" : "יצירת קישור שיתוף חדש",
|
||||
"{shareWith} by {initiator}" : "{shareWith} באמצעות {initiator}",
|
||||
"Shared via link by {initiator}" : "שותף דרך קישור על ידי {initiator}",
|
||||
"Share link ({label})" : "שתף קישור ({label})",
|
||||
"Share link" : "שיתוף קישור",
|
||||
"Error, please enter proper password and/or expiration date" : "שגיאה, נא למלא ססמה ו/או תאריך תפוגה כראוי",
|
||||
"View only" : "לצפיה בלבד",
|
||||
"Can edit" : "ניתן לערוך",
|
||||
|
|
@ -150,10 +161,8 @@
|
|||
"Allow editing" : "לאפשר עריכה",
|
||||
"Advanced settings" : "הגדרות מתקדמות",
|
||||
"Share label" : "שתף תווית",
|
||||
"Password" : "ססמה",
|
||||
"Video verification" : "אימות וידאו",
|
||||
"Set expiration date" : "הגדרת תאריך תפוגה",
|
||||
"Expiration date" : "מועד תפוגה",
|
||||
"Hide download" : "הסתרת הורדה",
|
||||
"Note to recipient" : "מסר לנמען",
|
||||
"Enter a note for the share recipient" : "נא להוסיף הערה למקבלי השיתוף",
|
||||
|
|
@ -170,7 +179,6 @@
|
|||
"Shared with you by {owner}" : "שותף אתך על ידי {owner}",
|
||||
"Shared" : "משותף",
|
||||
"Link to a file" : "קישור לקובץ",
|
||||
"Error creating the share" : "יצירת השיתוף נכשלה",
|
||||
"Error updating the share" : "שגיאה בעדכון השיתוף",
|
||||
"Shared by" : "שותף על־ידי",
|
||||
"Shared with" : "משותף עם",
|
||||
|
|
|
|||
|
|
@ -93,6 +93,7 @@ OC.L10N.register(
|
|||
"Could not lock path" : "Put nije moguće zaključati",
|
||||
"Wrong or no update parameter given" : "Pogrešan parametar ili nije dodan parametar ažuriranja",
|
||||
"\"Sending the password by Nextcloud Talk\" for sharing a file or folder failed because Nextcloud Talk is not enabled." : "„Slanje zaporke putem aplikacije Nextcloud Talk“ radi dijeljenja datoteke ili mape nije uspjelo jer Nextcloud Talk nije omogućen.",
|
||||
"Wrong password" : "Pogrešna zaporka",
|
||||
"shared by %s" : "dijeli %s",
|
||||
"Download all files" : "Preuzmi sve datoteke",
|
||||
"Direct link" : "Izravna poveznica",
|
||||
|
|
@ -105,6 +106,18 @@ OC.L10N.register(
|
|||
"You received {share} to group {group} as a share by {user}" : "Primili ste {share} grupi {group} kao dijeljenje od {user}",
|
||||
"Accept" : "Prihvati",
|
||||
"Decline" : "Odbij",
|
||||
"Expiration date" : "Datum isteka",
|
||||
"Set a password" : "Postavi zaporku",
|
||||
"Password" : "Zaporka",
|
||||
"Share link" : "Dijeli poveznicu",
|
||||
"Copy to clipboard" : "Kopiraj u međuspremnik",
|
||||
"Link copied to clipboard" : "Poveznica je kopirana u međuspremnik",
|
||||
"Select" : "Odaberi",
|
||||
"Cancel" : "Odustani",
|
||||
"Continue" : "Nastavi",
|
||||
"Close" : "Zatvori",
|
||||
"Error creating the share: {errorMessage}" : "Pogreška pri stvaranju dijeljenja: {errorMessage}",
|
||||
"Error creating the share" : "Pogreška pri stvaranju dijeljenja",
|
||||
"Sharing" : "Dijeljenje",
|
||||
"Reset" : "Resetiraj",
|
||||
"Invalid path selected" : "Odabran nevažeći put",
|
||||
|
|
@ -130,18 +143,15 @@ OC.L10N.register(
|
|||
"Expiration date (enforced)" : "Datum isteka (provedeno)",
|
||||
"Enter a date" : "Unesi datum",
|
||||
"Create share" : "Stvori dijeljenje",
|
||||
"Cancel" : "Odustani",
|
||||
"Add another link" : "Dodaj drugu poveznicu",
|
||||
"Create a new share link" : "Stvori novu poveznicu dijeljenja",
|
||||
"{shareWith} by {initiator}" : "{shareWith} od {initiator}",
|
||||
"Shared via link by {initiator}" : "Dijeli {initiator} putem poveznice",
|
||||
"Mail share ({label})" : "Dijeljenje poštom ({label})",
|
||||
"Share link ({label})" : "Poveznica dijeljenja ({label})",
|
||||
"Share link" : "Dijeli poveznicu",
|
||||
"Error, please enter proper password and/or expiration date" : "Pogreška, unesite točnu zaporku i/ili datum isteka",
|
||||
"View only" : "Samo za gledanje",
|
||||
"Can edit" : "Uređivanje moguće",
|
||||
"File drop" : "Povlačenje datoteke",
|
||||
"No recommendations. Start typing." : "Nema preporuka. Započnite unos.",
|
||||
"Resharing is not allowed" : "Ponovno dijeljenje nije dopušteno",
|
||||
"Name or email …" : "Ime ili adresa e-pošte…",
|
||||
|
|
@ -159,10 +169,8 @@ OC.L10N.register(
|
|||
"Allow editing" : "Dopusti uređivanje",
|
||||
"Advanced settings" : "Napredne postavke",
|
||||
"Share label" : "oznaka za dijeljenje",
|
||||
"Password" : "Zaporka",
|
||||
"Video verification" : "Provjera videozapisa",
|
||||
"Set expiration date" : "Postavi datum isteka",
|
||||
"Expiration date" : "Datum isteka",
|
||||
"Hide download" : "Sakrij preuzimanje",
|
||||
"Note to recipient" : "Obavijest primatelju",
|
||||
"Enter a note for the share recipient" : "Unesite bilješku za primatelja dijeljenja",
|
||||
|
|
@ -181,8 +189,6 @@ OC.L10N.register(
|
|||
"Shared with you by {owner}" : "S vama podijelio {owner}",
|
||||
"Shared" : "Dijeljeno",
|
||||
"Link to a file" : "Poveži s datotekom",
|
||||
"Error creating the share: {errorMessage}" : "Pogreška pri stvaranju dijeljenja: {errorMessage}",
|
||||
"Error creating the share" : "Pogreška pri stvaranju dijeljenja",
|
||||
"Error updating the share: {errorMessage}" : "Pogreška pri ažuriranju dijeljenja: {errorMessage}",
|
||||
"Error updating the share" : "Pogreška pri ažuriranju dijeljenja",
|
||||
"Shared by" : "Podijeljeno od",
|
||||
|
|
@ -231,6 +237,7 @@ OC.L10N.register(
|
|||
"Upload" : "Otpremi",
|
||||
"Only works for users with access to this folder" : "Samo za korisnike koji smiju pristupiti ovoj mapi",
|
||||
"Only works for users with access to this file" : "Samo za korisnike koji smiju pristupiti ovoj datoteci",
|
||||
"File drop" : "Povlačenje datoteke",
|
||||
"Circle" : "Krug",
|
||||
"Update" : "Ažuriraj",
|
||||
"No other users with access found" : "Nije pronađen nijedan drugi korisnik s omogućenim pristupom",
|
||||
|
|
|
|||
|
|
@ -91,6 +91,7 @@
|
|||
"Could not lock path" : "Put nije moguće zaključati",
|
||||
"Wrong or no update parameter given" : "Pogrešan parametar ili nije dodan parametar ažuriranja",
|
||||
"\"Sending the password by Nextcloud Talk\" for sharing a file or folder failed because Nextcloud Talk is not enabled." : "„Slanje zaporke putem aplikacije Nextcloud Talk“ radi dijeljenja datoteke ili mape nije uspjelo jer Nextcloud Talk nije omogućen.",
|
||||
"Wrong password" : "Pogrešna zaporka",
|
||||
"shared by %s" : "dijeli %s",
|
||||
"Download all files" : "Preuzmi sve datoteke",
|
||||
"Direct link" : "Izravna poveznica",
|
||||
|
|
@ -103,6 +104,18 @@
|
|||
"You received {share} to group {group} as a share by {user}" : "Primili ste {share} grupi {group} kao dijeljenje od {user}",
|
||||
"Accept" : "Prihvati",
|
||||
"Decline" : "Odbij",
|
||||
"Expiration date" : "Datum isteka",
|
||||
"Set a password" : "Postavi zaporku",
|
||||
"Password" : "Zaporka",
|
||||
"Share link" : "Dijeli poveznicu",
|
||||
"Copy to clipboard" : "Kopiraj u međuspremnik",
|
||||
"Link copied to clipboard" : "Poveznica je kopirana u međuspremnik",
|
||||
"Select" : "Odaberi",
|
||||
"Cancel" : "Odustani",
|
||||
"Continue" : "Nastavi",
|
||||
"Close" : "Zatvori",
|
||||
"Error creating the share: {errorMessage}" : "Pogreška pri stvaranju dijeljenja: {errorMessage}",
|
||||
"Error creating the share" : "Pogreška pri stvaranju dijeljenja",
|
||||
"Sharing" : "Dijeljenje",
|
||||
"Reset" : "Resetiraj",
|
||||
"Invalid path selected" : "Odabran nevažeći put",
|
||||
|
|
@ -128,18 +141,15 @@
|
|||
"Expiration date (enforced)" : "Datum isteka (provedeno)",
|
||||
"Enter a date" : "Unesi datum",
|
||||
"Create share" : "Stvori dijeljenje",
|
||||
"Cancel" : "Odustani",
|
||||
"Add another link" : "Dodaj drugu poveznicu",
|
||||
"Create a new share link" : "Stvori novu poveznicu dijeljenja",
|
||||
"{shareWith} by {initiator}" : "{shareWith} od {initiator}",
|
||||
"Shared via link by {initiator}" : "Dijeli {initiator} putem poveznice",
|
||||
"Mail share ({label})" : "Dijeljenje poštom ({label})",
|
||||
"Share link ({label})" : "Poveznica dijeljenja ({label})",
|
||||
"Share link" : "Dijeli poveznicu",
|
||||
"Error, please enter proper password and/or expiration date" : "Pogreška, unesite točnu zaporku i/ili datum isteka",
|
||||
"View only" : "Samo za gledanje",
|
||||
"Can edit" : "Uređivanje moguće",
|
||||
"File drop" : "Povlačenje datoteke",
|
||||
"No recommendations. Start typing." : "Nema preporuka. Započnite unos.",
|
||||
"Resharing is not allowed" : "Ponovno dijeljenje nije dopušteno",
|
||||
"Name or email …" : "Ime ili adresa e-pošte…",
|
||||
|
|
@ -157,10 +167,8 @@
|
|||
"Allow editing" : "Dopusti uređivanje",
|
||||
"Advanced settings" : "Napredne postavke",
|
||||
"Share label" : "oznaka za dijeljenje",
|
||||
"Password" : "Zaporka",
|
||||
"Video verification" : "Provjera videozapisa",
|
||||
"Set expiration date" : "Postavi datum isteka",
|
||||
"Expiration date" : "Datum isteka",
|
||||
"Hide download" : "Sakrij preuzimanje",
|
||||
"Note to recipient" : "Obavijest primatelju",
|
||||
"Enter a note for the share recipient" : "Unesite bilješku za primatelja dijeljenja",
|
||||
|
|
@ -179,8 +187,6 @@
|
|||
"Shared with you by {owner}" : "S vama podijelio {owner}",
|
||||
"Shared" : "Dijeljeno",
|
||||
"Link to a file" : "Poveži s datotekom",
|
||||
"Error creating the share: {errorMessage}" : "Pogreška pri stvaranju dijeljenja: {errorMessage}",
|
||||
"Error creating the share" : "Pogreška pri stvaranju dijeljenja",
|
||||
"Error updating the share: {errorMessage}" : "Pogreška pri ažuriranju dijeljenja: {errorMessage}",
|
||||
"Error updating the share" : "Pogreška pri ažuriranju dijeljenja",
|
||||
"Shared by" : "Podijeljeno od",
|
||||
|
|
@ -229,6 +235,7 @@
|
|||
"Upload" : "Otpremi",
|
||||
"Only works for users with access to this folder" : "Samo za korisnike koji smiju pristupiti ovoj mapi",
|
||||
"Only works for users with access to this file" : "Samo za korisnike koji smiju pristupiti ovoj datoteci",
|
||||
"File drop" : "Povlačenje datoteke",
|
||||
"Circle" : "Krug",
|
||||
"Update" : "Ažuriraj",
|
||||
"No other users with access found" : "Nije pronađen nijedan drugi korisnik s omogućenim pristupom",
|
||||
|
|
|
|||
|
|
@ -100,6 +100,7 @@ OC.L10N.register(
|
|||
"Share must at least have READ or CREATE permissions" : "A megosztásnak legalább OLVASÁSI és LÉTREHOZÁSI engedéllyel kell rendelkeznie",
|
||||
"Share must have READ permission if UPDATE or DELETE permission is set" : "A megosztásnak OLVASÁSI jogosultsággal kell rendelkeznie, ha a FRISSÍTÉSI vagy TÖRLÉSI jogosultság meg van adva",
|
||||
"\"Sending the password by Nextcloud Talk\" for sharing a file or folder failed because Nextcloud Talk is not enabled." : "A „Jelszó kiküldése a Nextcloud Beszélgetéssel” nem sikerült a fájlnál vagy mappánál, mert a Nextcloud Beszélgetés nem engedélyezett.",
|
||||
"Wrong password" : "Hibás jelszó",
|
||||
"shared by %s" : "megosztotta: %s",
|
||||
"Download all files" : "Összes fájl letöltése",
|
||||
"Direct link" : "Közvetlen hivatkozás",
|
||||
|
|
@ -112,6 +113,19 @@ OC.L10N.register(
|
|||
"You received {share} to group {group} as a share by {user}" : "A(z) {share} megosztást a(z) {group} csoportba kapta {user} felhasználótól.",
|
||||
"Accept" : "Elfogadás",
|
||||
"Decline" : "Elutasítás",
|
||||
"Expiration date" : "Lejárati dátum",
|
||||
"Set a password" : "Jelszó beállítása",
|
||||
"Password" : "Jelszó",
|
||||
"Share link" : "Megosztási hivatkozás",
|
||||
"Copy to clipboard" : "Másolás a vágólapra",
|
||||
"Send link via email" : "Hivatkozás küldése levélben",
|
||||
"Link copied to clipboard" : "Hivatkozás a vágólapra másolva",
|
||||
"Select" : "Kiválasztás",
|
||||
"Cancel" : "Mégse",
|
||||
"Continue" : "Folytatás",
|
||||
"Close" : "Bezárás",
|
||||
"Error creating the share: {errorMessage}" : "Hiba történt a megosztás létrehozása során: {errorMessage}",
|
||||
"Error creating the share" : "Megosztás létrehozása sikertelen",
|
||||
"Sharing" : "Megosztás",
|
||||
"Error while toggling options" : "Hiba a beállítások módosításakor",
|
||||
"Set default folder for accepted shares" : "Alapértelmezett mappa beállítása az elfogadott megosztásokhoz",
|
||||
|
|
@ -143,7 +157,6 @@ OC.L10N.register(
|
|||
"Expiration date (enforced)" : "Lejárati idő (megkövetelve)",
|
||||
"Enter a date" : "Adjon meg egy dátumot",
|
||||
"Create share" : "Megosztás létrehozása",
|
||||
"Cancel" : "Mégse",
|
||||
"Customize link" : "Hivatkozás testreszabása",
|
||||
"Add another link" : "További hivatkozás hozzáadása",
|
||||
"Create a new share link" : "Új megosztási hivatkozás létrehozása",
|
||||
|
|
@ -152,7 +165,6 @@ OC.L10N.register(
|
|||
"Mail share ({label})" : "E-mail megosztás ({label})",
|
||||
"Share link ({label})" : "Megosztási hivatkozás ({label})",
|
||||
"Share link ({index})" : "Megosztási hivatkozás ({index})",
|
||||
"Share link" : "Megosztási hivatkozás",
|
||||
"Actions for \"{title}\"" : "A(z) „{title}” műveletei",
|
||||
"Copy public link of \"{title}\" to clipboard" : "A(z) „{title}” nyilvános hivatkozás másolása a vágólapra",
|
||||
"Error, please enter proper password and/or expiration date" : "Hiba, írja be a megfelelő jelszót vagy lejárati dátumot",
|
||||
|
|
@ -160,7 +172,6 @@ OC.L10N.register(
|
|||
"Error while creating the share" : "Hiba a megosztás létrehozása során",
|
||||
"View only" : "Csak megtekintés",
|
||||
"Can edit" : "Szerkesztheti",
|
||||
"File drop" : "Fájllerakat",
|
||||
"Custom permissions" : "Egyéni jogosultságok",
|
||||
"Search for share recipients" : "Megosztás résztvevőinek keresése",
|
||||
"No recommendations. Start typing." : "Nincs javaslat. Kezdjen gépelni.",
|
||||
|
|
@ -183,12 +194,10 @@ OC.L10N.register(
|
|||
"Advanced settings" : "Speciális beállítások",
|
||||
"Share label" : "Megosztás címkéje",
|
||||
"Set password" : "Jelszó beállítása",
|
||||
"Password" : "Jelszó",
|
||||
"Password expires {passwordExpirationTime}" : "A jelszó lejárati ideje: {passwordExpirationTime}",
|
||||
"Password expired" : "A jelszó lejárt",
|
||||
"Video verification" : "Videós ellenőrzés",
|
||||
"Set expiration date" : "Lejárati idő beállítása",
|
||||
"Expiration date" : "Lejárati dátum",
|
||||
"Hide download" : "Letöltés elrejtése",
|
||||
"Allow download" : "Letöltés engedélyezése",
|
||||
"Note to recipient" : "Jegyzet a címzettnek",
|
||||
|
|
@ -216,8 +225,6 @@ OC.L10N.register(
|
|||
"Shared by {ownerDisplayName}" : "Megosztotta: {ownerDisplayName}",
|
||||
"Show sharing options" : "Megosztási beállítások megjelenítése",
|
||||
"Link to a file" : "Hivatkozás egy fájlhoz",
|
||||
"Error creating the share: {errorMessage}" : "Hiba történt a megosztás létrehozása során: {errorMessage}",
|
||||
"Error creating the share" : "Megosztás létrehozása sikertelen",
|
||||
"Error updating the share: {errorMessage}" : "Hiba történt a megosztás frissítése során: {errorMessage}",
|
||||
"Error updating the share" : "Hiba történt a megosztás frissítése során",
|
||||
"File \"{path}\" has been unshared" : "A(z) „{path}” fájl megosztása leállítva",
|
||||
|
|
@ -284,9 +291,9 @@ OC.L10N.register(
|
|||
"Bundled permissions" : "Összetartozó jogosultságok",
|
||||
"Only works for users with access to this folder" : "Csak azoknál a felhasználóknál működik, akiknek hozzáférésük van ehhez a mappához",
|
||||
"Only works for users with access to this file" : "Csak azoknál a felhasználóknál működik, akiknek hozzáférésük van ehhez a fájlhoz",
|
||||
"File drop" : "Fájllerakat",
|
||||
"Circle" : "Kör",
|
||||
"Update" : "Frissítés",
|
||||
"Share with " : "Megosztás vele:",
|
||||
"No other users with access found" : "Nincs más felhasználó, aki hozzáféréssel rendelkezik",
|
||||
"No entries found in this folder" : "Nincsenek bejegyzések ebben a mappában",
|
||||
"Name" : "Név",
|
||||
|
|
|
|||
|
|
@ -98,6 +98,7 @@
|
|||
"Share must at least have READ or CREATE permissions" : "A megosztásnak legalább OLVASÁSI és LÉTREHOZÁSI engedéllyel kell rendelkeznie",
|
||||
"Share must have READ permission if UPDATE or DELETE permission is set" : "A megosztásnak OLVASÁSI jogosultsággal kell rendelkeznie, ha a FRISSÍTÉSI vagy TÖRLÉSI jogosultság meg van adva",
|
||||
"\"Sending the password by Nextcloud Talk\" for sharing a file or folder failed because Nextcloud Talk is not enabled." : "A „Jelszó kiküldése a Nextcloud Beszélgetéssel” nem sikerült a fájlnál vagy mappánál, mert a Nextcloud Beszélgetés nem engedélyezett.",
|
||||
"Wrong password" : "Hibás jelszó",
|
||||
"shared by %s" : "megosztotta: %s",
|
||||
"Download all files" : "Összes fájl letöltése",
|
||||
"Direct link" : "Közvetlen hivatkozás",
|
||||
|
|
@ -110,6 +111,19 @@
|
|||
"You received {share} to group {group} as a share by {user}" : "A(z) {share} megosztást a(z) {group} csoportba kapta {user} felhasználótól.",
|
||||
"Accept" : "Elfogadás",
|
||||
"Decline" : "Elutasítás",
|
||||
"Expiration date" : "Lejárati dátum",
|
||||
"Set a password" : "Jelszó beállítása",
|
||||
"Password" : "Jelszó",
|
||||
"Share link" : "Megosztási hivatkozás",
|
||||
"Copy to clipboard" : "Másolás a vágólapra",
|
||||
"Send link via email" : "Hivatkozás küldése levélben",
|
||||
"Link copied to clipboard" : "Hivatkozás a vágólapra másolva",
|
||||
"Select" : "Kiválasztás",
|
||||
"Cancel" : "Mégse",
|
||||
"Continue" : "Folytatás",
|
||||
"Close" : "Bezárás",
|
||||
"Error creating the share: {errorMessage}" : "Hiba történt a megosztás létrehozása során: {errorMessage}",
|
||||
"Error creating the share" : "Megosztás létrehozása sikertelen",
|
||||
"Sharing" : "Megosztás",
|
||||
"Error while toggling options" : "Hiba a beállítások módosításakor",
|
||||
"Set default folder for accepted shares" : "Alapértelmezett mappa beállítása az elfogadott megosztásokhoz",
|
||||
|
|
@ -141,7 +155,6 @@
|
|||
"Expiration date (enforced)" : "Lejárati idő (megkövetelve)",
|
||||
"Enter a date" : "Adjon meg egy dátumot",
|
||||
"Create share" : "Megosztás létrehozása",
|
||||
"Cancel" : "Mégse",
|
||||
"Customize link" : "Hivatkozás testreszabása",
|
||||
"Add another link" : "További hivatkozás hozzáadása",
|
||||
"Create a new share link" : "Új megosztási hivatkozás létrehozása",
|
||||
|
|
@ -150,7 +163,6 @@
|
|||
"Mail share ({label})" : "E-mail megosztás ({label})",
|
||||
"Share link ({label})" : "Megosztási hivatkozás ({label})",
|
||||
"Share link ({index})" : "Megosztási hivatkozás ({index})",
|
||||
"Share link" : "Megosztási hivatkozás",
|
||||
"Actions for \"{title}\"" : "A(z) „{title}” műveletei",
|
||||
"Copy public link of \"{title}\" to clipboard" : "A(z) „{title}” nyilvános hivatkozás másolása a vágólapra",
|
||||
"Error, please enter proper password and/or expiration date" : "Hiba, írja be a megfelelő jelszót vagy lejárati dátumot",
|
||||
|
|
@ -158,7 +170,6 @@
|
|||
"Error while creating the share" : "Hiba a megosztás létrehozása során",
|
||||
"View only" : "Csak megtekintés",
|
||||
"Can edit" : "Szerkesztheti",
|
||||
"File drop" : "Fájllerakat",
|
||||
"Custom permissions" : "Egyéni jogosultságok",
|
||||
"Search for share recipients" : "Megosztás résztvevőinek keresése",
|
||||
"No recommendations. Start typing." : "Nincs javaslat. Kezdjen gépelni.",
|
||||
|
|
@ -181,12 +192,10 @@
|
|||
"Advanced settings" : "Speciális beállítások",
|
||||
"Share label" : "Megosztás címkéje",
|
||||
"Set password" : "Jelszó beállítása",
|
||||
"Password" : "Jelszó",
|
||||
"Password expires {passwordExpirationTime}" : "A jelszó lejárati ideje: {passwordExpirationTime}",
|
||||
"Password expired" : "A jelszó lejárt",
|
||||
"Video verification" : "Videós ellenőrzés",
|
||||
"Set expiration date" : "Lejárati idő beállítása",
|
||||
"Expiration date" : "Lejárati dátum",
|
||||
"Hide download" : "Letöltés elrejtése",
|
||||
"Allow download" : "Letöltés engedélyezése",
|
||||
"Note to recipient" : "Jegyzet a címzettnek",
|
||||
|
|
@ -214,8 +223,6 @@
|
|||
"Shared by {ownerDisplayName}" : "Megosztotta: {ownerDisplayName}",
|
||||
"Show sharing options" : "Megosztási beállítások megjelenítése",
|
||||
"Link to a file" : "Hivatkozás egy fájlhoz",
|
||||
"Error creating the share: {errorMessage}" : "Hiba történt a megosztás létrehozása során: {errorMessage}",
|
||||
"Error creating the share" : "Megosztás létrehozása sikertelen",
|
||||
"Error updating the share: {errorMessage}" : "Hiba történt a megosztás frissítése során: {errorMessage}",
|
||||
"Error updating the share" : "Hiba történt a megosztás frissítése során",
|
||||
"File \"{path}\" has been unshared" : "A(z) „{path}” fájl megosztása leállítva",
|
||||
|
|
@ -282,9 +289,9 @@
|
|||
"Bundled permissions" : "Összetartozó jogosultságok",
|
||||
"Only works for users with access to this folder" : "Csak azoknál a felhasználóknál működik, akiknek hozzáférésük van ehhez a mappához",
|
||||
"Only works for users with access to this file" : "Csak azoknál a felhasználóknál működik, akiknek hozzáférésük van ehhez a fájlhoz",
|
||||
"File drop" : "Fájllerakat",
|
||||
"Circle" : "Kör",
|
||||
"Update" : "Frissítés",
|
||||
"Share with " : "Megosztás vele:",
|
||||
"No other users with access found" : "Nincs más felhasználó, aki hozzáféréssel rendelkezik",
|
||||
"No entries found in this folder" : "Nincsenek bejegyzések ebben a mappában",
|
||||
"Name" : "Név",
|
||||
|
|
|
|||
|
|
@ -100,6 +100,7 @@ OC.L10N.register(
|
|||
"Share must at least have READ or CREATE permissions" : "Sameign verður að hafa að minnsta kosti LESA eða ÚTBÚA heimildir",
|
||||
"Share must have READ permission if UPDATE or DELETE permission is set" : "Sameign verður að hafa LESA heimild ef UPPFÆRA eða EYÐA heimildir eru veittar",
|
||||
"\"Sending the password by Nextcloud Talk\" for sharing a file or folder failed because Nextcloud Talk is not enabled." : "Deiling með því að senda lykilorð með Nextcloud Talk til að deila skrá eða möppu mistókst því að Nextcloud Talk er ekki virkt.",
|
||||
"Wrong password" : "Rangt lykilorð",
|
||||
"shared by %s" : "Deilt af %s",
|
||||
"Download all files" : "Sækja allar skrár",
|
||||
"Direct link" : "Beinn tengill",
|
||||
|
|
@ -112,6 +113,19 @@ OC.L10N.register(
|
|||
"You received {share} to group {group} as a share by {user}" : "Þú tókst við {share} fyrir hópinn {group} sem sameign frá {user}",
|
||||
"Accept" : "Samþykkja",
|
||||
"Decline" : "Hafna",
|
||||
"Expiration date" : "Gildir til",
|
||||
"Set a password" : "Setja lykilorð",
|
||||
"Password" : "Lykilorð",
|
||||
"Share link" : "Tengill á sameign",
|
||||
"Copy to clipboard" : "Afrita á klippispjald",
|
||||
"Send link via email" : "Senda tengil með tölvupósti",
|
||||
"Link copied to clipboard" : "Tengill afritaður á klippispjald",
|
||||
"Select" : "Velja",
|
||||
"Cancel" : "Hætta við",
|
||||
"Continue" : "Halda áfram",
|
||||
"Close" : "Loka",
|
||||
"Error creating the share: {errorMessage}" : "Villa kom upp við að búa til sameignina: {errorMessage}",
|
||||
"Error creating the share" : "Villa við að búa til sameignina",
|
||||
"Sharing" : "Deiling",
|
||||
"Error while toggling options" : "Villa við að víxla valkostum",
|
||||
"Set default folder for accepted shares" : "Stilltu sjáfgefna möppu fyrir samþykktar sameignir",
|
||||
|
|
@ -143,7 +157,6 @@ OC.L10N.register(
|
|||
"Expiration date (enforced)" : "Gildistími (nauðsynlegur)",
|
||||
"Enter a date" : "Settu inn dagsetningu",
|
||||
"Create share" : "Búa til sameign",
|
||||
"Cancel" : "Hætta við",
|
||||
"Customize link" : "Sérsníða tengil",
|
||||
"Add another link" : "Bæta við öðrum tengli",
|
||||
"Create a new share link" : "Búa til nýjan tengil á sameign",
|
||||
|
|
@ -152,7 +165,6 @@ OC.L10N.register(
|
|||
"Mail share ({label})" : "Deilt með tölvupósti ({label})",
|
||||
"Share link ({label})" : "Tengill á sameign ({label})",
|
||||
"Share link ({index})" : "Tengill á sameign ({index})",
|
||||
"Share link" : "Tengill á sameign",
|
||||
"Actions for \"{title}\"" : "Aðgerðir fyrir \"{title}\"",
|
||||
"Copy public link of \"{title}\" to clipboard" : "Afrita opinberan tengil \"{title}\" á klippispjald",
|
||||
"Error, please enter proper password and/or expiration date" : "Villa, settu inn alvöru lykilorð og/eða gildisdagsetningu",
|
||||
|
|
@ -160,7 +172,6 @@ OC.L10N.register(
|
|||
"Error while creating the share" : "Villa kom upp við að búa til sameignina",
|
||||
"View only" : "Einungis skoða",
|
||||
"Can edit" : "Getur breytt",
|
||||
"File drop" : "Slepping skráa",
|
||||
"Custom permissions" : "Sérsniðnar heimildir",
|
||||
"Search for share recipients" : "Leita að viðtakendum sameignar",
|
||||
"No recommendations. Start typing." : "Engar tillögur. Byrjaðu að skrifa.",
|
||||
|
|
@ -183,12 +194,10 @@ OC.L10N.register(
|
|||
"Advanced settings" : "Ítarlegri valkostir",
|
||||
"Share label" : "Merking á sameign",
|
||||
"Set password" : "Stilltu lykilorð",
|
||||
"Password" : "Lykilorð",
|
||||
"Password expires {passwordExpirationTime}" : "Lykilorð rennur út {passwordExpirationTime}",
|
||||
"Password expired" : "Lykilorð er útrunnið",
|
||||
"Video verification" : "Sannvottun í myndskeiði",
|
||||
"Set expiration date" : "Setja gildistíma",
|
||||
"Expiration date" : "Gildir til",
|
||||
"Hide download" : "Fela niðurhal",
|
||||
"Allow download" : "Leyfa niðurhal",
|
||||
"Note to recipient" : "Minnispunktur til viðtakanda",
|
||||
|
|
@ -216,8 +225,6 @@ OC.L10N.register(
|
|||
"Shared by {ownerDisplayName}" : "Deilt af {ownerDisplayName}",
|
||||
"Show sharing options" : "Birta valkostir deilingar",
|
||||
"Link to a file" : "Tengill í skrá",
|
||||
"Error creating the share: {errorMessage}" : "Villa kom upp við að búa til sameignina: {errorMessage}",
|
||||
"Error creating the share" : "Villa við að búa til sameignina",
|
||||
"Error updating the share: {errorMessage}" : "Villa kom upp við að uppfæra sameignina: {errorMessage}",
|
||||
"Error updating the share" : "Villa við að uppfæra sameignina",
|
||||
"File \"{path}\" has been unshared" : "Skráin \"{path}\" hefur verið tekin úr deilingu",
|
||||
|
|
@ -284,9 +291,9 @@ OC.L10N.register(
|
|||
"Bundled permissions" : "Meðfylgjandi heimildir",
|
||||
"Only works for users with access to this folder" : "Virkar bara fyrir notendur sem hafa aðgang að þessari möppu",
|
||||
"Only works for users with access to this file" : "Virkar bara fyrir notendur sem hafa aðgang að þessari skrá",
|
||||
"File drop" : "Slepping skráa",
|
||||
"Circle" : "Hringur",
|
||||
"Update" : "Uppfæra",
|
||||
"Share with " : "Deila með ",
|
||||
"No other users with access found" : "Engir aðrir notendur með aðgang fundust",
|
||||
"No entries found in this folder" : "Engar skrár fundust í þessari möppu",
|
||||
"Name" : "Nafn",
|
||||
|
|
|
|||
|
|
@ -98,6 +98,7 @@
|
|||
"Share must at least have READ or CREATE permissions" : "Sameign verður að hafa að minnsta kosti LESA eða ÚTBÚA heimildir",
|
||||
"Share must have READ permission if UPDATE or DELETE permission is set" : "Sameign verður að hafa LESA heimild ef UPPFÆRA eða EYÐA heimildir eru veittar",
|
||||
"\"Sending the password by Nextcloud Talk\" for sharing a file or folder failed because Nextcloud Talk is not enabled." : "Deiling með því að senda lykilorð með Nextcloud Talk til að deila skrá eða möppu mistókst því að Nextcloud Talk er ekki virkt.",
|
||||
"Wrong password" : "Rangt lykilorð",
|
||||
"shared by %s" : "Deilt af %s",
|
||||
"Download all files" : "Sækja allar skrár",
|
||||
"Direct link" : "Beinn tengill",
|
||||
|
|
@ -110,6 +111,19 @@
|
|||
"You received {share} to group {group} as a share by {user}" : "Þú tókst við {share} fyrir hópinn {group} sem sameign frá {user}",
|
||||
"Accept" : "Samþykkja",
|
||||
"Decline" : "Hafna",
|
||||
"Expiration date" : "Gildir til",
|
||||
"Set a password" : "Setja lykilorð",
|
||||
"Password" : "Lykilorð",
|
||||
"Share link" : "Tengill á sameign",
|
||||
"Copy to clipboard" : "Afrita á klippispjald",
|
||||
"Send link via email" : "Senda tengil með tölvupósti",
|
||||
"Link copied to clipboard" : "Tengill afritaður á klippispjald",
|
||||
"Select" : "Velja",
|
||||
"Cancel" : "Hætta við",
|
||||
"Continue" : "Halda áfram",
|
||||
"Close" : "Loka",
|
||||
"Error creating the share: {errorMessage}" : "Villa kom upp við að búa til sameignina: {errorMessage}",
|
||||
"Error creating the share" : "Villa við að búa til sameignina",
|
||||
"Sharing" : "Deiling",
|
||||
"Error while toggling options" : "Villa við að víxla valkostum",
|
||||
"Set default folder for accepted shares" : "Stilltu sjáfgefna möppu fyrir samþykktar sameignir",
|
||||
|
|
@ -141,7 +155,6 @@
|
|||
"Expiration date (enforced)" : "Gildistími (nauðsynlegur)",
|
||||
"Enter a date" : "Settu inn dagsetningu",
|
||||
"Create share" : "Búa til sameign",
|
||||
"Cancel" : "Hætta við",
|
||||
"Customize link" : "Sérsníða tengil",
|
||||
"Add another link" : "Bæta við öðrum tengli",
|
||||
"Create a new share link" : "Búa til nýjan tengil á sameign",
|
||||
|
|
@ -150,7 +163,6 @@
|
|||
"Mail share ({label})" : "Deilt með tölvupósti ({label})",
|
||||
"Share link ({label})" : "Tengill á sameign ({label})",
|
||||
"Share link ({index})" : "Tengill á sameign ({index})",
|
||||
"Share link" : "Tengill á sameign",
|
||||
"Actions for \"{title}\"" : "Aðgerðir fyrir \"{title}\"",
|
||||
"Copy public link of \"{title}\" to clipboard" : "Afrita opinberan tengil \"{title}\" á klippispjald",
|
||||
"Error, please enter proper password and/or expiration date" : "Villa, settu inn alvöru lykilorð og/eða gildisdagsetningu",
|
||||
|
|
@ -158,7 +170,6 @@
|
|||
"Error while creating the share" : "Villa kom upp við að búa til sameignina",
|
||||
"View only" : "Einungis skoða",
|
||||
"Can edit" : "Getur breytt",
|
||||
"File drop" : "Slepping skráa",
|
||||
"Custom permissions" : "Sérsniðnar heimildir",
|
||||
"Search for share recipients" : "Leita að viðtakendum sameignar",
|
||||
"No recommendations. Start typing." : "Engar tillögur. Byrjaðu að skrifa.",
|
||||
|
|
@ -181,12 +192,10 @@
|
|||
"Advanced settings" : "Ítarlegri valkostir",
|
||||
"Share label" : "Merking á sameign",
|
||||
"Set password" : "Stilltu lykilorð",
|
||||
"Password" : "Lykilorð",
|
||||
"Password expires {passwordExpirationTime}" : "Lykilorð rennur út {passwordExpirationTime}",
|
||||
"Password expired" : "Lykilorð er útrunnið",
|
||||
"Video verification" : "Sannvottun í myndskeiði",
|
||||
"Set expiration date" : "Setja gildistíma",
|
||||
"Expiration date" : "Gildir til",
|
||||
"Hide download" : "Fela niðurhal",
|
||||
"Allow download" : "Leyfa niðurhal",
|
||||
"Note to recipient" : "Minnispunktur til viðtakanda",
|
||||
|
|
@ -214,8 +223,6 @@
|
|||
"Shared by {ownerDisplayName}" : "Deilt af {ownerDisplayName}",
|
||||
"Show sharing options" : "Birta valkostir deilingar",
|
||||
"Link to a file" : "Tengill í skrá",
|
||||
"Error creating the share: {errorMessage}" : "Villa kom upp við að búa til sameignina: {errorMessage}",
|
||||
"Error creating the share" : "Villa við að búa til sameignina",
|
||||
"Error updating the share: {errorMessage}" : "Villa kom upp við að uppfæra sameignina: {errorMessage}",
|
||||
"Error updating the share" : "Villa við að uppfæra sameignina",
|
||||
"File \"{path}\" has been unshared" : "Skráin \"{path}\" hefur verið tekin úr deilingu",
|
||||
|
|
@ -282,9 +289,9 @@
|
|||
"Bundled permissions" : "Meðfylgjandi heimildir",
|
||||
"Only works for users with access to this folder" : "Virkar bara fyrir notendur sem hafa aðgang að þessari möppu",
|
||||
"Only works for users with access to this file" : "Virkar bara fyrir notendur sem hafa aðgang að þessari skrá",
|
||||
"File drop" : "Slepping skráa",
|
||||
"Circle" : "Hringur",
|
||||
"Update" : "Uppfæra",
|
||||
"Share with " : "Deila með ",
|
||||
"No other users with access found" : "Engir aðrir notendur með aðgang fundust",
|
||||
"No entries found in this folder" : "Engar skrár fundust í þessari möppu",
|
||||
"Name" : "Nafn",
|
||||
|
|
|
|||
|
|
@ -102,6 +102,7 @@ OC.L10N.register(
|
|||
"Share must at least have READ or CREATE permissions" : "La condivisione deve disporre almeno delle autorizzazioni READ o CREATE",
|
||||
"Share must have READ permission if UPDATE or DELETE permission is set" : "La condivisione deve disporre dell'autorizzazione READ se l'autorizzazione è impostata su UPDATE o DELETE.",
|
||||
"\"Sending the password by Nextcloud Talk\" for sharing a file or folder failed because Nextcloud Talk is not enabled." : "\"Invio della password da Nextcloud Talk\" per condividere un file o una cartella non è riuscito poiché Nextcloud Talk non è attivato.",
|
||||
"Wrong password" : "Password errata",
|
||||
"shared by %s" : "condiviso da %s",
|
||||
"Download all files" : "Scarica tutti i file",
|
||||
"Direct link" : "Collegamento diretto",
|
||||
|
|
@ -115,6 +116,19 @@ OC.L10N.register(
|
|||
"Accept" : "Accetta",
|
||||
"Decline" : "Rifiuta",
|
||||
"This application enables people to share files within Nextcloud. If enabled, the admin can choose which groups can share files. The applicable people can then share files and folders with other accounts and groups within Nextcloud. In addition, if the admin enables the share link feature, an external link can be used to share files with other people outside of Nextcloud. Admins can also enforce passwords, expirations dates, and enable server to server sharing via share links, as well as sharing from mobile devices.\nTurning the feature off removes shared files and folders on the server for all share recipients, and also on the sync clients and mobile apps. More information is available in the Nextcloud Documentation." : "Questa applicazione consente agli utenti di condividere file all'interno di Nextcloud. Se abilitata, l'amministratore può scegliere quali gruppi possono condividere file. Gli utenti ai quali si applica possono quindi condividere file e cartelle con altri utenti e gruppi all'interno di Nextcloud. In aggiunta, se l'amministratore abilita la funzionalità dei collegamenti di condivisione, un collegamento esterno può essere utilizzato per condividere file con altri utenti all'esterno di Nextcloud. Gli amministratori possono inoltre forzare le password, le date di scadenza e abilitare la condivisione tra server tramite collegamenti di condivisione, così come la condivisione da dispositivi mobili.\nLa disattivazione della funzionalità rimuove i file e le cartelle condivisi sul server per tutti i destinatari della condivisione, e anche sui client di sincronizzazione e sulle applicazioni mobili. Altre informazioni sono disponibili nella documentazione di Nextcloud.",
|
||||
"Expiration date" : "Data di scadenza",
|
||||
"Set a password" : "Imposta una password",
|
||||
"Password" : "Password",
|
||||
"Share link" : "Condividi collegamento",
|
||||
"Copy to clipboard" : "Copia negli appunti",
|
||||
"Send link via email" : "Invia collegamento tramite email",
|
||||
"Link copied to clipboard" : "Collegamento copiato negli appunti",
|
||||
"Select" : "Seleziona",
|
||||
"Cancel" : "Annulla",
|
||||
"Continue" : "Continua",
|
||||
"Close" : "Chiudi",
|
||||
"Error creating the share: {errorMessage}" : "Errore durante la creazione della condivisione: {errorMessage}",
|
||||
"Error creating the share" : "Errore durante la creazione della condivisione",
|
||||
"Sharing" : "Condivisione",
|
||||
"Accept shares from other accounts and groups by default" : "Accetta condivisioni da altri account e gruppi per impostazione predefinita",
|
||||
"Error while toggling options" : "Errore durante il cambio delle opzioni",
|
||||
|
|
@ -149,7 +163,6 @@ OC.L10N.register(
|
|||
"Expiration date (enforced)" : "Data di scadenza (applicata)",
|
||||
"Enter a date" : "Digita una data",
|
||||
"Create share" : "Crea condivisione",
|
||||
"Cancel" : "Annulla",
|
||||
"Customize link" : "Personalizza il collegamento",
|
||||
"Generate QR code" : "Genera codice QR",
|
||||
"Add another link" : "Aggiungi un altro collegamento",
|
||||
|
|
@ -159,7 +172,6 @@ OC.L10N.register(
|
|||
"Mail share ({label})" : "Condivisione email ({label})",
|
||||
"Share link ({label})" : "Condividi collegamento ({label})",
|
||||
"Share link ({index})" : "Condividi collegamento ({index})",
|
||||
"Share link" : "Condividi collegamento",
|
||||
"Actions for \"{title}\"" : "Azioni per \"{title}\"",
|
||||
"Copy public link of \"{title}\" to clipboard" : "Copia il collegamento pubblico di \"{title}\" negli appunti",
|
||||
"Error, please enter proper password and/or expiration date" : "Errore, digita la password corretta e/o la data di scadenza",
|
||||
|
|
@ -168,7 +180,6 @@ OC.L10N.register(
|
|||
"Quick share options, the current selected is \"{selectedOption}\"" : "Opzioni di condivisione rapida, l'attuale selezionata è \"{selectedOption}\"",
|
||||
"View only" : "Sola lettura",
|
||||
"Can edit" : "Può modificare",
|
||||
"File drop" : "Elimina file",
|
||||
"Custom permissions" : "Autorizzazioni personalizzate",
|
||||
"Search for share recipients" : "Cerca i destinatari della condivisione",
|
||||
"No recommendations. Start typing." : "Nessun consiglio. Inizia a digitare.",
|
||||
|
|
@ -192,12 +203,10 @@ OC.L10N.register(
|
|||
"Advanced settings" : "Impostazioni avanzate",
|
||||
"Share label" : "Condividi etichetta",
|
||||
"Set password" : "Imposta password",
|
||||
"Password" : "Password",
|
||||
"Password expires {passwordExpirationTime}" : "Scadenza password {passwordExpirationTime}",
|
||||
"Password expired" : "Password scaduta",
|
||||
"Video verification" : "Verifica video",
|
||||
"Set expiration date" : "Imposta data di scadenza",
|
||||
"Expiration date" : "Data di scadenza",
|
||||
"Hide download" : "Nascondi scaricamento",
|
||||
"Allow download" : "Consenti scaricamento",
|
||||
"Note to recipient" : "Nota al destinatario",
|
||||
|
|
@ -234,8 +243,6 @@ OC.L10N.register(
|
|||
"Shared by {ownerDisplayName}" : "Condiviso da {ownerDisplayName}",
|
||||
"Show sharing options" : "Mostra le opzioni di condivisione",
|
||||
"Link to a file" : "Collega a un file",
|
||||
"Error creating the share: {errorMessage}" : "Errore durante la creazione della condivisione: {errorMessage}",
|
||||
"Error creating the share" : "Errore durante la creazione della condivisione",
|
||||
"Error updating the share: {errorMessage}" : "Errore durante l'aggiornamento della condivisione: {errorMessage}",
|
||||
"Error updating the share" : "Errore durante l'aggiornamento della condivisione",
|
||||
"File \"{path}\" has been unshared" : "La condivisione del file \"{path}\" è stata rimossa",
|
||||
|
|
@ -302,9 +309,9 @@ OC.L10N.register(
|
|||
"Bundled permissions" : "Permessi raggruppati",
|
||||
"Only works for users with access to this folder" : "Funziona solo per gli utenti con accesso a questa cartella",
|
||||
"Only works for users with access to this file" : "Funziona solo per gli utenti con accesso a questo file",
|
||||
"File drop" : "Elimina file",
|
||||
"Circle" : "Cerchia",
|
||||
"Update" : "Aggiorna",
|
||||
"Share with " : "Condividi con",
|
||||
"No other users with access found" : "Nessun altro utente con accesso trovato",
|
||||
"No entries found in this folder" : "Nessuna voce trovata in questa cartella",
|
||||
"Name" : "Nome",
|
||||
|
|
|
|||
|
|
@ -100,6 +100,7 @@
|
|||
"Share must at least have READ or CREATE permissions" : "La condivisione deve disporre almeno delle autorizzazioni READ o CREATE",
|
||||
"Share must have READ permission if UPDATE or DELETE permission is set" : "La condivisione deve disporre dell'autorizzazione READ se l'autorizzazione è impostata su UPDATE o DELETE.",
|
||||
"\"Sending the password by Nextcloud Talk\" for sharing a file or folder failed because Nextcloud Talk is not enabled." : "\"Invio della password da Nextcloud Talk\" per condividere un file o una cartella non è riuscito poiché Nextcloud Talk non è attivato.",
|
||||
"Wrong password" : "Password errata",
|
||||
"shared by %s" : "condiviso da %s",
|
||||
"Download all files" : "Scarica tutti i file",
|
||||
"Direct link" : "Collegamento diretto",
|
||||
|
|
@ -113,6 +114,19 @@
|
|||
"Accept" : "Accetta",
|
||||
"Decline" : "Rifiuta",
|
||||
"This application enables people to share files within Nextcloud. If enabled, the admin can choose which groups can share files. The applicable people can then share files and folders with other accounts and groups within Nextcloud. In addition, if the admin enables the share link feature, an external link can be used to share files with other people outside of Nextcloud. Admins can also enforce passwords, expirations dates, and enable server to server sharing via share links, as well as sharing from mobile devices.\nTurning the feature off removes shared files and folders on the server for all share recipients, and also on the sync clients and mobile apps. More information is available in the Nextcloud Documentation." : "Questa applicazione consente agli utenti di condividere file all'interno di Nextcloud. Se abilitata, l'amministratore può scegliere quali gruppi possono condividere file. Gli utenti ai quali si applica possono quindi condividere file e cartelle con altri utenti e gruppi all'interno di Nextcloud. In aggiunta, se l'amministratore abilita la funzionalità dei collegamenti di condivisione, un collegamento esterno può essere utilizzato per condividere file con altri utenti all'esterno di Nextcloud. Gli amministratori possono inoltre forzare le password, le date di scadenza e abilitare la condivisione tra server tramite collegamenti di condivisione, così come la condivisione da dispositivi mobili.\nLa disattivazione della funzionalità rimuove i file e le cartelle condivisi sul server per tutti i destinatari della condivisione, e anche sui client di sincronizzazione e sulle applicazioni mobili. Altre informazioni sono disponibili nella documentazione di Nextcloud.",
|
||||
"Expiration date" : "Data di scadenza",
|
||||
"Set a password" : "Imposta una password",
|
||||
"Password" : "Password",
|
||||
"Share link" : "Condividi collegamento",
|
||||
"Copy to clipboard" : "Copia negli appunti",
|
||||
"Send link via email" : "Invia collegamento tramite email",
|
||||
"Link copied to clipboard" : "Collegamento copiato negli appunti",
|
||||
"Select" : "Seleziona",
|
||||
"Cancel" : "Annulla",
|
||||
"Continue" : "Continua",
|
||||
"Close" : "Chiudi",
|
||||
"Error creating the share: {errorMessage}" : "Errore durante la creazione della condivisione: {errorMessage}",
|
||||
"Error creating the share" : "Errore durante la creazione della condivisione",
|
||||
"Sharing" : "Condivisione",
|
||||
"Accept shares from other accounts and groups by default" : "Accetta condivisioni da altri account e gruppi per impostazione predefinita",
|
||||
"Error while toggling options" : "Errore durante il cambio delle opzioni",
|
||||
|
|
@ -147,7 +161,6 @@
|
|||
"Expiration date (enforced)" : "Data di scadenza (applicata)",
|
||||
"Enter a date" : "Digita una data",
|
||||
"Create share" : "Crea condivisione",
|
||||
"Cancel" : "Annulla",
|
||||
"Customize link" : "Personalizza il collegamento",
|
||||
"Generate QR code" : "Genera codice QR",
|
||||
"Add another link" : "Aggiungi un altro collegamento",
|
||||
|
|
@ -157,7 +170,6 @@
|
|||
"Mail share ({label})" : "Condivisione email ({label})",
|
||||
"Share link ({label})" : "Condividi collegamento ({label})",
|
||||
"Share link ({index})" : "Condividi collegamento ({index})",
|
||||
"Share link" : "Condividi collegamento",
|
||||
"Actions for \"{title}\"" : "Azioni per \"{title}\"",
|
||||
"Copy public link of \"{title}\" to clipboard" : "Copia il collegamento pubblico di \"{title}\" negli appunti",
|
||||
"Error, please enter proper password and/or expiration date" : "Errore, digita la password corretta e/o la data di scadenza",
|
||||
|
|
@ -166,7 +178,6 @@
|
|||
"Quick share options, the current selected is \"{selectedOption}\"" : "Opzioni di condivisione rapida, l'attuale selezionata è \"{selectedOption}\"",
|
||||
"View only" : "Sola lettura",
|
||||
"Can edit" : "Può modificare",
|
||||
"File drop" : "Elimina file",
|
||||
"Custom permissions" : "Autorizzazioni personalizzate",
|
||||
"Search for share recipients" : "Cerca i destinatari della condivisione",
|
||||
"No recommendations. Start typing." : "Nessun consiglio. Inizia a digitare.",
|
||||
|
|
@ -190,12 +201,10 @@
|
|||
"Advanced settings" : "Impostazioni avanzate",
|
||||
"Share label" : "Condividi etichetta",
|
||||
"Set password" : "Imposta password",
|
||||
"Password" : "Password",
|
||||
"Password expires {passwordExpirationTime}" : "Scadenza password {passwordExpirationTime}",
|
||||
"Password expired" : "Password scaduta",
|
||||
"Video verification" : "Verifica video",
|
||||
"Set expiration date" : "Imposta data di scadenza",
|
||||
"Expiration date" : "Data di scadenza",
|
||||
"Hide download" : "Nascondi scaricamento",
|
||||
"Allow download" : "Consenti scaricamento",
|
||||
"Note to recipient" : "Nota al destinatario",
|
||||
|
|
@ -232,8 +241,6 @@
|
|||
"Shared by {ownerDisplayName}" : "Condiviso da {ownerDisplayName}",
|
||||
"Show sharing options" : "Mostra le opzioni di condivisione",
|
||||
"Link to a file" : "Collega a un file",
|
||||
"Error creating the share: {errorMessage}" : "Errore durante la creazione della condivisione: {errorMessage}",
|
||||
"Error creating the share" : "Errore durante la creazione della condivisione",
|
||||
"Error updating the share: {errorMessage}" : "Errore durante l'aggiornamento della condivisione: {errorMessage}",
|
||||
"Error updating the share" : "Errore durante l'aggiornamento della condivisione",
|
||||
"File \"{path}\" has been unshared" : "La condivisione del file \"{path}\" è stata rimossa",
|
||||
|
|
@ -300,9 +307,9 @@
|
|||
"Bundled permissions" : "Permessi raggruppati",
|
||||
"Only works for users with access to this folder" : "Funziona solo per gli utenti con accesso a questa cartella",
|
||||
"Only works for users with access to this file" : "Funziona solo per gli utenti con accesso a questo file",
|
||||
"File drop" : "Elimina file",
|
||||
"Circle" : "Cerchia",
|
||||
"Update" : "Aggiorna",
|
||||
"Share with " : "Condividi con",
|
||||
"No other users with access found" : "Nessun altro utente con accesso trovato",
|
||||
"No entries found in this folder" : "Nessuna voce trovata in questa cartella",
|
||||
"Name" : "Nome",
|
||||
|
|
|
|||
|
|
@ -102,6 +102,7 @@ OC.L10N.register(
|
|||
"Share must at least have READ or CREATE permissions" : "共有には少なくとも 読み込み または 作成の権限が必要です",
|
||||
"Share must have READ permission if UPDATE or DELETE permission is set" : "更新 または 削除権限が設定されている場合、共有者は 読み込み権限を持っている必要があります。",
|
||||
"\"Sending the password by Nextcloud Talk\" for sharing a file or folder failed because Nextcloud Talk is not enabled." : "Nextcloud Talkが有効になっていないため、ファイルまたはフォルダーを共有するための「NextcloudTalkによるパスワードの送信」ができませんでした。",
|
||||
"Wrong password" : "パスワードが間違っています",
|
||||
"shared by %s" : "%s が共有",
|
||||
"Download all files" : "すべてのファイルをダウンロード",
|
||||
"Direct link" : "リンク",
|
||||
|
|
@ -115,6 +116,19 @@ OC.L10N.register(
|
|||
"Accept" : "承諾",
|
||||
"Decline" : "拒否",
|
||||
"This application enables people to share files within Nextcloud. If enabled, the admin can choose which groups can share files. The applicable people can then share files and folders with other accounts and groups within Nextcloud. In addition, if the admin enables the share link feature, an external link can be used to share files with other people outside of Nextcloud. Admins can also enforce passwords, expirations dates, and enable server to server sharing via share links, as well as sharing from mobile devices.\nTurning the feature off removes shared files and folders on the server for all share recipients, and also on the sync clients and mobile apps. More information is available in the Nextcloud Documentation." : "このアプリケーションを使うと、Nextcloud 内でファイルを共有することができます。 有効にすると、管理者はファイルを共有できるグループを選択できます。 該当する人々は、Nextcloud 内の他のアカウントやグループとファイルやフォルダを共有できます。 さらに、管理者が共有リンク機能を有効にすると、外部リンクを使用してNextcloud 外の他の人々とファイルを共有することができます。 管理者は、パスワード、有効期限の日付を設定し、共有リンクを介したサーバ間の共有やモバイルデバイスからの共有を可能にすることもできます。\nこの機能をオフにすると、サーバ上のすべての共有受信者の共有ファイルとフォルダが削除され、 同期クライアントやモバイルアプリ上でも削除されます。詳細は Nextcloud ドキュメントをご覧ください。",
|
||||
"Expiration date" : "有効期限",
|
||||
"Set a password" : "パスワードを設定",
|
||||
"Password" : "パスワード",
|
||||
"Share link" : "URLで共有",
|
||||
"Copy to clipboard" : "クリップボードにコピー",
|
||||
"Send link via email" : "メールでリンクを送信",
|
||||
"Link copied to clipboard" : "クリップボードにリンクをコピーしました",
|
||||
"Select" : "選択",
|
||||
"Cancel" : "キャンセル",
|
||||
"Continue" : "続ける",
|
||||
"Close" : "閉じる",
|
||||
"Error creating the share: {errorMessage}" : "共有の作成中にエラーが発生しました: {errorMessage}",
|
||||
"Error creating the share" : "共有の作成中にエラーが発生しました",
|
||||
"Sharing" : "共有",
|
||||
"Accept shares from other accounts and groups by default" : "他のアカウントやグループからの共有をデフォルトで受け入れる",
|
||||
"Error while toggling options" : "オプションの切り替え中にエラーが発生しました",
|
||||
|
|
@ -149,7 +163,6 @@ OC.L10N.register(
|
|||
"Expiration date (enforced)" : "有効期限(強制)",
|
||||
"Enter a date" : "日付を入力してください",
|
||||
"Create share" : "共有を作成",
|
||||
"Cancel" : "キャンセル",
|
||||
"Customize link" : "共有のカスタマイズ",
|
||||
"Generate QR code" : "QRコードを生成",
|
||||
"Add another link" : "別のリンクを追加",
|
||||
|
|
@ -159,7 +172,6 @@ OC.L10N.register(
|
|||
"Mail share ({label})" : "メール共有 ({label})",
|
||||
"Share link ({label})" : "リンク共有 ({label})",
|
||||
"Share link ({index})" : "リンク共有 ({index})",
|
||||
"Share link" : "URLで共有",
|
||||
"Actions for \"{title}\"" : "\"{title}\"のアクション",
|
||||
"Copy public link of \"{title}\" to clipboard" : "\"{title}\" の公開リンクをクリップボードにコピー",
|
||||
"Error, please enter proper password and/or expiration date" : "エラー、正しいパスワードおよび/または有効期限を入力してください",
|
||||
|
|
@ -168,7 +180,6 @@ OC.L10N.register(
|
|||
"Quick share options, the current selected is \"{selectedOption}\"" : "クイック共有オプション、現在の選択されているのは \"{selectedOption}\" です",
|
||||
"View only" : "閲覧のみ",
|
||||
"Can edit" : "編集可能",
|
||||
"File drop" : "ファイルを転送",
|
||||
"Custom permissions" : "カスタム権限",
|
||||
"Search for share recipients" : "共有の受信者を検索",
|
||||
"No recommendations. Start typing." : "推奨事項はありません。 入力を開始します。",
|
||||
|
|
@ -192,12 +203,10 @@ OC.L10N.register(
|
|||
"Advanced settings" : "詳細設定",
|
||||
"Share label" : "共有ラベル",
|
||||
"Set password" : "パスワード設定",
|
||||
"Password" : "パスワード",
|
||||
"Password expires {passwordExpirationTime}" : "パスワードの有効期限は、{passwordExpirationTime}",
|
||||
"Password expired" : "パスワード期限切れ",
|
||||
"Video verification" : "ビデオ通話によるパスワード通知",
|
||||
"Set expiration date" : "有効期限を設定",
|
||||
"Expiration date" : "有効期限",
|
||||
"Hide download" : "ダウンロードを隠す",
|
||||
"Allow download" : "ダウンロードを許可",
|
||||
"Note to recipient" : "受取人への注意",
|
||||
|
|
@ -234,8 +243,6 @@ OC.L10N.register(
|
|||
"Shared by {ownerDisplayName}" : "{ownerDisplayName} が共有済み",
|
||||
"Show sharing options" : "共有オプションを表示",
|
||||
"Link to a file" : "ファイルへリンク",
|
||||
"Error creating the share: {errorMessage}" : "共有の作成中にエラーが発生しました: {errorMessage}",
|
||||
"Error creating the share" : "共有の作成中にエラーが発生しました",
|
||||
"Error updating the share: {errorMessage}" : "共有の更新中にエラーが発生しました: {errorMessage}",
|
||||
"Error updating the share" : "共有の更新中にエラー",
|
||||
"File \"{path}\" has been unshared" : "ファイルパス \"{path}\" が共有解除されました",
|
||||
|
|
@ -302,9 +309,9 @@ OC.L10N.register(
|
|||
"Bundled permissions" : "バンドルされているパーミッション",
|
||||
"Only works for users with access to this folder" : "このフォルダーにアクセスできるユーザーにのみ機能します",
|
||||
"Only works for users with access to this file" : "このファイルへのアクセス権を持つユーザーに対してのみ機能します",
|
||||
"File drop" : "ファイルを転送",
|
||||
"Circle" : "サークル",
|
||||
"Update" : "更新",
|
||||
"Share with " : "共有先",
|
||||
"No other users with access found" : "アクセス権を持つ他のユーザーは見つかりませんでした",
|
||||
"No entries found in this folder" : "このフォルダーにはエントリーがありません",
|
||||
"Name" : "名前",
|
||||
|
|
|
|||
|
|
@ -100,6 +100,7 @@
|
|||
"Share must at least have READ or CREATE permissions" : "共有には少なくとも 読み込み または 作成の権限が必要です",
|
||||
"Share must have READ permission if UPDATE or DELETE permission is set" : "更新 または 削除権限が設定されている場合、共有者は 読み込み権限を持っている必要があります。",
|
||||
"\"Sending the password by Nextcloud Talk\" for sharing a file or folder failed because Nextcloud Talk is not enabled." : "Nextcloud Talkが有効になっていないため、ファイルまたはフォルダーを共有するための「NextcloudTalkによるパスワードの送信」ができませんでした。",
|
||||
"Wrong password" : "パスワードが間違っています",
|
||||
"shared by %s" : "%s が共有",
|
||||
"Download all files" : "すべてのファイルをダウンロード",
|
||||
"Direct link" : "リンク",
|
||||
|
|
@ -113,6 +114,19 @@
|
|||
"Accept" : "承諾",
|
||||
"Decline" : "拒否",
|
||||
"This application enables people to share files within Nextcloud. If enabled, the admin can choose which groups can share files. The applicable people can then share files and folders with other accounts and groups within Nextcloud. In addition, if the admin enables the share link feature, an external link can be used to share files with other people outside of Nextcloud. Admins can also enforce passwords, expirations dates, and enable server to server sharing via share links, as well as sharing from mobile devices.\nTurning the feature off removes shared files and folders on the server for all share recipients, and also on the sync clients and mobile apps. More information is available in the Nextcloud Documentation." : "このアプリケーションを使うと、Nextcloud 内でファイルを共有することができます。 有効にすると、管理者はファイルを共有できるグループを選択できます。 該当する人々は、Nextcloud 内の他のアカウントやグループとファイルやフォルダを共有できます。 さらに、管理者が共有リンク機能を有効にすると、外部リンクを使用してNextcloud 外の他の人々とファイルを共有することができます。 管理者は、パスワード、有効期限の日付を設定し、共有リンクを介したサーバ間の共有やモバイルデバイスからの共有を可能にすることもできます。\nこの機能をオフにすると、サーバ上のすべての共有受信者の共有ファイルとフォルダが削除され、 同期クライアントやモバイルアプリ上でも削除されます。詳細は Nextcloud ドキュメントをご覧ください。",
|
||||
"Expiration date" : "有効期限",
|
||||
"Set a password" : "パスワードを設定",
|
||||
"Password" : "パスワード",
|
||||
"Share link" : "URLで共有",
|
||||
"Copy to clipboard" : "クリップボードにコピー",
|
||||
"Send link via email" : "メールでリンクを送信",
|
||||
"Link copied to clipboard" : "クリップボードにリンクをコピーしました",
|
||||
"Select" : "選択",
|
||||
"Cancel" : "キャンセル",
|
||||
"Continue" : "続ける",
|
||||
"Close" : "閉じる",
|
||||
"Error creating the share: {errorMessage}" : "共有の作成中にエラーが発生しました: {errorMessage}",
|
||||
"Error creating the share" : "共有の作成中にエラーが発生しました",
|
||||
"Sharing" : "共有",
|
||||
"Accept shares from other accounts and groups by default" : "他のアカウントやグループからの共有をデフォルトで受け入れる",
|
||||
"Error while toggling options" : "オプションの切り替え中にエラーが発生しました",
|
||||
|
|
@ -147,7 +161,6 @@
|
|||
"Expiration date (enforced)" : "有効期限(強制)",
|
||||
"Enter a date" : "日付を入力してください",
|
||||
"Create share" : "共有を作成",
|
||||
"Cancel" : "キャンセル",
|
||||
"Customize link" : "共有のカスタマイズ",
|
||||
"Generate QR code" : "QRコードを生成",
|
||||
"Add another link" : "別のリンクを追加",
|
||||
|
|
@ -157,7 +170,6 @@
|
|||
"Mail share ({label})" : "メール共有 ({label})",
|
||||
"Share link ({label})" : "リンク共有 ({label})",
|
||||
"Share link ({index})" : "リンク共有 ({index})",
|
||||
"Share link" : "URLで共有",
|
||||
"Actions for \"{title}\"" : "\"{title}\"のアクション",
|
||||
"Copy public link of \"{title}\" to clipboard" : "\"{title}\" の公開リンクをクリップボードにコピー",
|
||||
"Error, please enter proper password and/or expiration date" : "エラー、正しいパスワードおよび/または有効期限を入力してください",
|
||||
|
|
@ -166,7 +178,6 @@
|
|||
"Quick share options, the current selected is \"{selectedOption}\"" : "クイック共有オプション、現在の選択されているのは \"{selectedOption}\" です",
|
||||
"View only" : "閲覧のみ",
|
||||
"Can edit" : "編集可能",
|
||||
"File drop" : "ファイルを転送",
|
||||
"Custom permissions" : "カスタム権限",
|
||||
"Search for share recipients" : "共有の受信者を検索",
|
||||
"No recommendations. Start typing." : "推奨事項はありません。 入力を開始します。",
|
||||
|
|
@ -190,12 +201,10 @@
|
|||
"Advanced settings" : "詳細設定",
|
||||
"Share label" : "共有ラベル",
|
||||
"Set password" : "パスワード設定",
|
||||
"Password" : "パスワード",
|
||||
"Password expires {passwordExpirationTime}" : "パスワードの有効期限は、{passwordExpirationTime}",
|
||||
"Password expired" : "パスワード期限切れ",
|
||||
"Video verification" : "ビデオ通話によるパスワード通知",
|
||||
"Set expiration date" : "有効期限を設定",
|
||||
"Expiration date" : "有効期限",
|
||||
"Hide download" : "ダウンロードを隠す",
|
||||
"Allow download" : "ダウンロードを許可",
|
||||
"Note to recipient" : "受取人への注意",
|
||||
|
|
@ -232,8 +241,6 @@
|
|||
"Shared by {ownerDisplayName}" : "{ownerDisplayName} が共有済み",
|
||||
"Show sharing options" : "共有オプションを表示",
|
||||
"Link to a file" : "ファイルへリンク",
|
||||
"Error creating the share: {errorMessage}" : "共有の作成中にエラーが発生しました: {errorMessage}",
|
||||
"Error creating the share" : "共有の作成中にエラーが発生しました",
|
||||
"Error updating the share: {errorMessage}" : "共有の更新中にエラーが発生しました: {errorMessage}",
|
||||
"Error updating the share" : "共有の更新中にエラー",
|
||||
"File \"{path}\" has been unshared" : "ファイルパス \"{path}\" が共有解除されました",
|
||||
|
|
@ -300,9 +307,9 @@
|
|||
"Bundled permissions" : "バンドルされているパーミッション",
|
||||
"Only works for users with access to this folder" : "このフォルダーにアクセスできるユーザーにのみ機能します",
|
||||
"Only works for users with access to this file" : "このファイルへのアクセス権を持つユーザーに対してのみ機能します",
|
||||
"File drop" : "ファイルを転送",
|
||||
"Circle" : "サークル",
|
||||
"Update" : "更新",
|
||||
"Share with " : "共有先",
|
||||
"No other users with access found" : "アクセス権を持つ他のユーザーは見つかりませんでした",
|
||||
"No entries found in this folder" : "このフォルダーにはエントリーがありません",
|
||||
"Name" : "名前",
|
||||
|
|
|
|||
|
|
@ -100,6 +100,7 @@ OC.L10N.register(
|
|||
"Share must at least have READ or CREATE permissions" : "Share must at least have READ or CREATE permissions",
|
||||
"Share must have READ permission if UPDATE or DELETE permission is set" : "Share must have READ permission if UPDATE or DELETE permission is set",
|
||||
"\"Sending the password by Nextcloud Talk\" for sharing a file or folder failed because Nextcloud Talk is not enabled." : "\"Sending the password by Nextcloud Talk\" for sharing a file or folder failed because Nextcloud Talk is not enabled.",
|
||||
"Wrong password" : "Wrong password",
|
||||
"shared by %s" : "shared by %s",
|
||||
"Download all files" : "Download all files",
|
||||
"Direct link" : "Direct link",
|
||||
|
|
@ -112,6 +113,16 @@ OC.L10N.register(
|
|||
"You received {share} to group {group} as a share by {user}" : "You received {share} to group {group} as a share by {user}",
|
||||
"Accept" : "Accept",
|
||||
"Decline" : "Decline",
|
||||
"Expiration date" : "Expiration date",
|
||||
"Password" : "Password",
|
||||
"Share link" : "Share link",
|
||||
"Copy to clipboard" : "Copy to clipboard",
|
||||
"Select" : "Select",
|
||||
"Cancel" : "Cancel",
|
||||
"Continue" : "Continue",
|
||||
"Close" : "Close",
|
||||
"Error creating the share: {errorMessage}" : "Error creating the share: {errorMessage}",
|
||||
"Error creating the share" : "Error creating the share",
|
||||
"Sharing" : "Sharing",
|
||||
"Error while toggling options" : "Error while toggling options",
|
||||
"Set default folder for accepted shares" : "Set default folder for accepted shares",
|
||||
|
|
@ -143,7 +154,6 @@ OC.L10N.register(
|
|||
"Expiration date (enforced)" : "Expiration date (enforced)",
|
||||
"Enter a date" : "Enter a date",
|
||||
"Create share" : "Create share",
|
||||
"Cancel" : "Cancel",
|
||||
"Customize link" : "Customize link",
|
||||
"Add another link" : "Add another link",
|
||||
"Create a new share link" : "Create a new share link",
|
||||
|
|
@ -152,7 +162,6 @@ OC.L10N.register(
|
|||
"Mail share ({label})" : "Mail share ({label})",
|
||||
"Share link ({label})" : "Share link ({label})",
|
||||
"Share link ({index})" : "Share link ({index})",
|
||||
"Share link" : "Share link",
|
||||
"Actions for \"{title}\"" : "Actions for \"{title}\"",
|
||||
"Copy public link of \"{title}\" to clipboard" : "Copy public link of \"{title}\" to clipboard",
|
||||
"Error, please enter proper password and/or expiration date" : "Error, please enter proper password and/or expiration date",
|
||||
|
|
@ -160,7 +169,6 @@ OC.L10N.register(
|
|||
"Error while creating the share" : "Error while creating the share",
|
||||
"View only" : "View only",
|
||||
"Can edit" : "Can edit",
|
||||
"File drop" : "File drop",
|
||||
"Custom permissions" : "Custom permissions",
|
||||
"Search for share recipients" : "Search for share recipients",
|
||||
"No recommendations. Start typing." : "No recommendations. Start typing.",
|
||||
|
|
@ -183,12 +191,10 @@ OC.L10N.register(
|
|||
"Advanced settings" : "Advanced settings",
|
||||
"Share label" : "Share label",
|
||||
"Set password" : "Set password",
|
||||
"Password" : "Password",
|
||||
"Password expires {passwordExpirationTime}" : "Password expires {passwordExpirationTime}",
|
||||
"Password expired" : "Password expired",
|
||||
"Video verification" : "Video verification",
|
||||
"Set expiration date" : "Set expiration date",
|
||||
"Expiration date" : "Expiration date",
|
||||
"Hide download" : "Hide download",
|
||||
"Allow download" : "Allow download",
|
||||
"Note to recipient" : "Note to recipient",
|
||||
|
|
@ -221,8 +227,6 @@ OC.L10N.register(
|
|||
"Shared by {ownerDisplayName}" : "Shared by {ownerDisplayName}",
|
||||
"Show sharing options" : "Show sharing options",
|
||||
"Link to a file" : "Link to a file",
|
||||
"Error creating the share: {errorMessage}" : "Error creating the share: {errorMessage}",
|
||||
"Error creating the share" : "Error creating the share",
|
||||
"Error updating the share: {errorMessage}" : "Error updating the share: {errorMessage}",
|
||||
"Error updating the share" : "Error updating the share",
|
||||
"File \"{path}\" has been unshared" : "File \"{path}\" has been unshared",
|
||||
|
|
@ -289,9 +293,9 @@ OC.L10N.register(
|
|||
"Bundled permissions" : "Bundled permissions",
|
||||
"Only works for users with access to this folder" : "Only works for users with access to this folder",
|
||||
"Only works for users with access to this file" : "Only works for users with access to this file",
|
||||
"File drop" : "File drop",
|
||||
"Circle" : "Circle",
|
||||
"Update" : "Update",
|
||||
"Share with " : "Share with ",
|
||||
"No other users with access found" : "No other users with access found",
|
||||
"No entries found in this folder" : "No entries found in this folder",
|
||||
"Name" : "Name",
|
||||
|
|
|
|||
|
|
@ -98,6 +98,7 @@
|
|||
"Share must at least have READ or CREATE permissions" : "Share must at least have READ or CREATE permissions",
|
||||
"Share must have READ permission if UPDATE or DELETE permission is set" : "Share must have READ permission if UPDATE or DELETE permission is set",
|
||||
"\"Sending the password by Nextcloud Talk\" for sharing a file or folder failed because Nextcloud Talk is not enabled." : "\"Sending the password by Nextcloud Talk\" for sharing a file or folder failed because Nextcloud Talk is not enabled.",
|
||||
"Wrong password" : "Wrong password",
|
||||
"shared by %s" : "shared by %s",
|
||||
"Download all files" : "Download all files",
|
||||
"Direct link" : "Direct link",
|
||||
|
|
@ -110,6 +111,16 @@
|
|||
"You received {share} to group {group} as a share by {user}" : "You received {share} to group {group} as a share by {user}",
|
||||
"Accept" : "Accept",
|
||||
"Decline" : "Decline",
|
||||
"Expiration date" : "Expiration date",
|
||||
"Password" : "Password",
|
||||
"Share link" : "Share link",
|
||||
"Copy to clipboard" : "Copy to clipboard",
|
||||
"Select" : "Select",
|
||||
"Cancel" : "Cancel",
|
||||
"Continue" : "Continue",
|
||||
"Close" : "Close",
|
||||
"Error creating the share: {errorMessage}" : "Error creating the share: {errorMessage}",
|
||||
"Error creating the share" : "Error creating the share",
|
||||
"Sharing" : "Sharing",
|
||||
"Error while toggling options" : "Error while toggling options",
|
||||
"Set default folder for accepted shares" : "Set default folder for accepted shares",
|
||||
|
|
@ -141,7 +152,6 @@
|
|||
"Expiration date (enforced)" : "Expiration date (enforced)",
|
||||
"Enter a date" : "Enter a date",
|
||||
"Create share" : "Create share",
|
||||
"Cancel" : "Cancel",
|
||||
"Customize link" : "Customize link",
|
||||
"Add another link" : "Add another link",
|
||||
"Create a new share link" : "Create a new share link",
|
||||
|
|
@ -150,7 +160,6 @@
|
|||
"Mail share ({label})" : "Mail share ({label})",
|
||||
"Share link ({label})" : "Share link ({label})",
|
||||
"Share link ({index})" : "Share link ({index})",
|
||||
"Share link" : "Share link",
|
||||
"Actions for \"{title}\"" : "Actions for \"{title}\"",
|
||||
"Copy public link of \"{title}\" to clipboard" : "Copy public link of \"{title}\" to clipboard",
|
||||
"Error, please enter proper password and/or expiration date" : "Error, please enter proper password and/or expiration date",
|
||||
|
|
@ -158,7 +167,6 @@
|
|||
"Error while creating the share" : "Error while creating the share",
|
||||
"View only" : "View only",
|
||||
"Can edit" : "Can edit",
|
||||
"File drop" : "File drop",
|
||||
"Custom permissions" : "Custom permissions",
|
||||
"Search for share recipients" : "Search for share recipients",
|
||||
"No recommendations. Start typing." : "No recommendations. Start typing.",
|
||||
|
|
@ -181,12 +189,10 @@
|
|||
"Advanced settings" : "Advanced settings",
|
||||
"Share label" : "Share label",
|
||||
"Set password" : "Set password",
|
||||
"Password" : "Password",
|
||||
"Password expires {passwordExpirationTime}" : "Password expires {passwordExpirationTime}",
|
||||
"Password expired" : "Password expired",
|
||||
"Video verification" : "Video verification",
|
||||
"Set expiration date" : "Set expiration date",
|
||||
"Expiration date" : "Expiration date",
|
||||
"Hide download" : "Hide download",
|
||||
"Allow download" : "Allow download",
|
||||
"Note to recipient" : "Note to recipient",
|
||||
|
|
@ -219,8 +225,6 @@
|
|||
"Shared by {ownerDisplayName}" : "Shared by {ownerDisplayName}",
|
||||
"Show sharing options" : "Show sharing options",
|
||||
"Link to a file" : "Link to a file",
|
||||
"Error creating the share: {errorMessage}" : "Error creating the share: {errorMessage}",
|
||||
"Error creating the share" : "Error creating the share",
|
||||
"Error updating the share: {errorMessage}" : "Error updating the share: {errorMessage}",
|
||||
"Error updating the share" : "Error updating the share",
|
||||
"File \"{path}\" has been unshared" : "File \"{path}\" has been unshared",
|
||||
|
|
@ -287,9 +291,9 @@
|
|||
"Bundled permissions" : "Bundled permissions",
|
||||
"Only works for users with access to this folder" : "Only works for users with access to this folder",
|
||||
"Only works for users with access to this file" : "Only works for users with access to this file",
|
||||
"File drop" : "File drop",
|
||||
"Circle" : "Circle",
|
||||
"Update" : "Update",
|
||||
"Share with " : "Share with ",
|
||||
"No other users with access found" : "No other users with access found",
|
||||
"No entries found in this folder" : "No entries found in this folder",
|
||||
"Name" : "Name",
|
||||
|
|
|
|||
|
|
@ -102,6 +102,7 @@ OC.L10N.register(
|
|||
"Share must at least have READ or CREATE permissions" : "공유에는 읽기와 생성 권한이 꼭 필요합니다.",
|
||||
"Share must have READ permission if UPDATE or DELETE permission is set" : "공유에 업데이트와 삭제 권한이 설정되어 있다면 읽기 권한이 꼭 필요합니다.",
|
||||
"\"Sending the password by Nextcloud Talk\" for sharing a file or folder failed because Nextcloud Talk is not enabled." : "Nextcloud 토크가 활성화되어 있지 않기 때문에, 파일 및 폴더 공유를 위한 \"Nextcloud 토크에 암호 보내기\"가 실패했습니다.",
|
||||
"Wrong password" : "잘못된 암호",
|
||||
"shared by %s" : "%s에 의해 공유됨",
|
||||
"Download all files" : "모든 파일 다운로드",
|
||||
"Direct link" : "직접 링크",
|
||||
|
|
@ -114,6 +115,19 @@ OC.L10N.register(
|
|||
"You received {share} to group {group} as a share by {user}" : "{user}님의 공유로 {group}그룹에서 {share}(을)를 받았습니다.",
|
||||
"Accept" : "수락",
|
||||
"Decline" : "거절",
|
||||
"Expiration date" : "만료 날짜",
|
||||
"Set a password" : "암호 설정",
|
||||
"Password" : "암호",
|
||||
"Share link" : "링크 공유",
|
||||
"Copy to clipboard" : "클립보드로 복사",
|
||||
"Send link via email" : "이메일로 링크 보내기",
|
||||
"Link copied to clipboard" : "링크가 클립보드로 복사됨",
|
||||
"Select" : "선택",
|
||||
"Cancel" : "취소",
|
||||
"Continue" : "계속",
|
||||
"Close" : "닫기",
|
||||
"Error creating the share: {errorMessage}" : "공유를 만드는 중 오류 발생: {errorMessage}",
|
||||
"Error creating the share" : "공유를 만드는 중 오류 발생",
|
||||
"Sharing" : "공유",
|
||||
"Accept shares from other accounts and groups by default" : "다른 계정 및 그룹으로부터의 공유를 기본적으로 허용",
|
||||
"Error while toggling options" : "옵션을 켜는 중 오류 발생",
|
||||
|
|
@ -146,7 +160,6 @@ OC.L10N.register(
|
|||
"Expiration date (enforced)" : "만료일 (강제됨)",
|
||||
"Enter a date" : "날짜 입력",
|
||||
"Create share" : "공유 만들기",
|
||||
"Cancel" : "취소",
|
||||
"Customize link" : "링크 맞춤설정",
|
||||
"Generate QR code" : "QR코드 생성",
|
||||
"Add another link" : "다른 링크 추가",
|
||||
|
|
@ -155,7 +168,6 @@ OC.L10N.register(
|
|||
"Mail share ({label})" : "메일 공유 ({label})",
|
||||
"Share link ({label})" : "링크 공유 ({label})",
|
||||
"Share link ({index})" : "링크 공유 ({index})",
|
||||
"Share link" : "링크 공유",
|
||||
"Actions for \"{title}\"" : "\"{title}\"에 대한 작업",
|
||||
"Copy public link of \"{title}\" to clipboard" : "\"{title}\"의 공개 링크를 클립보드에 복사",
|
||||
"Error, please enter proper password and/or expiration date" : "오류, 적절한 암호와 만료일을 입력하세요.",
|
||||
|
|
@ -163,7 +175,6 @@ OC.L10N.register(
|
|||
"Error while creating the share" : "공유를 만드는 중 오류 발생",
|
||||
"View only" : "읽기 전용",
|
||||
"Can edit" : "수정할 수 있음",
|
||||
"File drop" : "업로드만 허용",
|
||||
"Custom permissions" : "사용자 지정 권한",
|
||||
"Search for share recipients" : "공유 받는이 검색",
|
||||
"No recommendations. Start typing." : "추천 없음. 타이핑을 시작하십시오",
|
||||
|
|
@ -185,12 +196,10 @@ OC.L10N.register(
|
|||
"Advanced settings" : "고급 설정",
|
||||
"Share label" : "공유 이름",
|
||||
"Set password" : "비밀번호 설정",
|
||||
"Password" : "암호",
|
||||
"Password expires {passwordExpirationTime}" : "암호가 {passwordExpirationTime}에 만료됨",
|
||||
"Password expired" : "암호 만료됨",
|
||||
"Video verification" : "화상 인증",
|
||||
"Set expiration date" : "만료기한 설정",
|
||||
"Expiration date" : "만료 날짜",
|
||||
"Hide download" : "다운로드 숨기기",
|
||||
"Allow download" : "다운로드 허용",
|
||||
"Note to recipient" : "받는이에게 메모",
|
||||
|
|
@ -225,8 +234,6 @@ OC.L10N.register(
|
|||
"Shared by {ownerDisplayName}" : "{ownerDisplayName}이 변경함",
|
||||
"Show sharing options" : "공유 옵션 표시",
|
||||
"Link to a file" : "파일로 향한 링크",
|
||||
"Error creating the share: {errorMessage}" : "공유를 만드는 중 오류 발생: {errorMessage}",
|
||||
"Error creating the share" : "공유를 만드는 중 오류 발생",
|
||||
"Error updating the share: {errorMessage}" : "공유를 업데이트 하는 중 오류 발생: {errorMessage}",
|
||||
"Error updating the share" : "공유를 업데이트 하는 중 오류 발생",
|
||||
"File \"{path}\" has been unshared" : "\"{path}\" 파일의 공유가 취소됨",
|
||||
|
|
@ -293,9 +300,9 @@ OC.L10N.register(
|
|||
"Bundled permissions" : "번들 권한",
|
||||
"Only works for users with access to this folder" : "이 폴더의 접근 권한이 있는 사용자만 사용 가능",
|
||||
"Only works for users with access to this file" : "이 파일에 접근할 수 있는 사용자에게만 작동",
|
||||
"File drop" : "업로드만 허용",
|
||||
"Circle" : "서클",
|
||||
"Update" : "업데이트",
|
||||
"Share with " : "공유 받는이:",
|
||||
"No other users with access found" : "접근할 수 있는 다른 사용자가 없음",
|
||||
"No entries found in this folder" : "이 폴더에 항목 없음",
|
||||
"Name" : "이름",
|
||||
|
|
|
|||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue