Compare commits
74 Commits
enh/dateSh
...
v1.1.2
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
124cc94939 | ||
|
|
d45f2e9faa | ||
|
|
2ea019885d | ||
|
|
ccbe2eaf94 | ||
|
|
568b099c17 | ||
|
|
a5bd24f475 | ||
|
|
89bec2752b | ||
|
|
2a1fa11b0d | ||
|
|
ba5570558e | ||
|
|
df0531851e | ||
|
|
bbc218de95 | ||
|
|
9b6d62d24c | ||
|
|
d2ceda08cb | ||
|
|
af01ecd3d1 | ||
|
|
7afe28f2e9 | ||
|
|
56a79c9fcc | ||
|
|
6fa485c6ca | ||
|
|
66e386b547 | ||
|
|
48e6bae44a | ||
|
|
c75463429e | ||
|
|
3d3f2de781 | ||
|
|
2454df9a35 | ||
|
|
2a7a0e4c6d | ||
|
|
6edf265b78 | ||
|
|
8e28f8e67c | ||
|
|
3b11c5c7ea | ||
|
|
be05ec1b45 | ||
|
|
b407f102fe | ||
|
|
e82a2be836 | ||
|
|
d7f7cf584f | ||
|
|
3fae174906 | ||
|
|
b58bba25bb | ||
|
|
407acc47a4 | ||
|
|
2ba19bd6fe | ||
|
|
16e79dc616 | ||
|
|
f48187f28c | ||
|
|
ea5aac3d27 | ||
|
|
3487e06c8c | ||
|
|
fd253009f1 | ||
|
|
039d3e8238 | ||
|
|
31d759ee62 | ||
|
|
53a30585f3 | ||
|
|
a2ebf3d3f0 | ||
|
|
5b7505c60c | ||
|
|
516b15d3a1 | ||
|
|
6ac8cafd46 | ||
|
|
e5c65a67a7 | ||
|
|
7b72c93076 | ||
|
|
f5550c456e | ||
|
|
fb8b724e1b | ||
|
|
a3da157aa4 | ||
|
|
0118c1e409 | ||
|
|
9dbf45ca25 | ||
|
|
184cb01f5a | ||
|
|
b3a4cca482 | ||
|
|
1272c672ae | ||
|
|
214898c3d6 | ||
|
|
7ba20e71ee | ||
|
|
49f84c31fb | ||
|
|
69f56981f4 | ||
|
|
7acd1a054e | ||
|
|
ef90ab0b2a | ||
|
|
1a275b0884 | ||
|
|
ffb25a7553 | ||
|
|
9a0476f538 | ||
|
|
9b9413c5e1 | ||
|
|
e22c6e675b | ||
|
|
92a6cbce37 | ||
|
|
871edf1a25 | ||
|
|
05376a5d3a | ||
|
|
5cc52526cf | ||
|
|
30bb429a57 | ||
|
|
52cbd3d6d8 | ||
|
|
15ae74249b |
131
.drone.yml
Normal file
131
.drone.yml
Normal file
@@ -0,0 +1,131 @@
|
||||
kind: pipeline
|
||||
name: checkers
|
||||
steps:
|
||||
- name: compatibility
|
||||
image: nextcloudci/php7.3:latest
|
||||
environment:
|
||||
APP_NAME: deck
|
||||
CORE_BRANCH: stable20
|
||||
DB: sqlite
|
||||
commands:
|
||||
# Pre-setup steps
|
||||
- wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh
|
||||
- bash ./before_install.sh $APP_NAME $CORE_BRANCH $DB
|
||||
- cd ../server
|
||||
# Code checker
|
||||
- ./occ app:check-code $APP_NAME -c strong-comparison
|
||||
- ./occ app:check-code $APP_NAME -c deprecation
|
||||
- cd apps/$APP_NAME/
|
||||
- name: syntax-php7.2
|
||||
image: nextcloudci/php7.2:latest
|
||||
environment:
|
||||
APP_NAME: deck
|
||||
CORE_BRANCH: stable20
|
||||
DB: sqlite
|
||||
commands:
|
||||
- composer install
|
||||
- ./vendor/bin/parallel-lint --exclude ./vendor/ .
|
||||
- name: syntax-php7.3
|
||||
image: nextcloudci/php7.3:php7.3-2
|
||||
environment:
|
||||
APP_NAME: deck
|
||||
CORE_BRANCH: stable20
|
||||
DB: sqlite
|
||||
commands:
|
||||
- composer install
|
||||
- ./vendor/bin/parallel-lint --exclude ./vendor/ .
|
||||
- name: syntax-php7.4
|
||||
image: nextcloudci/php7.4:latest
|
||||
environment:
|
||||
APP_NAME: deck
|
||||
CORE_BRANCH: stable20
|
||||
DB: sqlite
|
||||
commands:
|
||||
- composer install
|
||||
- ./vendor/bin/parallel-lint --exclude ./vendor/ .
|
||||
trigger:
|
||||
branch:
|
||||
- master
|
||||
- stable*
|
||||
event:
|
||||
- pull_request
|
||||
- push
|
||||
---
|
||||
kind: pipeline
|
||||
name: unit-php7.3
|
||||
steps:
|
||||
- name: php7.3
|
||||
image: nextcloudci/php7.3:latest
|
||||
environment:
|
||||
APP_NAME: deck
|
||||
CORE_BRANCH: stable20
|
||||
DB: sqlite
|
||||
commands:
|
||||
# Pre-setup steps
|
||||
- wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh
|
||||
- bash ./before_install.sh $APP_NAME $CORE_BRANCH $DB
|
||||
- cd ../server/
|
||||
- php occ app:enable deck
|
||||
- cd apps/$APP_NAME
|
||||
- composer install
|
||||
- phpunit -c tests/phpunit.xml --coverage-clover build/php-unit.coverage.xml
|
||||
- phpunit -c tests/phpunit.integration.xml --coverage-clover build/php-integration.coverage.xml
|
||||
trigger:
|
||||
branch:
|
||||
- master
|
||||
- stable*
|
||||
event:
|
||||
- pull_request
|
||||
- push
|
||||
kind: pipeline
|
||||
name: unit-php7.4
|
||||
steps:
|
||||
- name: php7.4
|
||||
image: nextcloudci/php7.4:latest
|
||||
environment:
|
||||
APP_NAME: deck
|
||||
CORE_BRANCH: stable20
|
||||
DB: sqlite
|
||||
commands:
|
||||
# Pre-setup steps
|
||||
- wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh
|
||||
- bash ./before_install.sh $APP_NAME $CORE_BRANCH $DB
|
||||
- cd ../server/
|
||||
- php occ app:enable deck
|
||||
- cd apps/$APP_NAME
|
||||
- composer install
|
||||
- phpunit -c tests/phpunit.xml --coverage-clover build/php-unit.coverage.xml
|
||||
- phpunit -c tests/phpunit.integration.xml --coverage-clover build/php-integration.coverage.xml
|
||||
trigger:
|
||||
branch:
|
||||
- master
|
||||
- stable*
|
||||
event:
|
||||
- pull_request
|
||||
- push
|
||||
---
|
||||
kind: pipeline
|
||||
name: integration
|
||||
steps:
|
||||
- name: integration
|
||||
image: nextcloudci/php7.3:latest
|
||||
environment:
|
||||
APP_NAME: deck
|
||||
CORE_BRANCH: stable20
|
||||
DB: sqlite
|
||||
commands:
|
||||
# Pre-setup steps
|
||||
- wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh
|
||||
- bash ./before_install.sh $APP_NAME $CORE_BRANCH $DB
|
||||
- cd ../server/
|
||||
- php occ app:enable deck
|
||||
- cd apps/$APP_NAME
|
||||
- cd tests/integration
|
||||
- ./run.sh || true
|
||||
trigger:
|
||||
branch:
|
||||
- master
|
||||
- stable*
|
||||
event:
|
||||
- pull_request
|
||||
- push
|
||||
13
.github/dependabot.yml
vendored
13
.github/dependabot.yml
vendored
@@ -2,7 +2,6 @@ version: 2
|
||||
updates:
|
||||
- package-ecosystem: npm
|
||||
directory: "/"
|
||||
target-branch: "master"
|
||||
schedule:
|
||||
interval: weekly
|
||||
day: saturday
|
||||
@@ -12,18 +11,6 @@ updates:
|
||||
reviewers:
|
||||
- juliushaertl
|
||||
- jakobroehrl
|
||||
#- package-ecosystem: npm
|
||||
# directory: "/"
|
||||
# target-branch: "stable1.1"
|
||||
# schedule:
|
||||
# interval: weekly
|
||||
# day: saturday
|
||||
# time: "03:00"
|
||||
# timezone: Europe/Paris
|
||||
# open-pull-requests-limit: 10
|
||||
# reviewers:
|
||||
# - juliushaertl
|
||||
# - jakobroehrl
|
||||
- package-ecosystem: composer
|
||||
directory: "/"
|
||||
schedule:
|
||||
|
||||
55
.github/workflows/app-code-check.yml
vendored
55
.github/workflows/app-code-check.yml
vendored
@@ -1,55 +0,0 @@
|
||||
name: PHP AppCode Check
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
- stable*
|
||||
|
||||
env:
|
||||
APP_NAME: deck
|
||||
|
||||
jobs:
|
||||
unit-tests:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
php-versions: ['7.4']
|
||||
server-versions: ['master', 'stable18', 'stable19', 'stable20']
|
||||
|
||||
name: AppCode check php${{ matrix.php-versions }}-${{ matrix.server-versions }}
|
||||
steps:
|
||||
- name: Checkout server
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
repository: nextcloud/server
|
||||
ref: ${{ matrix.server-versions }}
|
||||
|
||||
- name: Checkout submodules
|
||||
shell: bash
|
||||
run: |
|
||||
auth_header="$(git config --local --get http.https://github.com/.extraheader)"
|
||||
git submodule sync --recursive
|
||||
git -c "http.extraheader=$auth_header" -c protocol.version=2 submodule update --init --force --recursive --depth=1
|
||||
|
||||
- name: Checkout app
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
path: apps/${{ env.APP_NAME }}
|
||||
|
||||
- name: Set up php ${{ matrix.php-versions }}
|
||||
uses: shivammathur/setup-php@v1
|
||||
with:
|
||||
php-version: ${{ matrix.php-versions }}
|
||||
tools: phpunit
|
||||
extensions: mbstring, iconv, fileinfo, intl, sqlite, pdo_sqlite
|
||||
|
||||
- name: Checkout app
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
path: apps/${{ env.APP_NAME }}
|
||||
|
||||
- name: App code check
|
||||
run: php occ app:check-code ${{ env.APP_NAME }}
|
||||
215
.github/workflows/phpunit.yml
vendored
215
.github/workflows/phpunit.yml
vendored
@@ -1,215 +0,0 @@
|
||||
name: PHPUnit
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
- stable*
|
||||
|
||||
env:
|
||||
APP_NAME: deck
|
||||
|
||||
jobs:
|
||||
php:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
strategy:
|
||||
# do not stop on another job's failure
|
||||
fail-fast: false
|
||||
matrix:
|
||||
php-versions: ['7.4']
|
||||
databases: ['sqlite']
|
||||
server-versions: ['master']
|
||||
|
||||
name: php${{ matrix.php-versions }}-${{ matrix.databases }}-${{ matrix.server-versions }}
|
||||
|
||||
steps:
|
||||
- name: Checkout server
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
repository: nextcloud/server
|
||||
ref: ${{ matrix.server-versions }}
|
||||
|
||||
- name: Checkout submodules
|
||||
shell: bash
|
||||
run: |
|
||||
auth_header="$(git config --local --get http.https://github.com/.extraheader)"
|
||||
git submodule sync --recursive
|
||||
git -c "http.extraheader=$auth_header" -c protocol.version=2 submodule update --init --force --recursive --depth=1
|
||||
|
||||
- name: Checkout app
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
path: apps/${{ env.APP_NAME }}
|
||||
|
||||
- name: Set up php ${{ matrix.php-versions }}
|
||||
uses: shivammathur/setup-php@v1
|
||||
with:
|
||||
php-version: ${{ matrix.php-versions }}
|
||||
tools: phpunit
|
||||
extensions: mbstring, iconv, fileinfo, intl, sqlite, pdo_sqlite
|
||||
coverage: none
|
||||
|
||||
- name: Set up PHPUnit
|
||||
working-directory: apps/${{ env.APP_NAME }}
|
||||
run: composer i
|
||||
|
||||
- name: Set up Nextcloud
|
||||
env:
|
||||
DB_PORT: 4444
|
||||
run: |
|
||||
mkdir data
|
||||
./occ maintenance:install --verbose --database=${{ matrix.databases }} --database-name=nextcloud --database-host=127.0.0.1 --database-port=$DB_PORT --database-user=root --database-pass=rootpassword --admin-user admin --admin-pass password
|
||||
./occ app:enable --force ${{ env.APP_NAME }}
|
||||
php -S localhost:8080 &
|
||||
|
||||
- name: PHPUnit
|
||||
working-directory: apps/${{ env.APP_NAME }}
|
||||
run: ./vendor/phpunit/phpunit/phpunit -c tests/phpunit.xml
|
||||
|
||||
- name: PHPUnit integration
|
||||
working-directory: apps/${{ env.APP_NAME }}
|
||||
run: ./vendor/phpunit/phpunit/phpunit -c tests/phpunit.integration.xml
|
||||
|
||||
mysql:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
strategy:
|
||||
# do not stop on another job's failure
|
||||
fail-fast: false
|
||||
matrix:
|
||||
php-versions: ['7.3', '7.4']
|
||||
databases: ['mysql']
|
||||
server-versions: ['master']
|
||||
|
||||
name: php${{ matrix.php-versions }}-${{ matrix.databases }}-${{ matrix.server-versions }}
|
||||
|
||||
services:
|
||||
mysql:
|
||||
image: mariadb
|
||||
ports:
|
||||
- 4444:3306/tcp
|
||||
env:
|
||||
MYSQL_ROOT_PASSWORD: rootpassword
|
||||
options: --health-cmd="mysqladmin ping" --health-interval 5s --health-timeout 2s --health-retries 5
|
||||
|
||||
steps:
|
||||
- name: Checkout server
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
repository: nextcloud/server
|
||||
ref: ${{ matrix.server-versions }}
|
||||
|
||||
- name: Checkout submodules
|
||||
shell: bash
|
||||
run: |
|
||||
auth_header="$(git config --local --get http.https://github.com/.extraheader)"
|
||||
git submodule sync --recursive
|
||||
git -c "http.extraheader=$auth_header" -c protocol.version=2 submodule update --init --force --recursive --depth=1
|
||||
|
||||
- name: Checkout app
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
path: apps/${{ env.APP_NAME }}
|
||||
|
||||
- name: Set up php ${{ matrix.php-versions }}
|
||||
uses: shivammathur/setup-php@v1
|
||||
with:
|
||||
php-version: ${{ matrix.php-versions }}
|
||||
tools: phpunit
|
||||
extensions: mbstring, iconv, fileinfo, intl, mysql, pdo_mysql
|
||||
coverage: none
|
||||
|
||||
- name: Set up PHPUnit
|
||||
working-directory: apps/${{ env.APP_NAME }}
|
||||
run: composer i
|
||||
|
||||
- name: Set up Nextcloud
|
||||
env:
|
||||
DB_PORT: 4444
|
||||
run: |
|
||||
mkdir data
|
||||
./occ maintenance:install --verbose --database=${{ matrix.databases }} --database-name=nextcloud --database-host=127.0.0.1 --database-port=$DB_PORT --database-user=root --database-pass=rootpassword --admin-user admin --admin-pass password
|
||||
./occ app:enable --force ${{ env.APP_NAME }}
|
||||
php -S localhost:8080 &
|
||||
|
||||
- name: PHPUnit
|
||||
working-directory: apps/${{ env.APP_NAME }}
|
||||
run: ./vendor/phpunit/phpunit/phpunit -c tests/phpunit.xml
|
||||
|
||||
- name: PHPUnit integration
|
||||
working-directory: apps/${{ env.APP_NAME }}
|
||||
run: ./vendor/phpunit/phpunit/phpunit -c tests/phpunit.integration.xml
|
||||
|
||||
pgsql:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
strategy:
|
||||
# do not stop on another job's failure
|
||||
fail-fast: false
|
||||
matrix:
|
||||
php-versions: ['7.4']
|
||||
databases: ['pgsql']
|
||||
server-versions: ['master']
|
||||
|
||||
name: php${{ matrix.php-versions }}-${{ matrix.databases }}-${{ matrix.server-versions }}
|
||||
|
||||
services:
|
||||
postgres:
|
||||
image: postgres
|
||||
ports:
|
||||
- 4444:5432/tcp
|
||||
env:
|
||||
POSTGRES_USER: root
|
||||
POSTGRES_PASSWORD: rootpassword
|
||||
POSTGRES_DB: nextcloud
|
||||
options: --health-cmd pg_isready --health-interval 5s --health-timeout 2s --health-retries 5
|
||||
|
||||
steps:
|
||||
- name: Checkout server
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
repository: nextcloud/server
|
||||
ref: ${{ matrix.server-versions }}
|
||||
|
||||
- name: Checkout submodules
|
||||
shell: bash
|
||||
run: |
|
||||
auth_header="$(git config --local --get http.https://github.com/.extraheader)"
|
||||
git submodule sync --recursive
|
||||
git -c "http.extraheader=$auth_header" -c protocol.version=2 submodule update --init --force --recursive --depth=1
|
||||
|
||||
- name: Checkout app
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
path: apps/${{ env.APP_NAME }}
|
||||
|
||||
- name: Set up php ${{ matrix.php-versions }}
|
||||
uses: shivammathur/setup-php@v1
|
||||
with:
|
||||
php-version: ${{ matrix.php-versions }}
|
||||
tools: phpunit
|
||||
extensions: mbstring, iconv, fileinfo, intl, pgsql, pdo_pgsql
|
||||
coverage: none
|
||||
|
||||
- name: Set up PHPUnit
|
||||
working-directory: apps/${{ env.APP_NAME }}
|
||||
run: composer i
|
||||
|
||||
- name: Set up Nextcloud
|
||||
env:
|
||||
DB_PORT: 4444
|
||||
run: |
|
||||
mkdir data
|
||||
./occ maintenance:install --verbose --database=${{ matrix.databases }} --database-name=nextcloud --database-host=127.0.0.1 --database-port=$DB_PORT --database-user=root --database-pass=rootpassword --admin-user admin --admin-pass password
|
||||
./occ app:enable --force ${{ env.APP_NAME }}
|
||||
php -S localhost:8080 &
|
||||
|
||||
- name: PHPUnit
|
||||
working-directory: apps/${{ env.APP_NAME }}
|
||||
run: ./vendor/phpunit/phpunit/phpunit -c tests/phpunit.xml
|
||||
|
||||
- name: PHPUnit integration
|
||||
working-directory: apps/${{ env.APP_NAME }}
|
||||
run: ./vendor/phpunit/phpunit/phpunit -c tests/phpunit.integration.xml
|
||||
26
.github/workflows/static-analysis.yml
vendored
26
.github/workflows/static-analysis.yml
vendored
@@ -1,26 +0,0 @@
|
||||
name: Static analysis
|
||||
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
static-psalm-analysis:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
ocp-version: [ 'dev-master', 'v20.0.1' ]
|
||||
name: Nextcloud ${{ matrix.ocp-version }}
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@master
|
||||
- name: Set up php
|
||||
uses: shivammathur/setup-php@master
|
||||
with:
|
||||
php-version: 7.4
|
||||
tools: composer:v1
|
||||
coverage: none
|
||||
- name: Install dependencies
|
||||
run: composer i
|
||||
- name: Install dependencies
|
||||
run: composer require --dev christophwurst/nextcloud:${{ matrix.ocp-version }}
|
||||
- name: Run coding standards check
|
||||
run: composer run psalm
|
||||
1
.gitignore
vendored
1
.gitignore
vendored
@@ -7,5 +7,6 @@ tests/integration/vendor/
|
||||
tests/integration/composer.lock
|
||||
tests/.phpunit.result.cache
|
||||
vendor/
|
||||
*.lock
|
||||
.php_cs.cache
|
||||
\.idea/
|
||||
|
||||
43
.travis.yml
Normal file
43
.travis.yml
Normal file
@@ -0,0 +1,43 @@
|
||||
language: php
|
||||
services:
|
||||
- mysql
|
||||
php:
|
||||
- 7.2
|
||||
- 7.3
|
||||
- 7.4
|
||||
env:
|
||||
- CORE_BRANCH=stable20 DB=mysql
|
||||
- CORE_BRANCH=stable19 DB=mysql
|
||||
- CORE_BRANCH=stable18 DB=mysql
|
||||
|
||||
matrix:
|
||||
include:
|
||||
- php: 7.2
|
||||
env: "DB=sqlite CORE_BRANCH=stable20"
|
||||
|
||||
before_install:
|
||||
- export PATH="$PWD/vendor/bin:$PATH"
|
||||
- phpunit --version
|
||||
- wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh
|
||||
- bash ./before_install.sh deck $CORE_BRANCH $DB
|
||||
- cd ../server
|
||||
|
||||
before_script:
|
||||
- cd apps/deck
|
||||
- composer install --no-dev
|
||||
- cd ../../
|
||||
- ./occ app:enable deck
|
||||
- cd apps/deck
|
||||
|
||||
script:
|
||||
- composer install
|
||||
- make test-unit
|
||||
|
||||
after_success:
|
||||
- bash <(curl -s https://codecov.io/bash)
|
||||
|
||||
after_failure:
|
||||
- cat ../../data/nextcloud.log
|
||||
|
||||
notifications:
|
||||
email: false
|
||||
68
CHANGELOG.md
68
CHANGELOG.md
@@ -1,64 +1,26 @@
|
||||
# Changelog
|
||||
All notable changes to this project will be documented in this file.
|
||||
|
||||
## 1.2.2 - 2020-11-24
|
||||
## 1.1.2 - 2020-10-14
|
||||
|
||||
### Fixed
|
||||
### Bugfixes
|
||||
|
||||
* [#2584](https://github.com/nextcloud/deck/pull/2584) Fix updating checkbox state and avoid issues due to duplicate sidebar element
|
||||
* [#2586](https://github.com/nextcloud/deck/pull/2586) Fix card details button
|
||||
* [#2587](https://github.com/nextcloud/deck/pull/2587) Move modal top spacing to the header to avoid side-effect when scrolling
|
||||
* [#2588](https://github.com/nextcloud/deck/pull/2588) Do not render images in editor
|
||||
* [#2609](https://github.com/nextcloud/deck/pull/2609) Fix issue with depenendency causing newline comments to not show
|
||||
* [#2611](https://github.com/nextcloud/deck/pull/2611) Fix paragraph styling in comments
|
||||
* [#2436](https://github.com/nextcloud/deck/pull/2436) Move most destructive actions in drop down menus to the bottom
|
||||
* [#2438](https://github.com/nextcloud/deck/pull/2438) Fix scrollable titles with Dyslexia font
|
||||
* [#2439](https://github.com/nextcloud/deck/pull/2439) Only remove card padding for editable cards
|
||||
* [#2442](https://github.com/nextcloud/deck/pull/2442) Move navigation toggle handling to @nextcloud/vue native one
|
||||
* [#2443](https://github.com/nextcloud/deck/pull/2443) Do not open the dialog automatically upon card creation, only upon click
|
||||
|
||||
## 1.2.1 - 2020-11-18
|
||||
## 1.1.1 - 2020-10-13
|
||||
|
||||
### Fixed
|
||||
|
||||
* [#2570](https://github.com/nextcloud/deck/pull/2570) [#2571](https://github.com/nextcloud/deck/pull/2571) Fix error when deleting users @ksteinb
|
||||
* [#2573](https://github.com/nextcloud/deck/pull/2573) Fix issue where card description was changed on the wrong card when switching cards
|
||||
|
||||
## 1.2.0 - 2020-11-16
|
||||
|
||||
### Added
|
||||
|
||||
* [#2430](https://github.com/nextcloud/deck/pull/2430) Due date notification setting per board
|
||||
* [#2230](https://github.com/nextcloud/deck/pull/2230) Implement scrolling per stack
|
||||
* [#1396](https://github.com/nextcloud/deck/pull/1396) API: Expose canCreateBoards through capabilities
|
||||
* [#2245](https://github.com/nextcloud/deck/pull/2245) API: ETag support for API endpoints
|
||||
|
||||
### Fixed
|
||||
|
||||
* [#2330](https://github.com/nextcloud/deck/pull/2330) Enhanced undo handling for deletions @jakobroehrl
|
||||
* [#2336](https://github.com/nextcloud/deck/pull/2336) Run unit tests on github actions
|
||||
* [#2358](https://github.com/nextcloud/deck/pull/2358) Properly check if FTSEvent has an argument set
|
||||
* [#2359](https://github.com/nextcloud/deck/pull/2359) Also exclude deleted items from calendar boards
|
||||
* [#2361](https://github.com/nextcloud/deck/pull/2361) Comments do not depend on the comments app @jakobroehrl
|
||||
* [#2363](https://github.com/nextcloud/deck/pull/2363) Use uid instead of displayname for sharee results
|
||||
* [#2367](https://github.com/nextcloud/deck/pull/2367) Properly handle multiple shares in a row and refactor sharee loading
|
||||
* [#2404](https://github.com/nextcloud/deck/pull/2404) Update Controls.vue @Flamenco
|
||||
* [#2433](https://github.com/nextcloud/deck/pull/2433) Fix scrollable titles with Dyslexia font
|
||||
* [#2434](https://github.com/nextcloud/deck/pull/2434) Move most destructive actions in drop down menus to the bottom @Nienzu
|
||||
* [#2435](https://github.com/nextcloud/deck/pull/2435) Do not open the dialog automatically upon card creation, only upon click
|
||||
* [#2437](https://github.com/nextcloud/deck/pull/2437) Only remove card padding for editable cards
|
||||
* [#2440](https://github.com/nextcloud/deck/pull/2440) Move navigation toggle handling to @nextcloud/vue native one
|
||||
* [#2463](https://github.com/nextcloud/deck/pull/2463) Changed triple dots to ellipsis @rakekniven
|
||||
* [#2500](https://github.com/nextcloud/deck/pull/2500) Move details and description to dedicated component
|
||||
* [#2517](https://github.com/nextcloud/deck/pull/2517) Filter out duplicate cards in overview
|
||||
* [#2502](https://github.com/nextcloud/deck/pull/2502) Assignment code refactoring
|
||||
* [#2519](https://github.com/nextcloud/deck/pull/2519) Fix invisibility bug on modal component @wrox
|
||||
* [#2520](https://github.com/nextcloud/deck/pull/2520) Add placeholder for the description input
|
||||
* [#2521](https://github.com/nextcloud/deck/pull/2521) Add migration step to make table layout consistent
|
||||
* [#2524](https://github.com/nextcloud/deck/pull/2524) Only try to extract first part of the explode result
|
||||
* [#2531](https://github.com/nextcloud/deck/pull/2531) Add proper type to boolean parameter
|
||||
* [#2532](https://github.com/nextcloud/deck/pull/2532) Fix handling of notifications if a board does no longer exist
|
||||
* [#2536](https://github.com/nextcloud/deck/pull/2536) Only set flex layout on the active tab
|
||||
* [#2538](https://github.com/nextcloud/deck/pull/2538) Do not reset filter when staying on the same board
|
||||
* [#2539](https://github.com/nextcloud/deck/pull/2539) Apply proper checks for menu items
|
||||
* [#2540](https://github.com/nextcloud/deck/pull/2540) Only build one main bundle
|
||||
* [#2562](https://github.com/nextcloud/deck/pull/2562) Only try to extract first part of the explode result (Part 2)
|
||||
### Bugfixes
|
||||
|
||||
* [#2364](https://github.com/nextcloud/deck/pull/2364) Use uid instead of displayname for sharee results
|
||||
* [#2365](https://github.com/nextcloud/deck/pull/2365) Comments do not depend on the comments app (@jakobroehrl)
|
||||
* [#2395](https://github.com/nextcloud/deck/pull/2395) Fix failure if full text search app was enabled
|
||||
* [#2396](https://github.com/nextcloud/deck/pull/2396) Also exclude deleted items from calendar boards
|
||||
* [#2425](https://github.com/nextcloud/deck/pull/2425) Fix filter popover styling (@Flamenco)
|
||||
* [#2432](https://github.com/nextcloud/deck/pull/2432) Properly handle multiple shares in a row and refactor sharee loading
|
||||
|
||||
## 1.1.0 - 2020-10-03
|
||||
|
||||
|
||||
18
README.md
18
README.md
@@ -5,15 +5,15 @@
|
||||
|
||||
Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.
|
||||
|
||||
- Add your tasks to cards and put them in order
|
||||
- Write down additional notes in markdown
|
||||
- Assign labels for even better organization
|
||||
- Share with your team, friends or family
|
||||
- Integrates with the [Circles](https://github.com/nextcloud/circles) app!
|
||||
- Attach files and embed them in your markdown description
|
||||
- Discuss with your team using comments
|
||||
- Keep track of changes in the activity stream
|
||||
- Get your project organized
|
||||
- :inbox_tray: Add your tasks to cards and put them in order
|
||||
- :page_facing_up: Write down additional notes in markdown
|
||||
- :bookmark: Assign labels for even better organization
|
||||
- :busts_in_silhouette: Share with your team, friends or family
|
||||
- :family: Integrates with the [Circles](https://github.com/nextcloud/circles) app!
|
||||
- :paperclip: Attach files and embed them in your markdown description
|
||||
- :speech_balloon: Discuss with your team using comments
|
||||
- :zap: Keep track of changes in the activity stream
|
||||
- :rocket: Get your project organized
|
||||
|
||||
### Mobile apps
|
||||
|
||||
|
||||
@@ -17,7 +17,7 @@
|
||||
- 🚀 Get your project organized
|
||||
|
||||
</description>
|
||||
<version>1.2.2</version>
|
||||
<version>1.1.2</version>
|
||||
<licence>agpl</licence>
|
||||
<author>Julius Härtl</author>
|
||||
<namespace>Deck</namespace>
|
||||
@@ -36,7 +36,7 @@
|
||||
<database min-version="9.4">pgsql</database>
|
||||
<database>sqlite</database>
|
||||
<database min-version="5.5">mysql</database>
|
||||
<nextcloud min-version="18" max-version="21" />
|
||||
<nextcloud min-version="18" max-version="20" />
|
||||
</dependencies>
|
||||
<background-jobs>
|
||||
<job>OCA\Deck\Cron\DeleteCron</job>
|
||||
|
||||
@@ -13,12 +13,11 @@
|
||||
},
|
||||
"require-dev": {
|
||||
"roave/security-advisories": "dev-master",
|
||||
"christophwurst/nextcloud": "^20",
|
||||
"christophwurst/nextcloud": "^17",
|
||||
"jakub-onderka/php-parallel-lint": "^1.0.0",
|
||||
"phpunit/phpunit": "^8",
|
||||
"nextcloud/coding-standard": "^0.4.0",
|
||||
"symfony/event-dispatcher": "^4.0",
|
||||
"vimeo/psalm": "^4.3",
|
||||
"php-parallel-lint/php-parallel-lint": "^1.2"
|
||||
"nextcloud/coding-standard": "^0.3.0",
|
||||
"symfony/event-dispatcher": "^4.0"
|
||||
},
|
||||
"config": {
|
||||
"optimize-autoloader": true,
|
||||
@@ -27,8 +26,6 @@
|
||||
"scripts": {
|
||||
"lint": "find . -name \\*.php -not -path './vendor/*' -print0 | xargs -0 -n1 php -l",
|
||||
"cs:check": "php-cs-fixer fix --dry-run --diff",
|
||||
"cs:fix": "php-cs-fixer fix",
|
||||
"psalm": "psalm",
|
||||
"psalm:fix": "psalm --alter --issues=InvalidReturnType,InvalidNullableReturnType,MismatchingDocblockParamType,MismatchingDocblockReturnType,MissingParamType,InvalidFalsableReturnType"
|
||||
"cs:fix": "php-cs-fixer fix"
|
||||
}
|
||||
}
|
||||
|
||||
4906
composer.lock
generated
4906
composer.lock
generated
File diff suppressed because it is too large
Load Diff
@@ -9,8 +9,6 @@
|
||||
@include icon-black-white('filter_set', 'deck', 1);
|
||||
@include icon-black-white('attach', 'deck', 1);
|
||||
@include icon-black-white('reply', 'deck', 1);
|
||||
@include icon-black-white('notifications-dark', 'deck', 1);
|
||||
@include icon-black-white('description', 'deck', 1);
|
||||
|
||||
.icon-toggle-compact-collapsed {
|
||||
@include icon-color('toggle-view-expand', 'deck', $color-black);
|
||||
|
||||
@@ -1,34 +1,5 @@
|
||||
# Nextcloud APIs
|
||||
|
||||
## Capabilities
|
||||
|
||||
The [Nextcloud Capabilities API](https://docs.nextcloud.com/server/latest/developer_manual/client_apis/OCS/ocs-api-overview.html#capabilities-api) provides the following information for the Deck app:
|
||||
|
||||
- `version` Current version of the Deck app running
|
||||
- `canCreateBoards` Ability of the current user to create new boards for themselves
|
||||
|
||||
```
|
||||
{
|
||||
"ocs": {
|
||||
"meta": {
|
||||
"status": "ok",
|
||||
"statuscode": 200,
|
||||
"message": "OK"
|
||||
},
|
||||
"data": {
|
||||
"capabilities": {
|
||||
"deck": {
|
||||
"version": "0.8.0",
|
||||
"canCreateBoards": true
|
||||
},
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
|
||||
|
||||
## Available sharees
|
||||
|
||||
When sharing a board to a user, group or circle, the possible sharees can be obtained though the files_sharing API.
|
||||
|
||||
123
docs/API.md
123
docs/API.md
@@ -5,7 +5,6 @@ The REST API provides access for authenticated users to their data inside the De
|
||||
|
||||
- All requests require a `OCS-APIRequest` HTTP header to be set to `true` and a `Content-Type` of `application/json`.
|
||||
- The API is located at https://nextcloud.local/index.php/apps/deck/api/v1.0
|
||||
- All request parameters are required, unless otherwise specified
|
||||
|
||||
## Naming
|
||||
|
||||
@@ -21,7 +20,7 @@ The REST API provides access for authenticated users to their data inside the De
|
||||
|
||||
### 400 Bad request
|
||||
|
||||
In case the request is invalid, e.g. because a parameter is missing or an invalid value has been transmitted, a 400 error will be returned:
|
||||
In case the request is invalid, e.g. because a parameter is missing, a 400 error will be returned:
|
||||
|
||||
```json
|
||||
{
|
||||
@@ -41,12 +40,6 @@ In any case a user doesn't have access to a requested entity, a 403 error will b
|
||||
}
|
||||
```
|
||||
|
||||
## Formats
|
||||
|
||||
### Date
|
||||
|
||||
Datetime values in request data need to be provided in ISO-8601. Example: 2020-01-20T09:52:43+00:00
|
||||
|
||||
## Headers
|
||||
|
||||
### If-Modified-Since
|
||||
@@ -58,7 +51,7 @@ The supported date formats are:
|
||||
* (obsolete) RFC 850: `Sunday, 03-Aug-19 10:34:12 GMT`
|
||||
* (obsolete) ANSI C asctime(): `Sun Aug 3 10:34:12 2019`
|
||||
|
||||
It is highly recommended to only use the IMF-fixdate format. Note that according to [RFC2616](https://tools.ietf.org/html/rfc2616#section-3.3) all HTTP date/time stamps MUST be represented in Greenwich Mean Time (GMT), without exception.
|
||||
It is highly recommended to only use the IMF-fixdate format.
|
||||
|
||||
Example curl request:
|
||||
|
||||
@@ -69,31 +62,6 @@ curl -u admin:admin -X GET \
|
||||
-H "If-Modified-Since: Mon, 05 Nov 2018 09:28:00 GMT"
|
||||
```
|
||||
|
||||
### ETag
|
||||
|
||||
An ETag header is returned in order to determine if further child elements have been updated for the following endpoints:
|
||||
|
||||
- Fetch all user board `GET /api/v1.0/boards`
|
||||
- Fetch a single board `GET /api/v1.0/boards/{boardId}`
|
||||
- Fetch all stacks of a board `GET /api/v1.0/boards/{boardId}/stacks`
|
||||
- Fetch a single stacks of a board `GET /api/v1.0/boards/{boardId}/stacks/{stackId}`
|
||||
- Fetch a single card of a board `GET /api/v1.0/boards/{boardId}/stacks/{stackId}/cards/{cardId}`
|
||||
- Fetch attachments of a card `GET /api/v1.0/boards/{boardId}/stacks/{stackId}/cards/{cardId}/attachments`
|
||||
|
||||
If a `If-None-Match` header is provided and the requested element has not changed a `304` Not Modified response will be returned.
|
||||
|
||||
Changes of child elements will propagate to their parents and also cause an update of the ETag which will be useful for determining if a sync is necessary on any client integration side. As an example, if a label is added to a card, the ETag of all related entities (the card, stack and board) will change.
|
||||
|
||||
If available the ETag will also be part of JSON response objects as shown below for a card:
|
||||
|
||||
```json
|
||||
{
|
||||
"id": 81,
|
||||
"ETag": "bdb10fa2d2aeda092a2b6b469454dc90",
|
||||
"title": "Test card"
|
||||
}
|
||||
```
|
||||
|
||||
# Changelog
|
||||
|
||||
## 1.0.0 (unreleased)
|
||||
@@ -115,7 +83,7 @@ The board list endpoint supports setting an `If-Modified-Since` header to limit
|
||||
|
||||
| Parameter | Type | Description |
|
||||
| --------- | ------- | ---------------------------- |
|
||||
| details | Bool | **Optional** Enhance boards with details about labels, stacks and users |
|
||||
| options | Bool | **Optional** Enhance boards with details about labels, stacks and users |
|
||||
|
||||
#### Response
|
||||
|
||||
@@ -147,10 +115,6 @@ Returns an array of board items
|
||||
"deletedAt": 0,
|
||||
"id": 10,
|
||||
"lastModified": 1586269585,
|
||||
"settings": {
|
||||
"notify-due": "off",
|
||||
"calendar": true
|
||||
}
|
||||
}
|
||||
]
|
||||
```
|
||||
@@ -229,10 +193,6 @@ Returns an array of board items
|
||||
}
|
||||
```
|
||||
|
||||
##### 403 Forbidden
|
||||
|
||||
A 403 response might be returned if the users ability to create new boards has been disabled by the administrator. For checking this before, see the `canCreateBoards` value in the [Nextcloud capabilties](./API-Nextcloud.md).
|
||||
|
||||
### GET /boards/{boardId} - Get board details
|
||||
|
||||
#### Request parameters
|
||||
@@ -584,7 +544,7 @@ The board list endpoint supports setting an `If-Modified-Since` header to limit
|
||||
"owner":"admin",
|
||||
"order":999,
|
||||
"archived":false,
|
||||
"duedate": "2019-12-24T19:29:30+00:00",
|
||||
"duedate":null,
|
||||
"deletedAt":0,
|
||||
"commentsUnread":0,
|
||||
"id":10,
|
||||
@@ -612,7 +572,7 @@ The board list endpoint supports setting an `If-Modified-Since` header to limit
|
||||
| description | String | The markdown description of the card |
|
||||
| type | String | Type of the card (for later use) use 'plain' for now |
|
||||
| order | Integer | Order for sorting the stacks |
|
||||
| duedate | timestamp | The ISO-8601 formatted duedate of the card or null |
|
||||
| duedate | timestamp | The duedate of the card or null |
|
||||
|
||||
|
||||
```
|
||||
@@ -621,7 +581,7 @@ The board list endpoint supports setting an `If-Modified-Since` header to limit
|
||||
"description": "A card description",
|
||||
"type": "plain",
|
||||
"order": 999,
|
||||
"duedate": "2019-12-24T19:29:30+00:00",
|
||||
"duedate": null,
|
||||
}
|
||||
```
|
||||
|
||||
@@ -992,77 +952,6 @@ For now only `deck_file` is supported as an attachment type.
|
||||
The following endpoints are available through the Nextcloud OCS endpoint, which is available at `/ocs/v2.php/apps/deck/api/v1.0/`.
|
||||
This has the benefit that both the web UI as well as external integrations can use the same API.
|
||||
|
||||
## Config
|
||||
|
||||
Deck stores user and app configuration values globally and per board. The GET endpoint allows to fetch the current global configuration while board settings will be exposed through the board element on the regular API endpoints.
|
||||
|
||||
### GET /api/v1.0/config - Fetch app configuration values
|
||||
|
||||
#### Response
|
||||
|
||||
| Config key | Description | Value |
|
||||
| --- | --- |
|
||||
| calendar | Determines if the calendar/tasks integration through the CalDAV backend is enabled for the user (boolean) |
|
||||
| groupLimit | Determines if creating new boards is limited to certain groups of the instance. The resulting output is an array of group objects with the id and the displayname (Admin only)|
|
||||
|
||||
```
|
||||
{
|
||||
"ocs": {
|
||||
"meta": {
|
||||
"status": "ok",
|
||||
"statuscode": 200,
|
||||
"message": "OK"
|
||||
},
|
||||
"data": {
|
||||
"calendar": true,
|
||||
"groupLimit": [
|
||||
{
|
||||
"id": "admin",
|
||||
"displayname": "admin"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
```
|
||||
|
||||
### POST /api/v1.0/config/{id}/{key} - Set a config value
|
||||
|
||||
|
||||
#### Request parameters
|
||||
|
||||
| Parameter | Type | Description |
|
||||
| --------- | ------- | --------------------------------------- |
|
||||
| id | Integer | The id of the board |
|
||||
| key | String | The config key to set, prefixed with `board:{boardId}:` for board specific settings |
|
||||
| value | String | The value that should be stored for the config key |
|
||||
|
||||
##### Board configuration
|
||||
|
||||
| Key | Value |
|
||||
| --- | ----- |
|
||||
| notify-due | `off`, `assigned` or `all` |
|
||||
| calendar | Boolean |
|
||||
|
||||
#### Example request
|
||||
|
||||
```
|
||||
curl -X POST 'https://admin:admin@nextcloud.local/ocs/v2.php/apps/deck/api/v1.0/config/calendar' -H 'Accept: application/json' -H "Content-Type: application/json" -H 'OCS-APIRequest: true' --data-raw '{"value":false}'
|
||||
|
||||
{
|
||||
"ocs": {
|
||||
"meta": {
|
||||
"status": "ok",
|
||||
"statuscode": 200,
|
||||
"message": "OK"
|
||||
},
|
||||
"data": false
|
||||
}
|
||||
}
|
||||
|
||||
```
|
||||
|
||||
## Comments
|
||||
|
||||
### GET /cards/{cardId}/comments - List comments
|
||||
|
||||
@@ -1 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M14,17L4,17v2h10v-2zM20,9L4,9v2h16L20,9zM4,15h16v-2L4,13v2zM4,5v2h16L20,5L4,5z"/></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" version="1.1" height="16"><path fill="#000" d="m2.5 1c-0.28 0-0.5 0.22-0.5 0.5v13c0 0.28 0.22 0.5 0.5 0.5h11c0.28 0 0.5-0.22 0.5-0.5v-10.5l-3-3h-8.5zm1.5 2h6v1h-6v-1zm0 3h5v1h-5v-1zm0 3h8v1h-8v-1zm0 3h4v1h-4v-1z"/></svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 180 B After Width: | Height: | Size: 292 B |
@@ -1,4 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.1" viewBox="0 0 16 16">
|
||||
<path d="m8 2c-0.5523 0-1 0.4477-1 1 0 0.0472 0.021 0.0873 0.0273 0.1328-1.7366 0.4362-3.0273 1.9953-3.0273 3.8672v2l-1 1v1h10v-1l-1-1v-2c0-1.8719-1.291-3.431-3.0273-3.8672 0.0063-0.0455 0.0273-0.0856 0.0273-0.1328 0-0.5523-0.4477-1-1-1zm-2 10c0 1.1046 0.8954 2 2 2s2-0.8954 2-2z" fill="#000"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 456 B |
@@ -20,15 +20,15 @@ OC.L10N.register(
|
||||
"Delete" : "Skrap",
|
||||
"Edit" : "Wysig",
|
||||
"Title" : "Titel",
|
||||
"Due date" : "Sperdatum",
|
||||
"Description" : "Beskrywing",
|
||||
"Comments" : "Kommentare",
|
||||
"Select Date" : "Kies Datum",
|
||||
"Modified" : "Gewysig",
|
||||
"Created" : "Geskep",
|
||||
"Due date" : "Sperdatum",
|
||||
"Select Date" : "Kies Datum",
|
||||
"Save" : "Stoor",
|
||||
"Reply" : "Antwoord",
|
||||
"Update" : "Werk by",
|
||||
"Description" : "Beskrywing",
|
||||
"seconds ago" : "sekondes gelede",
|
||||
"Shared with you" : "Met u gedeel",
|
||||
"An error occurred" : "'n Fout het voorgekom",
|
||||
|
||||
@@ -18,15 +18,15 @@
|
||||
"Delete" : "Skrap",
|
||||
"Edit" : "Wysig",
|
||||
"Title" : "Titel",
|
||||
"Due date" : "Sperdatum",
|
||||
"Description" : "Beskrywing",
|
||||
"Comments" : "Kommentare",
|
||||
"Select Date" : "Kies Datum",
|
||||
"Modified" : "Gewysig",
|
||||
"Created" : "Geskep",
|
||||
"Due date" : "Sperdatum",
|
||||
"Select Date" : "Kies Datum",
|
||||
"Save" : "Stoor",
|
||||
"Reply" : "Antwoord",
|
||||
"Update" : "Werk by",
|
||||
"Description" : "Beskrywing",
|
||||
"seconds ago" : "sekondes gelede",
|
||||
"Shared with you" : "Met u gedeel",
|
||||
"An error occurred" : "'n Fout het voorgekom",
|
||||
|
||||
27
l10n/ar.js
27
l10n/ar.js
@@ -78,7 +78,6 @@ OC.L10N.register(
|
||||
"Undo" : "تراجع",
|
||||
"Deleted cards" : "البطاقات المحذوفة",
|
||||
"Share board with a user, group or circle …" : "مشاركة اللوح مع مستخدم،مجموعة او دائرة ..",
|
||||
"Searching for users, groups and circles …" : "ابحث عن اعضاء، مجموعات أو حلقات ...",
|
||||
"Board owner" : "منشئ اللوح",
|
||||
"(Group)" : "(مجموعة)",
|
||||
"(Circle)" : "(دائرة)",
|
||||
@@ -98,11 +97,6 @@ OC.L10N.register(
|
||||
"Add this attachment" : "إضافة هذا المرفق",
|
||||
"Delete Attachment" : "مسح المرفق",
|
||||
"Restore Attachment" : "استعادة المرفق",
|
||||
"Attachments" : "المرفقات",
|
||||
"Comments" : "تعليقات",
|
||||
"Modified" : "عُدل",
|
||||
"Created" : "أُنشئ",
|
||||
"No comments yet. Begin the discussion!" : "لا يوجد تعليقات بعد, ابدأ النقاش الآن!",
|
||||
"Assign a tag to this card…" : "انسب وسم الى هذه البطاقة..",
|
||||
"Assign to users" : "انسب الى المتسخدمين",
|
||||
"Assign to users/groups/circles" : "انسب الى المستخدمين،المجموعات،الدوائر",
|
||||
@@ -110,32 +104,37 @@ OC.L10N.register(
|
||||
"Due date" : "تاريخ الانجاز",
|
||||
"Set a due date" : "تعيين تاريخ الانجاز",
|
||||
"Remove due date" : "ازالة تاريخ الانجاز",
|
||||
"Save" : "حفظ",
|
||||
"The comment cannot be empty." : "التعليق لايمكن ان يكون فارغا.",
|
||||
"The comment cannot be longer than 1000 characters." : "التعليق لا يمكن ان يكون اطول من 1000 حرف.",
|
||||
"In reply to" : "يقوم بالرد على",
|
||||
"Reply" : "رد",
|
||||
"Update" : "تحديث",
|
||||
"Description" : "الوصف",
|
||||
"(Unsaved)" : "(غير محفوظ)",
|
||||
"(Saving…)" : "(يُحفظ..)",
|
||||
"Edit description" : "تعديل الوصف",
|
||||
"View description" : "إظهار الوصف",
|
||||
"Add Attachment" : "أضف ملحق",
|
||||
"Attachments" : "المرفقات",
|
||||
"Comments" : "تعليقات",
|
||||
"Choose attachment" : "اختيار مرفق",
|
||||
"Modified" : "عُدل",
|
||||
"Created" : "أُنشئ",
|
||||
"No comments yet. Begin the discussion!" : "لا يوجد تعليقات بعد, ابدأ النقاش الآن!",
|
||||
"Save" : "حفظ",
|
||||
"The comment cannot be empty." : "التعليق لايمكن ان يكون فارغا.",
|
||||
"The comment cannot be longer than 1000 characters." : "التعليق لا يمكن ان يكون اطول من 1000 حرف.",
|
||||
"In reply to" : "يقوم بالرد على",
|
||||
"Reply" : "رد",
|
||||
"Update" : "تحديث",
|
||||
"(group)" : "(مجموعة)",
|
||||
"(circle)" : "(دائرة)",
|
||||
"Assign to me" : "ينسب لي",
|
||||
"Move card" : "حرك البطاقة",
|
||||
"Delete card" : "حذف البطاقة",
|
||||
"Move card" : "حرك البطاقة",
|
||||
"Move card to another board" : "حرك البطاقة الى لوح اخر",
|
||||
"seconds ago" : "ثوانٍ مضت",
|
||||
"All boards" : "جميع الالواح",
|
||||
"Archived boards" : "الالواح المؤرشفة",
|
||||
"Shared with you" : "شورك معك",
|
||||
"Limit deck usage of groups" : "استخدام دك Deck محدود للمجاميع",
|
||||
"Board details" : "تفاصيل لوح",
|
||||
"Edit board" : "تعديل اللوح",
|
||||
"Board details" : "تفاصيل لوح",
|
||||
"An error occurred" : "طرأ هناك خطأ",
|
||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "هل انت متأكد تريد مسح اللوح {title}؟ هذا سوف يمسح جميع بيانات هذا اللوح.",
|
||||
"Delete the board?" : "مسح اللوح؟",
|
||||
|
||||
27
l10n/ar.json
27
l10n/ar.json
@@ -76,7 +76,6 @@
|
||||
"Undo" : "تراجع",
|
||||
"Deleted cards" : "البطاقات المحذوفة",
|
||||
"Share board with a user, group or circle …" : "مشاركة اللوح مع مستخدم،مجموعة او دائرة ..",
|
||||
"Searching for users, groups and circles …" : "ابحث عن اعضاء، مجموعات أو حلقات ...",
|
||||
"Board owner" : "منشئ اللوح",
|
||||
"(Group)" : "(مجموعة)",
|
||||
"(Circle)" : "(دائرة)",
|
||||
@@ -96,11 +95,6 @@
|
||||
"Add this attachment" : "إضافة هذا المرفق",
|
||||
"Delete Attachment" : "مسح المرفق",
|
||||
"Restore Attachment" : "استعادة المرفق",
|
||||
"Attachments" : "المرفقات",
|
||||
"Comments" : "تعليقات",
|
||||
"Modified" : "عُدل",
|
||||
"Created" : "أُنشئ",
|
||||
"No comments yet. Begin the discussion!" : "لا يوجد تعليقات بعد, ابدأ النقاش الآن!",
|
||||
"Assign a tag to this card…" : "انسب وسم الى هذه البطاقة..",
|
||||
"Assign to users" : "انسب الى المتسخدمين",
|
||||
"Assign to users/groups/circles" : "انسب الى المستخدمين،المجموعات،الدوائر",
|
||||
@@ -108,32 +102,37 @@
|
||||
"Due date" : "تاريخ الانجاز",
|
||||
"Set a due date" : "تعيين تاريخ الانجاز",
|
||||
"Remove due date" : "ازالة تاريخ الانجاز",
|
||||
"Save" : "حفظ",
|
||||
"The comment cannot be empty." : "التعليق لايمكن ان يكون فارغا.",
|
||||
"The comment cannot be longer than 1000 characters." : "التعليق لا يمكن ان يكون اطول من 1000 حرف.",
|
||||
"In reply to" : "يقوم بالرد على",
|
||||
"Reply" : "رد",
|
||||
"Update" : "تحديث",
|
||||
"Description" : "الوصف",
|
||||
"(Unsaved)" : "(غير محفوظ)",
|
||||
"(Saving…)" : "(يُحفظ..)",
|
||||
"Edit description" : "تعديل الوصف",
|
||||
"View description" : "إظهار الوصف",
|
||||
"Add Attachment" : "أضف ملحق",
|
||||
"Attachments" : "المرفقات",
|
||||
"Comments" : "تعليقات",
|
||||
"Choose attachment" : "اختيار مرفق",
|
||||
"Modified" : "عُدل",
|
||||
"Created" : "أُنشئ",
|
||||
"No comments yet. Begin the discussion!" : "لا يوجد تعليقات بعد, ابدأ النقاش الآن!",
|
||||
"Save" : "حفظ",
|
||||
"The comment cannot be empty." : "التعليق لايمكن ان يكون فارغا.",
|
||||
"The comment cannot be longer than 1000 characters." : "التعليق لا يمكن ان يكون اطول من 1000 حرف.",
|
||||
"In reply to" : "يقوم بالرد على",
|
||||
"Reply" : "رد",
|
||||
"Update" : "تحديث",
|
||||
"(group)" : "(مجموعة)",
|
||||
"(circle)" : "(دائرة)",
|
||||
"Assign to me" : "ينسب لي",
|
||||
"Move card" : "حرك البطاقة",
|
||||
"Delete card" : "حذف البطاقة",
|
||||
"Move card" : "حرك البطاقة",
|
||||
"Move card to another board" : "حرك البطاقة الى لوح اخر",
|
||||
"seconds ago" : "ثوانٍ مضت",
|
||||
"All boards" : "جميع الالواح",
|
||||
"Archived boards" : "الالواح المؤرشفة",
|
||||
"Shared with you" : "شورك معك",
|
||||
"Limit deck usage of groups" : "استخدام دك Deck محدود للمجاميع",
|
||||
"Board details" : "تفاصيل لوح",
|
||||
"Edit board" : "تعديل اللوح",
|
||||
"Board details" : "تفاصيل لوح",
|
||||
"An error occurred" : "طرأ هناك خطأ",
|
||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "هل انت متأكد تريد مسح اللوح {title}؟ هذا سوف يمسح جميع بيانات هذا اللوح.",
|
||||
"Delete the board?" : "مسح اللوح؟",
|
||||
|
||||
@@ -27,6 +27,7 @@ OC.L10N.register(
|
||||
"Edit" : "Editar",
|
||||
"Title" : "Títulu",
|
||||
"Members" : "Miembros",
|
||||
"Description" : "Descripción",
|
||||
"Attachments" : "Axuntos",
|
||||
"Comments" : "Comentarios",
|
||||
"Modified" : "Modificóse'l",
|
||||
@@ -34,7 +35,6 @@ OC.L10N.register(
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Rempuesta",
|
||||
"Update" : "Anovar",
|
||||
"Description" : "Descripción",
|
||||
"(group)" : "(grupu)",
|
||||
"seconds ago" : "hai segundos",
|
||||
"Shared with you" : "Shared with you",
|
||||
|
||||
@@ -25,6 +25,7 @@
|
||||
"Edit" : "Editar",
|
||||
"Title" : "Títulu",
|
||||
"Members" : "Miembros",
|
||||
"Description" : "Descripción",
|
||||
"Attachments" : "Axuntos",
|
||||
"Comments" : "Comentarios",
|
||||
"Modified" : "Modificóse'l",
|
||||
@@ -32,7 +33,6 @@
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Rempuesta",
|
||||
"Update" : "Anovar",
|
||||
"Description" : "Descripción",
|
||||
"(group)" : "(grupu)",
|
||||
"seconds ago" : "hai segundos",
|
||||
"Shared with you" : "Shared with you",
|
||||
|
||||
@@ -15,11 +15,11 @@ OC.L10N.register(
|
||||
"Delete" : "Sil",
|
||||
"Edit" : "Dəyişiklik et",
|
||||
"Title" : "Başlıq",
|
||||
"Description" : "Açıqlanma",
|
||||
"Modified" : "Dəyişdirildi",
|
||||
"Save" : "Saxla",
|
||||
"Reply" : "Cavab",
|
||||
"Update" : "Yenilənmə",
|
||||
"Description" : "Açıqlanma",
|
||||
"(group)" : "(qrup)",
|
||||
"seconds ago" : "saniyələr öncə",
|
||||
"Shared with you" : "Shared with you",
|
||||
|
||||
@@ -13,11 +13,11 @@
|
||||
"Delete" : "Sil",
|
||||
"Edit" : "Dəyişiklik et",
|
||||
"Title" : "Başlıq",
|
||||
"Description" : "Açıqlanma",
|
||||
"Modified" : "Dəyişdirildi",
|
||||
"Save" : "Saxla",
|
||||
"Reply" : "Cavab",
|
||||
"Update" : "Yenilənmə",
|
||||
"Description" : "Açıqlanma",
|
||||
"(group)" : "(qrup)",
|
||||
"seconds ago" : "saniyələr öncə",
|
||||
"Shared with you" : "Shared with you",
|
||||
|
||||
10
l10n/bg.js
10
l10n/bg.js
@@ -28,17 +28,17 @@ OC.L10N.register(
|
||||
"Title" : "Име",
|
||||
"Members" : "Членове",
|
||||
"Upload attachment" : "Качване",
|
||||
"Attachments" : "Прикачени файлове",
|
||||
"Comments" : "Коментари",
|
||||
"Modified" : "Промяна",
|
||||
"Created" : "Създаден",
|
||||
"Due date" : "Крайна дата",
|
||||
"Remove due date" : "Премахни крайната дата",
|
||||
"Description" : "Описание",
|
||||
"Attachments" : "Прикачени файлове",
|
||||
"Comments" : "Коментари",
|
||||
"Select Date" : "Изберете дата",
|
||||
"Modified" : "Промяна",
|
||||
"Created" : "Създаден",
|
||||
"Save" : "Запазване",
|
||||
"Reply" : "Отговори",
|
||||
"Update" : "Обновяване",
|
||||
"Description" : "Описание",
|
||||
"(group)" : "(група)",
|
||||
"seconds ago" : "преди секунди",
|
||||
"Shared with you" : "Споделени с вас",
|
||||
|
||||
10
l10n/bg.json
10
l10n/bg.json
@@ -26,17 +26,17 @@
|
||||
"Title" : "Име",
|
||||
"Members" : "Членове",
|
||||
"Upload attachment" : "Качване",
|
||||
"Attachments" : "Прикачени файлове",
|
||||
"Comments" : "Коментари",
|
||||
"Modified" : "Промяна",
|
||||
"Created" : "Създаден",
|
||||
"Due date" : "Крайна дата",
|
||||
"Remove due date" : "Премахни крайната дата",
|
||||
"Description" : "Описание",
|
||||
"Attachments" : "Прикачени файлове",
|
||||
"Comments" : "Коментари",
|
||||
"Select Date" : "Изберете дата",
|
||||
"Modified" : "Промяна",
|
||||
"Created" : "Създаден",
|
||||
"Save" : "Запазване",
|
||||
"Reply" : "Отговори",
|
||||
"Update" : "Обновяване",
|
||||
"Description" : "Описание",
|
||||
"(group)" : "(група)",
|
||||
"seconds ago" : "преди секунди",
|
||||
"Shared with you" : "Споделени с вас",
|
||||
|
||||
@@ -15,11 +15,11 @@ OC.L10N.register(
|
||||
"Delete" : "মুছে",
|
||||
"Edit" : "সম্পাদনা",
|
||||
"Title" : "শিরোনাম",
|
||||
"Description" : "বিবরণ",
|
||||
"Modified" : "পরিবর্তিত",
|
||||
"Save" : "সংরক্ষণ",
|
||||
"Reply" : "জবাব",
|
||||
"Update" : "পরিবর্ধন",
|
||||
"Description" : "বিবরণ",
|
||||
"(group)" : "(গোষ্ঠি)",
|
||||
"seconds ago" : "সেকেন্ড পূর্বে",
|
||||
"Shared with you" : "Shared with you",
|
||||
|
||||
@@ -13,11 +13,11 @@
|
||||
"Delete" : "মুছে",
|
||||
"Edit" : "সম্পাদনা",
|
||||
"Title" : "শিরোনাম",
|
||||
"Description" : "বিবরণ",
|
||||
"Modified" : "পরিবর্তিত",
|
||||
"Save" : "সংরক্ষণ",
|
||||
"Reply" : "জবাব",
|
||||
"Update" : "পরিবর্ধন",
|
||||
"Description" : "বিবরণ",
|
||||
"(group)" : "(গোষ্ঠি)",
|
||||
"seconds ago" : "সেকেন্ড পূর্বে",
|
||||
"Shared with you" : "Shared with you",
|
||||
|
||||
@@ -14,12 +14,12 @@ OC.L10N.register(
|
||||
"Can share" : "Galout a ra rannañ",
|
||||
"Delete" : "Dilemel",
|
||||
"Edit" : "Cheñch",
|
||||
"Description" : "Diskrivadur",
|
||||
"Comments" : "Displegadennoù",
|
||||
"Modified" : "Cheñchet",
|
||||
"Save" : "Enrollañ",
|
||||
"Reply" : "Respont",
|
||||
"Update" : "Adnevesaat",
|
||||
"Description" : "Diskrivadur",
|
||||
"(group)" : "(strollad)",
|
||||
"seconds ago" : "eilenn zo",
|
||||
"Shared with you" : "Rannet ganeoc'h",
|
||||
|
||||
@@ -12,12 +12,12 @@
|
||||
"Can share" : "Galout a ra rannañ",
|
||||
"Delete" : "Dilemel",
|
||||
"Edit" : "Cheñch",
|
||||
"Description" : "Diskrivadur",
|
||||
"Comments" : "Displegadennoù",
|
||||
"Modified" : "Cheñchet",
|
||||
"Save" : "Enrollañ",
|
||||
"Reply" : "Respont",
|
||||
"Update" : "Adnevesaat",
|
||||
"Description" : "Diskrivadur",
|
||||
"(group)" : "(strollad)",
|
||||
"seconds ago" : "eilenn zo",
|
||||
"Shared with you" : "Rannet ganeoc'h",
|
||||
|
||||
@@ -14,11 +14,11 @@ OC.L10N.register(
|
||||
"Edit" : "Izmjeni",
|
||||
"Title" : "Naslov",
|
||||
"Members" : "Članovi",
|
||||
"Description" : "Opis",
|
||||
"Comments" : "Komentari",
|
||||
"Modified" : "Izmijenjeno",
|
||||
"Save" : "Spremi",
|
||||
"Update" : "Ažuriraj",
|
||||
"Description" : "Opis",
|
||||
"Shared with you" : "Shared with you",
|
||||
"Today" : "Danas",
|
||||
"Tomorrow" : "Sutra",
|
||||
|
||||
@@ -12,11 +12,11 @@
|
||||
"Edit" : "Izmjeni",
|
||||
"Title" : "Naslov",
|
||||
"Members" : "Članovi",
|
||||
"Description" : "Opis",
|
||||
"Comments" : "Komentari",
|
||||
"Modified" : "Izmijenjeno",
|
||||
"Save" : "Spremi",
|
||||
"Update" : "Ažuriraj",
|
||||
"Description" : "Opis",
|
||||
"Shared with you" : "Shared with you",
|
||||
"Today" : "Danas",
|
||||
"Tomorrow" : "Sutra",
|
||||
|
||||
90
l10n/ca.js
90
l10n/ca.js
@@ -64,10 +64,10 @@ OC.L10N.register(
|
||||
"You have commented on card {card}" : "Heu comentat la targeta {card}",
|
||||
"{user} has commented on card {card}" : "{user} ha comentat la targeta {card}",
|
||||
"A <strong>card description</strong> inside the Deck app has been changed" : "S'ha canviat una <strong>descripció de targeta</strong> a l'aplicació Tauler",
|
||||
"Deck" : "Targetes",
|
||||
"Changes in the <strong>Deck app</strong>" : "Canvis a l'<strong>aplicació Targetes</strong>",
|
||||
"Deck" : "Tauler",
|
||||
"Changes in the <strong>Deck app</strong>" : "Hi ha canvis a l'<strong>aplicació Tauler</strong>",
|
||||
"A <strong>comment</strong> was created on a card" : "S'ha afegit un <strong>comentari</strong> a una targeta",
|
||||
"Upcoming cards" : "Pròximes targetes",
|
||||
"Upcoming cards" : "Properes targetes",
|
||||
"Personal" : "Personal",
|
||||
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "La targeta \"%s\" sobre \"%s\" se us ha assignat per %s.",
|
||||
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} us ha assignat la targeta \"%s\" sobre \"%s\".",
|
||||
@@ -81,26 +81,26 @@ OC.L10N.register(
|
||||
"To review" : "Per revisar",
|
||||
"Action needed" : "Acció necessària",
|
||||
"Later" : "Més tard",
|
||||
"copy" : "còpia",
|
||||
"To do" : "Pendent",
|
||||
"copy" : "copia",
|
||||
"To do" : "Pendents",
|
||||
"Doing" : "En procés",
|
||||
"Done" : "Finalitzat",
|
||||
"Done" : "Finalitzades",
|
||||
"Example Task 3" : "Tasca d'exemple 3",
|
||||
"Example Task 2" : "Tasca d'exemple 2",
|
||||
"Example Task 1" : "Tasca d'exemple 1",
|
||||
"The file was uploaded" : "S'ha pujat el fitxer",
|
||||
"The file was uploaded" : "S'ha carregat el fitxer",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El fitxer carregat excedeix la directiva upload_max_filesize dins de php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El fitxer carregat excedeix la directiva MAX_FILE_SIZE que hi ha especificada al formulari d'HTML",
|
||||
"The file was only partially uploaded" : "El fitxer s'ha carregat només parcialment",
|
||||
"No file was uploaded" : "No s'ha pujat cap fitxer",
|
||||
"No file was uploaded" : "No s'ha carregat cap fitxer",
|
||||
"Missing a temporary folder" : "Falta una carpeta temporal",
|
||||
"Could not write file to disk" : "No s’ha pogut escriure el fitxer al disc",
|
||||
"A PHP extension stopped the file upload" : "Una extensió del PHP ha aturat la carregada del fitxer",
|
||||
"No file uploaded or file size exceeds maximum of %s" : "No s'ha carregat cap fitxer o la mida del fitxer sobrepassa el màxim de %s",
|
||||
"Personal planning and team project organization" : "Planificació personal i organització de projectes en equip",
|
||||
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Tauler és una eina d'organització a l'estil kanban dirigida a la planificació personal i a l'organització de projectes per equips integrada a Nextcloud.\n\n\n- 📥 Afegiu les tasques en targetes i poseu-les en ordre\n- 📄 Apunteu notes addicionals en markdown\n- 🔖 Assigneu etiquetes per una organització encara millor\n- 👥 Compartiu amb el vostre equip, família o amics\n- 📎 Adjunteu fitxers i encasteu-los en la descripció en markdown\n- 💬 Debateu amb el vostre equip fent servir comentaris\n- ⚡ Mantingueu el seguiment de canvis al flux d'activitat\n- 🚀 Tingueu el vostre projecte organitzat",
|
||||
"Card details" : "Detalls de la targeta",
|
||||
"Add board" : "Afegeix un tauler",
|
||||
"Card details" : "Dades de la targeta",
|
||||
"Add board" : "Afegeix una taula",
|
||||
"Select the board to link to a project" : "Selecciona el tauler per enllaçar a un projecte",
|
||||
"Search by board title" : "Cerca per títol del tauler",
|
||||
"Select board" : "Selecciona un tauler",
|
||||
@@ -118,7 +118,7 @@ OC.L10N.register(
|
||||
"Drop your files to upload" : "Deixeu anar els fitxers per penjar-los",
|
||||
"Archived cards" : "Targetes arxivades",
|
||||
"Add list" : "Afegeix una llista",
|
||||
"List name" : "Nom de la llista",
|
||||
"List name" : "Nom de llista",
|
||||
"Apply filter" : "Aplica el filtre",
|
||||
"Filter by tag" : "Filtra per etiqueta",
|
||||
"Filter by assigned user" : "Filtra per usuari assignat",
|
||||
@@ -126,16 +126,16 @@ OC.L10N.register(
|
||||
"Filter by due date" : "Filtra per data de venciment",
|
||||
"Overdue" : "Endarrerit",
|
||||
"Next 24 hours" : "Pròximes 24 hores",
|
||||
"Next 7 days" : "Pròxims 7 dies",
|
||||
"Next 30 days" : "Pròxims 30 dies",
|
||||
"Next 7 days" : "Propers 7 dies",
|
||||
"Next 30 days" : "Propers 30 dies",
|
||||
"No due date" : "Sense venciment",
|
||||
"Clear filter" : "Esborra el filtre",
|
||||
"Clear filter" : "Neteja el filtre",
|
||||
"Hide archived cards" : "Amaga les targetes arxivades",
|
||||
"Show archived cards" : "Mostra les targetes arxivades",
|
||||
"Toggle compact mode" : "Commuta el mode compacte",
|
||||
"Details" : "Detalls",
|
||||
"Loading board" : "S'està carregant el tauler",
|
||||
"No lists available" : "No hi ha cap llista disponible",
|
||||
"Loading board" : "Carregant tauler",
|
||||
"No lists available" : "Cap llista disponible",
|
||||
"Create a new list to add cards to this board" : "Crea una llista nova per afegir targetes a aquest tauler",
|
||||
"Board not found" : "Tauler no trobat",
|
||||
"Sharing" : "Compartició",
|
||||
@@ -146,8 +146,6 @@ OC.L10N.register(
|
||||
"Undo" : "Desfés",
|
||||
"Deleted cards" : "Targetes suprimides",
|
||||
"Share board with a user, group or circle …" : "Compartir tauler amb un usuari, grup o cercle …",
|
||||
"Searching for users, groups and circles …" : "Buscant usuaris, grups i cercles",
|
||||
"No participants found" : "No s'han trobat participants",
|
||||
"Board owner" : "Propietari del tauler",
|
||||
"(Group)" : "(Grup)",
|
||||
"(Circle)" : "(Cercle)",
|
||||
@@ -155,7 +153,6 @@ OC.L10N.register(
|
||||
"Can share" : "Pot compartir",
|
||||
"Can manage" : "Pot gestionar",
|
||||
"Delete" : "Eliminar",
|
||||
"Failed to create share with {displayName}" : "Ha fallat la creació de la compartició amb {displayName}",
|
||||
"Add a new list" : "Afegir una llista nova",
|
||||
"Archive all cards" : "Arxiva totes les targetes",
|
||||
"Delete list" : "Suprimeix la llista",
|
||||
@@ -163,7 +160,6 @@ OC.L10N.register(
|
||||
"Archive all cards in this list" : "Arxiva totes les targetes d'aquesta llista",
|
||||
"Add a new card" : "Afegir una nova targeta",
|
||||
"Card name" : "Nom de la targeta",
|
||||
"List deleted" : "Llista suprimida",
|
||||
"Edit" : "Edita",
|
||||
"Add a new tag" : "Afegir una etiqueta nova",
|
||||
"title and color value must be provided" : "s’ha de proporcionar el valor del títol i del color",
|
||||
@@ -175,12 +171,6 @@ OC.L10N.register(
|
||||
"Restore Attachment" : "Restaura l'adjunt",
|
||||
"Open in sidebar view" : "Obre a la vista de la barra lateral",
|
||||
"Open in bigger view" : "Obre a la vista més gran",
|
||||
"Attachments" : "Adjunts",
|
||||
"Comments" : "Comentaris",
|
||||
"Modified" : "Darrera modificació",
|
||||
"Created" : "Creat",
|
||||
"The title cannot be empty." : "El títol no pot estar buit",
|
||||
"No comments yet. Begin the discussion!" : "No hi ha comentaris encara. Començar la discussió!",
|
||||
"Assign a tag to this card…" : "Assigna una etiqueta a aquesta targeta…",
|
||||
"Assign to users" : "Assigna als usuaris",
|
||||
"Assign to users/groups/circles" : "Assigna a usuaris/grups/cercles",
|
||||
@@ -188,13 +178,6 @@ OC.L10N.register(
|
||||
"Due date" : "Per la data",
|
||||
"Set a due date" : "Definir una data de venciment",
|
||||
"Remove due date" : "Elimina la data de venciment",
|
||||
"Select Date" : "Selecciona la data",
|
||||
"Save" : "Desa",
|
||||
"The comment cannot be empty." : "El comentari no pot estar buit.",
|
||||
"The comment cannot be longer than 1000 characters." : "El comentari no pot ser més llarg que 1000 caràcters.",
|
||||
"In reply to" : "En resposta a",
|
||||
"Reply" : "Respon",
|
||||
"Update" : "Actualitza",
|
||||
"Description" : "Descripció",
|
||||
"(Unsaved)" : "(No desat)",
|
||||
"(Saving…)" : "(Desant…)",
|
||||
@@ -202,19 +185,29 @@ OC.L10N.register(
|
||||
"Edit description" : "Edita descripció",
|
||||
"View description" : "Veure descripció",
|
||||
"Add Attachment" : "Afegeix un adjunt",
|
||||
"Write a description …" : "Escriviu una descripció...",
|
||||
"Attachments" : "Adjunts",
|
||||
"Comments" : "Comentaris",
|
||||
"Choose attachment" : "Triar adjunt",
|
||||
"Select Date" : "Selecciona la data",
|
||||
"Modified" : "Darrera modificació",
|
||||
"Created" : "Creat",
|
||||
"No comments yet. Begin the discussion!" : "No hi ha comentaris encara. Començar la discussió!",
|
||||
"Save" : "Desa",
|
||||
"The comment cannot be empty." : "El comentari no pot estar buit.",
|
||||
"The comment cannot be longer than 1000 characters." : "El comentari no pot ser més llarg que 1000 caràcters.",
|
||||
"In reply to" : "En resposta a",
|
||||
"Reply" : "Respon",
|
||||
"Update" : "Actualitza",
|
||||
"(group)" : "(grup)",
|
||||
"(circle)" : "(cercle)",
|
||||
"Assign to me" : "Assigna'm a mi",
|
||||
"Unassign myself" : "Desasignar a mi mateix",
|
||||
"Move card" : "Mou la targeta",
|
||||
"Unarchive card" : "Desarxiva targeta",
|
||||
"Archive card" : "Arxiva la targeta",
|
||||
"Delete card" : "Suprimeix targeta",
|
||||
"Move card" : "Mou la targeta",
|
||||
"Move card to another board" : "Mou la targeta a un altre tauler",
|
||||
"Select a list" : "Seleccioneu una llista",
|
||||
"Card deleted" : "Targeta suprimida",
|
||||
"seconds ago" : "fa uns segons",
|
||||
"All boards" : "Tots els taulers",
|
||||
"Archived boards" : "Taulers arxivats",
|
||||
@@ -223,32 +216,23 @@ OC.L10N.register(
|
||||
"Show boards in calendar/tasks" : "Mostra els taulers al calendari/tasques",
|
||||
"Limit deck usage of groups" : "Limitar l'ús del tauler de grups",
|
||||
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Limitant el Tauler bloquejarà la creació de taulers als usuaris que no són part d'aquests grups. Els usuaris podran seguir treballant en els taulers que hagin estat compartits amb ells.",
|
||||
"Board name" : "Nom del taulell",
|
||||
"Board details" : "Detalls de la junta",
|
||||
"Edit board" : "Edita el tauler",
|
||||
"Clone board" : "Clonar tauler",
|
||||
"Unarchive board" : "Desarxiva el tauler",
|
||||
"Archive board" : "Arxiva el tauler",
|
||||
"Turn on due date reminders" : "Activa els recordatoris de data de venciment",
|
||||
"Turn off due date reminders" : "Desactiva els recordatoris de data de venciment",
|
||||
"Due date reminders" : "Recordatoris de data de venciment",
|
||||
"All cards" : "Totes les targetes",
|
||||
"Assigned cards" : "Targetes assignades",
|
||||
"No notifications" : "No hi ha notificacions",
|
||||
"Delete board" : "Suprimeix el tauler",
|
||||
"Clone board " : "Clonar tauler ",
|
||||
"Unarchive board " : "Desarxiva tauler ",
|
||||
"Archive board " : "Arxiva tauler ",
|
||||
"Delete board " : "Suprimeix tauler ",
|
||||
"Board details" : "Detalls de la junta",
|
||||
"Board {0} deleted" : "S’ha suprimit el tauler {0}",
|
||||
"Only assigned cards" : "Només les targetes assignades",
|
||||
"No reminder" : "Sense recordatoris",
|
||||
"An error occurred" : "S'ha produït un error",
|
||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Esteu segur que voleu suprimir el tauler {title}? Això eliminarà totes les dades d'aquest tauler.",
|
||||
"Delete the board?" : "Voleu suprimir el tauler?",
|
||||
"Delete the board?" : "Suprimir el tauler?",
|
||||
"Loading filtered view" : "S'està carregant la visualització filtrada",
|
||||
"Today" : "Avui",
|
||||
"Tomorrow" : "Demà",
|
||||
"This week" : "Aquesta setmana",
|
||||
"No due" : "Sense venciment",
|
||||
"No upcoming cards" : "No hi ha pròximes targetes",
|
||||
"upcoming cards" : "pròximes targetes",
|
||||
"No upcoming cards" : "No hi ha targetes futures",
|
||||
"upcoming cards" : "properes targetes",
|
||||
"Link to a board" : "Enllaça a un tauler",
|
||||
"Link to a card" : "Enllaç una targeta",
|
||||
"Something went wrong" : "Alguna cosa ha anat malament",
|
||||
|
||||
90
l10n/ca.json
90
l10n/ca.json
@@ -62,10 +62,10 @@
|
||||
"You have commented on card {card}" : "Heu comentat la targeta {card}",
|
||||
"{user} has commented on card {card}" : "{user} ha comentat la targeta {card}",
|
||||
"A <strong>card description</strong> inside the Deck app has been changed" : "S'ha canviat una <strong>descripció de targeta</strong> a l'aplicació Tauler",
|
||||
"Deck" : "Targetes",
|
||||
"Changes in the <strong>Deck app</strong>" : "Canvis a l'<strong>aplicació Targetes</strong>",
|
||||
"Deck" : "Tauler",
|
||||
"Changes in the <strong>Deck app</strong>" : "Hi ha canvis a l'<strong>aplicació Tauler</strong>",
|
||||
"A <strong>comment</strong> was created on a card" : "S'ha afegit un <strong>comentari</strong> a una targeta",
|
||||
"Upcoming cards" : "Pròximes targetes",
|
||||
"Upcoming cards" : "Properes targetes",
|
||||
"Personal" : "Personal",
|
||||
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "La targeta \"%s\" sobre \"%s\" se us ha assignat per %s.",
|
||||
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} us ha assignat la targeta \"%s\" sobre \"%s\".",
|
||||
@@ -79,26 +79,26 @@
|
||||
"To review" : "Per revisar",
|
||||
"Action needed" : "Acció necessària",
|
||||
"Later" : "Més tard",
|
||||
"copy" : "còpia",
|
||||
"To do" : "Pendent",
|
||||
"copy" : "copia",
|
||||
"To do" : "Pendents",
|
||||
"Doing" : "En procés",
|
||||
"Done" : "Finalitzat",
|
||||
"Done" : "Finalitzades",
|
||||
"Example Task 3" : "Tasca d'exemple 3",
|
||||
"Example Task 2" : "Tasca d'exemple 2",
|
||||
"Example Task 1" : "Tasca d'exemple 1",
|
||||
"The file was uploaded" : "S'ha pujat el fitxer",
|
||||
"The file was uploaded" : "S'ha carregat el fitxer",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El fitxer carregat excedeix la directiva upload_max_filesize dins de php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El fitxer carregat excedeix la directiva MAX_FILE_SIZE que hi ha especificada al formulari d'HTML",
|
||||
"The file was only partially uploaded" : "El fitxer s'ha carregat només parcialment",
|
||||
"No file was uploaded" : "No s'ha pujat cap fitxer",
|
||||
"No file was uploaded" : "No s'ha carregat cap fitxer",
|
||||
"Missing a temporary folder" : "Falta una carpeta temporal",
|
||||
"Could not write file to disk" : "No s’ha pogut escriure el fitxer al disc",
|
||||
"A PHP extension stopped the file upload" : "Una extensió del PHP ha aturat la carregada del fitxer",
|
||||
"No file uploaded or file size exceeds maximum of %s" : "No s'ha carregat cap fitxer o la mida del fitxer sobrepassa el màxim de %s",
|
||||
"Personal planning and team project organization" : "Planificació personal i organització de projectes en equip",
|
||||
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Tauler és una eina d'organització a l'estil kanban dirigida a la planificació personal i a l'organització de projectes per equips integrada a Nextcloud.\n\n\n- 📥 Afegiu les tasques en targetes i poseu-les en ordre\n- 📄 Apunteu notes addicionals en markdown\n- 🔖 Assigneu etiquetes per una organització encara millor\n- 👥 Compartiu amb el vostre equip, família o amics\n- 📎 Adjunteu fitxers i encasteu-los en la descripció en markdown\n- 💬 Debateu amb el vostre equip fent servir comentaris\n- ⚡ Mantingueu el seguiment de canvis al flux d'activitat\n- 🚀 Tingueu el vostre projecte organitzat",
|
||||
"Card details" : "Detalls de la targeta",
|
||||
"Add board" : "Afegeix un tauler",
|
||||
"Card details" : "Dades de la targeta",
|
||||
"Add board" : "Afegeix una taula",
|
||||
"Select the board to link to a project" : "Selecciona el tauler per enllaçar a un projecte",
|
||||
"Search by board title" : "Cerca per títol del tauler",
|
||||
"Select board" : "Selecciona un tauler",
|
||||
@@ -116,7 +116,7 @@
|
||||
"Drop your files to upload" : "Deixeu anar els fitxers per penjar-los",
|
||||
"Archived cards" : "Targetes arxivades",
|
||||
"Add list" : "Afegeix una llista",
|
||||
"List name" : "Nom de la llista",
|
||||
"List name" : "Nom de llista",
|
||||
"Apply filter" : "Aplica el filtre",
|
||||
"Filter by tag" : "Filtra per etiqueta",
|
||||
"Filter by assigned user" : "Filtra per usuari assignat",
|
||||
@@ -124,16 +124,16 @@
|
||||
"Filter by due date" : "Filtra per data de venciment",
|
||||
"Overdue" : "Endarrerit",
|
||||
"Next 24 hours" : "Pròximes 24 hores",
|
||||
"Next 7 days" : "Pròxims 7 dies",
|
||||
"Next 30 days" : "Pròxims 30 dies",
|
||||
"Next 7 days" : "Propers 7 dies",
|
||||
"Next 30 days" : "Propers 30 dies",
|
||||
"No due date" : "Sense venciment",
|
||||
"Clear filter" : "Esborra el filtre",
|
||||
"Clear filter" : "Neteja el filtre",
|
||||
"Hide archived cards" : "Amaga les targetes arxivades",
|
||||
"Show archived cards" : "Mostra les targetes arxivades",
|
||||
"Toggle compact mode" : "Commuta el mode compacte",
|
||||
"Details" : "Detalls",
|
||||
"Loading board" : "S'està carregant el tauler",
|
||||
"No lists available" : "No hi ha cap llista disponible",
|
||||
"Loading board" : "Carregant tauler",
|
||||
"No lists available" : "Cap llista disponible",
|
||||
"Create a new list to add cards to this board" : "Crea una llista nova per afegir targetes a aquest tauler",
|
||||
"Board not found" : "Tauler no trobat",
|
||||
"Sharing" : "Compartició",
|
||||
@@ -144,8 +144,6 @@
|
||||
"Undo" : "Desfés",
|
||||
"Deleted cards" : "Targetes suprimides",
|
||||
"Share board with a user, group or circle …" : "Compartir tauler amb un usuari, grup o cercle …",
|
||||
"Searching for users, groups and circles …" : "Buscant usuaris, grups i cercles",
|
||||
"No participants found" : "No s'han trobat participants",
|
||||
"Board owner" : "Propietari del tauler",
|
||||
"(Group)" : "(Grup)",
|
||||
"(Circle)" : "(Cercle)",
|
||||
@@ -153,7 +151,6 @@
|
||||
"Can share" : "Pot compartir",
|
||||
"Can manage" : "Pot gestionar",
|
||||
"Delete" : "Eliminar",
|
||||
"Failed to create share with {displayName}" : "Ha fallat la creació de la compartició amb {displayName}",
|
||||
"Add a new list" : "Afegir una llista nova",
|
||||
"Archive all cards" : "Arxiva totes les targetes",
|
||||
"Delete list" : "Suprimeix la llista",
|
||||
@@ -161,7 +158,6 @@
|
||||
"Archive all cards in this list" : "Arxiva totes les targetes d'aquesta llista",
|
||||
"Add a new card" : "Afegir una nova targeta",
|
||||
"Card name" : "Nom de la targeta",
|
||||
"List deleted" : "Llista suprimida",
|
||||
"Edit" : "Edita",
|
||||
"Add a new tag" : "Afegir una etiqueta nova",
|
||||
"title and color value must be provided" : "s’ha de proporcionar el valor del títol i del color",
|
||||
@@ -173,12 +169,6 @@
|
||||
"Restore Attachment" : "Restaura l'adjunt",
|
||||
"Open in sidebar view" : "Obre a la vista de la barra lateral",
|
||||
"Open in bigger view" : "Obre a la vista més gran",
|
||||
"Attachments" : "Adjunts",
|
||||
"Comments" : "Comentaris",
|
||||
"Modified" : "Darrera modificació",
|
||||
"Created" : "Creat",
|
||||
"The title cannot be empty." : "El títol no pot estar buit",
|
||||
"No comments yet. Begin the discussion!" : "No hi ha comentaris encara. Començar la discussió!",
|
||||
"Assign a tag to this card…" : "Assigna una etiqueta a aquesta targeta…",
|
||||
"Assign to users" : "Assigna als usuaris",
|
||||
"Assign to users/groups/circles" : "Assigna a usuaris/grups/cercles",
|
||||
@@ -186,13 +176,6 @@
|
||||
"Due date" : "Per la data",
|
||||
"Set a due date" : "Definir una data de venciment",
|
||||
"Remove due date" : "Elimina la data de venciment",
|
||||
"Select Date" : "Selecciona la data",
|
||||
"Save" : "Desa",
|
||||
"The comment cannot be empty." : "El comentari no pot estar buit.",
|
||||
"The comment cannot be longer than 1000 characters." : "El comentari no pot ser més llarg que 1000 caràcters.",
|
||||
"In reply to" : "En resposta a",
|
||||
"Reply" : "Respon",
|
||||
"Update" : "Actualitza",
|
||||
"Description" : "Descripció",
|
||||
"(Unsaved)" : "(No desat)",
|
||||
"(Saving…)" : "(Desant…)",
|
||||
@@ -200,19 +183,29 @@
|
||||
"Edit description" : "Edita descripció",
|
||||
"View description" : "Veure descripció",
|
||||
"Add Attachment" : "Afegeix un adjunt",
|
||||
"Write a description …" : "Escriviu una descripció...",
|
||||
"Attachments" : "Adjunts",
|
||||
"Comments" : "Comentaris",
|
||||
"Choose attachment" : "Triar adjunt",
|
||||
"Select Date" : "Selecciona la data",
|
||||
"Modified" : "Darrera modificació",
|
||||
"Created" : "Creat",
|
||||
"No comments yet. Begin the discussion!" : "No hi ha comentaris encara. Començar la discussió!",
|
||||
"Save" : "Desa",
|
||||
"The comment cannot be empty." : "El comentari no pot estar buit.",
|
||||
"The comment cannot be longer than 1000 characters." : "El comentari no pot ser més llarg que 1000 caràcters.",
|
||||
"In reply to" : "En resposta a",
|
||||
"Reply" : "Respon",
|
||||
"Update" : "Actualitza",
|
||||
"(group)" : "(grup)",
|
||||
"(circle)" : "(cercle)",
|
||||
"Assign to me" : "Assigna'm a mi",
|
||||
"Unassign myself" : "Desasignar a mi mateix",
|
||||
"Move card" : "Mou la targeta",
|
||||
"Unarchive card" : "Desarxiva targeta",
|
||||
"Archive card" : "Arxiva la targeta",
|
||||
"Delete card" : "Suprimeix targeta",
|
||||
"Move card" : "Mou la targeta",
|
||||
"Move card to another board" : "Mou la targeta a un altre tauler",
|
||||
"Select a list" : "Seleccioneu una llista",
|
||||
"Card deleted" : "Targeta suprimida",
|
||||
"seconds ago" : "fa uns segons",
|
||||
"All boards" : "Tots els taulers",
|
||||
"Archived boards" : "Taulers arxivats",
|
||||
@@ -221,32 +214,23 @@
|
||||
"Show boards in calendar/tasks" : "Mostra els taulers al calendari/tasques",
|
||||
"Limit deck usage of groups" : "Limitar l'ús del tauler de grups",
|
||||
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Limitant el Tauler bloquejarà la creació de taulers als usuaris que no són part d'aquests grups. Els usuaris podran seguir treballant en els taulers que hagin estat compartits amb ells.",
|
||||
"Board name" : "Nom del taulell",
|
||||
"Board details" : "Detalls de la junta",
|
||||
"Edit board" : "Edita el tauler",
|
||||
"Clone board" : "Clonar tauler",
|
||||
"Unarchive board" : "Desarxiva el tauler",
|
||||
"Archive board" : "Arxiva el tauler",
|
||||
"Turn on due date reminders" : "Activa els recordatoris de data de venciment",
|
||||
"Turn off due date reminders" : "Desactiva els recordatoris de data de venciment",
|
||||
"Due date reminders" : "Recordatoris de data de venciment",
|
||||
"All cards" : "Totes les targetes",
|
||||
"Assigned cards" : "Targetes assignades",
|
||||
"No notifications" : "No hi ha notificacions",
|
||||
"Delete board" : "Suprimeix el tauler",
|
||||
"Clone board " : "Clonar tauler ",
|
||||
"Unarchive board " : "Desarxiva tauler ",
|
||||
"Archive board " : "Arxiva tauler ",
|
||||
"Delete board " : "Suprimeix tauler ",
|
||||
"Board details" : "Detalls de la junta",
|
||||
"Board {0} deleted" : "S’ha suprimit el tauler {0}",
|
||||
"Only assigned cards" : "Només les targetes assignades",
|
||||
"No reminder" : "Sense recordatoris",
|
||||
"An error occurred" : "S'ha produït un error",
|
||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Esteu segur que voleu suprimir el tauler {title}? Això eliminarà totes les dades d'aquest tauler.",
|
||||
"Delete the board?" : "Voleu suprimir el tauler?",
|
||||
"Delete the board?" : "Suprimir el tauler?",
|
||||
"Loading filtered view" : "S'està carregant la visualització filtrada",
|
||||
"Today" : "Avui",
|
||||
"Tomorrow" : "Demà",
|
||||
"This week" : "Aquesta setmana",
|
||||
"No due" : "Sense venciment",
|
||||
"No upcoming cards" : "No hi ha pròximes targetes",
|
||||
"upcoming cards" : "pròximes targetes",
|
||||
"No upcoming cards" : "No hi ha targetes futures",
|
||||
"upcoming cards" : "properes targetes",
|
||||
"Link to a board" : "Enllaça a un tauler",
|
||||
"Link to a card" : "Enllaç una targeta",
|
||||
"Something went wrong" : "Alguna cosa ha anat malament",
|
||||
|
||||
52
l10n/cs.js
52
l10n/cs.js
@@ -146,8 +146,6 @@ OC.L10N.register(
|
||||
"Undo" : "Vrátit zpět",
|
||||
"Deleted cards" : "Smazané karty",
|
||||
"Share board with a user, group or circle …" : "Sdílet tabuli s uživatelem, skupinou nebo okruhem…",
|
||||
"Searching for users, groups and circles …" : "Hledání v uživatelích, skupinách a okruzích…",
|
||||
"No participants found" : "Nenalezeni žádní účastníci",
|
||||
"Board owner" : "Vlastník tabule",
|
||||
"(Group)" : "(Skupina)",
|
||||
"(Circle)" : "(Okruh)",
|
||||
@@ -155,7 +153,6 @@ OC.L10N.register(
|
||||
"Can share" : "Může sdílet",
|
||||
"Can manage" : "Může spravovat",
|
||||
"Delete" : "Smazat",
|
||||
"Failed to create share with {displayName}" : "Nepodařilo se vytvořit sdílení s {displayName}",
|
||||
"Add a new list" : "Přidat nový sloupec",
|
||||
"Archive all cards" : "Archivovat všechny karty",
|
||||
"Delete list" : "Smazat seznam",
|
||||
@@ -163,7 +160,6 @@ OC.L10N.register(
|
||||
"Archive all cards in this list" : "Archivovat všechny karty v tomto seznamu",
|
||||
"Add a new card" : "Přidat novou kartu",
|
||||
"Card name" : "Název karty",
|
||||
"List deleted" : "Seznam smazán",
|
||||
"Edit" : "Upravit",
|
||||
"Add a new tag" : "Přidat nový štítek",
|
||||
"title and color value must be provided" : "je třeba zadat nadpis a zvolit barvu",
|
||||
@@ -175,12 +171,6 @@ OC.L10N.register(
|
||||
"Restore Attachment" : "Obnovit přílohu",
|
||||
"Open in sidebar view" : "Otevřít v zobrazení v postranním panelu",
|
||||
"Open in bigger view" : "Otevřít ve větším zobrazení",
|
||||
"Attachments" : "Přílohy",
|
||||
"Comments" : "Komentáře",
|
||||
"Modified" : "Změněno",
|
||||
"Created" : "Vytvořeno",
|
||||
"The title cannot be empty." : "Nadpis je třeba vyplnit.",
|
||||
"No comments yet. Begin the discussion!" : "Zatím bez komentářů. Zahajte diskuzi!",
|
||||
"Assign a tag to this card…" : "Přiřadit této kartě štítek…",
|
||||
"Assign to users" : "Přiřadit k uživatelům",
|
||||
"Assign to users/groups/circles" : "Přiřadit uživatelům/skupinám/okruhům",
|
||||
@@ -188,13 +178,6 @@ OC.L10N.register(
|
||||
"Due date" : "Termín",
|
||||
"Set a due date" : "Vybrat termín",
|
||||
"Remove due date" : "Odstranit termín",
|
||||
"Select Date" : "Vybrat datum",
|
||||
"Save" : "Uložit",
|
||||
"The comment cannot be empty." : "Komentář je třeba vyplnit",
|
||||
"The comment cannot be longer than 1000 characters." : "Délka komentáře může být nejvýše 1 000 znaků.",
|
||||
"In reply to" : "V odpověď na",
|
||||
"Reply" : "Odpovědět",
|
||||
"Update" : "Aktualizovat",
|
||||
"Description" : "Popis",
|
||||
"(Unsaved)" : "(Neuloženo)",
|
||||
"(Saving…)" : "(Ukládání…)",
|
||||
@@ -202,19 +185,30 @@ OC.L10N.register(
|
||||
"Edit description" : "Upravit popis",
|
||||
"View description" : "Zobrazit popis",
|
||||
"Add Attachment" : "Přidat přílohu",
|
||||
"Write a description …" : "Zadejte popis…",
|
||||
"Attachments" : "Přílohy",
|
||||
"Comments" : "Komentáře",
|
||||
"Choose attachment" : "Zvolte přílohu",
|
||||
"Select Date" : "Vybrat datum",
|
||||
"Modified" : "Změněno",
|
||||
"Created" : "Vytvořeno",
|
||||
"The title cannot be empty." : "Nadpis je třeba vyplnit.",
|
||||
"No comments yet. Begin the discussion!" : "Zatím bez komentářů. Zahajte diskuzi!",
|
||||
"Save" : "Uložit",
|
||||
"The comment cannot be empty." : "Komentář je třeba vyplnit",
|
||||
"The comment cannot be longer than 1000 characters." : "Délka komentáře může být nejvýše 1 000 znaků.",
|
||||
"In reply to" : "V odpověď na",
|
||||
"Reply" : "Odpovědět",
|
||||
"Update" : "Aktualizovat",
|
||||
"(group)" : "(skupina)",
|
||||
"(circle)" : "(okruh)",
|
||||
"Assign to me" : "Přiřadit mě",
|
||||
"Unassign myself" : "Zrušit přiřazení sobě",
|
||||
"Move card" : "Přesunout kartu",
|
||||
"Unarchive card" : "Zrušit archivaci karty",
|
||||
"Archive card" : "Archivovat kartu",
|
||||
"Delete card" : "Smazat kartu",
|
||||
"Move card" : "Přesunout kartu",
|
||||
"Move card to another board" : "Přesunout kartu na jinou tabuli",
|
||||
"Select a list" : "Vyberte sloupec",
|
||||
"Card deleted" : "Karta smazána",
|
||||
"seconds ago" : "před několika sekundami",
|
||||
"All boards" : "Všechny tabule",
|
||||
"Archived boards" : "Archivované tabule",
|
||||
@@ -224,21 +218,13 @@ OC.L10N.register(
|
||||
"Limit deck usage of groups" : "Omezit využití deck na skupiny",
|
||||
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Omezení nastavené pro Deck brání uživatelům, kteří nejsou součástí těchto skupin, ve vytváření vlastních tabulí. Nicméně i tak ale pořád budou moci pracovat na tabulích, které jsou jim nasdíleny.",
|
||||
"Board name" : "Název tabule",
|
||||
"Board details" : "Podrobnosti o desce",
|
||||
"Edit board" : "Upravit tabuli",
|
||||
"Clone board" : "Klonovat tabuli",
|
||||
"Unarchive board" : "Vrátit tabuli zpět z archivu",
|
||||
"Archive board" : "Archivovat tabuli",
|
||||
"Turn on due date reminders" : "Zapnout upomínky termínů",
|
||||
"Turn off due date reminders" : "Vypnout upomínky termínů",
|
||||
"Due date reminders" : "Upomínky termínů",
|
||||
"All cards" : "Všechny karty",
|
||||
"Assigned cards" : "Přiřazené karty",
|
||||
"No notifications" : "Žádná upozornění",
|
||||
"Delete board" : "Smazat tabuli",
|
||||
"Clone board " : "Klonovat tabuli ",
|
||||
"Unarchive board " : "Vrátit tabuli zpět z archivu ",
|
||||
"Archive board " : "Archivovat tabuli ",
|
||||
"Delete board " : "Smazat tabuli",
|
||||
"Board details" : "Podrobnosti o desce",
|
||||
"Board {0} deleted" : "Tabule {0} smazána",
|
||||
"Only assigned cards" : "Pouze přiřazené karty",
|
||||
"No reminder" : "Bez připomínky",
|
||||
"An error occurred" : "Došlo k chybě",
|
||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Opravdu chcete tabuly {title} smazat? Toto smaže veškerá data této tabule.",
|
||||
"Delete the board?" : "Smazat tabuli?",
|
||||
|
||||
52
l10n/cs.json
52
l10n/cs.json
@@ -144,8 +144,6 @@
|
||||
"Undo" : "Vrátit zpět",
|
||||
"Deleted cards" : "Smazané karty",
|
||||
"Share board with a user, group or circle …" : "Sdílet tabuli s uživatelem, skupinou nebo okruhem…",
|
||||
"Searching for users, groups and circles …" : "Hledání v uživatelích, skupinách a okruzích…",
|
||||
"No participants found" : "Nenalezeni žádní účastníci",
|
||||
"Board owner" : "Vlastník tabule",
|
||||
"(Group)" : "(Skupina)",
|
||||
"(Circle)" : "(Okruh)",
|
||||
@@ -153,7 +151,6 @@
|
||||
"Can share" : "Může sdílet",
|
||||
"Can manage" : "Může spravovat",
|
||||
"Delete" : "Smazat",
|
||||
"Failed to create share with {displayName}" : "Nepodařilo se vytvořit sdílení s {displayName}",
|
||||
"Add a new list" : "Přidat nový sloupec",
|
||||
"Archive all cards" : "Archivovat všechny karty",
|
||||
"Delete list" : "Smazat seznam",
|
||||
@@ -161,7 +158,6 @@
|
||||
"Archive all cards in this list" : "Archivovat všechny karty v tomto seznamu",
|
||||
"Add a new card" : "Přidat novou kartu",
|
||||
"Card name" : "Název karty",
|
||||
"List deleted" : "Seznam smazán",
|
||||
"Edit" : "Upravit",
|
||||
"Add a new tag" : "Přidat nový štítek",
|
||||
"title and color value must be provided" : "je třeba zadat nadpis a zvolit barvu",
|
||||
@@ -173,12 +169,6 @@
|
||||
"Restore Attachment" : "Obnovit přílohu",
|
||||
"Open in sidebar view" : "Otevřít v zobrazení v postranním panelu",
|
||||
"Open in bigger view" : "Otevřít ve větším zobrazení",
|
||||
"Attachments" : "Přílohy",
|
||||
"Comments" : "Komentáře",
|
||||
"Modified" : "Změněno",
|
||||
"Created" : "Vytvořeno",
|
||||
"The title cannot be empty." : "Nadpis je třeba vyplnit.",
|
||||
"No comments yet. Begin the discussion!" : "Zatím bez komentářů. Zahajte diskuzi!",
|
||||
"Assign a tag to this card…" : "Přiřadit této kartě štítek…",
|
||||
"Assign to users" : "Přiřadit k uživatelům",
|
||||
"Assign to users/groups/circles" : "Přiřadit uživatelům/skupinám/okruhům",
|
||||
@@ -186,13 +176,6 @@
|
||||
"Due date" : "Termín",
|
||||
"Set a due date" : "Vybrat termín",
|
||||
"Remove due date" : "Odstranit termín",
|
||||
"Select Date" : "Vybrat datum",
|
||||
"Save" : "Uložit",
|
||||
"The comment cannot be empty." : "Komentář je třeba vyplnit",
|
||||
"The comment cannot be longer than 1000 characters." : "Délka komentáře může být nejvýše 1 000 znaků.",
|
||||
"In reply to" : "V odpověď na",
|
||||
"Reply" : "Odpovědět",
|
||||
"Update" : "Aktualizovat",
|
||||
"Description" : "Popis",
|
||||
"(Unsaved)" : "(Neuloženo)",
|
||||
"(Saving…)" : "(Ukládání…)",
|
||||
@@ -200,19 +183,30 @@
|
||||
"Edit description" : "Upravit popis",
|
||||
"View description" : "Zobrazit popis",
|
||||
"Add Attachment" : "Přidat přílohu",
|
||||
"Write a description …" : "Zadejte popis…",
|
||||
"Attachments" : "Přílohy",
|
||||
"Comments" : "Komentáře",
|
||||
"Choose attachment" : "Zvolte přílohu",
|
||||
"Select Date" : "Vybrat datum",
|
||||
"Modified" : "Změněno",
|
||||
"Created" : "Vytvořeno",
|
||||
"The title cannot be empty." : "Nadpis je třeba vyplnit.",
|
||||
"No comments yet. Begin the discussion!" : "Zatím bez komentářů. Zahajte diskuzi!",
|
||||
"Save" : "Uložit",
|
||||
"The comment cannot be empty." : "Komentář je třeba vyplnit",
|
||||
"The comment cannot be longer than 1000 characters." : "Délka komentáře může být nejvýše 1 000 znaků.",
|
||||
"In reply to" : "V odpověď na",
|
||||
"Reply" : "Odpovědět",
|
||||
"Update" : "Aktualizovat",
|
||||
"(group)" : "(skupina)",
|
||||
"(circle)" : "(okruh)",
|
||||
"Assign to me" : "Přiřadit mě",
|
||||
"Unassign myself" : "Zrušit přiřazení sobě",
|
||||
"Move card" : "Přesunout kartu",
|
||||
"Unarchive card" : "Zrušit archivaci karty",
|
||||
"Archive card" : "Archivovat kartu",
|
||||
"Delete card" : "Smazat kartu",
|
||||
"Move card" : "Přesunout kartu",
|
||||
"Move card to another board" : "Přesunout kartu na jinou tabuli",
|
||||
"Select a list" : "Vyberte sloupec",
|
||||
"Card deleted" : "Karta smazána",
|
||||
"seconds ago" : "před několika sekundami",
|
||||
"All boards" : "Všechny tabule",
|
||||
"Archived boards" : "Archivované tabule",
|
||||
@@ -222,21 +216,13 @@
|
||||
"Limit deck usage of groups" : "Omezit využití deck na skupiny",
|
||||
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Omezení nastavené pro Deck brání uživatelům, kteří nejsou součástí těchto skupin, ve vytváření vlastních tabulí. Nicméně i tak ale pořád budou moci pracovat na tabulích, které jsou jim nasdíleny.",
|
||||
"Board name" : "Název tabule",
|
||||
"Board details" : "Podrobnosti o desce",
|
||||
"Edit board" : "Upravit tabuli",
|
||||
"Clone board" : "Klonovat tabuli",
|
||||
"Unarchive board" : "Vrátit tabuli zpět z archivu",
|
||||
"Archive board" : "Archivovat tabuli",
|
||||
"Turn on due date reminders" : "Zapnout upomínky termínů",
|
||||
"Turn off due date reminders" : "Vypnout upomínky termínů",
|
||||
"Due date reminders" : "Upomínky termínů",
|
||||
"All cards" : "Všechny karty",
|
||||
"Assigned cards" : "Přiřazené karty",
|
||||
"No notifications" : "Žádná upozornění",
|
||||
"Delete board" : "Smazat tabuli",
|
||||
"Clone board " : "Klonovat tabuli ",
|
||||
"Unarchive board " : "Vrátit tabuli zpět z archivu ",
|
||||
"Archive board " : "Archivovat tabuli ",
|
||||
"Delete board " : "Smazat tabuli",
|
||||
"Board details" : "Podrobnosti o desce",
|
||||
"Board {0} deleted" : "Tabule {0} smazána",
|
||||
"Only assigned cards" : "Pouze přiřazené karty",
|
||||
"No reminder" : "Bez připomínky",
|
||||
"An error occurred" : "Došlo k chybě",
|
||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Opravdu chcete tabuly {title} smazat? Toto smaže veškerá data této tabule.",
|
||||
"Delete the board?" : "Smazat tabuli?",
|
||||
|
||||
@@ -16,11 +16,11 @@ OC.L10N.register(
|
||||
"Edit" : "Golygu",
|
||||
"Title" : "Teitl",
|
||||
"Upload attachment" : "Llwytho atodiad",
|
||||
"Modified" : "Addaswyd",
|
||||
"Description" : "Disgrifiad",
|
||||
"Select Date" : "Dewis Dyddiad",
|
||||
"Modified" : "Addaswyd",
|
||||
"Save" : "Cadw",
|
||||
"Update" : "Diweddaru",
|
||||
"Description" : "Disgrifiad",
|
||||
"seconds ago" : "eiliad yn ôl",
|
||||
"Shared with you" : "Shared with you",
|
||||
"An error occurred" : "Digwyddodd gwall",
|
||||
|
||||
@@ -14,11 +14,11 @@
|
||||
"Edit" : "Golygu",
|
||||
"Title" : "Teitl",
|
||||
"Upload attachment" : "Llwytho atodiad",
|
||||
"Modified" : "Addaswyd",
|
||||
"Description" : "Disgrifiad",
|
||||
"Select Date" : "Dewis Dyddiad",
|
||||
"Modified" : "Addaswyd",
|
||||
"Save" : "Cadw",
|
||||
"Update" : "Diweddaru",
|
||||
"Description" : "Disgrifiad",
|
||||
"seconds ago" : "eiliad yn ôl",
|
||||
"Shared with you" : "Shared with you",
|
||||
"An error occurred" : "Digwyddodd gwall",
|
||||
|
||||
16
l10n/da.js
16
l10n/da.js
@@ -37,27 +37,27 @@ OC.L10N.register(
|
||||
"Title" : "Titel",
|
||||
"Members" : "Medlemmer",
|
||||
"Upload attachment" : "Upload vedhæftning",
|
||||
"Attachments" : "Vedhæftede filer",
|
||||
"Comments" : "Kommentarer",
|
||||
"Modified" : "Ændret",
|
||||
"Created" : "Oprettet",
|
||||
"Due date" : "Forfaldsdato",
|
||||
"Remove due date" : "Fjern forfaldsdato",
|
||||
"Description" : "Beskrivelse",
|
||||
"Formatting help" : "Hjælp til formatering",
|
||||
"Attachments" : "Vedhæftede filer",
|
||||
"Comments" : "Kommentarer",
|
||||
"Select Date" : "Vælg dato",
|
||||
"Modified" : "Ændret",
|
||||
"Created" : "Oprettet",
|
||||
"Save" : "Gem",
|
||||
"Reply" : "Besvar",
|
||||
"Update" : "Opdatér",
|
||||
"Description" : "Beskrivelse",
|
||||
"Formatting help" : "Hjælp til formatering",
|
||||
"(group)" : "(gruppe)",
|
||||
"Move card" : "Flyt kort",
|
||||
"Archive card" : "Arkivér kort",
|
||||
"Delete card" : "Slet kort",
|
||||
"Move card" : "Flyt kort",
|
||||
"seconds ago" : "sekunder siden",
|
||||
"Archived boards" : "Arkiverede lister",
|
||||
"Shared with you" : "Shared with you",
|
||||
"Board details" : "Liste detaljer",
|
||||
"Edit board" : "Rediger liste",
|
||||
"Board details" : "Liste detaljer",
|
||||
"An error occurred" : "Der var en fejl",
|
||||
"Today" : "I dag",
|
||||
"Tomorrow" : "I morgen",
|
||||
|
||||
16
l10n/da.json
16
l10n/da.json
@@ -35,27 +35,27 @@
|
||||
"Title" : "Titel",
|
||||
"Members" : "Medlemmer",
|
||||
"Upload attachment" : "Upload vedhæftning",
|
||||
"Attachments" : "Vedhæftede filer",
|
||||
"Comments" : "Kommentarer",
|
||||
"Modified" : "Ændret",
|
||||
"Created" : "Oprettet",
|
||||
"Due date" : "Forfaldsdato",
|
||||
"Remove due date" : "Fjern forfaldsdato",
|
||||
"Description" : "Beskrivelse",
|
||||
"Formatting help" : "Hjælp til formatering",
|
||||
"Attachments" : "Vedhæftede filer",
|
||||
"Comments" : "Kommentarer",
|
||||
"Select Date" : "Vælg dato",
|
||||
"Modified" : "Ændret",
|
||||
"Created" : "Oprettet",
|
||||
"Save" : "Gem",
|
||||
"Reply" : "Besvar",
|
||||
"Update" : "Opdatér",
|
||||
"Description" : "Beskrivelse",
|
||||
"Formatting help" : "Hjælp til formatering",
|
||||
"(group)" : "(gruppe)",
|
||||
"Move card" : "Flyt kort",
|
||||
"Archive card" : "Arkivér kort",
|
||||
"Delete card" : "Slet kort",
|
||||
"Move card" : "Flyt kort",
|
||||
"seconds ago" : "sekunder siden",
|
||||
"Archived boards" : "Arkiverede lister",
|
||||
"Shared with you" : "Shared with you",
|
||||
"Board details" : "Liste detaljer",
|
||||
"Edit board" : "Rediger liste",
|
||||
"Board details" : "Liste detaljer",
|
||||
"An error occurred" : "Der var en fejl",
|
||||
"Today" : "I dag",
|
||||
"Tomorrow" : "I morgen",
|
||||
|
||||
81
l10n/de.js
81
l10n/de.js
@@ -31,7 +31,7 @@ OC.L10N.register(
|
||||
"{user} has renamed the card {before} to {card}" : "{user} hat die Karte {before} in {card} umbenannt",
|
||||
"You have added a description to card {card} in list {stack} on board {board}" : "Du hast der Karte {card} in der Liste {stack} auf dem Board {board} eine Beschreibung hinzugefügt",
|
||||
"{user} has added a description to card {card} in list {stack} on board {board}" : "{user} hat der Karte {card} in der Liste {stack} auf dem Board {board} eine Beschreibung hinzugefügt",
|
||||
"You have updated the description of card {card} in list {stack} on board {board}" : "Du hast die Beschreibung der Karte {card} in der Liste {stack} auf dem Board {board} aktualisiert",
|
||||
"You have updated the description of card {card} in list {stack} on board {board}" : "Du hast die Beschreibung der Karte {card} in der Liste {stack} auf dem Board {board} aktualisiert",
|
||||
"{user} has updated the description of the card {card} in list {stack} on board {board}" : "{user} hat die Beschreibung der Karte {card} in der Liste {stack} auf dem Board {board} aktualisiert",
|
||||
"You have archived card {card} in list {stack} on board {board}" : "Du hast die Karte {card} in der Liste {stack} auf dem Board {board} archiviert",
|
||||
"{user} has archived card {card} in list {stack} on board {board}" : "{user} hat die Karte {card} in der Liste {stack} auf dem Board {board} archiviert",
|
||||
@@ -49,7 +49,7 @@ OC.L10N.register(
|
||||
"{user} has removed the tag {label} from card {card} in list {stack} on board {board}" : "{user} hat von der Karte {card} in der Liste {stack} auf dem Board {board} das Schlagwort {label} entfernt",
|
||||
"You have assigned {assigneduser} to card {card} on board {board}" : "Du hast {assigneduser} der Karte {card} auf dem Board {board} zugewiesen",
|
||||
"{user} has assigned {assigneduser} to card {card} on board {board}" : "{user} hat {assigneduser} der Karte {card} auf dem Board {board} zugewiesen",
|
||||
"You have unassigned {assigneduser} from card {card} on board {board}" : "Du hast die Zuweisung von {assigneduser} zur Karte {card} auf dem Board {board} aufgehoben",
|
||||
"You have unassigned {assigneduser} from card {card} on board {board}" : "Du hast die Zuweisung von {assigneduser} zur Karte {card} auf dem Board {board} aufgehoben",
|
||||
"{user} has unassigned {assigneduser} from card {card} on board {board}" : "{user} hat die Zuweisung von {assigneduser} zur Karte {card} auf dem Board {board} aufgehoben",
|
||||
"You have moved the card {card} from list {stackBefore} to {stack}" : "Du hast die Karte {card} von der Liste {stackBefore} nach {stack} verschoben",
|
||||
"{user} has moved the card {card} from list {stackBefore} to {stack}" : "{user} hat die Karte {card} von der Liste {stackBefore} nach {stack} verschoben",
|
||||
@@ -67,13 +67,13 @@ OC.L10N.register(
|
||||
"Deck" : "Deck",
|
||||
"Changes in the <strong>Deck app</strong>" : "Änderungen in der <strong>Deck-App</strong>",
|
||||
"A <strong>comment</strong> was created on a card" : "Ein <strong>Kommentar</strong> zu einer Karte wurde erstellt",
|
||||
"Upcoming cards" : "Anstehende Karten",
|
||||
"Upcoming cards" : "Kommende Karten",
|
||||
"Personal" : "Persönlich",
|
||||
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Die Karte \"%s\" auf \"%s\" wurde Dir von %s zugewiesen.",
|
||||
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} hat Dir die Karte \"%s\" auf \"%s\" zugewiesen.",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "Die Karte \"%s\" in \"%s\" ist überfällig.",
|
||||
"%s has mentioned you in a comment on \"%s\"." : "%s hat Dich in einem Kommentar zu \"%s\" erwähnt.",
|
||||
"{user} has mentioned you in a comment on \"%s\"." : "{user} hat Dich in einem Kommentar zu \"%s\" erwähnt.",
|
||||
"%s has mentioned you in a comment on \"%s\"." : " %s hat Dich in einem Kommentar zu \"%s\" erwähnt.",
|
||||
"{user} has mentioned you in a comment on \"%s\"." : "{user} hat Dich in einem Kommentar zu “%s” erwähnt.",
|
||||
"The board \"%s\" has been shared with you by %s." : "Das Board \"%s\" wurde von %s mit Dir geteilt.",
|
||||
"{user} has shared the board %s with you." : "{user} hat das Board %s mit Dir geteilt.",
|
||||
"No data was provided to create an attachment." : "Es wurden keine Daten zum Erstellen eines Anhangs bereitgestellt.",
|
||||
@@ -81,7 +81,7 @@ OC.L10N.register(
|
||||
"To review" : "Zu überprüfen",
|
||||
"Action needed" : "Handlung erforderlich",
|
||||
"Later" : "Später",
|
||||
"copy" : "Kopie",
|
||||
"copy" : "Kopieren",
|
||||
"To do" : "Offen",
|
||||
"Doing" : "In Arbeit",
|
||||
"Done" : "Erledigt",
|
||||
@@ -90,7 +90,7 @@ OC.L10N.register(
|
||||
"Example Task 1" : "Beispielaufgabe 1",
|
||||
"The file was uploaded" : "Die Datei wurde hochgeladen",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Die hochgeladene Datei überschreitet die upload_max_filesize-Vorgabe in php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Die Datei ist größer als die MAX_FILE_SIZE-Vorgabe, die im HTML-Formular angegeben ist",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Die Datei ist größer als die MAX_FILE_SIZE-Vorgabe, die im HTML-Formular angegeben ist.",
|
||||
"The file was only partially uploaded" : "Die Datei konnte nur teilweise hochgeladen werden",
|
||||
"No file was uploaded" : "Es wurde keine Datei hochgeladen",
|
||||
"Missing a temporary folder" : "Kein temporärer Ordner vorhanden",
|
||||
@@ -98,8 +98,8 @@ OC.L10N.register(
|
||||
"A PHP extension stopped the file upload" : "Eine PHP-Erweiterung hat das Hochladen der Datei gestoppt",
|
||||
"No file uploaded or file size exceeds maximum of %s" : "Keine Datei hochgeladen oder die Dateigröße überschreitet %s",
|
||||
"Personal planning and team project organization" : "Persönliche Planung und Teamprojektorganisation",
|
||||
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck ist ein Organisationstool im Kanban-Stil für die persönliche Planung und Projektorganisation von Teams, die in Nextcloud integriert sind.\n\n\n- 📥 Füge Deine Aufgaben zu den Karten hinzu und ordne diese\n- 📄 Zusätzliche Hinweise in der Abschrift notieren\n- 🔖 Zuweisen von Schlagworten für noch bessere Organisation\n- 👥 Teile mit Deinem Team, Freunden oder der Familie\n- 📎 Füge Dateien hinzu und verwende diese in Deinen Markdown-Beschreibungen\n- 💬 Diskutiere mit Deinem Team mit Kommentaren\n- ⚡ Behalte Überblick über Änderungen mit dem Aktivitäten-Stream\n- 🚀 Organisiere Dein Projekt",
|
||||
"Card details" : "Karten-Details",
|
||||
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck ist ein Organisationstool im Kanban-Stil für die persönliche Planung und Projektorganisation von Teams, die in Nextcloud integriert sind.\n\n\n- 📥 Füge Deine Aufgaben zu den Karten hinzu und ordne diese\n- 📄 Zusätzliche Hinweise in der Abschrift notieren\n- 🔖 Vergabe von Schlagworten für noch bessere Organisation\n- 👥 Teile mit Deinem Team, Freunden oder der Familie\n- 📎 Füge Dateien hinzu und verwende diese in Deinen Markdown-Beschreibungen\n- 💬 Diskutiere mit Deinem Team mit Kommentaren\n- ⚡ Behalte Überblick über Änderungen mit dem Aktivitäten-Stream\n- 🚀 Organisiere Dein Projekt",
|
||||
"Card details" : "Kartendetails",
|
||||
"Add board" : "Board hinzufügen",
|
||||
"Select the board to link to a project" : "Wähle ein Board aus, um dieses mit einem Projekt zu verknüpfen",
|
||||
"Search by board title" : "Nach einem Board suchen",
|
||||
@@ -146,8 +146,6 @@ OC.L10N.register(
|
||||
"Undo" : "Rückgängig",
|
||||
"Deleted cards" : "Gelöschte Karten",
|
||||
"Share board with a user, group or circle …" : "Board mit Benutzer, Gruppe oder Kreis teilen…",
|
||||
"Searching for users, groups and circles …" : "Suche nach Benutzern, Gruppen und Kreisen …",
|
||||
"No participants found" : "Keine Teilnehmer gefunden",
|
||||
"Board owner" : "Board-Besitzer",
|
||||
"(Group)" : "(Gruppe)",
|
||||
"(Circle)" : "(Kreis)",
|
||||
@@ -155,7 +153,6 @@ OC.L10N.register(
|
||||
"Can share" : "kann teilen",
|
||||
"Can manage" : "kann verwalten",
|
||||
"Delete" : "Löschen",
|
||||
"Failed to create share with {displayName}" : "Fehler beim Erstellen der Freigabe mit dem Namen {displayName}",
|
||||
"Add a new list" : "Eine neue Liste hinzufügen",
|
||||
"Archive all cards" : "Alle Karten archivieren",
|
||||
"Delete list" : "Liste löschen",
|
||||
@@ -163,7 +160,6 @@ OC.L10N.register(
|
||||
"Archive all cards in this list" : "Alle Karten in dieser Liste archivieren",
|
||||
"Add a new card" : "Neue Karte hinzufügen",
|
||||
"Card name" : "Kartenname",
|
||||
"List deleted" : "Liste gelöscht",
|
||||
"Edit" : "Bearbeiten",
|
||||
"Add a new tag" : "Neues Schlagwort hinzufügen",
|
||||
"title and color value must be provided" : "Titel und Farbwert müssen angegeben werden",
|
||||
@@ -175,12 +171,6 @@ OC.L10N.register(
|
||||
"Restore Attachment" : "Anhang wiederherstellen",
|
||||
"Open in sidebar view" : "In Seitenleiste öffnen",
|
||||
"Open in bigger view" : "In größerer Ansicht öffnen",
|
||||
"Attachments" : "Anhänge",
|
||||
"Comments" : "Kommentare",
|
||||
"Modified" : "Geändert",
|
||||
"Created" : "Erstellt",
|
||||
"The title cannot be empty." : "Der Titel darf nicht leer sein.",
|
||||
"No comments yet. Begin the discussion!" : "Bislang keine Kommentare. Beginne die Diskussion!",
|
||||
"Assign a tag to this card…" : "Dieser Karte ein Schlagwort zuweisen…",
|
||||
"Assign to users" : "Benutzern zuweisen",
|
||||
"Assign to users/groups/circles" : "An Benutzer, Gruppen oder Kreise zuweisen",
|
||||
@@ -188,13 +178,6 @@ OC.L10N.register(
|
||||
"Due date" : "Fälligkeitsdatum",
|
||||
"Set a due date" : "Ein Ablaufdatum setzen",
|
||||
"Remove due date" : "Fälligkeitsdatum löschen",
|
||||
"Select Date" : "Datum auswählen",
|
||||
"Save" : "Speichern",
|
||||
"The comment cannot be empty." : "Der Kommentar darf nicht leer sein.",
|
||||
"The comment cannot be longer than 1000 characters." : "Der Kommentar darf nicht länger als 1000 Zeichen sein.",
|
||||
"In reply to" : "Als Antwort auf",
|
||||
"Reply" : "Antworten",
|
||||
"Update" : "Aktualisieren",
|
||||
"Description" : "Beschreibung",
|
||||
"(Unsaved)" : "(nicht gespeichert)",
|
||||
"(Saving…)" : "(Speichere…)",
|
||||
@@ -202,43 +185,46 @@ OC.L10N.register(
|
||||
"Edit description" : "Beschreibung bearbeiten",
|
||||
"View description" : "Beschreibung anzeigen",
|
||||
"Add Attachment" : "Anhang anhängen",
|
||||
"Write a description …" : "Beschreibung schreiben …",
|
||||
"Attachments" : "Anhänge",
|
||||
"Comments" : "Kommentare",
|
||||
"Choose attachment" : "Anhang auswählen",
|
||||
"Select Date" : "Datum auswählen",
|
||||
"Modified" : "Geändert",
|
||||
"Created" : "Erstellt",
|
||||
"The title cannot be empty." : "Der Titel darf nicht leer sein.",
|
||||
"No comments yet. Begin the discussion!" : "Bislang keine Kommentare. Beginne die Diskussion!",
|
||||
"Save" : "Speichern",
|
||||
"The comment cannot be empty." : "Der Kommentar darf nicht leer sein.",
|
||||
"The comment cannot be longer than 1000 characters." : "Der Kommentar darf nicht länger als 1000 Zeichen sein.",
|
||||
"In reply to" : "Als Antwort auf",
|
||||
"Reply" : "Antworten",
|
||||
"Update" : "Aktualisieren",
|
||||
"(group)" : "(Gruppe)",
|
||||
"(circle)" : "(Kreis)",
|
||||
"Assign to me" : "Mir zuweisen",
|
||||
"Unassign myself" : "Nicht mehr mir zuweisen",
|
||||
"Move card" : "Karte verschieben",
|
||||
"Unarchive card" : "Karte dearchivieren",
|
||||
"Archive card" : "Karte archivieren",
|
||||
"Delete card" : "Karte löschen",
|
||||
"Move card" : "Karte verschieben",
|
||||
"Move card to another board" : "Karte auf ein anderes Board verschieben",
|
||||
"Select a list" : "Eine Liste auswählen",
|
||||
"Card deleted" : "Karte gelöscht",
|
||||
"seconds ago" : "Gerade eben",
|
||||
"All boards" : "Alle Boards",
|
||||
"Archived boards" : "Archivierte Boards",
|
||||
"Shared with you" : "Mit Dir geteilt",
|
||||
"Use modal card view" : "Modale Kartenansicht verwenden",
|
||||
"Show boards in calendar/tasks" : "Board in Kalender/Aufgaben anzeigen",
|
||||
"Show boards in calendar/tasks" : "Board im Kalender/Aufgaben anzeigen",
|
||||
"Limit deck usage of groups" : "Nutzung von Deck auf Gruppen einschränken",
|
||||
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Durch die Begrenzung von Deck werden Benutzer, die nicht Teil dieser Gruppen sind, daran gehindert, eigene Boards zu erstellen. Benutzer können weiterhin an Boards arbeiten, die mit ihnen geteilt wurden.",
|
||||
"Board name" : "Boardname",
|
||||
"Board details" : "Board-Details",
|
||||
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Durch die Begrenzung von Deck werden Benutzer, die nicht Teil dieser Gruppen sind, daran gehindert, eigene Boards zu erstellen. Benutzer können weiterhin an Boards arbeiten, die für sie freigegeben wurden.",
|
||||
"Board name" : "Board-Name",
|
||||
"Edit board" : "Board bearbeiten",
|
||||
"Clone board" : "Board klonen",
|
||||
"Unarchive board" : "Board dearchivieren",
|
||||
"Archive board" : "Board archivieren",
|
||||
"Turn on due date reminders" : "Fälligkeitserinnerungen einschalten",
|
||||
"Turn off due date reminders" : "Fälligkeitserinnerungen ausschalten",
|
||||
"Due date reminders" : "Fälligkeitserinnerungen",
|
||||
"All cards" : "Alle Karten",
|
||||
"Assigned cards" : "Zugewiesene Karten",
|
||||
"No notifications" : "Keine Benachrichtigungen",
|
||||
"Delete board" : "Board löschen",
|
||||
"Clone board " : "Board duplizieren",
|
||||
"Unarchive board " : "Board dearchivieren",
|
||||
"Archive board " : "Board archivieren",
|
||||
"Delete board " : "Board löschen",
|
||||
"Board details" : "Board-Details",
|
||||
"Board {0} deleted" : "Board {0} gelöscht",
|
||||
"Only assigned cards" : "Nur zugewiesene Karten",
|
||||
"No reminder" : "Keine Erinnerung",
|
||||
"An error occurred" : "Es ist ein Fehler aufgetreten",
|
||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Möchtest Du wirklich dieses Board {title} mit all seinen Daten löschen?",
|
||||
"Delete the board?" : "Das Board löschen?",
|
||||
@@ -247,12 +233,11 @@ OC.L10N.register(
|
||||
"Tomorrow" : "Morgen",
|
||||
"This week" : "Diese Woche",
|
||||
"No due" : "Kein Fälligkeitsdatum",
|
||||
"No upcoming cards" : "Keine anstehenden Karten",
|
||||
"upcoming cards" : "Anstehende Karten",
|
||||
"No upcoming cards" : "Keine kommenden Karten",
|
||||
"upcoming cards" : "Kommende Karten",
|
||||
"Link to a board" : "Mit einem Board verknüpfen",
|
||||
"Link to a card" : "Mit einer Karte verknüpfen",
|
||||
"Something went wrong" : "Etwas ist schiefgelaufen",
|
||||
"Failed to upload {name}" : "Fehler beim Hochladen von {name}",
|
||||
"Maximum file size of {size} exceeded" : "Maximale Dateigröße von {size} überschritten"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
81
l10n/de.json
81
l10n/de.json
@@ -29,7 +29,7 @@
|
||||
"{user} has renamed the card {before} to {card}" : "{user} hat die Karte {before} in {card} umbenannt",
|
||||
"You have added a description to card {card} in list {stack} on board {board}" : "Du hast der Karte {card} in der Liste {stack} auf dem Board {board} eine Beschreibung hinzugefügt",
|
||||
"{user} has added a description to card {card} in list {stack} on board {board}" : "{user} hat der Karte {card} in der Liste {stack} auf dem Board {board} eine Beschreibung hinzugefügt",
|
||||
"You have updated the description of card {card} in list {stack} on board {board}" : "Du hast die Beschreibung der Karte {card} in der Liste {stack} auf dem Board {board} aktualisiert",
|
||||
"You have updated the description of card {card} in list {stack} on board {board}" : "Du hast die Beschreibung der Karte {card} in der Liste {stack} auf dem Board {board} aktualisiert",
|
||||
"{user} has updated the description of the card {card} in list {stack} on board {board}" : "{user} hat die Beschreibung der Karte {card} in der Liste {stack} auf dem Board {board} aktualisiert",
|
||||
"You have archived card {card} in list {stack} on board {board}" : "Du hast die Karte {card} in der Liste {stack} auf dem Board {board} archiviert",
|
||||
"{user} has archived card {card} in list {stack} on board {board}" : "{user} hat die Karte {card} in der Liste {stack} auf dem Board {board} archiviert",
|
||||
@@ -47,7 +47,7 @@
|
||||
"{user} has removed the tag {label} from card {card} in list {stack} on board {board}" : "{user} hat von der Karte {card} in der Liste {stack} auf dem Board {board} das Schlagwort {label} entfernt",
|
||||
"You have assigned {assigneduser} to card {card} on board {board}" : "Du hast {assigneduser} der Karte {card} auf dem Board {board} zugewiesen",
|
||||
"{user} has assigned {assigneduser} to card {card} on board {board}" : "{user} hat {assigneduser} der Karte {card} auf dem Board {board} zugewiesen",
|
||||
"You have unassigned {assigneduser} from card {card} on board {board}" : "Du hast die Zuweisung von {assigneduser} zur Karte {card} auf dem Board {board} aufgehoben",
|
||||
"You have unassigned {assigneduser} from card {card} on board {board}" : "Du hast die Zuweisung von {assigneduser} zur Karte {card} auf dem Board {board} aufgehoben",
|
||||
"{user} has unassigned {assigneduser} from card {card} on board {board}" : "{user} hat die Zuweisung von {assigneduser} zur Karte {card} auf dem Board {board} aufgehoben",
|
||||
"You have moved the card {card} from list {stackBefore} to {stack}" : "Du hast die Karte {card} von der Liste {stackBefore} nach {stack} verschoben",
|
||||
"{user} has moved the card {card} from list {stackBefore} to {stack}" : "{user} hat die Karte {card} von der Liste {stackBefore} nach {stack} verschoben",
|
||||
@@ -65,13 +65,13 @@
|
||||
"Deck" : "Deck",
|
||||
"Changes in the <strong>Deck app</strong>" : "Änderungen in der <strong>Deck-App</strong>",
|
||||
"A <strong>comment</strong> was created on a card" : "Ein <strong>Kommentar</strong> zu einer Karte wurde erstellt",
|
||||
"Upcoming cards" : "Anstehende Karten",
|
||||
"Upcoming cards" : "Kommende Karten",
|
||||
"Personal" : "Persönlich",
|
||||
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Die Karte \"%s\" auf \"%s\" wurde Dir von %s zugewiesen.",
|
||||
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} hat Dir die Karte \"%s\" auf \"%s\" zugewiesen.",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "Die Karte \"%s\" in \"%s\" ist überfällig.",
|
||||
"%s has mentioned you in a comment on \"%s\"." : "%s hat Dich in einem Kommentar zu \"%s\" erwähnt.",
|
||||
"{user} has mentioned you in a comment on \"%s\"." : "{user} hat Dich in einem Kommentar zu \"%s\" erwähnt.",
|
||||
"%s has mentioned you in a comment on \"%s\"." : " %s hat Dich in einem Kommentar zu \"%s\" erwähnt.",
|
||||
"{user} has mentioned you in a comment on \"%s\"." : "{user} hat Dich in einem Kommentar zu “%s” erwähnt.",
|
||||
"The board \"%s\" has been shared with you by %s." : "Das Board \"%s\" wurde von %s mit Dir geteilt.",
|
||||
"{user} has shared the board %s with you." : "{user} hat das Board %s mit Dir geteilt.",
|
||||
"No data was provided to create an attachment." : "Es wurden keine Daten zum Erstellen eines Anhangs bereitgestellt.",
|
||||
@@ -79,7 +79,7 @@
|
||||
"To review" : "Zu überprüfen",
|
||||
"Action needed" : "Handlung erforderlich",
|
||||
"Later" : "Später",
|
||||
"copy" : "Kopie",
|
||||
"copy" : "Kopieren",
|
||||
"To do" : "Offen",
|
||||
"Doing" : "In Arbeit",
|
||||
"Done" : "Erledigt",
|
||||
@@ -88,7 +88,7 @@
|
||||
"Example Task 1" : "Beispielaufgabe 1",
|
||||
"The file was uploaded" : "Die Datei wurde hochgeladen",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Die hochgeladene Datei überschreitet die upload_max_filesize-Vorgabe in php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Die Datei ist größer als die MAX_FILE_SIZE-Vorgabe, die im HTML-Formular angegeben ist",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Die Datei ist größer als die MAX_FILE_SIZE-Vorgabe, die im HTML-Formular angegeben ist.",
|
||||
"The file was only partially uploaded" : "Die Datei konnte nur teilweise hochgeladen werden",
|
||||
"No file was uploaded" : "Es wurde keine Datei hochgeladen",
|
||||
"Missing a temporary folder" : "Kein temporärer Ordner vorhanden",
|
||||
@@ -96,8 +96,8 @@
|
||||
"A PHP extension stopped the file upload" : "Eine PHP-Erweiterung hat das Hochladen der Datei gestoppt",
|
||||
"No file uploaded or file size exceeds maximum of %s" : "Keine Datei hochgeladen oder die Dateigröße überschreitet %s",
|
||||
"Personal planning and team project organization" : "Persönliche Planung und Teamprojektorganisation",
|
||||
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck ist ein Organisationstool im Kanban-Stil für die persönliche Planung und Projektorganisation von Teams, die in Nextcloud integriert sind.\n\n\n- 📥 Füge Deine Aufgaben zu den Karten hinzu und ordne diese\n- 📄 Zusätzliche Hinweise in der Abschrift notieren\n- 🔖 Zuweisen von Schlagworten für noch bessere Organisation\n- 👥 Teile mit Deinem Team, Freunden oder der Familie\n- 📎 Füge Dateien hinzu und verwende diese in Deinen Markdown-Beschreibungen\n- 💬 Diskutiere mit Deinem Team mit Kommentaren\n- ⚡ Behalte Überblick über Änderungen mit dem Aktivitäten-Stream\n- 🚀 Organisiere Dein Projekt",
|
||||
"Card details" : "Karten-Details",
|
||||
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck ist ein Organisationstool im Kanban-Stil für die persönliche Planung und Projektorganisation von Teams, die in Nextcloud integriert sind.\n\n\n- 📥 Füge Deine Aufgaben zu den Karten hinzu und ordne diese\n- 📄 Zusätzliche Hinweise in der Abschrift notieren\n- 🔖 Vergabe von Schlagworten für noch bessere Organisation\n- 👥 Teile mit Deinem Team, Freunden oder der Familie\n- 📎 Füge Dateien hinzu und verwende diese in Deinen Markdown-Beschreibungen\n- 💬 Diskutiere mit Deinem Team mit Kommentaren\n- ⚡ Behalte Überblick über Änderungen mit dem Aktivitäten-Stream\n- 🚀 Organisiere Dein Projekt",
|
||||
"Card details" : "Kartendetails",
|
||||
"Add board" : "Board hinzufügen",
|
||||
"Select the board to link to a project" : "Wähle ein Board aus, um dieses mit einem Projekt zu verknüpfen",
|
||||
"Search by board title" : "Nach einem Board suchen",
|
||||
@@ -144,8 +144,6 @@
|
||||
"Undo" : "Rückgängig",
|
||||
"Deleted cards" : "Gelöschte Karten",
|
||||
"Share board with a user, group or circle …" : "Board mit Benutzer, Gruppe oder Kreis teilen…",
|
||||
"Searching for users, groups and circles …" : "Suche nach Benutzern, Gruppen und Kreisen …",
|
||||
"No participants found" : "Keine Teilnehmer gefunden",
|
||||
"Board owner" : "Board-Besitzer",
|
||||
"(Group)" : "(Gruppe)",
|
||||
"(Circle)" : "(Kreis)",
|
||||
@@ -153,7 +151,6 @@
|
||||
"Can share" : "kann teilen",
|
||||
"Can manage" : "kann verwalten",
|
||||
"Delete" : "Löschen",
|
||||
"Failed to create share with {displayName}" : "Fehler beim Erstellen der Freigabe mit dem Namen {displayName}",
|
||||
"Add a new list" : "Eine neue Liste hinzufügen",
|
||||
"Archive all cards" : "Alle Karten archivieren",
|
||||
"Delete list" : "Liste löschen",
|
||||
@@ -161,7 +158,6 @@
|
||||
"Archive all cards in this list" : "Alle Karten in dieser Liste archivieren",
|
||||
"Add a new card" : "Neue Karte hinzufügen",
|
||||
"Card name" : "Kartenname",
|
||||
"List deleted" : "Liste gelöscht",
|
||||
"Edit" : "Bearbeiten",
|
||||
"Add a new tag" : "Neues Schlagwort hinzufügen",
|
||||
"title and color value must be provided" : "Titel und Farbwert müssen angegeben werden",
|
||||
@@ -173,12 +169,6 @@
|
||||
"Restore Attachment" : "Anhang wiederherstellen",
|
||||
"Open in sidebar view" : "In Seitenleiste öffnen",
|
||||
"Open in bigger view" : "In größerer Ansicht öffnen",
|
||||
"Attachments" : "Anhänge",
|
||||
"Comments" : "Kommentare",
|
||||
"Modified" : "Geändert",
|
||||
"Created" : "Erstellt",
|
||||
"The title cannot be empty." : "Der Titel darf nicht leer sein.",
|
||||
"No comments yet. Begin the discussion!" : "Bislang keine Kommentare. Beginne die Diskussion!",
|
||||
"Assign a tag to this card…" : "Dieser Karte ein Schlagwort zuweisen…",
|
||||
"Assign to users" : "Benutzern zuweisen",
|
||||
"Assign to users/groups/circles" : "An Benutzer, Gruppen oder Kreise zuweisen",
|
||||
@@ -186,13 +176,6 @@
|
||||
"Due date" : "Fälligkeitsdatum",
|
||||
"Set a due date" : "Ein Ablaufdatum setzen",
|
||||
"Remove due date" : "Fälligkeitsdatum löschen",
|
||||
"Select Date" : "Datum auswählen",
|
||||
"Save" : "Speichern",
|
||||
"The comment cannot be empty." : "Der Kommentar darf nicht leer sein.",
|
||||
"The comment cannot be longer than 1000 characters." : "Der Kommentar darf nicht länger als 1000 Zeichen sein.",
|
||||
"In reply to" : "Als Antwort auf",
|
||||
"Reply" : "Antworten",
|
||||
"Update" : "Aktualisieren",
|
||||
"Description" : "Beschreibung",
|
||||
"(Unsaved)" : "(nicht gespeichert)",
|
||||
"(Saving…)" : "(Speichere…)",
|
||||
@@ -200,43 +183,46 @@
|
||||
"Edit description" : "Beschreibung bearbeiten",
|
||||
"View description" : "Beschreibung anzeigen",
|
||||
"Add Attachment" : "Anhang anhängen",
|
||||
"Write a description …" : "Beschreibung schreiben …",
|
||||
"Attachments" : "Anhänge",
|
||||
"Comments" : "Kommentare",
|
||||
"Choose attachment" : "Anhang auswählen",
|
||||
"Select Date" : "Datum auswählen",
|
||||
"Modified" : "Geändert",
|
||||
"Created" : "Erstellt",
|
||||
"The title cannot be empty." : "Der Titel darf nicht leer sein.",
|
||||
"No comments yet. Begin the discussion!" : "Bislang keine Kommentare. Beginne die Diskussion!",
|
||||
"Save" : "Speichern",
|
||||
"The comment cannot be empty." : "Der Kommentar darf nicht leer sein.",
|
||||
"The comment cannot be longer than 1000 characters." : "Der Kommentar darf nicht länger als 1000 Zeichen sein.",
|
||||
"In reply to" : "Als Antwort auf",
|
||||
"Reply" : "Antworten",
|
||||
"Update" : "Aktualisieren",
|
||||
"(group)" : "(Gruppe)",
|
||||
"(circle)" : "(Kreis)",
|
||||
"Assign to me" : "Mir zuweisen",
|
||||
"Unassign myself" : "Nicht mehr mir zuweisen",
|
||||
"Move card" : "Karte verschieben",
|
||||
"Unarchive card" : "Karte dearchivieren",
|
||||
"Archive card" : "Karte archivieren",
|
||||
"Delete card" : "Karte löschen",
|
||||
"Move card" : "Karte verschieben",
|
||||
"Move card to another board" : "Karte auf ein anderes Board verschieben",
|
||||
"Select a list" : "Eine Liste auswählen",
|
||||
"Card deleted" : "Karte gelöscht",
|
||||
"seconds ago" : "Gerade eben",
|
||||
"All boards" : "Alle Boards",
|
||||
"Archived boards" : "Archivierte Boards",
|
||||
"Shared with you" : "Mit Dir geteilt",
|
||||
"Use modal card view" : "Modale Kartenansicht verwenden",
|
||||
"Show boards in calendar/tasks" : "Board in Kalender/Aufgaben anzeigen",
|
||||
"Show boards in calendar/tasks" : "Board im Kalender/Aufgaben anzeigen",
|
||||
"Limit deck usage of groups" : "Nutzung von Deck auf Gruppen einschränken",
|
||||
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Durch die Begrenzung von Deck werden Benutzer, die nicht Teil dieser Gruppen sind, daran gehindert, eigene Boards zu erstellen. Benutzer können weiterhin an Boards arbeiten, die mit ihnen geteilt wurden.",
|
||||
"Board name" : "Boardname",
|
||||
"Board details" : "Board-Details",
|
||||
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Durch die Begrenzung von Deck werden Benutzer, die nicht Teil dieser Gruppen sind, daran gehindert, eigene Boards zu erstellen. Benutzer können weiterhin an Boards arbeiten, die für sie freigegeben wurden.",
|
||||
"Board name" : "Board-Name",
|
||||
"Edit board" : "Board bearbeiten",
|
||||
"Clone board" : "Board klonen",
|
||||
"Unarchive board" : "Board dearchivieren",
|
||||
"Archive board" : "Board archivieren",
|
||||
"Turn on due date reminders" : "Fälligkeitserinnerungen einschalten",
|
||||
"Turn off due date reminders" : "Fälligkeitserinnerungen ausschalten",
|
||||
"Due date reminders" : "Fälligkeitserinnerungen",
|
||||
"All cards" : "Alle Karten",
|
||||
"Assigned cards" : "Zugewiesene Karten",
|
||||
"No notifications" : "Keine Benachrichtigungen",
|
||||
"Delete board" : "Board löschen",
|
||||
"Clone board " : "Board duplizieren",
|
||||
"Unarchive board " : "Board dearchivieren",
|
||||
"Archive board " : "Board archivieren",
|
||||
"Delete board " : "Board löschen",
|
||||
"Board details" : "Board-Details",
|
||||
"Board {0} deleted" : "Board {0} gelöscht",
|
||||
"Only assigned cards" : "Nur zugewiesene Karten",
|
||||
"No reminder" : "Keine Erinnerung",
|
||||
"An error occurred" : "Es ist ein Fehler aufgetreten",
|
||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Möchtest Du wirklich dieses Board {title} mit all seinen Daten löschen?",
|
||||
"Delete the board?" : "Das Board löschen?",
|
||||
@@ -245,12 +231,11 @@
|
||||
"Tomorrow" : "Morgen",
|
||||
"This week" : "Diese Woche",
|
||||
"No due" : "Kein Fälligkeitsdatum",
|
||||
"No upcoming cards" : "Keine anstehenden Karten",
|
||||
"upcoming cards" : "Anstehende Karten",
|
||||
"No upcoming cards" : "Keine kommenden Karten",
|
||||
"upcoming cards" : "Kommende Karten",
|
||||
"Link to a board" : "Mit einem Board verknüpfen",
|
||||
"Link to a card" : "Mit einer Karte verknüpfen",
|
||||
"Something went wrong" : "Etwas ist schiefgelaufen",
|
||||
"Failed to upload {name}" : "Fehler beim Hochladen von {name}",
|
||||
"Maximum file size of {size} exceeded" : "Maximale Dateigröße von {size} überschritten"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
@@ -21,12 +21,12 @@ OC.L10N.register(
|
||||
"{user} has created a new list {stack} on board {board}" : "{user} hat die neue Liste {stack} auf dem Board {board} erstellt",
|
||||
"You have renamed list {before} to {stack} on board {board}" : "Sie haben die Liste {before} auf dem Board {board} in {stack} umbenannt",
|
||||
"{user} has renamed list {before} to {stack} on board {board}" : "{user} hat die Liste {before} in {stack} auf dem Board {board} umbenannt",
|
||||
"You have deleted list {stack} on board {board}" : "Sie haben die Liste {stack} auf dem Board {board} gelöscht",
|
||||
"You have deleted list {stack} on board {board}" : "Sie haben die Liste {stack} aus dem Board {board} entfernt",
|
||||
"{user} has deleted list {stack} on board {board}" : "{user} hat die Liste {stack} aus dem Board {board} entfernt",
|
||||
"You have created card {card} in list {stack} on board {board}" : "Sie haben die Karte {card} in der Liste {stack} auf dem Board {board} erstellt",
|
||||
"{user} has created card {card} in list {stack} on board {board}" : "{user} hat die Karte {card} in der Liste {stack} auf dem Board {board} erstellt",
|
||||
"You have deleted card {card} in list {stack} on board {board}" : "Sie haben die Karte {card} in der Liste {stack} auf dem Board {board} gelöscht",
|
||||
"{user} has deleted card {card} in list {stack} on board {board}" : "{user} hat die Karte {card} in der Liste {stack} auf dem Board {board} gelöscht",
|
||||
"{user} has deleted card {card} in list {stack} on board {board}" : " {user} hat die Karte {card} in der Liste {stack} auf dem Board {board} gelöscht",
|
||||
"You have renamed the card {before} to {card}" : "Sie haben die Karte {before} in {card} umbenannt",
|
||||
"{user} has renamed the card {before} to {card}" : "{user} hat die Karte {before} in {card} umbenannt",
|
||||
"You have added a description to card {card} in list {stack} on board {board}" : "Sie haben der Karte {card} in der Liste {stack} auf dem Board {board} eine Beschreibung hinzugefügt",
|
||||
@@ -47,9 +47,9 @@ OC.L10N.register(
|
||||
"{user} has added the tag {label} to card {card} in list {stack} on board {board}" : "{user} hat der Karte {card} in der Liste {stack} auf dem Board {board} das Schlagwort {label} hinzugefügt",
|
||||
"You have removed the tag {label} from card {card} in list {stack} on board {board}" : "Sie haben von der Karte {card} in der Liste {stack} auf dem Board {board} das Schlagwort {label} entfernt",
|
||||
"{user} has removed the tag {label} from card {card} in list {stack} on board {board}" : "{user} hat von der Karte {card} in der Liste {stack} auf dem Board {board} das Schlagwort {label} entfernt",
|
||||
"You have assigned {assigneduser} to card {card} on board {board}" : "Sie haben {assigneduser} der Karte {card} auf dem Board {board} zugewiesen",
|
||||
"You have assigned {assigneduser} to card {card} on board {board}" : "Sie haben {assigneduser} der Karte {card} auf dem Board {board} zugewiesen",
|
||||
"{user} has assigned {assigneduser} to card {card} on board {board}" : "{user} hat {assigneduser} der Karte {card} auf dem Board {board} zugewiesen",
|
||||
"You have unassigned {assigneduser} from card {card} on board {board}" : "Sie haben die Zuweisung von {assigneduser} zur Karte {card} auf dem Board {board} aufgehoben",
|
||||
"You have unassigned {assigneduser} from card {card} on board {board}" : "Sie haben die Zuweisung von {assigneduser} zur Karte {card} auf dem Board {board} aufgehoben",
|
||||
"{user} has unassigned {assigneduser} from card {card} on board {board}" : "{user} hat die Zuweisung von {assigneduser} zur Karte {card} auf dem Board {board} aufgehoben",
|
||||
"You have moved the card {card} from list {stackBefore} to {stack}" : "Sie haben die Karte {card} von der Liste {stackBefore} nach {stack} verschoben",
|
||||
"{user} has moved the card {card} from list {stackBefore} to {stack}" : "{user} hat die Karte {card} von der Liste {stackBefore} nach {stack} verschoben",
|
||||
@@ -67,7 +67,7 @@ OC.L10N.register(
|
||||
"Deck" : "Deck",
|
||||
"Changes in the <strong>Deck app</strong>" : "Änderungen in der <strong>Deck-App</strong>",
|
||||
"A <strong>comment</strong> was created on a card" : "Ein <strong>Kommentar</strong> zu einer Karte wurde erstellt",
|
||||
"Upcoming cards" : "Anstehende Karten",
|
||||
"Upcoming cards" : "Kommende Karten",
|
||||
"Personal" : "Persönlich",
|
||||
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Die Karte \"%s\" auf \"%s\" wurde Ihnen von %s zugewiesen.",
|
||||
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} hat Ihnen die Karte \"%s\" auf \"%s\" zugewiesen.",
|
||||
@@ -81,7 +81,7 @@ OC.L10N.register(
|
||||
"To review" : "Zu überprüfen",
|
||||
"Action needed" : "Handlung erforderlich",
|
||||
"Later" : "Später",
|
||||
"copy" : "Kopie",
|
||||
"copy" : "kopieren",
|
||||
"To do" : "Offen",
|
||||
"Doing" : "In Arbeit",
|
||||
"Done" : "Erledigt",
|
||||
@@ -98,8 +98,8 @@ OC.L10N.register(
|
||||
"A PHP extension stopped the file upload" : "Eine PHP-Erweiterung hat das Hochladen der Datei gestoppt",
|
||||
"No file uploaded or file size exceeds maximum of %s" : "Keine Datei hochgeladen oder die Dateigröße überschreitet %s",
|
||||
"Personal planning and team project organization" : "Persönliche Planung und Teamprojektorganisation",
|
||||
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck ist ein Organisationstool im Kanban-Stil für die persönliche Planung und Projektorganisation von Teams, die in Nextcloud integriert sind.\n\n\n- 📥 Fügen Sie Ihre Aufgaben zu den Karten hinzu und ordnen Sie diese\n- 📄 Zusätzliche Hinweise in der Abschrift notieren\n- 🔖 Zuweisen von Schlagworten für noch bessere Organisation\n- 👥 Teilen Sie mit Ihrem Team, Ihren Freunden oder Ihrer Familie\n- 📎 Fügen Sie Dateien hinzu und verwende diese in Ihren Markdown-Beschreibungen\n- 💬 Diskutieren Sie mit Ihrem Team mit Kommentaren\n- ⚡ Behalten Sie Überblick über Änderungen mit dem Aktivitäten-Stream\n- 🚀 Organisieren Sie Ihr Projekt",
|
||||
"Card details" : "Karten-Details",
|
||||
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck ist ein Organisationstool im Kanban-Stil für die persönliche Planung und Projektorganisation von Teams, die in Nextcloud integriert sind.\n\n\n- 📥 Fügen Sie Ihre Aufgaben zu den Karten hinzu und ordnen Sie diese\n- 📄 Zusätzliche Hinweise in der Abschrift notieren\n- 🔖 Zuweisung von Schlagworten für noch bessere Organisation\n- 👥 Teilen Sie mit Ihrem Team, Ihren Freunden oder Ihrer Familie\n- 📎 Fügen Sie Dateien hinzu und verwende diese in Ihren Markdown-Beschreibungen\n- 💬 Diskutieren Sie mit Ihrem Team mit Kommentaren\n- ⚡ Behalten Sie Überblick über Änderungen mit dem Aktivitäten-Stream\n- 🚀 Organisieren Sie Ihr Projekt",
|
||||
"Card details" : "Kartendetails",
|
||||
"Add board" : "Board hinzufügen",
|
||||
"Select the board to link to a project" : "Wählen Sie ein Board aus, um dieses mit einem Projekt zu verknüpfen",
|
||||
"Search by board title" : "Nach einem Board suchen",
|
||||
@@ -134,9 +134,9 @@ OC.L10N.register(
|
||||
"Show archived cards" : "Archivierte Karten anzeigen",
|
||||
"Toggle compact mode" : "Kompaktmodus umschalten",
|
||||
"Details" : "Details",
|
||||
"Loading board" : "Lade Board",
|
||||
"Loading board" : "Board laden",
|
||||
"No lists available" : "Keine Listen verfügbar",
|
||||
"Create a new list to add cards to this board" : "Erstellen Sie eine neue Liste, um diesem Board Karten hinzuzufügen",
|
||||
"Create a new list to add cards to this board" : "Erstelle eine neue Liste, um diesem Board Karten hinzuzufügen",
|
||||
"Board not found" : "Board nicht gefunden",
|
||||
"Sharing" : "Teilen",
|
||||
"Tags" : "Schlagworte",
|
||||
@@ -146,8 +146,6 @@ OC.L10N.register(
|
||||
"Undo" : "Rückgängig",
|
||||
"Deleted cards" : "Gelöschte Karten",
|
||||
"Share board with a user, group or circle …" : "Board mit Benutzer, Gruppe oder Kreis teilen…",
|
||||
"Searching for users, groups and circles …" : "Suche nach Benutzern, Gruppen und Kreisen …",
|
||||
"No participants found" : "Keine Teilnehmer gefunden",
|
||||
"Board owner" : "Board-Besitzer",
|
||||
"(Group)" : "(Gruppe)",
|
||||
"(Circle)" : "(Kreis)",
|
||||
@@ -155,7 +153,6 @@ OC.L10N.register(
|
||||
"Can share" : "kann teilen",
|
||||
"Can manage" : "kann verwalten",
|
||||
"Delete" : "Löschen",
|
||||
"Failed to create share with {displayName}" : "Fehler beim Erstellen der Freigabe mit dem Namen {displayName}",
|
||||
"Add a new list" : "Eine neue Liste hinzufügen",
|
||||
"Archive all cards" : "Alle Karten archivieren",
|
||||
"Delete list" : "Liste löschen",
|
||||
@@ -163,7 +160,6 @@ OC.L10N.register(
|
||||
"Archive all cards in this list" : "Alle Karten in dieser Liste archivieren",
|
||||
"Add a new card" : "Neue Karte hinzufügen",
|
||||
"Card name" : "Kartenname",
|
||||
"List deleted" : "Liste gelöscht",
|
||||
"Edit" : "Bearbeiten",
|
||||
"Add a new tag" : "Neues Schlagwort hinzufügen",
|
||||
"title and color value must be provided" : "Titel und Farbwert müssen angegeben werden",
|
||||
@@ -175,26 +171,13 @@ OC.L10N.register(
|
||||
"Restore Attachment" : "Anhang wiederherstellen",
|
||||
"Open in sidebar view" : "In Seitenleiste öffnen",
|
||||
"Open in bigger view" : "In größerer Ansicht öffnen",
|
||||
"Attachments" : "Anhänge",
|
||||
"Comments" : "Kommentare",
|
||||
"Modified" : "Geändert",
|
||||
"Created" : "Erstellt",
|
||||
"The title cannot be empty." : "Der Titel darf nicht leer sein.",
|
||||
"No comments yet. Begin the discussion!" : "Bislang keine Kommentare. Beginnen Sie die Diskussion!",
|
||||
"Assign a tag to this card…" : "Dieser Karte ein Schlagwort zuweisen…",
|
||||
"Assign to users" : "Benutzern zuweisen",
|
||||
"Assign to users/groups/circles" : "An Benutzer, Gruppen oder Kreise zuweisen",
|
||||
"Assign a user to this card…" : "Diese Karte einem Benutzer zuweisen…",
|
||||
"Due date" : "Fälligkeitsdatum",
|
||||
"Set a due date" : "Ein Ablaufdatum setzen",
|
||||
"Remove due date" : "Fälligkeitsdatum löschen",
|
||||
"Select Date" : "Datum auswählen",
|
||||
"Save" : "Speichern",
|
||||
"The comment cannot be empty." : "Der Kommentar darf nicht leer sein.",
|
||||
"The comment cannot be longer than 1000 characters." : "Der Kommentar darf nicht länger als 1000 Zeichen sein.",
|
||||
"In reply to" : "Als Antwort auf",
|
||||
"Reply" : "Antworten",
|
||||
"Update" : "Aktualisieren",
|
||||
"Remove due date" : "Fälligkeitsdatum entfernen",
|
||||
"Description" : "Beschreibung",
|
||||
"(Unsaved)" : "(nicht gespeichert)",
|
||||
"(Saving…)" : "(Speichere…)",
|
||||
@@ -202,19 +185,30 @@ OC.L10N.register(
|
||||
"Edit description" : "Beschreibung bearbeiten",
|
||||
"View description" : "Beschreibung anzeigen",
|
||||
"Add Attachment" : "Anhang anhängen",
|
||||
"Write a description …" : "Beschreibung schreiben …",
|
||||
"Attachments" : "Anhänge",
|
||||
"Comments" : "Kommentare",
|
||||
"Choose attachment" : "Anhang auswählen",
|
||||
"Select Date" : "Datum auswählen",
|
||||
"Modified" : "Geändert",
|
||||
"Created" : "Erstellt",
|
||||
"The title cannot be empty." : "Der Titel darf nicht leer sein.",
|
||||
"No comments yet. Begin the discussion!" : "Bislang keine Kommentare. Beginnen Sie die Diskussion!",
|
||||
"Save" : "Speichern",
|
||||
"The comment cannot be empty." : "Der Kommentar darf nicht leer sein.",
|
||||
"The comment cannot be longer than 1000 characters." : "Der Kommentar darf nicht länger als 1000 Zeichen sein.",
|
||||
"In reply to" : "Als Antwort auf",
|
||||
"Reply" : "Antworten",
|
||||
"Update" : "Aktualisieren",
|
||||
"(group)" : "(Gruppe)",
|
||||
"(circle)" : "(Kreis)",
|
||||
"Assign to me" : "Mir zuweisen",
|
||||
"Unassign myself" : "Nicht mehr mir zuweisen",
|
||||
"Move card" : "Karte verschieben",
|
||||
"Unarchive card" : "Karte dearchivieren",
|
||||
"Archive card" : "Karte archivieren",
|
||||
"Delete card" : "Karte löschen",
|
||||
"Move card" : "Karte verschieben",
|
||||
"Move card to another board" : "Karte auf ein anderes Board verschieben",
|
||||
"Select a list" : "Eine Liste auswählen",
|
||||
"Card deleted" : "Karte gelöscht",
|
||||
"seconds ago" : "Gerade eben",
|
||||
"All boards" : "Alle Boards",
|
||||
"Archived boards" : "Archivierte Boards",
|
||||
@@ -222,37 +216,28 @@ OC.L10N.register(
|
||||
"Use modal card view" : "Modale Kartenansicht verwenden",
|
||||
"Show boards in calendar/tasks" : "Board in Kalender/Aufgaben anzeigen",
|
||||
"Limit deck usage of groups" : "Nutzung von Deck auf Gruppen einschränken",
|
||||
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Wenn Sie Deck einschränken, können Benutzer, die nicht zu diesen Gruppen gehören, keine eigenen Boards erstellen. Die Benutzer können weiterhin an Boards arbeiten, die für sie freigegeben wurden.",
|
||||
"Board name" : "Boardname",
|
||||
"Board details" : "Board-Details",
|
||||
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Durch die Begrenzung von Deck werden Benutzer, die nicht Teil dieser Gruppen sind, daran gehindert, eigene Boards zu erstellen. Benutzer können weiterhin an Boards arbeiten, die für sie freigegeben wurden.",
|
||||
"Board name" : "Board-Name",
|
||||
"Edit board" : "Board bearbeiten",
|
||||
"Clone board" : "Board klonen",
|
||||
"Unarchive board" : "Board dearchivieren",
|
||||
"Archive board" : "Board archivieren",
|
||||
"Turn on due date reminders" : "Fälligkeitserinnerungen einschalten",
|
||||
"Turn off due date reminders" : "Fälligkeitserinnerungen ausschalten",
|
||||
"Due date reminders" : "Fälligkeitserinnerungen",
|
||||
"All cards" : "Alle Karten",
|
||||
"Assigned cards" : "Zugewiesene Karten",
|
||||
"No notifications" : "Keine Benachrichtigungen",
|
||||
"Delete board" : "Board löschen",
|
||||
"Clone board " : "Board duplizieren",
|
||||
"Unarchive board " : "Board dearchivieren",
|
||||
"Archive board " : "Board archivieren",
|
||||
"Delete board " : "Board löschen",
|
||||
"Board details" : "Board-Details",
|
||||
"Board {0} deleted" : "Board {0} gelöscht",
|
||||
"Only assigned cards" : "Nur zugewiesene Karten",
|
||||
"No reminder" : "Keine Erinnerung",
|
||||
"An error occurred" : "Es ist ein Fehler aufgetreten",
|
||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Möchten Sie wirklich dieses Board {title} mit all seinen Daten löschen?",
|
||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Möchten Sie wirklich dieses Board {title} mit all dessen Daten löschen?",
|
||||
"Delete the board?" : "Das Board löschen?",
|
||||
"Loading filtered view" : "Lade gefilterte Ansicht",
|
||||
"Today" : "Heute",
|
||||
"Tomorrow" : "Morgen",
|
||||
"This week" : "Diese Woche",
|
||||
"No due" : "Kein Fälligkeitsdatum",
|
||||
"No upcoming cards" : "Keine anstehenden Karten",
|
||||
"upcoming cards" : "Anstehende Karten",
|
||||
"No upcoming cards" : "Keine kommenden Karten",
|
||||
"upcoming cards" : "Kommende Karten",
|
||||
"Link to a board" : "Mit einem Board verknüpfen",
|
||||
"Link to a card" : "Mit einer Karte verknüpfen",
|
||||
"Something went wrong" : "Etwas ist schiefgelaufen",
|
||||
"Failed to upload {name}" : "Fehler beim Hochladen von {name}",
|
||||
"Maximum file size of {size} exceeded" : "Maximale Dateigröße von {size} überschritten"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -19,12 +19,12 @@
|
||||
"{user} has created a new list {stack} on board {board}" : "{user} hat die neue Liste {stack} auf dem Board {board} erstellt",
|
||||
"You have renamed list {before} to {stack} on board {board}" : "Sie haben die Liste {before} auf dem Board {board} in {stack} umbenannt",
|
||||
"{user} has renamed list {before} to {stack} on board {board}" : "{user} hat die Liste {before} in {stack} auf dem Board {board} umbenannt",
|
||||
"You have deleted list {stack} on board {board}" : "Sie haben die Liste {stack} auf dem Board {board} gelöscht",
|
||||
"You have deleted list {stack} on board {board}" : "Sie haben die Liste {stack} aus dem Board {board} entfernt",
|
||||
"{user} has deleted list {stack} on board {board}" : "{user} hat die Liste {stack} aus dem Board {board} entfernt",
|
||||
"You have created card {card} in list {stack} on board {board}" : "Sie haben die Karte {card} in der Liste {stack} auf dem Board {board} erstellt",
|
||||
"{user} has created card {card} in list {stack} on board {board}" : "{user} hat die Karte {card} in der Liste {stack} auf dem Board {board} erstellt",
|
||||
"You have deleted card {card} in list {stack} on board {board}" : "Sie haben die Karte {card} in der Liste {stack} auf dem Board {board} gelöscht",
|
||||
"{user} has deleted card {card} in list {stack} on board {board}" : "{user} hat die Karte {card} in der Liste {stack} auf dem Board {board} gelöscht",
|
||||
"{user} has deleted card {card} in list {stack} on board {board}" : " {user} hat die Karte {card} in der Liste {stack} auf dem Board {board} gelöscht",
|
||||
"You have renamed the card {before} to {card}" : "Sie haben die Karte {before} in {card} umbenannt",
|
||||
"{user} has renamed the card {before} to {card}" : "{user} hat die Karte {before} in {card} umbenannt",
|
||||
"You have added a description to card {card} in list {stack} on board {board}" : "Sie haben der Karte {card} in der Liste {stack} auf dem Board {board} eine Beschreibung hinzugefügt",
|
||||
@@ -45,9 +45,9 @@
|
||||
"{user} has added the tag {label} to card {card} in list {stack} on board {board}" : "{user} hat der Karte {card} in der Liste {stack} auf dem Board {board} das Schlagwort {label} hinzugefügt",
|
||||
"You have removed the tag {label} from card {card} in list {stack} on board {board}" : "Sie haben von der Karte {card} in der Liste {stack} auf dem Board {board} das Schlagwort {label} entfernt",
|
||||
"{user} has removed the tag {label} from card {card} in list {stack} on board {board}" : "{user} hat von der Karte {card} in der Liste {stack} auf dem Board {board} das Schlagwort {label} entfernt",
|
||||
"You have assigned {assigneduser} to card {card} on board {board}" : "Sie haben {assigneduser} der Karte {card} auf dem Board {board} zugewiesen",
|
||||
"You have assigned {assigneduser} to card {card} on board {board}" : "Sie haben {assigneduser} der Karte {card} auf dem Board {board} zugewiesen",
|
||||
"{user} has assigned {assigneduser} to card {card} on board {board}" : "{user} hat {assigneduser} der Karte {card} auf dem Board {board} zugewiesen",
|
||||
"You have unassigned {assigneduser} from card {card} on board {board}" : "Sie haben die Zuweisung von {assigneduser} zur Karte {card} auf dem Board {board} aufgehoben",
|
||||
"You have unassigned {assigneduser} from card {card} on board {board}" : "Sie haben die Zuweisung von {assigneduser} zur Karte {card} auf dem Board {board} aufgehoben",
|
||||
"{user} has unassigned {assigneduser} from card {card} on board {board}" : "{user} hat die Zuweisung von {assigneduser} zur Karte {card} auf dem Board {board} aufgehoben",
|
||||
"You have moved the card {card} from list {stackBefore} to {stack}" : "Sie haben die Karte {card} von der Liste {stackBefore} nach {stack} verschoben",
|
||||
"{user} has moved the card {card} from list {stackBefore} to {stack}" : "{user} hat die Karte {card} von der Liste {stackBefore} nach {stack} verschoben",
|
||||
@@ -65,7 +65,7 @@
|
||||
"Deck" : "Deck",
|
||||
"Changes in the <strong>Deck app</strong>" : "Änderungen in der <strong>Deck-App</strong>",
|
||||
"A <strong>comment</strong> was created on a card" : "Ein <strong>Kommentar</strong> zu einer Karte wurde erstellt",
|
||||
"Upcoming cards" : "Anstehende Karten",
|
||||
"Upcoming cards" : "Kommende Karten",
|
||||
"Personal" : "Persönlich",
|
||||
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Die Karte \"%s\" auf \"%s\" wurde Ihnen von %s zugewiesen.",
|
||||
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} hat Ihnen die Karte \"%s\" auf \"%s\" zugewiesen.",
|
||||
@@ -79,7 +79,7 @@
|
||||
"To review" : "Zu überprüfen",
|
||||
"Action needed" : "Handlung erforderlich",
|
||||
"Later" : "Später",
|
||||
"copy" : "Kopie",
|
||||
"copy" : "kopieren",
|
||||
"To do" : "Offen",
|
||||
"Doing" : "In Arbeit",
|
||||
"Done" : "Erledigt",
|
||||
@@ -96,8 +96,8 @@
|
||||
"A PHP extension stopped the file upload" : "Eine PHP-Erweiterung hat das Hochladen der Datei gestoppt",
|
||||
"No file uploaded or file size exceeds maximum of %s" : "Keine Datei hochgeladen oder die Dateigröße überschreitet %s",
|
||||
"Personal planning and team project organization" : "Persönliche Planung und Teamprojektorganisation",
|
||||
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck ist ein Organisationstool im Kanban-Stil für die persönliche Planung und Projektorganisation von Teams, die in Nextcloud integriert sind.\n\n\n- 📥 Fügen Sie Ihre Aufgaben zu den Karten hinzu und ordnen Sie diese\n- 📄 Zusätzliche Hinweise in der Abschrift notieren\n- 🔖 Zuweisen von Schlagworten für noch bessere Organisation\n- 👥 Teilen Sie mit Ihrem Team, Ihren Freunden oder Ihrer Familie\n- 📎 Fügen Sie Dateien hinzu und verwende diese in Ihren Markdown-Beschreibungen\n- 💬 Diskutieren Sie mit Ihrem Team mit Kommentaren\n- ⚡ Behalten Sie Überblick über Änderungen mit dem Aktivitäten-Stream\n- 🚀 Organisieren Sie Ihr Projekt",
|
||||
"Card details" : "Karten-Details",
|
||||
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck ist ein Organisationstool im Kanban-Stil für die persönliche Planung und Projektorganisation von Teams, die in Nextcloud integriert sind.\n\n\n- 📥 Fügen Sie Ihre Aufgaben zu den Karten hinzu und ordnen Sie diese\n- 📄 Zusätzliche Hinweise in der Abschrift notieren\n- 🔖 Zuweisung von Schlagworten für noch bessere Organisation\n- 👥 Teilen Sie mit Ihrem Team, Ihren Freunden oder Ihrer Familie\n- 📎 Fügen Sie Dateien hinzu und verwende diese in Ihren Markdown-Beschreibungen\n- 💬 Diskutieren Sie mit Ihrem Team mit Kommentaren\n- ⚡ Behalten Sie Überblick über Änderungen mit dem Aktivitäten-Stream\n- 🚀 Organisieren Sie Ihr Projekt",
|
||||
"Card details" : "Kartendetails",
|
||||
"Add board" : "Board hinzufügen",
|
||||
"Select the board to link to a project" : "Wählen Sie ein Board aus, um dieses mit einem Projekt zu verknüpfen",
|
||||
"Search by board title" : "Nach einem Board suchen",
|
||||
@@ -132,9 +132,9 @@
|
||||
"Show archived cards" : "Archivierte Karten anzeigen",
|
||||
"Toggle compact mode" : "Kompaktmodus umschalten",
|
||||
"Details" : "Details",
|
||||
"Loading board" : "Lade Board",
|
||||
"Loading board" : "Board laden",
|
||||
"No lists available" : "Keine Listen verfügbar",
|
||||
"Create a new list to add cards to this board" : "Erstellen Sie eine neue Liste, um diesem Board Karten hinzuzufügen",
|
||||
"Create a new list to add cards to this board" : "Erstelle eine neue Liste, um diesem Board Karten hinzuzufügen",
|
||||
"Board not found" : "Board nicht gefunden",
|
||||
"Sharing" : "Teilen",
|
||||
"Tags" : "Schlagworte",
|
||||
@@ -144,8 +144,6 @@
|
||||
"Undo" : "Rückgängig",
|
||||
"Deleted cards" : "Gelöschte Karten",
|
||||
"Share board with a user, group or circle …" : "Board mit Benutzer, Gruppe oder Kreis teilen…",
|
||||
"Searching for users, groups and circles …" : "Suche nach Benutzern, Gruppen und Kreisen …",
|
||||
"No participants found" : "Keine Teilnehmer gefunden",
|
||||
"Board owner" : "Board-Besitzer",
|
||||
"(Group)" : "(Gruppe)",
|
||||
"(Circle)" : "(Kreis)",
|
||||
@@ -153,7 +151,6 @@
|
||||
"Can share" : "kann teilen",
|
||||
"Can manage" : "kann verwalten",
|
||||
"Delete" : "Löschen",
|
||||
"Failed to create share with {displayName}" : "Fehler beim Erstellen der Freigabe mit dem Namen {displayName}",
|
||||
"Add a new list" : "Eine neue Liste hinzufügen",
|
||||
"Archive all cards" : "Alle Karten archivieren",
|
||||
"Delete list" : "Liste löschen",
|
||||
@@ -161,7 +158,6 @@
|
||||
"Archive all cards in this list" : "Alle Karten in dieser Liste archivieren",
|
||||
"Add a new card" : "Neue Karte hinzufügen",
|
||||
"Card name" : "Kartenname",
|
||||
"List deleted" : "Liste gelöscht",
|
||||
"Edit" : "Bearbeiten",
|
||||
"Add a new tag" : "Neues Schlagwort hinzufügen",
|
||||
"title and color value must be provided" : "Titel und Farbwert müssen angegeben werden",
|
||||
@@ -173,26 +169,13 @@
|
||||
"Restore Attachment" : "Anhang wiederherstellen",
|
||||
"Open in sidebar view" : "In Seitenleiste öffnen",
|
||||
"Open in bigger view" : "In größerer Ansicht öffnen",
|
||||
"Attachments" : "Anhänge",
|
||||
"Comments" : "Kommentare",
|
||||
"Modified" : "Geändert",
|
||||
"Created" : "Erstellt",
|
||||
"The title cannot be empty." : "Der Titel darf nicht leer sein.",
|
||||
"No comments yet. Begin the discussion!" : "Bislang keine Kommentare. Beginnen Sie die Diskussion!",
|
||||
"Assign a tag to this card…" : "Dieser Karte ein Schlagwort zuweisen…",
|
||||
"Assign to users" : "Benutzern zuweisen",
|
||||
"Assign to users/groups/circles" : "An Benutzer, Gruppen oder Kreise zuweisen",
|
||||
"Assign a user to this card…" : "Diese Karte einem Benutzer zuweisen…",
|
||||
"Due date" : "Fälligkeitsdatum",
|
||||
"Set a due date" : "Ein Ablaufdatum setzen",
|
||||
"Remove due date" : "Fälligkeitsdatum löschen",
|
||||
"Select Date" : "Datum auswählen",
|
||||
"Save" : "Speichern",
|
||||
"The comment cannot be empty." : "Der Kommentar darf nicht leer sein.",
|
||||
"The comment cannot be longer than 1000 characters." : "Der Kommentar darf nicht länger als 1000 Zeichen sein.",
|
||||
"In reply to" : "Als Antwort auf",
|
||||
"Reply" : "Antworten",
|
||||
"Update" : "Aktualisieren",
|
||||
"Remove due date" : "Fälligkeitsdatum entfernen",
|
||||
"Description" : "Beschreibung",
|
||||
"(Unsaved)" : "(nicht gespeichert)",
|
||||
"(Saving…)" : "(Speichere…)",
|
||||
@@ -200,19 +183,30 @@
|
||||
"Edit description" : "Beschreibung bearbeiten",
|
||||
"View description" : "Beschreibung anzeigen",
|
||||
"Add Attachment" : "Anhang anhängen",
|
||||
"Write a description …" : "Beschreibung schreiben …",
|
||||
"Attachments" : "Anhänge",
|
||||
"Comments" : "Kommentare",
|
||||
"Choose attachment" : "Anhang auswählen",
|
||||
"Select Date" : "Datum auswählen",
|
||||
"Modified" : "Geändert",
|
||||
"Created" : "Erstellt",
|
||||
"The title cannot be empty." : "Der Titel darf nicht leer sein.",
|
||||
"No comments yet. Begin the discussion!" : "Bislang keine Kommentare. Beginnen Sie die Diskussion!",
|
||||
"Save" : "Speichern",
|
||||
"The comment cannot be empty." : "Der Kommentar darf nicht leer sein.",
|
||||
"The comment cannot be longer than 1000 characters." : "Der Kommentar darf nicht länger als 1000 Zeichen sein.",
|
||||
"In reply to" : "Als Antwort auf",
|
||||
"Reply" : "Antworten",
|
||||
"Update" : "Aktualisieren",
|
||||
"(group)" : "(Gruppe)",
|
||||
"(circle)" : "(Kreis)",
|
||||
"Assign to me" : "Mir zuweisen",
|
||||
"Unassign myself" : "Nicht mehr mir zuweisen",
|
||||
"Move card" : "Karte verschieben",
|
||||
"Unarchive card" : "Karte dearchivieren",
|
||||
"Archive card" : "Karte archivieren",
|
||||
"Delete card" : "Karte löschen",
|
||||
"Move card" : "Karte verschieben",
|
||||
"Move card to another board" : "Karte auf ein anderes Board verschieben",
|
||||
"Select a list" : "Eine Liste auswählen",
|
||||
"Card deleted" : "Karte gelöscht",
|
||||
"seconds ago" : "Gerade eben",
|
||||
"All boards" : "Alle Boards",
|
||||
"Archived boards" : "Archivierte Boards",
|
||||
@@ -220,37 +214,28 @@
|
||||
"Use modal card view" : "Modale Kartenansicht verwenden",
|
||||
"Show boards in calendar/tasks" : "Board in Kalender/Aufgaben anzeigen",
|
||||
"Limit deck usage of groups" : "Nutzung von Deck auf Gruppen einschränken",
|
||||
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Wenn Sie Deck einschränken, können Benutzer, die nicht zu diesen Gruppen gehören, keine eigenen Boards erstellen. Die Benutzer können weiterhin an Boards arbeiten, die für sie freigegeben wurden.",
|
||||
"Board name" : "Boardname",
|
||||
"Board details" : "Board-Details",
|
||||
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Durch die Begrenzung von Deck werden Benutzer, die nicht Teil dieser Gruppen sind, daran gehindert, eigene Boards zu erstellen. Benutzer können weiterhin an Boards arbeiten, die für sie freigegeben wurden.",
|
||||
"Board name" : "Board-Name",
|
||||
"Edit board" : "Board bearbeiten",
|
||||
"Clone board" : "Board klonen",
|
||||
"Unarchive board" : "Board dearchivieren",
|
||||
"Archive board" : "Board archivieren",
|
||||
"Turn on due date reminders" : "Fälligkeitserinnerungen einschalten",
|
||||
"Turn off due date reminders" : "Fälligkeitserinnerungen ausschalten",
|
||||
"Due date reminders" : "Fälligkeitserinnerungen",
|
||||
"All cards" : "Alle Karten",
|
||||
"Assigned cards" : "Zugewiesene Karten",
|
||||
"No notifications" : "Keine Benachrichtigungen",
|
||||
"Delete board" : "Board löschen",
|
||||
"Clone board " : "Board duplizieren",
|
||||
"Unarchive board " : "Board dearchivieren",
|
||||
"Archive board " : "Board archivieren",
|
||||
"Delete board " : "Board löschen",
|
||||
"Board details" : "Board-Details",
|
||||
"Board {0} deleted" : "Board {0} gelöscht",
|
||||
"Only assigned cards" : "Nur zugewiesene Karten",
|
||||
"No reminder" : "Keine Erinnerung",
|
||||
"An error occurred" : "Es ist ein Fehler aufgetreten",
|
||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Möchten Sie wirklich dieses Board {title} mit all seinen Daten löschen?",
|
||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Möchten Sie wirklich dieses Board {title} mit all dessen Daten löschen?",
|
||||
"Delete the board?" : "Das Board löschen?",
|
||||
"Loading filtered view" : "Lade gefilterte Ansicht",
|
||||
"Today" : "Heute",
|
||||
"Tomorrow" : "Morgen",
|
||||
"This week" : "Diese Woche",
|
||||
"No due" : "Kein Fälligkeitsdatum",
|
||||
"No upcoming cards" : "Keine anstehenden Karten",
|
||||
"upcoming cards" : "Anstehende Karten",
|
||||
"No upcoming cards" : "Keine kommenden Karten",
|
||||
"upcoming cards" : "Kommende Karten",
|
||||
"Link to a board" : "Mit einem Board verknüpfen",
|
||||
"Link to a card" : "Mit einer Karte verknüpfen",
|
||||
"Something went wrong" : "Etwas ist schiefgelaufen",
|
||||
"Failed to upload {name}" : "Fehler beim Hochladen von {name}",
|
||||
"Maximum file size of {size} exceeded" : "Maximale Dateigröße von {size} überschritten"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
32
l10n/el.js
32
l10n/el.js
@@ -167,11 +167,6 @@ OC.L10N.register(
|
||||
"Add this attachment" : "Προσθήκη αυτού του συνημμένου",
|
||||
"Delete Attachment" : "Διαγραφή Συνημμένου",
|
||||
"Restore Attachment" : "Επαναφορά Συνημμένου",
|
||||
"Attachments" : "Συνημμένα",
|
||||
"Comments" : "Σχόλια",
|
||||
"Modified" : "Τροποποιήθηκε",
|
||||
"Created" : "Δημιουργήθηκε",
|
||||
"No comments yet. Begin the discussion!" : "Χωρίς σχόλια ακόμη. Ξεκινήστε την συζήτηση!",
|
||||
"Assign a tag to this card…" : "Ορίστε μια ετικέτα σε αυτήν την καρτέλα...",
|
||||
"Assign to users" : "Αναθέστε στους χρήστες",
|
||||
"Assign to users/groups/circles" : "Ανάθεση σε χρήστες/ομάδες/κύκλους",
|
||||
@@ -179,13 +174,6 @@ OC.L10N.register(
|
||||
"Due date" : "Ημερομηνία λήξης",
|
||||
"Set a due date" : "Καθορίστε ημερομηνίας λήξης",
|
||||
"Remove due date" : "Αφαίρεση ημερομηνίας λήξης",
|
||||
"Select Date" : "Επέλεξε Ημέρα",
|
||||
"Save" : "Αποθήκευση",
|
||||
"The comment cannot be empty." : "Το σχόλιο δεν μπορεί να είναι κενό.",
|
||||
"The comment cannot be longer than 1000 characters." : "Το σχόλιο δεν μπορεί να έχι περισσότερους από 1000 χαρακτήρες.",
|
||||
"In reply to" : "Ως απάντηση σε",
|
||||
"Reply" : "Απάντηση",
|
||||
"Update" : "Ενημέρωση",
|
||||
"Description" : "Περιγραφή",
|
||||
"(Unsaved)" : "(Δεν αποθηκεύτηκε)",
|
||||
"(Saving…)" : "(Αποθήκευση...)",
|
||||
@@ -193,15 +181,27 @@ OC.L10N.register(
|
||||
"Edit description" : "Επεξεργασία περιγραφής",
|
||||
"View description" : "Εμφάνιση περιγραφής",
|
||||
"Add Attachment" : "Προσθήκη συνημμένου",
|
||||
"Attachments" : "Συνημμένα",
|
||||
"Comments" : "Σχόλια",
|
||||
"Choose attachment" : "Επιλογή συνημμένου",
|
||||
"Select Date" : "Επέλεξε Ημέρα",
|
||||
"Modified" : "Τροποποιήθηκε",
|
||||
"Created" : "Δημιουργήθηκε",
|
||||
"No comments yet. Begin the discussion!" : "Χωρίς σχόλια ακόμη. Ξεκινήστε την συζήτηση!",
|
||||
"Save" : "Αποθήκευση",
|
||||
"The comment cannot be empty." : "Το σχόλιο δεν μπορεί να είναι κενό.",
|
||||
"The comment cannot be longer than 1000 characters." : "Το σχόλιο δεν μπορεί να έχι περισσότερους από 1000 χαρακτήρες.",
|
||||
"In reply to" : "Ως απάντηση σε",
|
||||
"Reply" : "Απάντηση",
|
||||
"Update" : "Ενημέρωση",
|
||||
"(group)" : "(ομάδα)",
|
||||
"(circle)" : "(κύκλος)",
|
||||
"Assign to me" : "Ανάθεση σε εμένα",
|
||||
"Unassign myself" : "Αποδέσμευσή μου",
|
||||
"Move card" : "Μετακίνηση κάρτας",
|
||||
"Unarchive card" : "Αναίρεση αρχειοθέτησης κάρτας",
|
||||
"Archive card" : "Αρχειοθέτηση κάρτας",
|
||||
"Delete card" : "Διαγραφή κάρτας",
|
||||
"Move card" : "Μετακίνηση κάρτας",
|
||||
"Move card to another board" : "Μετακίνηση καρτέλας σε άλλο πίνακα",
|
||||
"Select a list" : "Επιλέξτε μια λίστα",
|
||||
"seconds ago" : " δευτερόλεπτα πριν ",
|
||||
@@ -210,8 +210,12 @@ OC.L10N.register(
|
||||
"Shared with you" : "Διαμοιρασμένα μαζί σας",
|
||||
"Limit deck usage of groups" : "Περιορίστε τη χρήση της εφαρμογής σε ομάδες",
|
||||
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Ο περιορισμός του Deck θα εμποδίσει τους χρήστες που δεν είναι μέρος αυτών των ομάδων να δημιουργούν δικούς τους πίνακες. Οι χρήστες θα εξακολουθήσουν να εργάζονται σε πίνακες που έχουν διαμοιραστεί μαζί τους.",
|
||||
"Board details" : "Λεπτομέριες πίνακα",
|
||||
"Edit board" : "Επεξεργασία πίνακα",
|
||||
"Clone board " : "Κλωνοποίηση πίνακα",
|
||||
"Unarchive board " : "Αναίρεση αρχειοθέτησης πίνακα",
|
||||
"Archive board " : "Αρχειοθέτηση πίνακα",
|
||||
"Delete board " : "Διαγραφή πίνακα",
|
||||
"Board details" : "Λεπτομέριες πίνακα",
|
||||
"Board {0} deleted" : "Διαγράφηκε {0} πίνακας",
|
||||
"An error occurred" : "Παρουσιάστηκε σφάλμα",
|
||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Είστε βέβαιοι ότι θέλετε να διαγράψετε τον πίνακα {title}; Θα διαγραφούν όλα τα δεδομένα.",
|
||||
|
||||
32
l10n/el.json
32
l10n/el.json
@@ -165,11 +165,6 @@
|
||||
"Add this attachment" : "Προσθήκη αυτού του συνημμένου",
|
||||
"Delete Attachment" : "Διαγραφή Συνημμένου",
|
||||
"Restore Attachment" : "Επαναφορά Συνημμένου",
|
||||
"Attachments" : "Συνημμένα",
|
||||
"Comments" : "Σχόλια",
|
||||
"Modified" : "Τροποποιήθηκε",
|
||||
"Created" : "Δημιουργήθηκε",
|
||||
"No comments yet. Begin the discussion!" : "Χωρίς σχόλια ακόμη. Ξεκινήστε την συζήτηση!",
|
||||
"Assign a tag to this card…" : "Ορίστε μια ετικέτα σε αυτήν την καρτέλα...",
|
||||
"Assign to users" : "Αναθέστε στους χρήστες",
|
||||
"Assign to users/groups/circles" : "Ανάθεση σε χρήστες/ομάδες/κύκλους",
|
||||
@@ -177,13 +172,6 @@
|
||||
"Due date" : "Ημερομηνία λήξης",
|
||||
"Set a due date" : "Καθορίστε ημερομηνίας λήξης",
|
||||
"Remove due date" : "Αφαίρεση ημερομηνίας λήξης",
|
||||
"Select Date" : "Επέλεξε Ημέρα",
|
||||
"Save" : "Αποθήκευση",
|
||||
"The comment cannot be empty." : "Το σχόλιο δεν μπορεί να είναι κενό.",
|
||||
"The comment cannot be longer than 1000 characters." : "Το σχόλιο δεν μπορεί να έχι περισσότερους από 1000 χαρακτήρες.",
|
||||
"In reply to" : "Ως απάντηση σε",
|
||||
"Reply" : "Απάντηση",
|
||||
"Update" : "Ενημέρωση",
|
||||
"Description" : "Περιγραφή",
|
||||
"(Unsaved)" : "(Δεν αποθηκεύτηκε)",
|
||||
"(Saving…)" : "(Αποθήκευση...)",
|
||||
@@ -191,15 +179,27 @@
|
||||
"Edit description" : "Επεξεργασία περιγραφής",
|
||||
"View description" : "Εμφάνιση περιγραφής",
|
||||
"Add Attachment" : "Προσθήκη συνημμένου",
|
||||
"Attachments" : "Συνημμένα",
|
||||
"Comments" : "Σχόλια",
|
||||
"Choose attachment" : "Επιλογή συνημμένου",
|
||||
"Select Date" : "Επέλεξε Ημέρα",
|
||||
"Modified" : "Τροποποιήθηκε",
|
||||
"Created" : "Δημιουργήθηκε",
|
||||
"No comments yet. Begin the discussion!" : "Χωρίς σχόλια ακόμη. Ξεκινήστε την συζήτηση!",
|
||||
"Save" : "Αποθήκευση",
|
||||
"The comment cannot be empty." : "Το σχόλιο δεν μπορεί να είναι κενό.",
|
||||
"The comment cannot be longer than 1000 characters." : "Το σχόλιο δεν μπορεί να έχι περισσότερους από 1000 χαρακτήρες.",
|
||||
"In reply to" : "Ως απάντηση σε",
|
||||
"Reply" : "Απάντηση",
|
||||
"Update" : "Ενημέρωση",
|
||||
"(group)" : "(ομάδα)",
|
||||
"(circle)" : "(κύκλος)",
|
||||
"Assign to me" : "Ανάθεση σε εμένα",
|
||||
"Unassign myself" : "Αποδέσμευσή μου",
|
||||
"Move card" : "Μετακίνηση κάρτας",
|
||||
"Unarchive card" : "Αναίρεση αρχειοθέτησης κάρτας",
|
||||
"Archive card" : "Αρχειοθέτηση κάρτας",
|
||||
"Delete card" : "Διαγραφή κάρτας",
|
||||
"Move card" : "Μετακίνηση κάρτας",
|
||||
"Move card to another board" : "Μετακίνηση καρτέλας σε άλλο πίνακα",
|
||||
"Select a list" : "Επιλέξτε μια λίστα",
|
||||
"seconds ago" : " δευτερόλεπτα πριν ",
|
||||
@@ -208,8 +208,12 @@
|
||||
"Shared with you" : "Διαμοιρασμένα μαζί σας",
|
||||
"Limit deck usage of groups" : "Περιορίστε τη χρήση της εφαρμογής σε ομάδες",
|
||||
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Ο περιορισμός του Deck θα εμποδίσει τους χρήστες που δεν είναι μέρος αυτών των ομάδων να δημιουργούν δικούς τους πίνακες. Οι χρήστες θα εξακολουθήσουν να εργάζονται σε πίνακες που έχουν διαμοιραστεί μαζί τους.",
|
||||
"Board details" : "Λεπτομέριες πίνακα",
|
||||
"Edit board" : "Επεξεργασία πίνακα",
|
||||
"Clone board " : "Κλωνοποίηση πίνακα",
|
||||
"Unarchive board " : "Αναίρεση αρχειοθέτησης πίνακα",
|
||||
"Archive board " : "Αρχειοθέτηση πίνακα",
|
||||
"Delete board " : "Διαγραφή πίνακα",
|
||||
"Board details" : "Λεπτομέριες πίνακα",
|
||||
"Board {0} deleted" : "Διαγράφηκε {0} πίνακας",
|
||||
"An error occurred" : "Παρουσιάστηκε σφάλμα",
|
||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Είστε βέβαιοι ότι θέλετε να διαγράψετε τον πίνακα {title}; Θα διαγραφούν όλα τα δεδομένα.",
|
||||
|
||||
@@ -38,25 +38,25 @@ OC.L10N.register(
|
||||
"Title" : "Title",
|
||||
"Members" : "Members",
|
||||
"Upload attachment" : "Upload attachment",
|
||||
"Due date" : "Due date",
|
||||
"Remove due date" : "Remove due date",
|
||||
"Description" : "Description",
|
||||
"Formatting help" : "Formatting help",
|
||||
"Attachments" : "Attachments",
|
||||
"Comments" : "Comments",
|
||||
"Modified" : "Modified",
|
||||
"Created" : "Created",
|
||||
"Due date" : "Due date",
|
||||
"Remove due date" : "Remove due date",
|
||||
"Save" : "Save",
|
||||
"Reply" : "Reply",
|
||||
"Update" : "Update",
|
||||
"Description" : "Description",
|
||||
"Formatting help" : "Formatting help",
|
||||
"(group)" : "(group)",
|
||||
"Archive card" : "Archive card",
|
||||
"Delete card" : "Delete card",
|
||||
"seconds ago" : "seconds ago",
|
||||
"Archived boards" : "Archived boards",
|
||||
"Shared with you" : "Shared with you",
|
||||
"Board details" : "Board details",
|
||||
"Edit board" : "Edit board",
|
||||
"Board details" : "Board details",
|
||||
"Today" : "Today",
|
||||
"Tomorrow" : "Tomorrow",
|
||||
"This week" : "This week"
|
||||
|
||||
@@ -36,25 +36,25 @@
|
||||
"Title" : "Title",
|
||||
"Members" : "Members",
|
||||
"Upload attachment" : "Upload attachment",
|
||||
"Due date" : "Due date",
|
||||
"Remove due date" : "Remove due date",
|
||||
"Description" : "Description",
|
||||
"Formatting help" : "Formatting help",
|
||||
"Attachments" : "Attachments",
|
||||
"Comments" : "Comments",
|
||||
"Modified" : "Modified",
|
||||
"Created" : "Created",
|
||||
"Due date" : "Due date",
|
||||
"Remove due date" : "Remove due date",
|
||||
"Save" : "Save",
|
||||
"Reply" : "Reply",
|
||||
"Update" : "Update",
|
||||
"Description" : "Description",
|
||||
"Formatting help" : "Formatting help",
|
||||
"(group)" : "(group)",
|
||||
"Archive card" : "Archive card",
|
||||
"Delete card" : "Delete card",
|
||||
"seconds ago" : "seconds ago",
|
||||
"Archived boards" : "Archived boards",
|
||||
"Shared with you" : "Shared with you",
|
||||
"Board details" : "Board details",
|
||||
"Edit board" : "Edit board",
|
||||
"Board details" : "Board details",
|
||||
"Today" : "Today",
|
||||
"Tomorrow" : "Tomorrow",
|
||||
"This week" : "This week"
|
||||
|
||||
12
l10n/eo.js
12
l10n/eo.js
@@ -97,18 +97,18 @@ OC.L10N.register(
|
||||
"Title" : "Titolo",
|
||||
"Members" : "Membroj",
|
||||
"Upload attachment" : "Alŝuti dosieran aldonaĵon",
|
||||
"Attachments" : "Dosieraj aldonaĵoj",
|
||||
"Comments" : "Komentoj",
|
||||
"Modified" : "Modifita",
|
||||
"Created" : "Kreita",
|
||||
"Due date" : "Limdato",
|
||||
"Remove due date" : "Viŝi limdaton",
|
||||
"Description" : "Priskribo",
|
||||
"Formatting help" : "Helpo pri tekstaranĝo",
|
||||
"Attachments" : "Dosieraj aldonaĵoj",
|
||||
"Comments" : "Komentoj",
|
||||
"Select Date" : "Elekti daton",
|
||||
"Modified" : "Modifita",
|
||||
"Created" : "Kreita",
|
||||
"Save" : "Konservi",
|
||||
"Reply" : "Respondi",
|
||||
"Update" : "Ĝisdatigi",
|
||||
"Description" : "Priskribo",
|
||||
"Formatting help" : "Helpo pri tekstaranĝo",
|
||||
"(group)" : "(grupo)",
|
||||
"Unarchive card" : "Malarĥivigi karton",
|
||||
"Archive card" : "Arĥivigi karton",
|
||||
|
||||
12
l10n/eo.json
12
l10n/eo.json
@@ -95,18 +95,18 @@
|
||||
"Title" : "Titolo",
|
||||
"Members" : "Membroj",
|
||||
"Upload attachment" : "Alŝuti dosieran aldonaĵon",
|
||||
"Attachments" : "Dosieraj aldonaĵoj",
|
||||
"Comments" : "Komentoj",
|
||||
"Modified" : "Modifita",
|
||||
"Created" : "Kreita",
|
||||
"Due date" : "Limdato",
|
||||
"Remove due date" : "Viŝi limdaton",
|
||||
"Description" : "Priskribo",
|
||||
"Formatting help" : "Helpo pri tekstaranĝo",
|
||||
"Attachments" : "Dosieraj aldonaĵoj",
|
||||
"Comments" : "Komentoj",
|
||||
"Select Date" : "Elekti daton",
|
||||
"Modified" : "Modifita",
|
||||
"Created" : "Kreita",
|
||||
"Save" : "Konservi",
|
||||
"Reply" : "Respondi",
|
||||
"Update" : "Ĝisdatigi",
|
||||
"Description" : "Priskribo",
|
||||
"Formatting help" : "Helpo pri tekstaranĝo",
|
||||
"(group)" : "(grupo)",
|
||||
"Unarchive card" : "Malarĥivigi karton",
|
||||
"Archive card" : "Arĥivigi karton",
|
||||
|
||||
52
l10n/es.js
52
l10n/es.js
@@ -146,8 +146,6 @@ OC.L10N.register(
|
||||
"Undo" : "Deshacer",
|
||||
"Deleted cards" : "Cartas eliminadas",
|
||||
"Share board with a user, group or circle …" : "Compartir tablero con un usuario, grupo o círculo ...",
|
||||
"Searching for users, groups and circles …" : "Buscando usuarios, grupos o círculos...",
|
||||
"No participants found" : "No se encontraron participantes",
|
||||
"Board owner" : "Propietario del tablero",
|
||||
"(Group)" : "(Grupo)",
|
||||
"(Circle)" : "(Circle)",
|
||||
@@ -155,7 +153,6 @@ OC.L10N.register(
|
||||
"Can share" : "Puede compartir",
|
||||
"Can manage" : "Puede gestionar",
|
||||
"Delete" : "Eliminar",
|
||||
"Failed to create share with {displayName}" : "Fallo al crear el recurso compartido denominado {displayName}",
|
||||
"Add a new list" : "Añadir una lista nueva",
|
||||
"Archive all cards" : "Archivar todas las tarjetas",
|
||||
"Delete list" : "Eliminar lista",
|
||||
@@ -163,7 +160,6 @@ OC.L10N.register(
|
||||
"Archive all cards in this list" : "Archivar todas las tarjetas en esta lista",
|
||||
"Add a new card" : "Añadir una nueva tarjeta",
|
||||
"Card name" : "Nombre de la tarjeta",
|
||||
"List deleted" : "Lista borrada",
|
||||
"Edit" : "Editar",
|
||||
"Add a new tag" : "Añade una nueva etiqueta",
|
||||
"title and color value must be provided" : "Se debe indicar un valor para título y color ",
|
||||
@@ -175,12 +171,6 @@ OC.L10N.register(
|
||||
"Restore Attachment" : "Restaurar Adjunto",
|
||||
"Open in sidebar view" : "Abrir en vista de barra lateral",
|
||||
"Open in bigger view" : "Abrir en vista más grande",
|
||||
"Attachments" : "Adjuntos",
|
||||
"Comments" : "Comentarios",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"The title cannot be empty." : "El título no puede estar vacío.",
|
||||
"No comments yet. Begin the discussion!" : "Todavía no hay comentarios. ¡Comienza la discusión!",
|
||||
"Assign a tag to this card…" : "Asignar una etiqueta a esta tarjeta...",
|
||||
"Assign to users" : "Asignar a usuarios",
|
||||
"Assign to users/groups/circles" : "Asignar a usuarios/grupos/círculos",
|
||||
@@ -188,13 +178,6 @@ OC.L10N.register(
|
||||
"Due date" : "Fecha límite",
|
||||
"Set a due date" : "Fijar una fecha límite",
|
||||
"Remove due date" : "Eliminar fecha límite",
|
||||
"Select Date" : "Seleccione la fecha",
|
||||
"Save" : "Guardar",
|
||||
"The comment cannot be empty." : "El comentario no puede estar vacío.",
|
||||
"The comment cannot be longer than 1000 characters." : "El comentario no puede tener más de 1000 caracteres.",
|
||||
"In reply to" : "En respuesta a",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
"Description" : "Descripción",
|
||||
"(Unsaved)" : "(Sin salvar)",
|
||||
"(Saving…)" : "(Guardando...)",
|
||||
@@ -202,19 +185,30 @@ OC.L10N.register(
|
||||
"Edit description" : "Editar descripción",
|
||||
"View description" : "Ver descripción",
|
||||
"Add Attachment" : "Añadir adjunto",
|
||||
"Write a description …" : "Escribe una descripción...",
|
||||
"Attachments" : "Adjuntos",
|
||||
"Comments" : "Comentarios",
|
||||
"Choose attachment" : "Escoger adjunto",
|
||||
"Select Date" : "Seleccione la fecha",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"The title cannot be empty." : "El título no puede estar vacío.",
|
||||
"No comments yet. Begin the discussion!" : "Todavía no hay comentarios. ¡Comienza la discusión!",
|
||||
"Save" : "Guardar",
|
||||
"The comment cannot be empty." : "El comentario no puede estar vacío.",
|
||||
"The comment cannot be longer than 1000 characters." : "El comentario no puede tener más de 1000 caracteres.",
|
||||
"In reply to" : "En respuesta a",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
"(group)" : "(grupo)",
|
||||
"(circle)" : "(circle)",
|
||||
"Assign to me" : "Asignarme a mí",
|
||||
"Unassign myself" : "Desasignarme a mí mismo",
|
||||
"Move card" : "Mover tarjeta",
|
||||
"Unarchive card" : "Desarchivar tarjeta",
|
||||
"Archive card" : "Archivar tarjeta",
|
||||
"Delete card" : "Eliminar tarjeta",
|
||||
"Move card" : "Mover tarjeta",
|
||||
"Move card to another board" : "Mover la tarjeta a otro tablero",
|
||||
"Select a list" : "Seleccionar una lista",
|
||||
"Card deleted" : "Tarjeta borrada",
|
||||
"seconds ago" : "hace unos segundos",
|
||||
"All boards" : "Todos los tableros",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
@@ -224,21 +218,13 @@ OC.L10N.register(
|
||||
"Limit deck usage of groups" : "Limitar el uso de Deck a grupos",
|
||||
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Limitar Deck impedirá que usuarios que no formen parte de esos grupos creen sus propios tableros. Los usuarios todavía podrán trabajar en tableros que hayan sido compartidos con ellos.",
|
||||
"Board name" : "Nombre del tablero",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Edit board" : "Editar tablero",
|
||||
"Clone board" : "Clonar tablero",
|
||||
"Unarchive board" : "Desarchivar tablero",
|
||||
"Archive board" : "Archivar tablero",
|
||||
"Turn on due date reminders" : "Activar recordatorios de la fecha de vencimiento",
|
||||
"Turn off due date reminders" : "Desactivar recordatorios de la fecha de vencimiento",
|
||||
"Due date reminders" : "Recordatorios de la fecha de vencimiento",
|
||||
"All cards" : "Todas las tarjetas",
|
||||
"Assigned cards" : "Tarjetas asignadas",
|
||||
"No notifications" : "No hay notificaciones",
|
||||
"Delete board" : "Eliminar tablero",
|
||||
"Clone board " : "Clonar tablero",
|
||||
"Unarchive board " : "Desarchivar tablero",
|
||||
"Archive board " : "Archivar tablero",
|
||||
"Delete board " : "Eliminar tablero",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Board {0} deleted" : "Tablero {0} eliminado",
|
||||
"Only assigned cards" : "Sólo las tarjetas asignadas",
|
||||
"No reminder" : "No hay recordatorio",
|
||||
"An error occurred" : "Ocurrió un error",
|
||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "¿Estas seguro de que quieres eliminar el tablero {title}? Esto eliminará todos los datos del tablero.",
|
||||
"Delete the board?" : "¿Borrar el tablero?",
|
||||
|
||||
52
l10n/es.json
52
l10n/es.json
@@ -144,8 +144,6 @@
|
||||
"Undo" : "Deshacer",
|
||||
"Deleted cards" : "Cartas eliminadas",
|
||||
"Share board with a user, group or circle …" : "Compartir tablero con un usuario, grupo o círculo ...",
|
||||
"Searching for users, groups and circles …" : "Buscando usuarios, grupos o círculos...",
|
||||
"No participants found" : "No se encontraron participantes",
|
||||
"Board owner" : "Propietario del tablero",
|
||||
"(Group)" : "(Grupo)",
|
||||
"(Circle)" : "(Circle)",
|
||||
@@ -153,7 +151,6 @@
|
||||
"Can share" : "Puede compartir",
|
||||
"Can manage" : "Puede gestionar",
|
||||
"Delete" : "Eliminar",
|
||||
"Failed to create share with {displayName}" : "Fallo al crear el recurso compartido denominado {displayName}",
|
||||
"Add a new list" : "Añadir una lista nueva",
|
||||
"Archive all cards" : "Archivar todas las tarjetas",
|
||||
"Delete list" : "Eliminar lista",
|
||||
@@ -161,7 +158,6 @@
|
||||
"Archive all cards in this list" : "Archivar todas las tarjetas en esta lista",
|
||||
"Add a new card" : "Añadir una nueva tarjeta",
|
||||
"Card name" : "Nombre de la tarjeta",
|
||||
"List deleted" : "Lista borrada",
|
||||
"Edit" : "Editar",
|
||||
"Add a new tag" : "Añade una nueva etiqueta",
|
||||
"title and color value must be provided" : "Se debe indicar un valor para título y color ",
|
||||
@@ -173,12 +169,6 @@
|
||||
"Restore Attachment" : "Restaurar Adjunto",
|
||||
"Open in sidebar view" : "Abrir en vista de barra lateral",
|
||||
"Open in bigger view" : "Abrir en vista más grande",
|
||||
"Attachments" : "Adjuntos",
|
||||
"Comments" : "Comentarios",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"The title cannot be empty." : "El título no puede estar vacío.",
|
||||
"No comments yet. Begin the discussion!" : "Todavía no hay comentarios. ¡Comienza la discusión!",
|
||||
"Assign a tag to this card…" : "Asignar una etiqueta a esta tarjeta...",
|
||||
"Assign to users" : "Asignar a usuarios",
|
||||
"Assign to users/groups/circles" : "Asignar a usuarios/grupos/círculos",
|
||||
@@ -186,13 +176,6 @@
|
||||
"Due date" : "Fecha límite",
|
||||
"Set a due date" : "Fijar una fecha límite",
|
||||
"Remove due date" : "Eliminar fecha límite",
|
||||
"Select Date" : "Seleccione la fecha",
|
||||
"Save" : "Guardar",
|
||||
"The comment cannot be empty." : "El comentario no puede estar vacío.",
|
||||
"The comment cannot be longer than 1000 characters." : "El comentario no puede tener más de 1000 caracteres.",
|
||||
"In reply to" : "En respuesta a",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
"Description" : "Descripción",
|
||||
"(Unsaved)" : "(Sin salvar)",
|
||||
"(Saving…)" : "(Guardando...)",
|
||||
@@ -200,19 +183,30 @@
|
||||
"Edit description" : "Editar descripción",
|
||||
"View description" : "Ver descripción",
|
||||
"Add Attachment" : "Añadir adjunto",
|
||||
"Write a description …" : "Escribe una descripción...",
|
||||
"Attachments" : "Adjuntos",
|
||||
"Comments" : "Comentarios",
|
||||
"Choose attachment" : "Escoger adjunto",
|
||||
"Select Date" : "Seleccione la fecha",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"The title cannot be empty." : "El título no puede estar vacío.",
|
||||
"No comments yet. Begin the discussion!" : "Todavía no hay comentarios. ¡Comienza la discusión!",
|
||||
"Save" : "Guardar",
|
||||
"The comment cannot be empty." : "El comentario no puede estar vacío.",
|
||||
"The comment cannot be longer than 1000 characters." : "El comentario no puede tener más de 1000 caracteres.",
|
||||
"In reply to" : "En respuesta a",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
"(group)" : "(grupo)",
|
||||
"(circle)" : "(circle)",
|
||||
"Assign to me" : "Asignarme a mí",
|
||||
"Unassign myself" : "Desasignarme a mí mismo",
|
||||
"Move card" : "Mover tarjeta",
|
||||
"Unarchive card" : "Desarchivar tarjeta",
|
||||
"Archive card" : "Archivar tarjeta",
|
||||
"Delete card" : "Eliminar tarjeta",
|
||||
"Move card" : "Mover tarjeta",
|
||||
"Move card to another board" : "Mover la tarjeta a otro tablero",
|
||||
"Select a list" : "Seleccionar una lista",
|
||||
"Card deleted" : "Tarjeta borrada",
|
||||
"seconds ago" : "hace unos segundos",
|
||||
"All boards" : "Todos los tableros",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
@@ -222,21 +216,13 @@
|
||||
"Limit deck usage of groups" : "Limitar el uso de Deck a grupos",
|
||||
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Limitar Deck impedirá que usuarios que no formen parte de esos grupos creen sus propios tableros. Los usuarios todavía podrán trabajar en tableros que hayan sido compartidos con ellos.",
|
||||
"Board name" : "Nombre del tablero",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Edit board" : "Editar tablero",
|
||||
"Clone board" : "Clonar tablero",
|
||||
"Unarchive board" : "Desarchivar tablero",
|
||||
"Archive board" : "Archivar tablero",
|
||||
"Turn on due date reminders" : "Activar recordatorios de la fecha de vencimiento",
|
||||
"Turn off due date reminders" : "Desactivar recordatorios de la fecha de vencimiento",
|
||||
"Due date reminders" : "Recordatorios de la fecha de vencimiento",
|
||||
"All cards" : "Todas las tarjetas",
|
||||
"Assigned cards" : "Tarjetas asignadas",
|
||||
"No notifications" : "No hay notificaciones",
|
||||
"Delete board" : "Eliminar tablero",
|
||||
"Clone board " : "Clonar tablero",
|
||||
"Unarchive board " : "Desarchivar tablero",
|
||||
"Archive board " : "Archivar tablero",
|
||||
"Delete board " : "Eliminar tablero",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Board {0} deleted" : "Tablero {0} eliminado",
|
||||
"Only assigned cards" : "Sólo las tarjetas asignadas",
|
||||
"No reminder" : "No hay recordatorio",
|
||||
"An error occurred" : "Ocurrió un error",
|
||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "¿Estas seguro de que quieres eliminar el tablero {title}? Esto eliminará todos los datos del tablero.",
|
||||
"Delete the board?" : "¿Borrar el tablero?",
|
||||
|
||||
@@ -33,22 +33,22 @@ OC.L10N.register(
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Comments" : "Comentarios",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"(group)" : "(grupo)",
|
||||
"seconds ago" : "hace segundos",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
|
||||
@@ -31,22 +31,22 @@
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Comments" : "Comentarios",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"(group)" : "(grupo)",
|
||||
"seconds ago" : "hace segundos",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
|
||||
@@ -25,17 +25,17 @@ OC.L10N.register(
|
||||
"Edit" : "Editar",
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Attachments" : "Adjuntos",
|
||||
"Comments" : "Comentarios",
|
||||
"Select Date" : "Seleccionar fecha",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Select Date" : "Seleccionar fecha",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"(group)" : "(grupo)",
|
||||
"seconds ago" : "segundos",
|
||||
"Shared with you" : "Compartido con usted",
|
||||
|
||||
@@ -23,17 +23,17 @@
|
||||
"Edit" : "Editar",
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Attachments" : "Adjuntos",
|
||||
"Comments" : "Comentarios",
|
||||
"Select Date" : "Seleccionar fecha",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Select Date" : "Seleccionar fecha",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"(group)" : "(grupo)",
|
||||
"seconds ago" : "segundos",
|
||||
"Shared with you" : "Compartido con usted",
|
||||
|
||||
@@ -36,22 +36,22 @@ OC.L10N.register(
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Comments" : "Comentarios",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"(group)" : "(grupo)",
|
||||
"seconds ago" : "hace segundos",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
|
||||
@@ -34,22 +34,22 @@
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Comments" : "Comentarios",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"(group)" : "(grupo)",
|
||||
"seconds ago" : "hace segundos",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
|
||||
@@ -37,22 +37,22 @@ OC.L10N.register(
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Comments" : "Comentarios",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"(group)" : "(grupo)",
|
||||
"seconds ago" : "hace segundos",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
|
||||
@@ -35,22 +35,22 @@
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Comments" : "Comentarios",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"(group)" : "(grupo)",
|
||||
"seconds ago" : "hace segundos",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
|
||||
@@ -36,22 +36,22 @@ OC.L10N.register(
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Comments" : "Comentarios",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"(group)" : "(grupo)",
|
||||
"seconds ago" : "hace segundos",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
|
||||
@@ -34,22 +34,22 @@
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Comments" : "Comentarios",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"(group)" : "(grupo)",
|
||||
"seconds ago" : "hace segundos",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
|
||||
@@ -36,22 +36,22 @@ OC.L10N.register(
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Comments" : "Comentarios",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"(group)" : "(grupo)",
|
||||
"seconds ago" : "hace segundos",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
|
||||
@@ -34,22 +34,22 @@
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Comments" : "Comentarios",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"(group)" : "(grupo)",
|
||||
"seconds ago" : "hace segundos",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
|
||||
@@ -36,22 +36,22 @@ OC.L10N.register(
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Comments" : "Comentarios",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"(group)" : "(grupo)",
|
||||
"seconds ago" : "hace segundos",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
|
||||
@@ -34,22 +34,22 @@
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Comments" : "Comentarios",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"(group)" : "(grupo)",
|
||||
"seconds ago" : "hace segundos",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
|
||||
@@ -36,22 +36,22 @@ OC.L10N.register(
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Comments" : "Comentarios",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"(group)" : "(grupo)",
|
||||
"seconds ago" : "hace segundos",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
|
||||
@@ -34,22 +34,22 @@
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Comments" : "Comentarios",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"(group)" : "(grupo)",
|
||||
"seconds ago" : "hace segundos",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
|
||||
@@ -32,22 +32,22 @@ OC.L10N.register(
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Comments" : "Comentarios",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"(group)" : "(grupo)",
|
||||
"seconds ago" : "hace segundos",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
|
||||
@@ -30,22 +30,22 @@
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Comments" : "Comentarios",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"(group)" : "(grupo)",
|
||||
"seconds ago" : "hace segundos",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
|
||||
@@ -37,23 +37,23 @@ OC.L10N.register(
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Attachments" : "Adjuntos",
|
||||
"Comments" : "Comentarios",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"(group)" : "(grupo)",
|
||||
"seconds ago" : "hace segundos",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"An error occurred" : "Ha ocurrido un error",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
|
||||
@@ -35,23 +35,23 @@
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Attachments" : "Adjuntos",
|
||||
"Comments" : "Comentarios",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"(group)" : "(grupo)",
|
||||
"seconds ago" : "hace segundos",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"An error occurred" : "Ha ocurrido un error",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
|
||||
@@ -32,22 +32,22 @@ OC.L10N.register(
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Comments" : "Comentarios",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"(group)" : "(grupo)",
|
||||
"seconds ago" : "hace segundos",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
|
||||
@@ -30,22 +30,22 @@
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Comments" : "Comentarios",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"(group)" : "(grupo)",
|
||||
"seconds ago" : "hace segundos",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
|
||||
@@ -32,22 +32,22 @@ OC.L10N.register(
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Comments" : "Comentarios",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"(group)" : "(grupo)",
|
||||
"seconds ago" : "hace segundos",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
|
||||
@@ -30,22 +30,22 @@
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Comments" : "Comentarios",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"(group)" : "(grupo)",
|
||||
"seconds ago" : "hace segundos",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
|
||||
@@ -32,22 +32,22 @@ OC.L10N.register(
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Comments" : "Comentarios",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"(group)" : "(grupo)",
|
||||
"seconds ago" : "hace segundos",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
|
||||
@@ -30,22 +30,22 @@
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Comments" : "Comentarios",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"(group)" : "(grupo)",
|
||||
"seconds ago" : "hace segundos",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
|
||||
@@ -32,22 +32,22 @@ OC.L10N.register(
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Comments" : "Comentarios",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"(group)" : "(grupo)",
|
||||
"seconds ago" : "hace segundos",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
|
||||
@@ -30,22 +30,22 @@
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Comments" : "Comentarios",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"(group)" : "(grupo)",
|
||||
"seconds ago" : "hace segundos",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
|
||||
@@ -33,22 +33,22 @@ OC.L10N.register(
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Comments" : "Comentarios",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"(group)" : "(grupo)",
|
||||
"seconds ago" : "hace segundos",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"An error occurred" : "Se presentó un error",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
|
||||
@@ -31,22 +31,22 @@
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Comments" : "Comentarios",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"(group)" : "(grupo)",
|
||||
"seconds ago" : "hace segundos",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"An error occurred" : "Se presentó un error",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
|
||||
@@ -36,22 +36,22 @@ OC.L10N.register(
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Comments" : "Comentarios",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"(group)" : "(grupo)",
|
||||
"seconds ago" : "hace segundos",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
|
||||
@@ -34,22 +34,22 @@
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Comments" : "Comentarios",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"(group)" : "(grupo)",
|
||||
"seconds ago" : "hace segundos",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
|
||||
@@ -32,22 +32,22 @@ OC.L10N.register(
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Comments" : "Comentarios",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"(group)" : "(grupo)",
|
||||
"seconds ago" : "hace segundos",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
|
||||
@@ -30,22 +30,22 @@
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Comments" : "Comentarios",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"(group)" : "(grupo)",
|
||||
"seconds ago" : "hace segundos",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
|
||||
@@ -18,16 +18,15 @@ OC.L10N.register(
|
||||
"Delete" : "Kustuta",
|
||||
"Edit" : "Redigeeri",
|
||||
"Title" : "Pealkiri",
|
||||
"Due date" : "Tähtaeg",
|
||||
"Description" : "Kirjeldus",
|
||||
"Comments" : "Kommentaarid",
|
||||
"Modified" : "Muudetud",
|
||||
"Created" : "Loodud",
|
||||
"Due date" : "Tähtaeg",
|
||||
"Save" : "Salvesta",
|
||||
"Reply" : "Vasta",
|
||||
"Update" : "Uuenda",
|
||||
"Description" : "Kirjeldus",
|
||||
"(group)" : "(grupp)",
|
||||
"Delete card" : "Kustuta kaart",
|
||||
"seconds ago" : "sekundit tagasi",
|
||||
"Shared with you" : "Sinuga jagatud",
|
||||
"An error occurred" : "Tekkis tõrge",
|
||||
|
||||
@@ -16,16 +16,15 @@
|
||||
"Delete" : "Kustuta",
|
||||
"Edit" : "Redigeeri",
|
||||
"Title" : "Pealkiri",
|
||||
"Due date" : "Tähtaeg",
|
||||
"Description" : "Kirjeldus",
|
||||
"Comments" : "Kommentaarid",
|
||||
"Modified" : "Muudetud",
|
||||
"Created" : "Loodud",
|
||||
"Due date" : "Tähtaeg",
|
||||
"Save" : "Salvesta",
|
||||
"Reply" : "Vasta",
|
||||
"Update" : "Uuenda",
|
||||
"Description" : "Kirjeldus",
|
||||
"(group)" : "(grupp)",
|
||||
"Delete card" : "Kustuta kaart",
|
||||
"seconds ago" : "sekundit tagasi",
|
||||
"Shared with you" : "Sinuga jagatud",
|
||||
"An error occurred" : "Tekkis tõrge",
|
||||
|
||||
39
l10n/eu.js
39
l10n/eu.js
@@ -146,8 +146,6 @@ OC.L10N.register(
|
||||
"Undo" : "Desegin",
|
||||
"Deleted cards" : "Ezabatutako txartelak",
|
||||
"Share board with a user, group or circle …" : "Partekatu mahaia erabiltzaile, talde edo zirkulu batekin...",
|
||||
"Searching for users, groups and circles …" : "Erabiltzaileak, taldeak, zirkuluak... bilatzen",
|
||||
"No participants found" : "Ez da parte-hartzailerik aurkitu",
|
||||
"Board owner" : "Mahaiaren jabea",
|
||||
"(Group)" : "(Taldea)",
|
||||
"(Circle)" : "(Zirkulua)",
|
||||
@@ -155,7 +153,6 @@ OC.L10N.register(
|
||||
"Can share" : "Partekatu dezake",
|
||||
"Can manage" : "Kudeatu dezake",
|
||||
"Delete" : "Ezabatu",
|
||||
"Failed to create share with {displayName}" : "Ezin izan da {displayName}-(r)ekin partekatzea sortu",
|
||||
"Add a new list" : "Gehitu zerrenda berria",
|
||||
"Archive all cards" : "Artxibatu txartel guztiak",
|
||||
"Delete list" : "Zerrenda ezabatu",
|
||||
@@ -171,12 +168,6 @@ OC.L10N.register(
|
||||
"Add this attachment" : "Gehitu eranskin hau",
|
||||
"Delete Attachment" : "Ezabatu eranskina",
|
||||
"Restore Attachment" : "Berezarri eranskina",
|
||||
"Attachments" : "Eranskinak",
|
||||
"Comments" : "Iruzkinak",
|
||||
"Modified" : "Aldatua",
|
||||
"Created" : "Sortua",
|
||||
"The title cannot be empty." : "Izenburua ezin da hutsik egon.",
|
||||
"No comments yet. Begin the discussion!" : "Ez dago iruzkinik oraindik. Hasi eztabaidatzen!",
|
||||
"Assign a tag to this card…" : "Esleitu etiketa bat txartel honi...",
|
||||
"Assign to users" : "Esleitu erabiltzaileei",
|
||||
"Assign to users/groups/circles" : "Esleitu erabiltzaile/talde/zirkuluei",
|
||||
@@ -184,13 +175,6 @@ OC.L10N.register(
|
||||
"Due date" : "Epe-muga",
|
||||
"Set a due date" : "Ezarri epe-muga",
|
||||
"Remove due date" : "Ezabatu epe-muga",
|
||||
"Select Date" : "Hautatu data",
|
||||
"Save" : "Gorde",
|
||||
"The comment cannot be empty." : "Iruzkina ezin da hutsik egon.",
|
||||
"The comment cannot be longer than 1000 characters." : "Iruzkina ezin da 1000 karaktere baino luzeagoa izan.",
|
||||
"In reply to" : "Honi erantzunez",
|
||||
"Reply" : "Erantzun",
|
||||
"Update" : "Eguneratu",
|
||||
"Description" : "Deskribapena",
|
||||
"(Unsaved)" : "(Gorde gabe)",
|
||||
"(Saving…)" : "(Gordetzen...)",
|
||||
@@ -198,29 +182,42 @@ OC.L10N.register(
|
||||
"Edit description" : "Editatu azalpena",
|
||||
"View description" : "Ikusi deskribapena",
|
||||
"Add Attachment" : "Gehitu eranskina",
|
||||
"Attachments" : "Eranskinak",
|
||||
"Comments" : "Iruzkinak",
|
||||
"Choose attachment" : "Aukeratu eranskina",
|
||||
"Select Date" : "Hautatu data",
|
||||
"Modified" : "Aldatua",
|
||||
"Created" : "Sortua",
|
||||
"No comments yet. Begin the discussion!" : "Ez dago iruzkinik oraindik. Hasi eztabaidatzen!",
|
||||
"Save" : "Gorde",
|
||||
"The comment cannot be empty." : "Iruzkina ezin da hutsik egon.",
|
||||
"The comment cannot be longer than 1000 characters." : "Iruzkina ezin da 1000 karaktere baino luzeagoa izan.",
|
||||
"In reply to" : "Honi erantzunez",
|
||||
"Reply" : "Erantzun",
|
||||
"Update" : "Eguneratu",
|
||||
"(group)" : "(taldea)",
|
||||
"(circle)" : "(zirkulua)",
|
||||
"Assign to me" : "Esleitu niri",
|
||||
"Unassign myself" : "Niri esleitzeari utzi",
|
||||
"Move card" : "Mugitu txartela",
|
||||
"Unarchive card" : "Berreskuratu txartela artxibotik",
|
||||
"Archive card" : "Artxibatu txartela",
|
||||
"Delete card" : "Ezabatu txartela",
|
||||
"Move card" : "Mugitu txartela",
|
||||
"Move card to another board" : "Mugitu txartela beste mahai batera",
|
||||
"Select a list" : "Hautatu zerrenda bat",
|
||||
"seconds ago" : "segundo lehenago",
|
||||
"All boards" : "Mahai guztiak",
|
||||
"Archived boards" : "Artxibatutako mahaiak",
|
||||
"Shared with you" : "Zurekin partekatua",
|
||||
"Show boards in calendar/tasks" : "Erakutsi taulak egutegi/zereginetan",
|
||||
"Limit deck usage of groups" : "Mugatu taldeek Deck erabiltzeko aukera",
|
||||
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Deck mugatzeak taldeetako kide ez diren erabiltzaileei beren mahai propioak sortzea eragotziko die. Erabiltzaileek beraiekin partekatu diren mahaietan lan egin ahalko dute.",
|
||||
"Board name" : "Mahaiaren izena",
|
||||
"Board details" : "Mahaiaren xehetasunak",
|
||||
"Edit board" : "Editatu mahaia",
|
||||
"Clone board " : "Klonatu mahaia",
|
||||
"Unarchive board " : "Berreskuratu mahaia artxibotik",
|
||||
"Archive board " : "Artxibatu mahaia",
|
||||
"Delete board " : "Ezabatu mahaia",
|
||||
"Board details" : "Mahaiaren xehetasunak",
|
||||
"Board {0} deleted" : "{0} mahaia ezabatu da",
|
||||
"No reminder" : "Abisurik ez",
|
||||
"An error occurred" : "Errore bat gertatu da",
|
||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Ziur zaude «{title}» mahaia ezabatu nahi duzula? Honek mahai honen datu guztiak ezabatuko ditu.",
|
||||
"Delete the board?" : "Mahaia ezabatu?",
|
||||
|
||||
39
l10n/eu.json
39
l10n/eu.json
@@ -144,8 +144,6 @@
|
||||
"Undo" : "Desegin",
|
||||
"Deleted cards" : "Ezabatutako txartelak",
|
||||
"Share board with a user, group or circle …" : "Partekatu mahaia erabiltzaile, talde edo zirkulu batekin...",
|
||||
"Searching for users, groups and circles …" : "Erabiltzaileak, taldeak, zirkuluak... bilatzen",
|
||||
"No participants found" : "Ez da parte-hartzailerik aurkitu",
|
||||
"Board owner" : "Mahaiaren jabea",
|
||||
"(Group)" : "(Taldea)",
|
||||
"(Circle)" : "(Zirkulua)",
|
||||
@@ -153,7 +151,6 @@
|
||||
"Can share" : "Partekatu dezake",
|
||||
"Can manage" : "Kudeatu dezake",
|
||||
"Delete" : "Ezabatu",
|
||||
"Failed to create share with {displayName}" : "Ezin izan da {displayName}-(r)ekin partekatzea sortu",
|
||||
"Add a new list" : "Gehitu zerrenda berria",
|
||||
"Archive all cards" : "Artxibatu txartel guztiak",
|
||||
"Delete list" : "Zerrenda ezabatu",
|
||||
@@ -169,12 +166,6 @@
|
||||
"Add this attachment" : "Gehitu eranskin hau",
|
||||
"Delete Attachment" : "Ezabatu eranskina",
|
||||
"Restore Attachment" : "Berezarri eranskina",
|
||||
"Attachments" : "Eranskinak",
|
||||
"Comments" : "Iruzkinak",
|
||||
"Modified" : "Aldatua",
|
||||
"Created" : "Sortua",
|
||||
"The title cannot be empty." : "Izenburua ezin da hutsik egon.",
|
||||
"No comments yet. Begin the discussion!" : "Ez dago iruzkinik oraindik. Hasi eztabaidatzen!",
|
||||
"Assign a tag to this card…" : "Esleitu etiketa bat txartel honi...",
|
||||
"Assign to users" : "Esleitu erabiltzaileei",
|
||||
"Assign to users/groups/circles" : "Esleitu erabiltzaile/talde/zirkuluei",
|
||||
@@ -182,13 +173,6 @@
|
||||
"Due date" : "Epe-muga",
|
||||
"Set a due date" : "Ezarri epe-muga",
|
||||
"Remove due date" : "Ezabatu epe-muga",
|
||||
"Select Date" : "Hautatu data",
|
||||
"Save" : "Gorde",
|
||||
"The comment cannot be empty." : "Iruzkina ezin da hutsik egon.",
|
||||
"The comment cannot be longer than 1000 characters." : "Iruzkina ezin da 1000 karaktere baino luzeagoa izan.",
|
||||
"In reply to" : "Honi erantzunez",
|
||||
"Reply" : "Erantzun",
|
||||
"Update" : "Eguneratu",
|
||||
"Description" : "Deskribapena",
|
||||
"(Unsaved)" : "(Gorde gabe)",
|
||||
"(Saving…)" : "(Gordetzen...)",
|
||||
@@ -196,29 +180,42 @@
|
||||
"Edit description" : "Editatu azalpena",
|
||||
"View description" : "Ikusi deskribapena",
|
||||
"Add Attachment" : "Gehitu eranskina",
|
||||
"Attachments" : "Eranskinak",
|
||||
"Comments" : "Iruzkinak",
|
||||
"Choose attachment" : "Aukeratu eranskina",
|
||||
"Select Date" : "Hautatu data",
|
||||
"Modified" : "Aldatua",
|
||||
"Created" : "Sortua",
|
||||
"No comments yet. Begin the discussion!" : "Ez dago iruzkinik oraindik. Hasi eztabaidatzen!",
|
||||
"Save" : "Gorde",
|
||||
"The comment cannot be empty." : "Iruzkina ezin da hutsik egon.",
|
||||
"The comment cannot be longer than 1000 characters." : "Iruzkina ezin da 1000 karaktere baino luzeagoa izan.",
|
||||
"In reply to" : "Honi erantzunez",
|
||||
"Reply" : "Erantzun",
|
||||
"Update" : "Eguneratu",
|
||||
"(group)" : "(taldea)",
|
||||
"(circle)" : "(zirkulua)",
|
||||
"Assign to me" : "Esleitu niri",
|
||||
"Unassign myself" : "Niri esleitzeari utzi",
|
||||
"Move card" : "Mugitu txartela",
|
||||
"Unarchive card" : "Berreskuratu txartela artxibotik",
|
||||
"Archive card" : "Artxibatu txartela",
|
||||
"Delete card" : "Ezabatu txartela",
|
||||
"Move card" : "Mugitu txartela",
|
||||
"Move card to another board" : "Mugitu txartela beste mahai batera",
|
||||
"Select a list" : "Hautatu zerrenda bat",
|
||||
"seconds ago" : "segundo lehenago",
|
||||
"All boards" : "Mahai guztiak",
|
||||
"Archived boards" : "Artxibatutako mahaiak",
|
||||
"Shared with you" : "Zurekin partekatua",
|
||||
"Show boards in calendar/tasks" : "Erakutsi taulak egutegi/zereginetan",
|
||||
"Limit deck usage of groups" : "Mugatu taldeek Deck erabiltzeko aukera",
|
||||
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Deck mugatzeak taldeetako kide ez diren erabiltzaileei beren mahai propioak sortzea eragotziko die. Erabiltzaileek beraiekin partekatu diren mahaietan lan egin ahalko dute.",
|
||||
"Board name" : "Mahaiaren izena",
|
||||
"Board details" : "Mahaiaren xehetasunak",
|
||||
"Edit board" : "Editatu mahaia",
|
||||
"Clone board " : "Klonatu mahaia",
|
||||
"Unarchive board " : "Berreskuratu mahaia artxibotik",
|
||||
"Archive board " : "Artxibatu mahaia",
|
||||
"Delete board " : "Ezabatu mahaia",
|
||||
"Board details" : "Mahaiaren xehetasunak",
|
||||
"Board {0} deleted" : "{0} mahaia ezabatu da",
|
||||
"No reminder" : "Abisurik ez",
|
||||
"An error occurred" : "Errore bat gertatu da",
|
||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Ziur zaude «{title}» mahaia ezabatu nahi duzula? Honek mahai honen datu guztiak ezabatuko ditu.",
|
||||
"Delete the board?" : "Mahaia ezabatu?",
|
||||
|
||||
26
l10n/fa.js
26
l10n/fa.js
@@ -97,19 +97,7 @@ OC.L10N.register(
|
||||
"Add this attachment" : "افزودن این پیوست",
|
||||
"Delete Attachment" : "حذف پیوست",
|
||||
"Restore Attachment" : "بازیابی پیوست",
|
||||
"Attachments" : "پیوستها",
|
||||
"Comments" : "نظرات",
|
||||
"Modified" : "تغییر یافته",
|
||||
"Created" : "ایجاد شده",
|
||||
"No comments yet. Begin the discussion!" : "هنوز نظری وجود ندارد. بحثی را آغاز کنید!",
|
||||
"Due date" : "موعد مقرر",
|
||||
"Select Date" : "تاریخ را انتخاب کنید",
|
||||
"Save" : "ذخیره",
|
||||
"The comment cannot be empty." : "نظر نمیتواند خالی باشد.",
|
||||
"The comment cannot be longer than 1000 characters." : "نظر نمیتواند طولانیتر از ۱۰۰۰ حرف باشد.",
|
||||
"In reply to" : "در پاسخ به",
|
||||
"Reply" : "پاسخ",
|
||||
"Update" : "بهروزرسانی",
|
||||
"Description" : "توضیحات",
|
||||
"(Unsaved)" : "(ذخیره نشده)",
|
||||
"(Saving…)" : "(در حال ذخیره...)",
|
||||
@@ -117,12 +105,24 @@ OC.L10N.register(
|
||||
"Edit description" : "ویرایش توضیحات",
|
||||
"View description" : "نمایش توضیحات",
|
||||
"Add Attachment" : "افزودن پیوست",
|
||||
"Attachments" : "پیوستها",
|
||||
"Comments" : "نظرات",
|
||||
"Choose attachment" : "انتخاب پیوست",
|
||||
"Select Date" : "تاریخ را انتخاب کنید",
|
||||
"Modified" : "تغییر یافته",
|
||||
"Created" : "ایجاد شده",
|
||||
"No comments yet. Begin the discussion!" : "هنوز نظری وجود ندارد. بحثی را آغاز کنید!",
|
||||
"Save" : "ذخیره",
|
||||
"The comment cannot be empty." : "نظر نمیتواند خالی باشد.",
|
||||
"The comment cannot be longer than 1000 characters." : "نظر نمیتواند طولانیتر از ۱۰۰۰ حرف باشد.",
|
||||
"In reply to" : "در پاسخ به",
|
||||
"Reply" : "پاسخ",
|
||||
"Update" : "بهروزرسانی",
|
||||
"(group)" : "(گروه)",
|
||||
"(circle)" : "(حلقه)",
|
||||
"Move card" : "انتقال کارت",
|
||||
"Archive card" : "کارت بایگانی",
|
||||
"Delete card" : "حذف کارت",
|
||||
"Move card" : "انتقال کارت",
|
||||
"Move card to another board" : "انتقال کارت به تختهای دیگر",
|
||||
"seconds ago" : "ثانیههایی پیش",
|
||||
"All boards" : "همه تختهها",
|
||||
|
||||
26
l10n/fa.json
26
l10n/fa.json
@@ -95,19 +95,7 @@
|
||||
"Add this attachment" : "افزودن این پیوست",
|
||||
"Delete Attachment" : "حذف پیوست",
|
||||
"Restore Attachment" : "بازیابی پیوست",
|
||||
"Attachments" : "پیوستها",
|
||||
"Comments" : "نظرات",
|
||||
"Modified" : "تغییر یافته",
|
||||
"Created" : "ایجاد شده",
|
||||
"No comments yet. Begin the discussion!" : "هنوز نظری وجود ندارد. بحثی را آغاز کنید!",
|
||||
"Due date" : "موعد مقرر",
|
||||
"Select Date" : "تاریخ را انتخاب کنید",
|
||||
"Save" : "ذخیره",
|
||||
"The comment cannot be empty." : "نظر نمیتواند خالی باشد.",
|
||||
"The comment cannot be longer than 1000 characters." : "نظر نمیتواند طولانیتر از ۱۰۰۰ حرف باشد.",
|
||||
"In reply to" : "در پاسخ به",
|
||||
"Reply" : "پاسخ",
|
||||
"Update" : "بهروزرسانی",
|
||||
"Description" : "توضیحات",
|
||||
"(Unsaved)" : "(ذخیره نشده)",
|
||||
"(Saving…)" : "(در حال ذخیره...)",
|
||||
@@ -115,12 +103,24 @@
|
||||
"Edit description" : "ویرایش توضیحات",
|
||||
"View description" : "نمایش توضیحات",
|
||||
"Add Attachment" : "افزودن پیوست",
|
||||
"Attachments" : "پیوستها",
|
||||
"Comments" : "نظرات",
|
||||
"Choose attachment" : "انتخاب پیوست",
|
||||
"Select Date" : "تاریخ را انتخاب کنید",
|
||||
"Modified" : "تغییر یافته",
|
||||
"Created" : "ایجاد شده",
|
||||
"No comments yet. Begin the discussion!" : "هنوز نظری وجود ندارد. بحثی را آغاز کنید!",
|
||||
"Save" : "ذخیره",
|
||||
"The comment cannot be empty." : "نظر نمیتواند خالی باشد.",
|
||||
"The comment cannot be longer than 1000 characters." : "نظر نمیتواند طولانیتر از ۱۰۰۰ حرف باشد.",
|
||||
"In reply to" : "در پاسخ به",
|
||||
"Reply" : "پاسخ",
|
||||
"Update" : "بهروزرسانی",
|
||||
"(group)" : "(گروه)",
|
||||
"(circle)" : "(حلقه)",
|
||||
"Move card" : "انتقال کارت",
|
||||
"Archive card" : "کارت بایگانی",
|
||||
"Delete card" : "حذف کارت",
|
||||
"Move card" : "انتقال کارت",
|
||||
"Move card to another board" : "انتقال کارت به تختهای دیگر",
|
||||
"seconds ago" : "ثانیههایی پیش",
|
||||
"All boards" : "همه تختهها",
|
||||
|
||||
64
l10n/fi.js
64
l10n/fi.js
@@ -17,20 +17,8 @@ OC.L10N.register(
|
||||
"{user} has archived the board {before}" : "{user} arkistoi taulun {before}",
|
||||
"You have unarchived the board {board}" : "Palautit taulun {board} arkistosta ",
|
||||
"{user} has unarchived the board {before}" : "{user} palautti taulun {before} arkistosta",
|
||||
"You have created a new list {stack} on board {board}" : "Olet lisännyt listan {stack} taululle {board}",
|
||||
"{user} has created a new list {stack} on board {board}" : "{user} on lisännyt uuden listan {stack} taululle {board}",
|
||||
"You have renamed list {before} to {stack} on board {board}" : "Muutit listan {before} nimeksi {stack} taululla {board}",
|
||||
"{user} has renamed list {before} to {stack} on board {board}" : "{user} muutti listan {before} nimeksi {stack} taululla {board}",
|
||||
"You have deleted list {stack} on board {board}" : "Olet poistanut listan {stack} taululta {board}",
|
||||
"{user} has deleted list {stack} on board {board}" : "{user} on poistanut listan {stack} taululta {board}",
|
||||
"You have created card {card} in list {stack} on board {board}" : "Olet lisännyt kortin {card} listaan {stack} taululla {board}",
|
||||
"{user} has created card {card} in list {stack} on board {board}" : "{user} on lisännyt kortin {card} listaan {stack} taululla {board}",
|
||||
"You have deleted card {card} in list {stack} on board {board}" : "Olet poistanut kortin {card} listasta {stack} taululla {board}",
|
||||
"{user} has deleted card {card} in list {stack} on board {board}" : "{user} on poistanut kortin {card} listasta {stack} taululla {board}",
|
||||
"You have renamed the card {before} to {card}" : "Muutit kortin {before} uudeksi nimeksi {card}",
|
||||
"{user} has renamed the card {before} to {card}" : "{user} muutti kortin {before} uudeksi nimeksi {card}",
|
||||
"You have added a description to card {card} in list {stack} on board {board}" : "Olet lisännyt kuvauksen kortille {card} listalla {stack} taululla {board}",
|
||||
"{user} has added a description to card {card} in list {stack} on board {board}" : "{user} on lisännyt kuvauksen kortille {card} listalla {stack} taululla {board}",
|
||||
"You have removed the due date of card {card}" : "Poistit eräpäivän kortilta {card}",
|
||||
"{user} has removed the due date of card {card}" : "{user} poisti eräpäivän kortilta {card}",
|
||||
"You have set the due date of card {card} to {after}" : "Asetit kortille {card} eräpäivän {after}",
|
||||
@@ -55,10 +43,8 @@ OC.L10N.register(
|
||||
"Deck" : "Pakka",
|
||||
"Changes in the <strong>Deck app</strong>" : "Muutokset <strong>Pakka-sovelluksessa</strong>",
|
||||
"A <strong>comment</strong> was created on a card" : "<strong>Kommentti</strong> luotiin kortille",
|
||||
"Upcoming cards" : "Tulevat kortit",
|
||||
"Personal" : "Henkilökohtainen",
|
||||
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Kortti \"%s\" taululla \"%s\" on asetettu sinulle käyttäjän %s toimesta.",
|
||||
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} on asettanut kortin \"%s\" taululla \"%s\" sinulle.",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "Kortin \"%s\" on \"%s\" eräpäivä on tullut vastaan.",
|
||||
"%s has mentioned you in a comment on \"%s\"." : "%s mainitsi sinut kommentissa kortilla \"%s\".",
|
||||
"{user} has mentioned you in a comment on \"%s\"." : "{user} mainitsi sinut kommentissa kortilla \"%s\".",
|
||||
@@ -106,9 +92,6 @@ OC.L10N.register(
|
||||
"List name" : "Listan nimi",
|
||||
"Apply filter" : "Toteuta suodatus",
|
||||
"Filter by tag" : "Suodata tunnisteen perusteella",
|
||||
"Filter by assigned user" : "Suodata määritetyn käyttäjän mukaan",
|
||||
"Unassigned" : "Määrittämätön",
|
||||
"Filter by due date" : "Suodata määräpäivän mukaan",
|
||||
"Overdue" : "Myöhässä",
|
||||
"Next 24 hours" : "Seuraavat 24 tuntia",
|
||||
"Next 7 days" : "Seuraavat 7 päivää",
|
||||
@@ -119,18 +102,14 @@ OC.L10N.register(
|
||||
"Toggle compact mode" : "Käytä kompaktia tilaa",
|
||||
"Details" : "Tiedot",
|
||||
"Loading board" : "Ladataan taulua",
|
||||
"No lists available" : "Ei listoja saatavilla",
|
||||
"Create a new list to add cards to this board" : "Lisää uusi lista lisätäksesi kortteja tälle taululle",
|
||||
"Board not found" : "Taulua ei löydy",
|
||||
"Sharing" : "Jakaminen",
|
||||
"Tags" : "Tunnisteet",
|
||||
"Deleted items" : "Poistetut tietueet",
|
||||
"Timeline" : "Aikajana",
|
||||
"Deleted lists" : "Poistetut listat",
|
||||
"Undo" : "Kumoa",
|
||||
"Deleted cards" : "Poistetut kortit",
|
||||
"Share board with a user, group or circle …" : "Jaa taulu käyttäjän, ryhmän tai piirin ... kanssa",
|
||||
"No participants found" : "Ei osallistujia löydetty",
|
||||
"Board owner" : "Taulun omistaja",
|
||||
"(Group)" : "(Ryhmä)",
|
||||
"(Circle)" : "(Piiri)",
|
||||
@@ -138,14 +117,11 @@ OC.L10N.register(
|
||||
"Can share" : "Voi jakaa",
|
||||
"Can manage" : "Voi hallita",
|
||||
"Delete" : "Poista",
|
||||
"Add a new list" : "Lisää uusi lista",
|
||||
"Archive all cards" : "Arkistoi kaikki kortit",
|
||||
"Delete list" : "Poista lista",
|
||||
"Add card" : "Lisää kortti",
|
||||
"Archive all cards in this list" : "Arkistoi kaikki kortit tässä listassa",
|
||||
"Add a new card" : "Lisää uusi kortti",
|
||||
"Card name" : "Kortin nimi",
|
||||
"List deleted" : "Lista poistettu",
|
||||
"Edit" : "Muokkaa",
|
||||
"Add a new tag" : "Lisää uusi tunniste",
|
||||
"title and color value must be provided" : "tunnisteella on oltava nimi ja väri",
|
||||
@@ -155,57 +131,49 @@ OC.L10N.register(
|
||||
"Add this attachment" : "Lisää tämä liite",
|
||||
"Delete Attachment" : "Poista liite",
|
||||
"Restore Attachment" : "Palauta liite",
|
||||
"Attachments" : "Liitteet",
|
||||
"Comments" : "Kommentit",
|
||||
"Modified" : "Muokattu",
|
||||
"Created" : "Luotu",
|
||||
"No comments yet. Begin the discussion!" : "Ei vielä kommentteja. Aloita keskustelu!",
|
||||
"Assign a tag to this card…" : "Lisää kortille tunniste...",
|
||||
"Due date" : "Eräpäivä",
|
||||
"Set a due date" : "Aseta eräpäivä",
|
||||
"Remove due date" : "Poista eräpäivä",
|
||||
"Select Date" : "Valitse päivä",
|
||||
"Save" : "Tallenna",
|
||||
"The comment cannot be empty." : "Kommentti ei voi olla tyhjä.",
|
||||
"The comment cannot be longer than 1000 characters." : "Kommentin on oltava alle 1000 merkkiä pitkä.",
|
||||
"Reply" : "Vastaa",
|
||||
"Update" : "Päivitä",
|
||||
"Description" : "Kuvaus",
|
||||
"(Saving…)" : "(Tallennetaan…)",
|
||||
"Formatting help" : "Muotoiluapu",
|
||||
"Edit description" : "Muokkaa kuvausta",
|
||||
"View description" : "Näytä kuvaus",
|
||||
"Add Attachment" : "Lisää liite",
|
||||
"Attachments" : "Liitteet",
|
||||
"Comments" : "Kommentit",
|
||||
"Choose attachment" : "Valitse liite",
|
||||
"Select Date" : "Valitse päivä",
|
||||
"Modified" : "Muokattu",
|
||||
"Created" : "Luotu",
|
||||
"No comments yet. Begin the discussion!" : "Ei vielä kommentteja. Aloita keskustelu!",
|
||||
"Save" : "Tallenna",
|
||||
"The comment cannot be empty." : "Kommentti ei voi olla tyhjä.",
|
||||
"The comment cannot be longer than 1000 characters." : "Kommentin on oltava alle 1000 merkkiä pitkä.",
|
||||
"Reply" : "Vastaa",
|
||||
"Update" : "Päivitä",
|
||||
"(group)" : "(ryhmä)",
|
||||
"Move card" : "Siirrä kortti",
|
||||
"Unarchive card" : "Poista kortti arkistosta",
|
||||
"Archive card" : "Arkistoi kortti",
|
||||
"Delete card" : "Poista kortti",
|
||||
"Move card to another board" : "Siirrä kortti toiselle taululle",
|
||||
"Select a list" : "Valitse lista ",
|
||||
"Card deleted" : "Kortti poistettu",
|
||||
"Move card" : "Siirrä kortti",
|
||||
"seconds ago" : "sekuntia sitten",
|
||||
"All boards" : "Kaikki taulut",
|
||||
"Archived boards" : "Arkistoidut taulut",
|
||||
"Shared with you" : "Jaettu kanssasi",
|
||||
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Pakan käytön rajoittaminen estää merkittyjen ryhmien jäseniä luomasta omia taulujaan, mutta käyttäjät pystyvät silti käyttämään heidän kanssaan jaettuja tauluja.",
|
||||
"Board name" : "Taulun nimi",
|
||||
"Board details" : "Taulun tiedot",
|
||||
"Edit board" : "Muokkaa taulua",
|
||||
"Clone board" : "Monista taulu",
|
||||
"All cards" : "Kaikki kortit",
|
||||
"No notifications" : "Ei ilmoituksia",
|
||||
"Delete board" : "Poista taulu",
|
||||
"Clone board " : "Monista taulu",
|
||||
"Archive board " : "Arkistoi taulu",
|
||||
"Delete board " : "Poista taulu",
|
||||
"Board details" : "Taulun tiedot",
|
||||
"Board {0} deleted" : "Taulu {0} poistettu",
|
||||
"No reminder" : "Ei muistutusta",
|
||||
"An error occurred" : "Tapahtui virhe",
|
||||
"Delete the board?" : "Poistetaanko tämä taulu?",
|
||||
"Today" : "Tänään",
|
||||
"Tomorrow" : "Huomenna",
|
||||
"This week" : "Tällä viikolla",
|
||||
"No upcoming cards" : "Ei tulevia kortteja",
|
||||
"upcoming cards" : "tulevat kortit",
|
||||
"Link to a board" : "Linkki taululle",
|
||||
"Link to a card" : "Linkitä korttiin",
|
||||
"Something went wrong" : "Jokin meni vikaan",
|
||||
|
||||
64
l10n/fi.json
64
l10n/fi.json
@@ -15,20 +15,8 @@
|
||||
"{user} has archived the board {before}" : "{user} arkistoi taulun {before}",
|
||||
"You have unarchived the board {board}" : "Palautit taulun {board} arkistosta ",
|
||||
"{user} has unarchived the board {before}" : "{user} palautti taulun {before} arkistosta",
|
||||
"You have created a new list {stack} on board {board}" : "Olet lisännyt listan {stack} taululle {board}",
|
||||
"{user} has created a new list {stack} on board {board}" : "{user} on lisännyt uuden listan {stack} taululle {board}",
|
||||
"You have renamed list {before} to {stack} on board {board}" : "Muutit listan {before} nimeksi {stack} taululla {board}",
|
||||
"{user} has renamed list {before} to {stack} on board {board}" : "{user} muutti listan {before} nimeksi {stack} taululla {board}",
|
||||
"You have deleted list {stack} on board {board}" : "Olet poistanut listan {stack} taululta {board}",
|
||||
"{user} has deleted list {stack} on board {board}" : "{user} on poistanut listan {stack} taululta {board}",
|
||||
"You have created card {card} in list {stack} on board {board}" : "Olet lisännyt kortin {card} listaan {stack} taululla {board}",
|
||||
"{user} has created card {card} in list {stack} on board {board}" : "{user} on lisännyt kortin {card} listaan {stack} taululla {board}",
|
||||
"You have deleted card {card} in list {stack} on board {board}" : "Olet poistanut kortin {card} listasta {stack} taululla {board}",
|
||||
"{user} has deleted card {card} in list {stack} on board {board}" : "{user} on poistanut kortin {card} listasta {stack} taululla {board}",
|
||||
"You have renamed the card {before} to {card}" : "Muutit kortin {before} uudeksi nimeksi {card}",
|
||||
"{user} has renamed the card {before} to {card}" : "{user} muutti kortin {before} uudeksi nimeksi {card}",
|
||||
"You have added a description to card {card} in list {stack} on board {board}" : "Olet lisännyt kuvauksen kortille {card} listalla {stack} taululla {board}",
|
||||
"{user} has added a description to card {card} in list {stack} on board {board}" : "{user} on lisännyt kuvauksen kortille {card} listalla {stack} taululla {board}",
|
||||
"You have removed the due date of card {card}" : "Poistit eräpäivän kortilta {card}",
|
||||
"{user} has removed the due date of card {card}" : "{user} poisti eräpäivän kortilta {card}",
|
||||
"You have set the due date of card {card} to {after}" : "Asetit kortille {card} eräpäivän {after}",
|
||||
@@ -53,10 +41,8 @@
|
||||
"Deck" : "Pakka",
|
||||
"Changes in the <strong>Deck app</strong>" : "Muutokset <strong>Pakka-sovelluksessa</strong>",
|
||||
"A <strong>comment</strong> was created on a card" : "<strong>Kommentti</strong> luotiin kortille",
|
||||
"Upcoming cards" : "Tulevat kortit",
|
||||
"Personal" : "Henkilökohtainen",
|
||||
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Kortti \"%s\" taululla \"%s\" on asetettu sinulle käyttäjän %s toimesta.",
|
||||
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} on asettanut kortin \"%s\" taululla \"%s\" sinulle.",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "Kortin \"%s\" on \"%s\" eräpäivä on tullut vastaan.",
|
||||
"%s has mentioned you in a comment on \"%s\"." : "%s mainitsi sinut kommentissa kortilla \"%s\".",
|
||||
"{user} has mentioned you in a comment on \"%s\"." : "{user} mainitsi sinut kommentissa kortilla \"%s\".",
|
||||
@@ -104,9 +90,6 @@
|
||||
"List name" : "Listan nimi",
|
||||
"Apply filter" : "Toteuta suodatus",
|
||||
"Filter by tag" : "Suodata tunnisteen perusteella",
|
||||
"Filter by assigned user" : "Suodata määritetyn käyttäjän mukaan",
|
||||
"Unassigned" : "Määrittämätön",
|
||||
"Filter by due date" : "Suodata määräpäivän mukaan",
|
||||
"Overdue" : "Myöhässä",
|
||||
"Next 24 hours" : "Seuraavat 24 tuntia",
|
||||
"Next 7 days" : "Seuraavat 7 päivää",
|
||||
@@ -117,18 +100,14 @@
|
||||
"Toggle compact mode" : "Käytä kompaktia tilaa",
|
||||
"Details" : "Tiedot",
|
||||
"Loading board" : "Ladataan taulua",
|
||||
"No lists available" : "Ei listoja saatavilla",
|
||||
"Create a new list to add cards to this board" : "Lisää uusi lista lisätäksesi kortteja tälle taululle",
|
||||
"Board not found" : "Taulua ei löydy",
|
||||
"Sharing" : "Jakaminen",
|
||||
"Tags" : "Tunnisteet",
|
||||
"Deleted items" : "Poistetut tietueet",
|
||||
"Timeline" : "Aikajana",
|
||||
"Deleted lists" : "Poistetut listat",
|
||||
"Undo" : "Kumoa",
|
||||
"Deleted cards" : "Poistetut kortit",
|
||||
"Share board with a user, group or circle …" : "Jaa taulu käyttäjän, ryhmän tai piirin ... kanssa",
|
||||
"No participants found" : "Ei osallistujia löydetty",
|
||||
"Board owner" : "Taulun omistaja",
|
||||
"(Group)" : "(Ryhmä)",
|
||||
"(Circle)" : "(Piiri)",
|
||||
@@ -136,14 +115,11 @@
|
||||
"Can share" : "Voi jakaa",
|
||||
"Can manage" : "Voi hallita",
|
||||
"Delete" : "Poista",
|
||||
"Add a new list" : "Lisää uusi lista",
|
||||
"Archive all cards" : "Arkistoi kaikki kortit",
|
||||
"Delete list" : "Poista lista",
|
||||
"Add card" : "Lisää kortti",
|
||||
"Archive all cards in this list" : "Arkistoi kaikki kortit tässä listassa",
|
||||
"Add a new card" : "Lisää uusi kortti",
|
||||
"Card name" : "Kortin nimi",
|
||||
"List deleted" : "Lista poistettu",
|
||||
"Edit" : "Muokkaa",
|
||||
"Add a new tag" : "Lisää uusi tunniste",
|
||||
"title and color value must be provided" : "tunnisteella on oltava nimi ja väri",
|
||||
@@ -153,57 +129,49 @@
|
||||
"Add this attachment" : "Lisää tämä liite",
|
||||
"Delete Attachment" : "Poista liite",
|
||||
"Restore Attachment" : "Palauta liite",
|
||||
"Attachments" : "Liitteet",
|
||||
"Comments" : "Kommentit",
|
||||
"Modified" : "Muokattu",
|
||||
"Created" : "Luotu",
|
||||
"No comments yet. Begin the discussion!" : "Ei vielä kommentteja. Aloita keskustelu!",
|
||||
"Assign a tag to this card…" : "Lisää kortille tunniste...",
|
||||
"Due date" : "Eräpäivä",
|
||||
"Set a due date" : "Aseta eräpäivä",
|
||||
"Remove due date" : "Poista eräpäivä",
|
||||
"Select Date" : "Valitse päivä",
|
||||
"Save" : "Tallenna",
|
||||
"The comment cannot be empty." : "Kommentti ei voi olla tyhjä.",
|
||||
"The comment cannot be longer than 1000 characters." : "Kommentin on oltava alle 1000 merkkiä pitkä.",
|
||||
"Reply" : "Vastaa",
|
||||
"Update" : "Päivitä",
|
||||
"Description" : "Kuvaus",
|
||||
"(Saving…)" : "(Tallennetaan…)",
|
||||
"Formatting help" : "Muotoiluapu",
|
||||
"Edit description" : "Muokkaa kuvausta",
|
||||
"View description" : "Näytä kuvaus",
|
||||
"Add Attachment" : "Lisää liite",
|
||||
"Attachments" : "Liitteet",
|
||||
"Comments" : "Kommentit",
|
||||
"Choose attachment" : "Valitse liite",
|
||||
"Select Date" : "Valitse päivä",
|
||||
"Modified" : "Muokattu",
|
||||
"Created" : "Luotu",
|
||||
"No comments yet. Begin the discussion!" : "Ei vielä kommentteja. Aloita keskustelu!",
|
||||
"Save" : "Tallenna",
|
||||
"The comment cannot be empty." : "Kommentti ei voi olla tyhjä.",
|
||||
"The comment cannot be longer than 1000 characters." : "Kommentin on oltava alle 1000 merkkiä pitkä.",
|
||||
"Reply" : "Vastaa",
|
||||
"Update" : "Päivitä",
|
||||
"(group)" : "(ryhmä)",
|
||||
"Move card" : "Siirrä kortti",
|
||||
"Unarchive card" : "Poista kortti arkistosta",
|
||||
"Archive card" : "Arkistoi kortti",
|
||||
"Delete card" : "Poista kortti",
|
||||
"Move card to another board" : "Siirrä kortti toiselle taululle",
|
||||
"Select a list" : "Valitse lista ",
|
||||
"Card deleted" : "Kortti poistettu",
|
||||
"Move card" : "Siirrä kortti",
|
||||
"seconds ago" : "sekuntia sitten",
|
||||
"All boards" : "Kaikki taulut",
|
||||
"Archived boards" : "Arkistoidut taulut",
|
||||
"Shared with you" : "Jaettu kanssasi",
|
||||
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Pakan käytön rajoittaminen estää merkittyjen ryhmien jäseniä luomasta omia taulujaan, mutta käyttäjät pystyvät silti käyttämään heidän kanssaan jaettuja tauluja.",
|
||||
"Board name" : "Taulun nimi",
|
||||
"Board details" : "Taulun tiedot",
|
||||
"Edit board" : "Muokkaa taulua",
|
||||
"Clone board" : "Monista taulu",
|
||||
"All cards" : "Kaikki kortit",
|
||||
"No notifications" : "Ei ilmoituksia",
|
||||
"Delete board" : "Poista taulu",
|
||||
"Clone board " : "Monista taulu",
|
||||
"Archive board " : "Arkistoi taulu",
|
||||
"Delete board " : "Poista taulu",
|
||||
"Board details" : "Taulun tiedot",
|
||||
"Board {0} deleted" : "Taulu {0} poistettu",
|
||||
"No reminder" : "Ei muistutusta",
|
||||
"An error occurred" : "Tapahtui virhe",
|
||||
"Delete the board?" : "Poistetaanko tämä taulu?",
|
||||
"Today" : "Tänään",
|
||||
"Tomorrow" : "Huomenna",
|
||||
"This week" : "Tällä viikolla",
|
||||
"No upcoming cards" : "Ei tulevia kortteja",
|
||||
"upcoming cards" : "tulevat kortit",
|
||||
"Link to a board" : "Linkki taululle",
|
||||
"Link to a card" : "Linkitä korttiin",
|
||||
"Something went wrong" : "Jokin meni vikaan",
|
||||
|
||||
53
l10n/fr.js
53
l10n/fr.js
@@ -146,8 +146,6 @@ OC.L10N.register(
|
||||
"Undo" : "Annuler",
|
||||
"Deleted cards" : "Cartes supprimées",
|
||||
"Share board with a user, group or circle …" : "Partager le tableau avec un utilisateur, un groupe ou un cercle…",
|
||||
"Searching for users, groups and circles …" : "Recherche d'utilisateurs, de groupes et de cercles ...",
|
||||
"No participants found" : "Aucun participant trouvé",
|
||||
"Board owner" : "Propriétaire du tableau",
|
||||
"(Group)" : "(Groupe)",
|
||||
"(Circle)" : "(Cercle)",
|
||||
@@ -155,7 +153,6 @@ OC.L10N.register(
|
||||
"Can share" : "Peut partager",
|
||||
"Can manage" : "Peut gérer",
|
||||
"Delete" : "Supprimer",
|
||||
"Failed to create share with {displayName}" : "Échec de la création du partage avec {displayName}",
|
||||
"Add a new list" : "Ajouter une nouvelle liste",
|
||||
"Archive all cards" : "Archiver toutes les cartes",
|
||||
"Delete list" : "Supprimer la liste",
|
||||
@@ -163,7 +160,6 @@ OC.L10N.register(
|
||||
"Archive all cards in this list" : "Archiver toutes les cartes de cette liste",
|
||||
"Add a new card" : "Ajouter une nouvelle carte",
|
||||
"Card name" : "Nom de la carte",
|
||||
"List deleted" : "Liste supprimée",
|
||||
"Edit" : "Modifier",
|
||||
"Add a new tag" : "Ajouter une nouvelle étiquette",
|
||||
"title and color value must be provided" : "le titre et la couleur doivent être renseignés",
|
||||
@@ -175,12 +171,6 @@ OC.L10N.register(
|
||||
"Restore Attachment" : "Restaurer la pièce jointe",
|
||||
"Open in sidebar view" : "Ouvrir dans la barre latérale",
|
||||
"Open in bigger view" : "Ouvrir dans la vue principale",
|
||||
"Attachments" : "Pièces jointes",
|
||||
"Comments" : "Commentaires",
|
||||
"Modified" : "Modifié",
|
||||
"Created" : "Créé",
|
||||
"The title cannot be empty." : "Le titre ne peut pas être vide.",
|
||||
"No comments yet. Begin the discussion!" : "Aucun commentaire pour l'instant, démarrez la discussion !",
|
||||
"Assign a tag to this card…" : "Associer une étiquette à cette carte…",
|
||||
"Assign to users" : "Attribuer aux utilisateurs",
|
||||
"Assign to users/groups/circles" : "Attribuer à des utilisateurs / groupes / cercles",
|
||||
@@ -188,13 +178,6 @@ OC.L10N.register(
|
||||
"Due date" : "Date d'échéance",
|
||||
"Set a due date" : "Définir une date d'échéance",
|
||||
"Remove due date" : "Supprimer la date d'échéance",
|
||||
"Select Date" : "Sélectionnez une date",
|
||||
"Save" : "Enregistrer",
|
||||
"The comment cannot be empty." : "Un commentaire ne peut pas être vide.",
|
||||
"The comment cannot be longer than 1000 characters." : "Un commentaire est limité à 1 000 caractères.",
|
||||
"In reply to" : "En réponse à",
|
||||
"Reply" : "Répondre",
|
||||
"Update" : "Mettre à jour",
|
||||
"Description" : "Description",
|
||||
"(Unsaved)" : "(Non enregistré)",
|
||||
"(Saving…)" : "(Enregistrement ...)",
|
||||
@@ -202,19 +185,30 @@ OC.L10N.register(
|
||||
"Edit description" : "Modifier la description",
|
||||
"View description" : "Afficher la description",
|
||||
"Add Attachment" : "Ajouter une pièce jointe",
|
||||
"Write a description …" : "Écrire une description ...",
|
||||
"Attachments" : "Pièces jointes",
|
||||
"Comments" : "Commentaires",
|
||||
"Choose attachment" : "Choisir une pièce jointe",
|
||||
"Select Date" : "Sélectionnez une date",
|
||||
"Modified" : "Modifié",
|
||||
"Created" : "Créé",
|
||||
"The title cannot be empty." : "Le titre ne peut pas être vide.",
|
||||
"No comments yet. Begin the discussion!" : "Aucun commentaire pour l'instant, démarrez la discussion !",
|
||||
"Save" : "Enregistrer",
|
||||
"The comment cannot be empty." : "Un commentaire ne peut pas être vide.",
|
||||
"The comment cannot be longer than 1000 characters." : "Un commentaire est limité à 1 000 caractères.",
|
||||
"In reply to" : "En réponse à",
|
||||
"Reply" : "Répondre",
|
||||
"Update" : "Mettre à jour",
|
||||
"(group)" : "(groupe)",
|
||||
"(circle)" : "(cercle)",
|
||||
"Assign to me" : "Me l'assigner",
|
||||
"Unassign myself" : "Me le désassigner",
|
||||
"Move card" : "Déplacer la carte",
|
||||
"Unarchive card" : "Sortir la carte des archives",
|
||||
"Archive card" : "Archiver la carte",
|
||||
"Delete card" : "Supprimer la carte",
|
||||
"Move card" : "Déplacer la carte",
|
||||
"Move card to another board" : "Déplacer la carte vers un autre tableau ",
|
||||
"Select a list" : "Sélectionner une liste",
|
||||
"Card deleted" : "Carte supprimée",
|
||||
"seconds ago" : "à l'instant",
|
||||
"All boards" : "Tous les tableaux",
|
||||
"Archived boards" : "Tableaux archivés",
|
||||
@@ -224,21 +218,13 @@ OC.L10N.register(
|
||||
"Limit deck usage of groups" : "Limiter l'utilisation du tableau aux groupes",
|
||||
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Limiter Deck empêchera les utilisateurs ne faisant pas partie de ces groupes de créer leurs propres tableaux. Ces utilisateurs pourront toujours travailler sur les tableaux qui ont été partagés avec eux.",
|
||||
"Board name" : "Nom du tableau",
|
||||
"Board details" : "Détails du tableau",
|
||||
"Edit board" : "Modifier le tableau",
|
||||
"Clone board" : "Dupliquer le tableau",
|
||||
"Unarchive board" : "Désarchiver le tableau",
|
||||
"Archive board" : "Archiver le tableau",
|
||||
"Turn on due date reminders" : "Activer les rappels",
|
||||
"Turn off due date reminders" : "Désactiver les rappels",
|
||||
"Due date reminders" : "Rappels",
|
||||
"All cards" : "Toutes les cartes",
|
||||
"Assigned cards" : "Cartes assignées",
|
||||
"No notifications" : "Aucune notification",
|
||||
"Delete board" : "Supprimer le tableau",
|
||||
"Clone board " : "Dupliquer le tableau",
|
||||
"Unarchive board " : "Sortir le tableau des archives",
|
||||
"Archive board " : "Archiver le tableau",
|
||||
"Delete board " : "Supprimer le tableau",
|
||||
"Board details" : "Détails du tableau",
|
||||
"Board {0} deleted" : "Tableau {0} supprimé",
|
||||
"Only assigned cards" : "Uniquement les cartes assignées",
|
||||
"No reminder" : "Aucun rappel",
|
||||
"An error occurred" : "Une erreur est survenue",
|
||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Êtes-vous certain de vouloir supprimer le tableau {title} ? Cela supprimera l'ensemble des données de ce tableau.",
|
||||
"Delete the board?" : "Supprimer le tableau ?",
|
||||
@@ -252,7 +238,6 @@ OC.L10N.register(
|
||||
"Link to a board" : "Relier à un tableau",
|
||||
"Link to a card" : "Relier à une carte",
|
||||
"Something went wrong" : "Quelque chose s'est mal passé",
|
||||
"Failed to upload {name}" : "Échec d'envoi de {name}",
|
||||
"Maximum file size of {size} exceeded" : "Taille de fichier maximale de {size} dépassée"
|
||||
},
|
||||
"nplurals=2; plural=(n > 1);");
|
||||
|
||||
53
l10n/fr.json
53
l10n/fr.json
@@ -144,8 +144,6 @@
|
||||
"Undo" : "Annuler",
|
||||
"Deleted cards" : "Cartes supprimées",
|
||||
"Share board with a user, group or circle …" : "Partager le tableau avec un utilisateur, un groupe ou un cercle…",
|
||||
"Searching for users, groups and circles …" : "Recherche d'utilisateurs, de groupes et de cercles ...",
|
||||
"No participants found" : "Aucun participant trouvé",
|
||||
"Board owner" : "Propriétaire du tableau",
|
||||
"(Group)" : "(Groupe)",
|
||||
"(Circle)" : "(Cercle)",
|
||||
@@ -153,7 +151,6 @@
|
||||
"Can share" : "Peut partager",
|
||||
"Can manage" : "Peut gérer",
|
||||
"Delete" : "Supprimer",
|
||||
"Failed to create share with {displayName}" : "Échec de la création du partage avec {displayName}",
|
||||
"Add a new list" : "Ajouter une nouvelle liste",
|
||||
"Archive all cards" : "Archiver toutes les cartes",
|
||||
"Delete list" : "Supprimer la liste",
|
||||
@@ -161,7 +158,6 @@
|
||||
"Archive all cards in this list" : "Archiver toutes les cartes de cette liste",
|
||||
"Add a new card" : "Ajouter une nouvelle carte",
|
||||
"Card name" : "Nom de la carte",
|
||||
"List deleted" : "Liste supprimée",
|
||||
"Edit" : "Modifier",
|
||||
"Add a new tag" : "Ajouter une nouvelle étiquette",
|
||||
"title and color value must be provided" : "le titre et la couleur doivent être renseignés",
|
||||
@@ -173,12 +169,6 @@
|
||||
"Restore Attachment" : "Restaurer la pièce jointe",
|
||||
"Open in sidebar view" : "Ouvrir dans la barre latérale",
|
||||
"Open in bigger view" : "Ouvrir dans la vue principale",
|
||||
"Attachments" : "Pièces jointes",
|
||||
"Comments" : "Commentaires",
|
||||
"Modified" : "Modifié",
|
||||
"Created" : "Créé",
|
||||
"The title cannot be empty." : "Le titre ne peut pas être vide.",
|
||||
"No comments yet. Begin the discussion!" : "Aucun commentaire pour l'instant, démarrez la discussion !",
|
||||
"Assign a tag to this card…" : "Associer une étiquette à cette carte…",
|
||||
"Assign to users" : "Attribuer aux utilisateurs",
|
||||
"Assign to users/groups/circles" : "Attribuer à des utilisateurs / groupes / cercles",
|
||||
@@ -186,13 +176,6 @@
|
||||
"Due date" : "Date d'échéance",
|
||||
"Set a due date" : "Définir une date d'échéance",
|
||||
"Remove due date" : "Supprimer la date d'échéance",
|
||||
"Select Date" : "Sélectionnez une date",
|
||||
"Save" : "Enregistrer",
|
||||
"The comment cannot be empty." : "Un commentaire ne peut pas être vide.",
|
||||
"The comment cannot be longer than 1000 characters." : "Un commentaire est limité à 1 000 caractères.",
|
||||
"In reply to" : "En réponse à",
|
||||
"Reply" : "Répondre",
|
||||
"Update" : "Mettre à jour",
|
||||
"Description" : "Description",
|
||||
"(Unsaved)" : "(Non enregistré)",
|
||||
"(Saving…)" : "(Enregistrement ...)",
|
||||
@@ -200,19 +183,30 @@
|
||||
"Edit description" : "Modifier la description",
|
||||
"View description" : "Afficher la description",
|
||||
"Add Attachment" : "Ajouter une pièce jointe",
|
||||
"Write a description …" : "Écrire une description ...",
|
||||
"Attachments" : "Pièces jointes",
|
||||
"Comments" : "Commentaires",
|
||||
"Choose attachment" : "Choisir une pièce jointe",
|
||||
"Select Date" : "Sélectionnez une date",
|
||||
"Modified" : "Modifié",
|
||||
"Created" : "Créé",
|
||||
"The title cannot be empty." : "Le titre ne peut pas être vide.",
|
||||
"No comments yet. Begin the discussion!" : "Aucun commentaire pour l'instant, démarrez la discussion !",
|
||||
"Save" : "Enregistrer",
|
||||
"The comment cannot be empty." : "Un commentaire ne peut pas être vide.",
|
||||
"The comment cannot be longer than 1000 characters." : "Un commentaire est limité à 1 000 caractères.",
|
||||
"In reply to" : "En réponse à",
|
||||
"Reply" : "Répondre",
|
||||
"Update" : "Mettre à jour",
|
||||
"(group)" : "(groupe)",
|
||||
"(circle)" : "(cercle)",
|
||||
"Assign to me" : "Me l'assigner",
|
||||
"Unassign myself" : "Me le désassigner",
|
||||
"Move card" : "Déplacer la carte",
|
||||
"Unarchive card" : "Sortir la carte des archives",
|
||||
"Archive card" : "Archiver la carte",
|
||||
"Delete card" : "Supprimer la carte",
|
||||
"Move card" : "Déplacer la carte",
|
||||
"Move card to another board" : "Déplacer la carte vers un autre tableau ",
|
||||
"Select a list" : "Sélectionner une liste",
|
||||
"Card deleted" : "Carte supprimée",
|
||||
"seconds ago" : "à l'instant",
|
||||
"All boards" : "Tous les tableaux",
|
||||
"Archived boards" : "Tableaux archivés",
|
||||
@@ -222,21 +216,13 @@
|
||||
"Limit deck usage of groups" : "Limiter l'utilisation du tableau aux groupes",
|
||||
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Limiter Deck empêchera les utilisateurs ne faisant pas partie de ces groupes de créer leurs propres tableaux. Ces utilisateurs pourront toujours travailler sur les tableaux qui ont été partagés avec eux.",
|
||||
"Board name" : "Nom du tableau",
|
||||
"Board details" : "Détails du tableau",
|
||||
"Edit board" : "Modifier le tableau",
|
||||
"Clone board" : "Dupliquer le tableau",
|
||||
"Unarchive board" : "Désarchiver le tableau",
|
||||
"Archive board" : "Archiver le tableau",
|
||||
"Turn on due date reminders" : "Activer les rappels",
|
||||
"Turn off due date reminders" : "Désactiver les rappels",
|
||||
"Due date reminders" : "Rappels",
|
||||
"All cards" : "Toutes les cartes",
|
||||
"Assigned cards" : "Cartes assignées",
|
||||
"No notifications" : "Aucune notification",
|
||||
"Delete board" : "Supprimer le tableau",
|
||||
"Clone board " : "Dupliquer le tableau",
|
||||
"Unarchive board " : "Sortir le tableau des archives",
|
||||
"Archive board " : "Archiver le tableau",
|
||||
"Delete board " : "Supprimer le tableau",
|
||||
"Board details" : "Détails du tableau",
|
||||
"Board {0} deleted" : "Tableau {0} supprimé",
|
||||
"Only assigned cards" : "Uniquement les cartes assignées",
|
||||
"No reminder" : "Aucun rappel",
|
||||
"An error occurred" : "Une erreur est survenue",
|
||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Êtes-vous certain de vouloir supprimer le tableau {title} ? Cela supprimera l'ensemble des données de ce tableau.",
|
||||
"Delete the board?" : "Supprimer le tableau ?",
|
||||
@@ -250,7 +236,6 @@
|
||||
"Link to a board" : "Relier à un tableau",
|
||||
"Link to a card" : "Relier à une carte",
|
||||
"Something went wrong" : "Quelque chose s'est mal passé",
|
||||
"Failed to upload {name}" : "Échec d'envoi de {name}",
|
||||
"Maximum file size of {size} exceeded" : "Taille de fichier maximale de {size} dépassée"
|
||||
},"pluralForm" :"nplurals=2; plural=(n > 1);"
|
||||
}
|
||||
52
l10n/gl.js
52
l10n/gl.js
@@ -146,8 +146,6 @@ OC.L10N.register(
|
||||
"Undo" : "Desfacer",
|
||||
"Deleted cards" : "Eliminar tarxetas",
|
||||
"Share board with a user, group or circle …" : "Compartir taboleiro cun usuario, grupo ou círculo…",
|
||||
"Searching for users, groups and circles …" : "Buscando por usuarios, grupos e círculos…",
|
||||
"No participants found" : "Non se atoparon participantes",
|
||||
"Board owner" : "Propietariio do taboleiro",
|
||||
"(Group)" : "(grupo)",
|
||||
"(Circle)" : "(Círculo)",
|
||||
@@ -155,7 +153,6 @@ OC.L10N.register(
|
||||
"Can share" : "Pode compartir",
|
||||
"Can manage" : "Pode xestionar",
|
||||
"Delete" : "Eliminar",
|
||||
"Failed to create share with {displayName}" : "Produciuse un fallo ao crear o uso compartido con {displayName}",
|
||||
"Add a new list" : "Engadir unha lista nova",
|
||||
"Archive all cards" : "Arquivar todas as tarxetas",
|
||||
"Delete list" : "Eliminar lista",
|
||||
@@ -163,7 +160,6 @@ OC.L10N.register(
|
||||
"Archive all cards in this list" : "Arquivar todas as tarxetas desta lista",
|
||||
"Add a new card" : "Engadir unha nova tarxeta",
|
||||
"Card name" : "Nome da tarxeta",
|
||||
"List deleted" : "Lista eliminada",
|
||||
"Edit" : "Editar",
|
||||
"Add a new tag" : "Engadir unha nova etiqueta",
|
||||
"title and color value must be provided" : "debe indicar o título e o valor da cor",
|
||||
@@ -175,12 +171,6 @@ OC.L10N.register(
|
||||
"Restore Attachment" : "Restaurar o anexo",
|
||||
"Open in sidebar view" : "Abrir na vista da barra lateral",
|
||||
"Open in bigger view" : "Abrir nunha vista máis grande",
|
||||
"Attachments" : "Anexos",
|
||||
"Comments" : "Comentarios",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"The title cannot be empty." : "O título non pode estar baleiro.",
|
||||
"No comments yet. Begin the discussion!" : "Aínda non hai comentarios. Comece o debate!",
|
||||
"Assign a tag to this card…" : "Asignar unha etiqueta a esta tarxeta…",
|
||||
"Assign to users" : "Asignar a usuarios",
|
||||
"Assign to users/groups/circles" : "Asignar a usuarios/grupos/círculos",
|
||||
@@ -188,13 +178,6 @@ OC.L10N.register(
|
||||
"Due date" : "Data de caducidade",
|
||||
"Set a due date" : "Estabelecer a data de caducidade",
|
||||
"Remove due date" : "Retirar a data de caducidade",
|
||||
"Select Date" : "Seleccione a data",
|
||||
"Save" : "Gardar",
|
||||
"The comment cannot be empty." : "O comentario non pode estar baleiro",
|
||||
"The comment cannot be longer than 1000 characters." : "O comentario non pode ter máis de 1000 caracteres.",
|
||||
"In reply to" : "En resposta a",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
"Description" : "Descrición",
|
||||
"(Unsaved)" : "(Sen gardar)",
|
||||
"(Saving…)" : "(Gardando…)",
|
||||
@@ -202,19 +185,30 @@ OC.L10N.register(
|
||||
"Edit description" : "Editar a descrición",
|
||||
"View description" : "Ver a descrición",
|
||||
"Add Attachment" : "Engadir o anexo",
|
||||
"Write a description …" : "Escriba unha descrición…",
|
||||
"Attachments" : "Anexos",
|
||||
"Comments" : "Comentarios",
|
||||
"Choose attachment" : "Escoller o anexo",
|
||||
"Select Date" : "Seleccione a data",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"The title cannot be empty." : "O título non pode estar baleiro.",
|
||||
"No comments yet. Begin the discussion!" : "Aínda non hai comentarios. Comece o debate!",
|
||||
"Save" : "Gardar",
|
||||
"The comment cannot be empty." : "O comentario non pode estar baleiro",
|
||||
"The comment cannot be longer than 1000 characters." : "O comentario non pode ter máis de 1000 caracteres.",
|
||||
"In reply to" : "En resposta a",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
"(group)" : "(grupo)",
|
||||
"(circle)" : "(círculo)",
|
||||
"Assign to me" : "Asignarme",
|
||||
"Unassign myself" : "Desasignarme",
|
||||
"Move card" : "Mover a tarxeta",
|
||||
"Unarchive card" : "Desarquivar a tarxeta",
|
||||
"Archive card" : "Arquivar a tarxeta",
|
||||
"Delete card" : "Eliminar tarxeta",
|
||||
"Move card" : "Mover a tarxeta",
|
||||
"Move card to another board" : "Mover a tarxeta a outro taboleiro",
|
||||
"Select a list" : "Seleccionar unha lista",
|
||||
"Card deleted" : "Tarxeta eliminada",
|
||||
"seconds ago" : "hai uns segundos",
|
||||
"All boards" : "Todos os taboleiros",
|
||||
"Archived boards" : "Taboleiros arquivados",
|
||||
@@ -224,21 +218,13 @@ OC.L10N.register(
|
||||
"Limit deck usage of groups" : "Limitar o uso da plataforma a grupos",
|
||||
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Limitando Deck bloqueará os usuarios que non formen parte destes grupos, para crear os seus propios taboleiros. Os usuarios aínda así poderán traballar en taboleiros compartidos con eles.",
|
||||
"Board name" : "Nome do taboleiro",
|
||||
"Board details" : "Detalles do taboleiro",
|
||||
"Edit board" : "Editar taboleiro",
|
||||
"Clone board" : "Clonar taboleiro",
|
||||
"Unarchive board" : "Desarquivar taboleiro",
|
||||
"Archive board" : "Arquivar taboleiro",
|
||||
"Turn on due date reminders" : "Activar os lembretes de data de caducidade",
|
||||
"Turn off due date reminders" : "Desctivar os lembretes de data de caducidade",
|
||||
"Due date reminders" : "Lembretes de data de caducidade",
|
||||
"All cards" : "Todas as tarxeta",
|
||||
"Assigned cards" : "Tarxetas asignadas",
|
||||
"No notifications" : "Non hai notificacións",
|
||||
"Delete board" : "Eliminar taboleiro",
|
||||
"Clone board " : "Clonar taboleiro",
|
||||
"Unarchive board " : "Desarquivar taboleiro",
|
||||
"Archive board " : "Arquivar taboleiro",
|
||||
"Delete board " : "Eliminar taboleiro",
|
||||
"Board details" : "Detalles do taboleiro",
|
||||
"Board {0} deleted" : "Eliminouse o taboleiro {0}",
|
||||
"Only assigned cards" : "Só as tarxetas asignadas",
|
||||
"No reminder" : "Non hai lembretes",
|
||||
"An error occurred" : "Produciuse un erro",
|
||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Confirma que quere eliminar o taboleiro {title}? Isto eliminará todos os datos deste taboleiro.",
|
||||
"Delete the board?" : "Eliminar o taboleiro?",
|
||||
|
||||
52
l10n/gl.json
52
l10n/gl.json
@@ -144,8 +144,6 @@
|
||||
"Undo" : "Desfacer",
|
||||
"Deleted cards" : "Eliminar tarxetas",
|
||||
"Share board with a user, group or circle …" : "Compartir taboleiro cun usuario, grupo ou círculo…",
|
||||
"Searching for users, groups and circles …" : "Buscando por usuarios, grupos e círculos…",
|
||||
"No participants found" : "Non se atoparon participantes",
|
||||
"Board owner" : "Propietariio do taboleiro",
|
||||
"(Group)" : "(grupo)",
|
||||
"(Circle)" : "(Círculo)",
|
||||
@@ -153,7 +151,6 @@
|
||||
"Can share" : "Pode compartir",
|
||||
"Can manage" : "Pode xestionar",
|
||||
"Delete" : "Eliminar",
|
||||
"Failed to create share with {displayName}" : "Produciuse un fallo ao crear o uso compartido con {displayName}",
|
||||
"Add a new list" : "Engadir unha lista nova",
|
||||
"Archive all cards" : "Arquivar todas as tarxetas",
|
||||
"Delete list" : "Eliminar lista",
|
||||
@@ -161,7 +158,6 @@
|
||||
"Archive all cards in this list" : "Arquivar todas as tarxetas desta lista",
|
||||
"Add a new card" : "Engadir unha nova tarxeta",
|
||||
"Card name" : "Nome da tarxeta",
|
||||
"List deleted" : "Lista eliminada",
|
||||
"Edit" : "Editar",
|
||||
"Add a new tag" : "Engadir unha nova etiqueta",
|
||||
"title and color value must be provided" : "debe indicar o título e o valor da cor",
|
||||
@@ -173,12 +169,6 @@
|
||||
"Restore Attachment" : "Restaurar o anexo",
|
||||
"Open in sidebar view" : "Abrir na vista da barra lateral",
|
||||
"Open in bigger view" : "Abrir nunha vista máis grande",
|
||||
"Attachments" : "Anexos",
|
||||
"Comments" : "Comentarios",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"The title cannot be empty." : "O título non pode estar baleiro.",
|
||||
"No comments yet. Begin the discussion!" : "Aínda non hai comentarios. Comece o debate!",
|
||||
"Assign a tag to this card…" : "Asignar unha etiqueta a esta tarxeta…",
|
||||
"Assign to users" : "Asignar a usuarios",
|
||||
"Assign to users/groups/circles" : "Asignar a usuarios/grupos/círculos",
|
||||
@@ -186,13 +176,6 @@
|
||||
"Due date" : "Data de caducidade",
|
||||
"Set a due date" : "Estabelecer a data de caducidade",
|
||||
"Remove due date" : "Retirar a data de caducidade",
|
||||
"Select Date" : "Seleccione a data",
|
||||
"Save" : "Gardar",
|
||||
"The comment cannot be empty." : "O comentario non pode estar baleiro",
|
||||
"The comment cannot be longer than 1000 characters." : "O comentario non pode ter máis de 1000 caracteres.",
|
||||
"In reply to" : "En resposta a",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
"Description" : "Descrición",
|
||||
"(Unsaved)" : "(Sen gardar)",
|
||||
"(Saving…)" : "(Gardando…)",
|
||||
@@ -200,19 +183,30 @@
|
||||
"Edit description" : "Editar a descrición",
|
||||
"View description" : "Ver a descrición",
|
||||
"Add Attachment" : "Engadir o anexo",
|
||||
"Write a description …" : "Escriba unha descrición…",
|
||||
"Attachments" : "Anexos",
|
||||
"Comments" : "Comentarios",
|
||||
"Choose attachment" : "Escoller o anexo",
|
||||
"Select Date" : "Seleccione a data",
|
||||
"Modified" : "Modificado",
|
||||
"Created" : "Creado",
|
||||
"The title cannot be empty." : "O título non pode estar baleiro.",
|
||||
"No comments yet. Begin the discussion!" : "Aínda non hai comentarios. Comece o debate!",
|
||||
"Save" : "Gardar",
|
||||
"The comment cannot be empty." : "O comentario non pode estar baleiro",
|
||||
"The comment cannot be longer than 1000 characters." : "O comentario non pode ter máis de 1000 caracteres.",
|
||||
"In reply to" : "En resposta a",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
"(group)" : "(grupo)",
|
||||
"(circle)" : "(círculo)",
|
||||
"Assign to me" : "Asignarme",
|
||||
"Unassign myself" : "Desasignarme",
|
||||
"Move card" : "Mover a tarxeta",
|
||||
"Unarchive card" : "Desarquivar a tarxeta",
|
||||
"Archive card" : "Arquivar a tarxeta",
|
||||
"Delete card" : "Eliminar tarxeta",
|
||||
"Move card" : "Mover a tarxeta",
|
||||
"Move card to another board" : "Mover a tarxeta a outro taboleiro",
|
||||
"Select a list" : "Seleccionar unha lista",
|
||||
"Card deleted" : "Tarxeta eliminada",
|
||||
"seconds ago" : "hai uns segundos",
|
||||
"All boards" : "Todos os taboleiros",
|
||||
"Archived boards" : "Taboleiros arquivados",
|
||||
@@ -222,21 +216,13 @@
|
||||
"Limit deck usage of groups" : "Limitar o uso da plataforma a grupos",
|
||||
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Limitando Deck bloqueará os usuarios que non formen parte destes grupos, para crear os seus propios taboleiros. Os usuarios aínda así poderán traballar en taboleiros compartidos con eles.",
|
||||
"Board name" : "Nome do taboleiro",
|
||||
"Board details" : "Detalles do taboleiro",
|
||||
"Edit board" : "Editar taboleiro",
|
||||
"Clone board" : "Clonar taboleiro",
|
||||
"Unarchive board" : "Desarquivar taboleiro",
|
||||
"Archive board" : "Arquivar taboleiro",
|
||||
"Turn on due date reminders" : "Activar os lembretes de data de caducidade",
|
||||
"Turn off due date reminders" : "Desctivar os lembretes de data de caducidade",
|
||||
"Due date reminders" : "Lembretes de data de caducidade",
|
||||
"All cards" : "Todas as tarxeta",
|
||||
"Assigned cards" : "Tarxetas asignadas",
|
||||
"No notifications" : "Non hai notificacións",
|
||||
"Delete board" : "Eliminar taboleiro",
|
||||
"Clone board " : "Clonar taboleiro",
|
||||
"Unarchive board " : "Desarquivar taboleiro",
|
||||
"Archive board " : "Arquivar taboleiro",
|
||||
"Delete board " : "Eliminar taboleiro",
|
||||
"Board details" : "Detalles do taboleiro",
|
||||
"Board {0} deleted" : "Eliminouse o taboleiro {0}",
|
||||
"Only assigned cards" : "Só as tarxetas asignadas",
|
||||
"No reminder" : "Non hai lembretes",
|
||||
"An error occurred" : "Produciuse un erro",
|
||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Confirma que quere eliminar o taboleiro {title}? Isto eliminará todos os datos deste taboleiro.",
|
||||
"Delete the board?" : "Eliminar o taboleiro?",
|
||||
|
||||
118
l10n/he.js
118
l10n/he.js
@@ -17,57 +17,14 @@ OC.L10N.register(
|
||||
"{user} has archived the board {before}" : "הארכיון {before} הועבר לארכיון על ידי {user}",
|
||||
"You have unarchived the board {board}" : "הוצאת את הלוח {board} מהארכיון",
|
||||
"{user} has unarchived the board {before}" : "הלוח {before} הוצא מהארכיון על ידי {user}",
|
||||
"You have created a new list {stack} on board {board}" : "יצרת רשימה חדשה {stack} על הלוח {board}",
|
||||
"{user} has created a new list {stack} on board {board}" : "{user} יצר רשימה חדשה {stack} על הלוח {board}",
|
||||
"You have renamed list {before} to {stack} on board {board}" : "שינית את שם הרשימה {לפני} ל- {stack} על הלוח {board}",
|
||||
"{user} has renamed list {before} to {stack} on board {board}" : "{user} שינה את שם הרשימה {לפני} ל- {stack} על הלוח {board}",
|
||||
"You have deleted list {stack} on board {board}" : "מחקת את הרשימה {stack} על הלוח {board}",
|
||||
"{user} has deleted list {stack} on board {board}" : "{user} מחק את הרשימה {stack} על הלוח {board}",
|
||||
"You have created card {card} in list {stack} on board {board}" : "יצרת כרטיס {card} ברשימה {stack} על הלוח {board}",
|
||||
"{user} has created card {card} in list {stack} on board {board}" : "{user} יצר כרטיס {card} ברשימה {stack} על הלוח {board}",
|
||||
"You have deleted card {card} in list {stack} on board {board}" : "מחקת את הכרטיס {card} ברשימה {stack} על הלוח {board}",
|
||||
"{user} has deleted card {card} in list {stack} on board {board}" : "{user} מחק את הכרטיס {card} ברשימה {stack} על הלוח {board}",
|
||||
"You have renamed the card {before} to {card}" : "שינית את שם הכרטיס {before} ל- {card}",
|
||||
"{user} has renamed the card {before} to {card}" : "{user} שינה את שם הכרטיס {לפני} ל- {card}",
|
||||
"You have added a description to card {card} in list {stack} on board {board}" : "הוספת תיאור לכרטיס {card} ברשימה {stack} על הלוח {board}",
|
||||
"{user} has added a description to card {card} in list {stack} on board {board}" : "{user} הוסיף תיאור לכרטיס {card} ברשימה {stack} על הלוח {board}",
|
||||
"You have updated the description of card {card} in list {stack} on board {board}" : "עדכנת את תיאור הכרטיס {card} ברשימה {stack} על הלוח {board}",
|
||||
"{user} has updated the description of the card {card} in list {stack} on board {board}" : "{user} עדכן את תיאור הכרטיס {card} ברשימה {stack} על הלוח {board}",
|
||||
"You have archived card {card} in list {stack} on board {board}" : "שמרת כרטיס {card} בארכיון ברשימה {stack} על הלוח {board}",
|
||||
"{user} has archived card {card} in list {stack} on board {board}" : "{user} ארכיב כרטיס {card} ברשימה {stack} על הלוח {board}",
|
||||
"You have unarchived card {card} in list {stack} on board {board}" : "יש לך כרטיס {card} שלא הועבר לארכיון ברשימה {stack} על הלוח {board}",
|
||||
"{user} has unarchived card {card} in list {stack} on board {board}" : "ל-{user} יש כרטיס {card} שלא הועבר לארכיון ברשימה {stack} על הלוח {board}",
|
||||
"You have removed the due date of card {card}" : "הסרת את מועד היעד מהכרטיס {card}",
|
||||
"{user} has removed the due date of card {card}" : "מועד היעד של הכרטיס {card} הוסר על ידי {user}",
|
||||
"You have set the due date of card {card} to {after}" : "הגדרת את תאריך היעד של הכרטיס {card} ל- {after}",
|
||||
"{user} has set the due date of card {card} to {after}" : "{user} הגדיר את תאריך היעד של הכרטיס {card} ל- {after}",
|
||||
"You have updated the due date of card {card} to {after}" : "עדכנת את תאריך היעד של הכרטיס {card} ל- {after}",
|
||||
"{user} has updated the due date of card {card} to {after}" : "{user} עדכן את תאריך היעד של הכרטיס {card} ל- {after}",
|
||||
"You have added the tag {label} to card {card} in list {stack} on board {board}" : "הוספת את התג {label} לכרטיס {card} ברשימה {stack} על הלוח {board}",
|
||||
"{user} has added the tag {label} to card {card} in list {stack} on board {board}" : "{user} הוסיף את התג {label} לכרטיס {card} ברשימה {stack} על הלוח {board}",
|
||||
"You have removed the tag {label} from card {card} in list {stack} on board {board}" : "הסרת את התג {label} מכרטיס {card} ברשימה {stack} על הלוח {board}",
|
||||
"{user} has removed the tag {label} from card {card} in list {stack} on board {board}" : "{user} הסיר את התג {label} מכרטיס {card} ברשימה {stack} על הלוח {board}",
|
||||
"You have assigned {assigneduser} to card {card} on board {board}" : "הקצית {assigneduser} לכרטיס {card} על הלוח {board}",
|
||||
"{user} has assigned {assigneduser} to card {card} on board {board}" : "{user} הקצה את {assigneduser} לכרטיס {card} על הלוח {board}",
|
||||
"You have unassigned {assigneduser} from card {card} on board {board}" : "בטלת את הקצאת {assigneduser} מכרטיס {card} על הלוח {board}",
|
||||
"{user} has unassigned {assigneduser} from card {card} on board {board}" : "{user} ביטל את ההקצאה של {assigneduser} מכרטיס {card} על הלוח {board}",
|
||||
"You have moved the card {card} from list {stackBefore} to {stack}" : "העברת את הכרטיס {card} מהרשימה {stackBefore} ל- {stack}",
|
||||
"{user} has moved the card {card} from list {stackBefore} to {stack}" : "{user} העביר את הכרטיס {card} מהרשימה {stackBefore} ל- {stack}",
|
||||
"You have added the attachment {attachment} to card {card}" : "הוספת את הקובץ המצורף {attachment} לכרטיס {card}",
|
||||
"{user} has added the attachment {attachment} to card {card}" : "{user} הוסיף את הקובץ המצורף {attachment} לכרטיס {card}",
|
||||
"You have updated the attachment {attachment} on card {card}" : "עדכנת את הקובץ המצורף {attachment} בכרטיס {card}",
|
||||
"{user} has updated the attachment {attachment} on card {card}" : "{user} עדכן את הקובץ המצורף {attachment} בכרטיס {card}",
|
||||
"You have deleted the attachment {attachment} from card {card}" : "מחקת את הקובץ המצורף {attachment} מכרטיס {card}",
|
||||
"{user} has deleted the attachment {attachment} from card {card}" : "{user} מחק את הקובץ המצורף {attachment} מכרטיס {card}",
|
||||
"You have restored the attachment {attachment} to card {card}" : "שחזרת את הקובץ המצורף {attachment} לכרטיס {card}",
|
||||
"{user} has restored the attachment {attachment} to card {card}" : "{user} שיחזר את הקובץ המצורף {attachment} לכרטיס {card}",
|
||||
"You have commented on card {card}" : "הגבת על הכרטיס {cart}",
|
||||
"{user} has commented on card {card}" : "נוספה תגובה מאת {user} על הכרטיס {card}",
|
||||
"A <strong>card description</strong> inside the Deck app has been changed" : "<strong>תיאור של כרטיס</strong> בתוך יישומון החבילה נערך",
|
||||
"Deck" : "חפיסה",
|
||||
"Changes in the <strong>Deck app</strong>" : "שינויים ל<strong>יישומון החבילה</strong>",
|
||||
"A <strong>comment</strong> was created on a card" : "נוצרה <strong>הערה</strong> על כרטיס",
|
||||
"Upcoming cards" : "כרטיסים עתידיים",
|
||||
"Personal" : "אישי",
|
||||
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "הכרטיס \"%s\" שב־„%s” הוקצה אליך על ידי %s.",
|
||||
"{user} has assigned the card \"%s\" on \"%s\" to you." : "הכרטיס „%s” שב„%s” הוקצה לך על ידי {user}.",
|
||||
@@ -98,7 +55,6 @@ OC.L10N.register(
|
||||
"A PHP extension stopped the file upload" : "הרחבת PHP עצרה את העלאת הקובץ",
|
||||
"No file uploaded or file size exceeds maximum of %s" : "לא הועלה אף קובץ או שגודל הקובץ חרג מהסף המרבי של %s",
|
||||
"Personal planning and team project organization" : "ארגון אישי וקבוצתי של מיזמים",
|
||||
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck הוא כלי ארגון בסגנון kanban המכוון לתכנון אישי ולארגון פרויקטים עבור צוותים המשולבים ב- Nextcloud.\n\n\n- 📥 הוסף את המשימות שלך לכרטיסים וסדר אותן\n- 📄 רשמו הערות נוספות ב-markdown\n- 🔖הקצה תוויות לארגון טוב עוד יותר\n- 👥 שתף עם הצוות שלך, חברים, או משפחה\n- 📎 צרף קבצים והטמע אותם בתיאור ה-markdown שלך\n- 💬 שוחח עם הצוות שלך באמצעות הערות\n- ⚡ עקוב אחר שינויים בזרם הפעילות\n- 🚀 ארגנו את הפרויקט שלכם",
|
||||
"Card details" : "פרטי הכרטיס",
|
||||
"Add board" : "הוספת לוח",
|
||||
"Select the board to link to a project" : "נא לבחור את הלוח לקישור למיזם",
|
||||
@@ -122,7 +78,6 @@ OC.L10N.register(
|
||||
"Apply filter" : "החלת מסנן",
|
||||
"Filter by tag" : "סינון לפי תגית",
|
||||
"Filter by assigned user" : "סינון לפי משתמש מוקצה",
|
||||
"Unassigned" : "לא הוקצה",
|
||||
"Filter by due date" : "סינון לפי תאריך יעד",
|
||||
"Overdue" : "באיחור",
|
||||
"Next 24 hours" : "ב־24 השעות הבאות",
|
||||
@@ -135,8 +90,6 @@ OC.L10N.register(
|
||||
"Toggle compact mode" : "החלפת מצב חסכוני",
|
||||
"Details" : "פרטים",
|
||||
"Loading board" : "הלוח נטען",
|
||||
"No lists available" : "אין רשימות זמינות",
|
||||
"Create a new list to add cards to this board" : "צור רשימה חדשה כדי להוסיף כרטיסים ללוח זה",
|
||||
"Board not found" : "הלוח לא נמצא",
|
||||
"Sharing" : "שיתוף",
|
||||
"Tags" : "תגיות",
|
||||
@@ -146,8 +99,6 @@ OC.L10N.register(
|
||||
"Undo" : "ביטול",
|
||||
"Deleted cards" : "כרטיסים שנמחקו",
|
||||
"Share board with a user, group or circle …" : "שיתוף לוח עם משתמש, קבוצה או מעגל…",
|
||||
"Searching for users, groups and circles …" : "מחפש משתמשים, קבוצות, ומעגלים ...",
|
||||
"No participants found" : "לא נמצאו משתתפים",
|
||||
"Board owner" : "בעלות על הלוח",
|
||||
"(Group)" : "(קבוצה)",
|
||||
"(Circle)" : "(מעגל)",
|
||||
@@ -155,15 +106,9 @@ OC.L10N.register(
|
||||
"Can share" : "Can share",
|
||||
"Can manage" : "הרשאת ניהול",
|
||||
"Delete" : "מחיקה",
|
||||
"Failed to create share with {displayName}" : "יצירת השיתוף עם {displayName} נכשלה",
|
||||
"Add a new list" : "הוסף רשימה חדשה",
|
||||
"Archive all cards" : "ארכיב את כל הכרטיסים",
|
||||
"Delete list" : "מחיקת רשימה",
|
||||
"Add card" : "הוספת כרטיס",
|
||||
"Archive all cards in this list" : "ארכיב את כל הכרטיסים ברשימה זו",
|
||||
"Add a new card" : "הוספת כרטיס חדש",
|
||||
"Card name" : "שם כרטיס",
|
||||
"List deleted" : "הרשימה נמחקה",
|
||||
"Edit" : "עריכה",
|
||||
"Add a new tag" : "הוספת תגית חדשה",
|
||||
"title and color value must be provided" : "יש לספק כותרת וערך צבע",
|
||||
@@ -173,86 +118,63 @@ OC.L10N.register(
|
||||
"Add this attachment" : "הוספת קובץ מצורף זה",
|
||||
"Delete Attachment" : "מחיקת קובץ מצורף",
|
||||
"Restore Attachment" : "שחזור קובץ מצורף",
|
||||
"Open in sidebar view" : "פתח בתצוגת סרגל הצד",
|
||||
"Open in bigger view" : "פתח בתצוגה גדולה יותר",
|
||||
"Attachments" : "קבצים מצורפים",
|
||||
"Comments" : "תגובות",
|
||||
"Modified" : "מועד שינוי",
|
||||
"Created" : "מועד היצירה",
|
||||
"The title cannot be empty." : "הכותרת לא יכולה להיות ריקה.",
|
||||
"No comments yet. Begin the discussion!" : "אין עדיין הערות. אפשר להתחיל לדון!",
|
||||
"Assign a tag to this card…" : "הקצאת תגית לכרטיס זה…",
|
||||
"Assign to users" : "הקצאה למשתמשים",
|
||||
"Assign to users/groups/circles" : "הקצאה למשתמשים/קבוצות/מעגלים",
|
||||
"Assign a user to this card…" : "הקצאת משתמש לכרטיס זה…",
|
||||
"Due date" : "מועד יעד",
|
||||
"Due date" : "מועד תפוגה",
|
||||
"Set a due date" : "הגדרת תאריך יעד",
|
||||
"Remove due date" : "הסרת מועד התפוגה",
|
||||
"Select Date" : "בחירת תאריך",
|
||||
"Save" : "שמור",
|
||||
"The comment cannot be empty." : "ההערה לא יכולה להיות ריקה.",
|
||||
"The comment cannot be longer than 1000 characters." : "אורך ההערה לא יכול לחצות את רף 1000 התווים.",
|
||||
"In reply to" : "בתגובה אל",
|
||||
"Reply" : "תגובה",
|
||||
"Update" : "עדכון",
|
||||
"Description" : "תיאור",
|
||||
"Description" : "תיאוג",
|
||||
"(Unsaved)" : "(לא נשמר)",
|
||||
"(Saving…)" : "(מתבצעת שמירה…)",
|
||||
"Formatting help" : "עזרה בסידור בתבנית",
|
||||
"Edit description" : "עריכת תיאור",
|
||||
"View description" : "הצגת תיאור",
|
||||
"Add Attachment" : "הוספת קובץ מצורף",
|
||||
"Write a description …" : "כתוב תיאור ...",
|
||||
"Attachments" : "קבצים מצורפים",
|
||||
"Comments" : "תגובות",
|
||||
"Choose attachment" : "בחירת קובץ מצורף",
|
||||
"Select Date" : "בחירת תאריך",
|
||||
"Modified" : "מועד שינוי",
|
||||
"Created" : "מועד היצירה",
|
||||
"No comments yet. Begin the discussion!" : "אין עדיין הערות. אפשר להתחיל לדון!",
|
||||
"Save" : "שמור",
|
||||
"The comment cannot be empty." : "ההערה לא יכולה להיות ריקה.",
|
||||
"The comment cannot be longer than 1000 characters." : "אורך ההערה לא יכול לחצות את רף 1000 התווים.",
|
||||
"In reply to" : "בתגובה אל",
|
||||
"Reply" : "תגובה",
|
||||
"Update" : "עדכון",
|
||||
"(group)" : "(קבוצה)",
|
||||
"(circle)" : "(מעגל)",
|
||||
"Assign to me" : "הקצאה אלי",
|
||||
"Unassign myself" : "לבטל את הקצאת עצמי",
|
||||
"Move card" : "העברת כרטיס",
|
||||
"Unarchive card" : "הוצאת הכרטיס מהארכיון",
|
||||
"Archive card" : "העברת כרטיס לארכיון",
|
||||
"Delete card" : "מחיקת כרטיס לארכיון",
|
||||
"Move card" : "העברת כרטיס",
|
||||
"Move card to another board" : "העברת כרטיס ללוח אחר",
|
||||
"Select a list" : "בחר רשימה",
|
||||
"Card deleted" : "הכרטיס נמחק",
|
||||
"seconds ago" : "לפני מספר שניות",
|
||||
"All boards" : "כל הלוחות",
|
||||
"Archived boards" : "לוחות שנשמרו בארכיון",
|
||||
"Shared with you" : "משותף אתך",
|
||||
"Use modal card view" : "השתמש בתצוגת כרטיס מודאלי",
|
||||
"Show boards in calendar/tasks" : "הצג הלוחות בלוח השנה/המשימות",
|
||||
"Limit deck usage of groups" : "הגבלת השימוש בחבילה לקבוצות",
|
||||
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "הגבלת חבילה תחסום משתמשים שאינם חלק מקבוצות אלו מיצירת לוחות משלהם. משתמשים עדיין יוכלו לעבור על לוחות ששותפו אתם.",
|
||||
"Board name" : "שם הלוח",
|
||||
"Board details" : "פרטי לוח",
|
||||
"Edit board" : "עריכת לוח",
|
||||
"Clone board" : "שכפל את הלוח",
|
||||
"Unarchive board" : "בטל ארכיון של הלוח",
|
||||
"Archive board" : "העבר את הלוח לארכיון",
|
||||
"Turn on due date reminders" : "הפעל תזכורות לתאריך היעד",
|
||||
"Turn off due date reminders" : "השבת תזכורות לתאריך היעד",
|
||||
"Due date reminders" : "תזכורות לתאריך יעד",
|
||||
"All cards" : "כל הכרטיסים",
|
||||
"Assigned cards" : "כרטיסים שהוקצו",
|
||||
"No notifications" : "אין התראות",
|
||||
"Delete board" : "מחק לוח",
|
||||
"Clone board " : "שכפול לוח",
|
||||
"Unarchive board " : "הוצאת הלוח מהארכיון",
|
||||
"Archive board " : "העברת הלוח לארכיון",
|
||||
"Delete board " : "מחיקת לוח",
|
||||
"Board details" : "פרטי לוח",
|
||||
"Board {0} deleted" : "הלוח {0} נמחק",
|
||||
"Only assigned cards" : "רק כרטיסים שהוקצו",
|
||||
"No reminder" : "אין תזכורת",
|
||||
"An error occurred" : "אירעה שגיאה",
|
||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "למחוק את הלוח {title}? פעולה זו תמחק את כל הנתונים של הלוח הזה.",
|
||||
"Delete the board?" : "למחוק את הלוח הזה?",
|
||||
"Loading filtered view" : "טוען תצוגה מסוננת",
|
||||
"Today" : "היום",
|
||||
"Tomorrow" : "מחר",
|
||||
"This week" : "השבוע",
|
||||
"No due" : "אין תאריך יעד",
|
||||
"No upcoming cards" : "אין כרטיסים עתידיים",
|
||||
"upcoming cards" : "כרטיסים עתידיים",
|
||||
"Link to a board" : "קישור ללוח",
|
||||
"Link to a card" : "קישור לכרטיס",
|
||||
"Something went wrong" : "משהו השתבש",
|
||||
"Failed to upload {name}" : "העלאת {name} נכשלה",
|
||||
"Maximum file size of {size} exceeded" : "גודל הקבצים המרבי {size} הושג"
|
||||
},
|
||||
"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;");
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user