Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
44e2e50469 | ||
|
|
d50b63f1ab | ||
|
|
b7a34ba9f7 | ||
|
|
6dc1823a10 | ||
|
|
d0cfa3a7ba |
2
.github/workflows/app-code-check.yml
vendored
2
.github/workflows/app-code-check.yml
vendored
@@ -1,4 +1,4 @@
|
||||
name: Nextcloud app code check
|
||||
name: PHP AppCode Check
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
|
||||
4
.github/workflows/appbuild.yml
vendored
4
.github/workflows/appbuild.yml
vendored
@@ -1,4 +1,4 @@
|
||||
name: Package build
|
||||
name: Build app package
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
@@ -6,7 +6,7 @@ on:
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: ubuntu-18.04
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
|
||||
89
.github/workflows/integration.yml
vendored
89
.github/workflows/integration.yml
vendored
@@ -1,89 +0,0 @@
|
||||
name: Integration tests
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
- stable*
|
||||
|
||||
env:
|
||||
APP_NAME: deck
|
||||
|
||||
jobs:
|
||||
integration:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
php-versions: ['7.4']
|
||||
databases: ['sqlite', 'mysql', 'pgsql']
|
||||
server-versions: ['master']
|
||||
|
||||
name: php${{ matrix.php-versions }}-${{ matrix.databases }}-${{ matrix.server-versions }}
|
||||
|
||||
services:
|
||||
postgres:
|
||||
image: postgres
|
||||
ports:
|
||||
- 4445: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
|
||||
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@v2
|
||||
with:
|
||||
php-version: ${{ matrix.php-versions }}
|
||||
tools: phpunit
|
||||
extensions: mbstring, iconv, fileinfo, intl, sqlite, pdo_sqlite, mysql, pdo_mysql, pgsql, pdo_pgsql,
|
||||
coverage: none
|
||||
|
||||
- name: Set up PHPUnit
|
||||
working-directory: apps/${{ env.APP_NAME }}
|
||||
run: composer i
|
||||
|
||||
- name: Set up Nextcloud
|
||||
run: |
|
||||
if [ "${{ matrix.databases }}" = "mysql" ]; then
|
||||
export DB_PORT=4444
|
||||
elif [ "${{ matrix.databases }}" = "pgsql" ]; then
|
||||
export DB_PORT=4445
|
||||
fi
|
||||
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 admin
|
||||
./occ app:enable --force ${{ env.APP_NAME }}
|
||||
php -S localhost:8080 &
|
||||
|
||||
- name: Run behat
|
||||
working-directory: apps/${{ env.APP_NAME }}/tests/integration
|
||||
run: ./run.sh
|
||||
2
.github/workflows/nightly.yml
vendored
2
.github/workflows/nightly.yml
vendored
@@ -1,4 +1,4 @@
|
||||
name: Package nightly
|
||||
name: Nightly build
|
||||
|
||||
on:
|
||||
push:
|
||||
|
||||
8
.github/workflows/nodejs.yml
vendored
8
.github/workflows/nodejs.yml
vendored
@@ -21,12 +21,6 @@ jobs:
|
||||
run: |
|
||||
npm ci
|
||||
- name: build
|
||||
env:
|
||||
RELATIVE_CI_KEY: ${{ secrets.RELATIVE_CI_KEY }}
|
||||
RELATIVE_CI_SLUG: nextcloud/deck
|
||||
run: |
|
||||
mkdir -p js
|
||||
npm run build --if-present -- --profile --json | tail -n +6 > js/webpack-stats.json
|
||||
npx relative-ci-agent
|
||||
|
||||
npm run build --if-present
|
||||
|
||||
|
||||
231
.github/workflows/phpunit.yml
vendored
231
.github/workflows/phpunit.yml
vendored
@@ -3,37 +3,86 @@ name: PHPUnit
|
||||
on:
|
||||
pull_request:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
- stable*
|
||||
|
||||
env:
|
||||
APP_NAME: deck
|
||||
|
||||
|
||||
jobs:
|
||||
integration:
|
||||
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: ['sqlite', 'mysql', 'pgsql']
|
||||
databases: ['mysql']
|
||||
server-versions: ['master']
|
||||
|
||||
name: php${{ matrix.php-versions }}-${{ matrix.databases }}-${{ matrix.server-versions }}
|
||||
|
||||
services:
|
||||
postgres:
|
||||
image: postgres
|
||||
ports:
|
||||
- 4445: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
|
||||
mysql:
|
||||
image: mariadb
|
||||
ports:
|
||||
@@ -62,11 +111,11 @@ jobs:
|
||||
path: apps/${{ env.APP_NAME }}
|
||||
|
||||
- name: Set up php ${{ matrix.php-versions }}
|
||||
uses: shivammathur/setup-php@v2
|
||||
uses: shivammathur/setup-php@v1
|
||||
with:
|
||||
php-version: ${{ matrix.php-versions }}
|
||||
tools: phpunit
|
||||
extensions: mbstring, iconv, fileinfo, intl, sqlite, pdo_sqlite, mysql, pdo_mysql, pgsql, pdo_pgsql, zip, gd
|
||||
extensions: mbstring, iconv, fileinfo, intl, mysql, pdo_mysql
|
||||
coverage: none
|
||||
|
||||
- name: Set up PHPUnit
|
||||
@@ -74,14 +123,150 @@ jobs:
|
||||
run: composer i
|
||||
|
||||
- name: Set up Nextcloud
|
||||
env:
|
||||
DB_PORT: 4444
|
||||
run: |
|
||||
if [ "${{ matrix.databases }}" = "mysql" ]; then
|
||||
export DB_PORT=4444
|
||||
elif [ "${{ matrix.databases }}" = "pgsql" ]; then
|
||||
export DB_PORT=4445
|
||||
fi
|
||||
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 admin
|
||||
./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
|
||||
|
||||
|
||||
oci:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
strategy:
|
||||
# do not stop on another job's failure
|
||||
fail-fast: false
|
||||
matrix:
|
||||
php-versions: ['7.4']
|
||||
databases: ['oci']
|
||||
server-versions: ['master']
|
||||
|
||||
name: php${{ matrix.php-versions }}-${{ matrix.databases }}-${{ matrix.server-versions }}
|
||||
|
||||
services:
|
||||
oracle:
|
||||
image: deepdiver/docker-oracle-xe-11g # "wnameless/oracle-xe-11g-r2"
|
||||
ports:
|
||||
- "1521:1521"
|
||||
|
||||
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@v2"
|
||||
with:
|
||||
php-version: "${{ matrix.php-versions }}"
|
||||
extensions: mbstring, iconv, fileinfo, intl, oci8
|
||||
tools: phpunit:8.5.2
|
||||
coverage: none
|
||||
|
||||
- name: Set up PHPUnit
|
||||
working-directory: apps/${{ env.APP_NAME }}
|
||||
run: composer i
|
||||
|
||||
- name: Set up Nextcloud
|
||||
run: |
|
||||
mkdir data
|
||||
./occ maintenance:install --verbose --database=oci --database-name=XE --database-host=127.0.0.1 --database-port=1521 --database-user=autotest --database-pass=owncloud --admin-user admin --admin-pass admin
|
||||
php -f index.php
|
||||
./occ app:enable --force ${{ env.APP_NAME }}
|
||||
php -S localhost:8080 &
|
||||
|
||||
|
||||
31
.github/workflows/static-analysis.yml
vendored
31
.github/workflows/static-analysis.yml
vendored
@@ -1,31 +0,0 @@
|
||||
name: Static analysis
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
- stable*
|
||||
|
||||
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/
|
||||
|
||||
95
CHANGELOG.md
95
CHANGELOG.md
@@ -1,95 +1,34 @@
|
||||
# Changelog
|
||||
All notable changes to this project will be documented in this file.
|
||||
|
||||
## 1.2.5 - 2021-03-05
|
||||
|
||||
### Fixed
|
||||
|
||||
* [#2845](https://github.com/nextcloud/deck/pull/2845) Search by mail on the board sharing input
|
||||
* [#2850](https://github.com/nextcloud/deck/pull/2850) Switch to Content-Disposition attachment and check for sane mimetypes
|
||||
* [#2860](https://github.com/nextcloud/deck/pull/2860) Properly pass the user to fetch circles when calling through occ
|
||||
|
||||
## 1.2.4 - 2021-02-02
|
||||
|
||||
### Fixed
|
||||
* [#2715](https://github.com/nextcloud/deck/pull/2715) Handle clicks on calendar entries
|
||||
* [#2752](https://github.com/nextcloud/deck/pull/2752) Remove invalid activity parameters
|
||||
* [#2755](https://github.com/nextcloud/deck/pull/2755) Properly set author for activity events that are triggered by cron
|
||||
* [#2757](https://github.com/nextcloud/deck/pull/2757) Remove repair step which is no longer needed as we cleanup properly
|
||||
* [#2758](https://github.com/nextcloud/deck/pull/2758) Fix deck activity emails not being translated
|
||||
|
||||
|
||||
## 1.2.3 - 2021-01-04
|
||||
|
||||
### Fixed
|
||||
* [#2622](https://github.com/nextcloud/deck/pull/2622) Fix gradient and stack header spacing for safari
|
||||
* [#2626](https://github.com/nextcloud/deck/pull/2626) Adding a description icon to cards when they contain a description without any checkmarks @MonkeySon
|
||||
* [#2659](https://github.com/nextcloud/deck/pull/2659) Matching color of description cursor with text color @JonFStr
|
||||
* [#2676](https://github.com/nextcloud/deck/pull/2676) Only load filter view when shown
|
||||
* [#2680](https://github.com/nextcloud/deck/pull/2680) Do not try to add change data if it doesn't exist
|
||||
* [#2681](https://github.com/nextcloud/deck/pull/2681) Filter out deleted stacks from results
|
||||
* [#2685](https://github.com/nextcloud/deck/pull/2685) Show all boards in move card dialog @jakobroehrl
|
||||
* [#2687](https://github.com/nextcloud/deck/pull/2687) 3dots no opacity @jakobroehrl
|
||||
* [#2688](https://github.com/nextcloud/deck/pull/2688) Title > boardname @jakobroehrl
|
||||
* [#2689](https://github.com/nextcloud/deck/pull/2689) Modal > bigger view wording @jakobroehrl
|
||||
|
||||
## 1.2.2 - 2020-11-24
|
||||
|
||||
### Fixed
|
||||
|
||||
* [#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
|
||||
|
||||
## 1.2.1 - 2020-11-18
|
||||
|
||||
### 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
|
||||
## 1.2.0 - unreleased
|
||||
|
||||
### 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
|
||||
* [#2430](https://github.com/nextcloud/deck/pull/2430) Due date notification setting per board @juliushaertl
|
||||
* [#2230](https://github.com/nextcloud/deck/pull/2230) Implement scrolling per stack @juliushaertl
|
||||
* [#1396](https://github.com/nextcloud/deck/pull/1396) API: Expose canCreateBoards through capabilities @juliushaertl
|
||||
* [#2245](https://github.com/nextcloud/deck/pull/2245) API: ETag support for API endpoints @juliushaertl
|
||||
|
||||
### 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
|
||||
* [#2336](https://github.com/nextcloud/deck/pull/2336) Run unit tests on github actions @juliushaertl
|
||||
* [#2358](https://github.com/nextcloud/deck/pull/2358) Properly check if FTSEvent has an argument set @juliushaertl
|
||||
* [#2359](https://github.com/nextcloud/deck/pull/2359) Also exclude deleted items from calendar boards @juliushaertl
|
||||
* [#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
|
||||
* [#2363](https://github.com/nextcloud/deck/pull/2363) Use uid instead of displayname for sharee results @juliushaertl
|
||||
* [#2367](https://github.com/nextcloud/deck/pull/2367) Properly handle multiple shares in a row and refactor sharee loading @juliushaertl
|
||||
* [#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
|
||||
* [#2433](https://github.com/nextcloud/deck/pull/2433) Fix scrollable titles with Dyslexia font @juliushaertl
|
||||
* [#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
|
||||
* [#2435](https://github.com/nextcloud/deck/pull/2435) Do not open the dialog automatically upon card creation, only upon click @juliushaertl
|
||||
* [#2437](https://github.com/nextcloud/deck/pull/2437) Only remove card padding for editable cards @juliushaertl
|
||||
* [#2440](https://github.com/nextcloud/deck/pull/2440) Move navigation toggle handling to @nextcloud/vue native one @juliushaertl
|
||||
* [#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)
|
||||
* [#2500](https://github.com/nextcloud/deck/pull/2500) Move details and description to dedicated component @juliushaertl
|
||||
* [#2517](https://github.com/nextcloud/deck/pull/2517) Filter out duplicate cards in overview @juliushaertl
|
||||
* [#2502](https://github.com/nextcloud/deck/pull/2502) Assignment code refactoring @juliushaertl
|
||||
|
||||
|
||||
## 1.1.0 - 2020-10-03
|
||||
|
||||
@@ -17,7 +17,7 @@
|
||||
- 🚀 Get your project organized
|
||||
|
||||
</description>
|
||||
<version>1.2.5</version>
|
||||
<version>1.2.0-beta1</version>
|
||||
<licence>agpl</licence>
|
||||
<author>Julius Härtl</author>
|
||||
<namespace>Deck</namespace>
|
||||
@@ -36,13 +36,19 @@
|
||||
<database min-version="9.4">pgsql</database>
|
||||
<database>sqlite</database>
|
||||
<database min-version="5.5">mysql</database>
|
||||
<nextcloud min-version="18" max-version="20" />
|
||||
<database>oci</database>
|
||||
<nextcloud min-version="18" max-version="21" />
|
||||
</dependencies>
|
||||
<background-jobs>
|
||||
<job>OCA\Deck\Cron\DeleteCron</job>
|
||||
<job>OCA\Deck\Cron\ScheduledNotifications</job>
|
||||
<job>OCA\Deck\Cron\CardDescriptionActivity</job>
|
||||
</background-jobs>
|
||||
<repair-steps>
|
||||
<post-migration>
|
||||
<step>OCA\Deck\Migration\UnknownUsers</step>
|
||||
</post-migration>
|
||||
</repair-steps>
|
||||
<commands>
|
||||
<command>OCA\Deck\Command\UserExport</command>
|
||||
</commands>
|
||||
|
||||
@@ -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"
|
||||
}
|
||||
}
|
||||
|
||||
4905
composer.lock
generated
4905
composer.lock
generated
File diff suppressed because it is too large
Load Diff
@@ -10,7 +10,6 @@
|
||||
@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);
|
||||
|
||||
@@ -115,7 +115,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
|
||||
|
||||
|
||||
@@ -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 |
@@ -19,6 +19,7 @@ OC.L10N.register(
|
||||
"Can share" : "Kan deel",
|
||||
"Delete" : "Skrap",
|
||||
"Edit" : "Wysig",
|
||||
"Title" : "Titel",
|
||||
"Comments" : "Kommentare",
|
||||
"Modified" : "Gewysig",
|
||||
"Created" : "Geskep",
|
||||
|
||||
@@ -17,6 +17,7 @@
|
||||
"Can share" : "Kan deel",
|
||||
"Delete" : "Skrap",
|
||||
"Edit" : "Wysig",
|
||||
"Title" : "Titel",
|
||||
"Comments" : "Kommentare",
|
||||
"Modified" : "Gewysig",
|
||||
"Created" : "Geskep",
|
||||
|
||||
@@ -92,6 +92,7 @@ OC.L10N.register(
|
||||
"Edit" : "تعديل",
|
||||
"Add a new tag" : "إضافة وسم جديد",
|
||||
"title and color value must be provided" : "العنوان و قيمة اللون يجب تقديمها ",
|
||||
"Title" : "العنوان",
|
||||
"Members" : "الاعضاء",
|
||||
"Upload attachment" : "رفع المرفقات",
|
||||
"Add this attachment" : "إضافة هذا المرفق",
|
||||
|
||||
@@ -90,6 +90,7 @@
|
||||
"Edit" : "تعديل",
|
||||
"Add a new tag" : "إضافة وسم جديد",
|
||||
"title and color value must be provided" : "العنوان و قيمة اللون يجب تقديمها ",
|
||||
"Title" : "العنوان",
|
||||
"Members" : "الاعضاء",
|
||||
"Upload attachment" : "رفع المرفقات",
|
||||
"Add this attachment" : "إضافة هذا المرفق",
|
||||
|
||||
@@ -25,6 +25,7 @@ OC.L10N.register(
|
||||
"Can share" : "Can share",
|
||||
"Delete" : "Desaniciar",
|
||||
"Edit" : "Editar",
|
||||
"Title" : "Títulu",
|
||||
"Members" : "Miembros",
|
||||
"Attachments" : "Axuntos",
|
||||
"Comments" : "Comentarios",
|
||||
|
||||
@@ -23,6 +23,7 @@
|
||||
"Can share" : "Can share",
|
||||
"Delete" : "Desaniciar",
|
||||
"Edit" : "Editar",
|
||||
"Title" : "Títulu",
|
||||
"Members" : "Miembros",
|
||||
"Attachments" : "Axuntos",
|
||||
"Comments" : "Comentarios",
|
||||
|
||||
@@ -14,6 +14,7 @@ OC.L10N.register(
|
||||
"Can share" : "Can share",
|
||||
"Delete" : "Sil",
|
||||
"Edit" : "Dəyişiklik et",
|
||||
"Title" : "Başlıq",
|
||||
"Modified" : "Dəyişdirildi",
|
||||
"Save" : "Saxla",
|
||||
"Reply" : "Cavab",
|
||||
|
||||
@@ -12,6 +12,7 @@
|
||||
"Can share" : "Can share",
|
||||
"Delete" : "Sil",
|
||||
"Edit" : "Dəyişiklik et",
|
||||
"Title" : "Başlıq",
|
||||
"Modified" : "Dəyişdirildi",
|
||||
"Save" : "Saxla",
|
||||
"Reply" : "Cavab",
|
||||
|
||||
@@ -25,6 +25,7 @@ OC.L10N.register(
|
||||
"Can share" : "Може да споделя",
|
||||
"Delete" : "Изтриване",
|
||||
"Edit" : "Редакция",
|
||||
"Title" : "Име",
|
||||
"Members" : "Членове",
|
||||
"Upload attachment" : "Качване",
|
||||
"Attachments" : "Прикачени файлове",
|
||||
|
||||
@@ -23,6 +23,7 @@
|
||||
"Can share" : "Може да споделя",
|
||||
"Delete" : "Изтриване",
|
||||
"Edit" : "Редакция",
|
||||
"Title" : "Име",
|
||||
"Members" : "Членове",
|
||||
"Upload attachment" : "Качване",
|
||||
"Attachments" : "Прикачени файлове",
|
||||
|
||||
@@ -14,6 +14,7 @@ OC.L10N.register(
|
||||
"Can share" : "Can share",
|
||||
"Delete" : "মুছে",
|
||||
"Edit" : "সম্পাদনা",
|
||||
"Title" : "শিরোনাম",
|
||||
"Modified" : "পরিবর্তিত",
|
||||
"Save" : "সংরক্ষণ",
|
||||
"Reply" : "জবাব",
|
||||
|
||||
@@ -12,6 +12,7 @@
|
||||
"Can share" : "Can share",
|
||||
"Delete" : "মুছে",
|
||||
"Edit" : "সম্পাদনা",
|
||||
"Title" : "শিরোনাম",
|
||||
"Modified" : "পরিবর্তিত",
|
||||
"Save" : "সংরক্ষণ",
|
||||
"Reply" : "জবাব",
|
||||
|
||||
@@ -12,6 +12,7 @@ OC.L10N.register(
|
||||
"Can share" : "Can share",
|
||||
"Delete" : "Obriši",
|
||||
"Edit" : "Izmjeni",
|
||||
"Title" : "Naslov",
|
||||
"Members" : "Članovi",
|
||||
"Comments" : "Komentari",
|
||||
"Modified" : "Izmijenjeno",
|
||||
|
||||
@@ -10,6 +10,7 @@
|
||||
"Can share" : "Can share",
|
||||
"Delete" : "Obriši",
|
||||
"Edit" : "Izmjeni",
|
||||
"Title" : "Naslov",
|
||||
"Members" : "Članovi",
|
||||
"Comments" : "Komentari",
|
||||
"Modified" : "Izmijenjeno",
|
||||
|
||||
53
l10n/ca.js
53
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ó",
|
||||
@@ -167,7 +167,7 @@ OC.L10N.register(
|
||||
"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",
|
||||
"Board name" : "Nom del taulell",
|
||||
"Title" : "Títol",
|
||||
"Members" : "Membres",
|
||||
"Upload attachment" : "Carrega l'adjunt",
|
||||
"Add this attachment" : "Afegeix aquest adjunt",
|
||||
@@ -202,7 +202,6 @@ OC.L10N.register(
|
||||
"Edit description" : "Edita descripció",
|
||||
"View description" : "Veure descripció",
|
||||
"Add Attachment" : "Afegeix un adjunt",
|
||||
"Write a description …" : "Escriviu una descripció...",
|
||||
"Choose attachment" : "Triar adjunt",
|
||||
"(group)" : "(grup)",
|
||||
"(circle)" : "(cercle)",
|
||||
@@ -219,39 +218,39 @@ OC.L10N.register(
|
||||
"All boards" : "Tots els taulers",
|
||||
"Archived boards" : "Taulers arxivats",
|
||||
"Shared with you" : "Us han compartit",
|
||||
"Use bigger card view" : "Utilitza la visualització de targetes més gran",
|
||||
"Use modal card view" : "Utilitza la visualització de targetes modals",
|
||||
"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",
|
||||
"Turn on due date reminders" : "Activa el recordatori de data de caducitat",
|
||||
"Turn off due date reminders" : "Desactiva el recordatori de data de caducitat",
|
||||
"Due date reminders" : "Recordatori de data de caducitat",
|
||||
"All cards" : "Totes les targetes",
|
||||
"Assigned cards" : "Targetes assignades",
|
||||
"No notifications" : "No hi ha notificacions",
|
||||
"Delete board" : "Suprimeix el tauler",
|
||||
"Board {0} deleted" : "S’ha suprimit el tauler {0}",
|
||||
"Only assigned cards" : "Només les targetes assignades",
|
||||
"Only assigned cards" : "Només 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",
|
||||
"Failed to upload {name}" : "No s'ha pogut pujar {name}",
|
||||
"Maximum file size of {size} exceeded" : "S'ha superat la mida màxima per fitxer de {size}"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
53
l10n/ca.json
53
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ó",
|
||||
@@ -165,7 +165,7 @@
|
||||
"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",
|
||||
"Board name" : "Nom del taulell",
|
||||
"Title" : "Títol",
|
||||
"Members" : "Membres",
|
||||
"Upload attachment" : "Carrega l'adjunt",
|
||||
"Add this attachment" : "Afegeix aquest adjunt",
|
||||
@@ -200,7 +200,6 @@
|
||||
"Edit description" : "Edita descripció",
|
||||
"View description" : "Veure descripció",
|
||||
"Add Attachment" : "Afegeix un adjunt",
|
||||
"Write a description …" : "Escriviu una descripció...",
|
||||
"Choose attachment" : "Triar adjunt",
|
||||
"(group)" : "(grup)",
|
||||
"(circle)" : "(cercle)",
|
||||
@@ -217,39 +216,39 @@
|
||||
"All boards" : "Tots els taulers",
|
||||
"Archived boards" : "Taulers arxivats",
|
||||
"Shared with you" : "Us han compartit",
|
||||
"Use bigger card view" : "Utilitza la visualització de targetes més gran",
|
||||
"Use modal card view" : "Utilitza la visualització de targetes modals",
|
||||
"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",
|
||||
"Turn on due date reminders" : "Activa el recordatori de data de caducitat",
|
||||
"Turn off due date reminders" : "Desactiva el recordatori de data de caducitat",
|
||||
"Due date reminders" : "Recordatori de data de caducitat",
|
||||
"All cards" : "Totes les targetes",
|
||||
"Assigned cards" : "Targetes assignades",
|
||||
"No notifications" : "No hi ha notificacions",
|
||||
"Delete board" : "Suprimeix el tauler",
|
||||
"Board {0} deleted" : "S’ha suprimit el tauler {0}",
|
||||
"Only assigned cards" : "Només les targetes assignades",
|
||||
"Only assigned cards" : "Només 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",
|
||||
"Failed to upload {name}" : "No s'ha pogut pujar {name}",
|
||||
"Maximum file size of {size} exceeded" : "S'ha superat la mida màxima per fitxer de {size}"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
17
l10n/cs.js
17
l10n/cs.js
@@ -167,7 +167,7 @@ OC.L10N.register(
|
||||
"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",
|
||||
"Board name" : "Název tabule",
|
||||
"Title" : "Nadpis",
|
||||
"Members" : "Členové",
|
||||
"Upload attachment" : "Nahrát přílohu",
|
||||
"Add this attachment" : "Přidat tuto přílohu",
|
||||
@@ -202,7 +202,6 @@ OC.L10N.register(
|
||||
"Edit description" : "Upravit popis",
|
||||
"View description" : "Zobrazit popis",
|
||||
"Add Attachment" : "Přidat přílohu",
|
||||
"Write a description …" : "Zadejte popis…",
|
||||
"Choose attachment" : "Zvolte přílohu",
|
||||
"(group)" : "(skupina)",
|
||||
"(circle)" : "(okruh)",
|
||||
@@ -219,24 +218,14 @@ OC.L10N.register(
|
||||
"All boards" : "Všechny tabule",
|
||||
"Archived boards" : "Archivované tabule",
|
||||
"Shared with you" : "Sdíleno s vámi",
|
||||
"Use modal card view" : "Použít modální zobrazení karty",
|
||||
"Show boards in calendar/tasks" : "Zobrazit tabule v kalendáři/úkolech",
|
||||
"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",
|
||||
"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?",
|
||||
|
||||
17
l10n/cs.json
17
l10n/cs.json
@@ -165,7 +165,7 @@
|
||||
"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",
|
||||
"Board name" : "Název tabule",
|
||||
"Title" : "Nadpis",
|
||||
"Members" : "Členové",
|
||||
"Upload attachment" : "Nahrát přílohu",
|
||||
"Add this attachment" : "Přidat tuto přílohu",
|
||||
@@ -200,7 +200,6 @@
|
||||
"Edit description" : "Upravit popis",
|
||||
"View description" : "Zobrazit popis",
|
||||
"Add Attachment" : "Přidat přílohu",
|
||||
"Write a description …" : "Zadejte popis…",
|
||||
"Choose attachment" : "Zvolte přílohu",
|
||||
"(group)" : "(skupina)",
|
||||
"(circle)" : "(okruh)",
|
||||
@@ -217,24 +216,14 @@
|
||||
"All boards" : "Všechny tabule",
|
||||
"Archived boards" : "Archivované tabule",
|
||||
"Shared with you" : "Sdíleno s vámi",
|
||||
"Use modal card view" : "Použít modální zobrazení karty",
|
||||
"Show boards in calendar/tasks" : "Zobrazit tabule v kalendáři/úkolech",
|
||||
"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",
|
||||
"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?",
|
||||
|
||||
@@ -14,6 +14,7 @@ OC.L10N.register(
|
||||
"Can share" : "Can share",
|
||||
"Delete" : "Dileu",
|
||||
"Edit" : "Golygu",
|
||||
"Title" : "Teitl",
|
||||
"Upload attachment" : "Llwytho atodiad",
|
||||
"Modified" : "Addaswyd",
|
||||
"Select Date" : "Dewis Dyddiad",
|
||||
|
||||
@@ -12,6 +12,7 @@
|
||||
"Can share" : "Can share",
|
||||
"Delete" : "Dileu",
|
||||
"Edit" : "Golygu",
|
||||
"Title" : "Teitl",
|
||||
"Upload attachment" : "Llwytho atodiad",
|
||||
"Modified" : "Addaswyd",
|
||||
"Select Date" : "Dewis Dyddiad",
|
||||
|
||||
@@ -34,6 +34,7 @@ OC.L10N.register(
|
||||
"Delete list" : "Slet liste",
|
||||
"Add card" : "Tilføj kort",
|
||||
"Edit" : "Redigér",
|
||||
"Title" : "Titel",
|
||||
"Members" : "Medlemmer",
|
||||
"Upload attachment" : "Upload vedhæftning",
|
||||
"Attachments" : "Vedhæftede filer",
|
||||
|
||||
@@ -32,6 +32,7 @@
|
||||
"Delete list" : "Slet liste",
|
||||
"Add card" : "Tilføj kort",
|
||||
"Edit" : "Redigér",
|
||||
"Title" : "Titel",
|
||||
"Members" : "Medlemmer",
|
||||
"Upload attachment" : "Upload vedhæftning",
|
||||
"Attachments" : "Vedhæftede filer",
|
||||
|
||||
13
l10n/de.js
13
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",
|
||||
@@ -99,7 +99,7 @@ OC.L10N.register(
|
||||
"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",
|
||||
"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",
|
||||
@@ -167,7 +167,7 @@ OC.L10N.register(
|
||||
"Edit" : "Bearbeiten",
|
||||
"Add a new tag" : "Neues Schlagwort hinzufügen",
|
||||
"title and color value must be provided" : "Titel und Farbwert müssen angegeben werden",
|
||||
"Board name" : "Boardname",
|
||||
"Title" : "Titel",
|
||||
"Members" : "Mitglieder",
|
||||
"Upload attachment" : "Anhang hochladen",
|
||||
"Add this attachment" : "Diesen Anhang anhängen",
|
||||
@@ -202,7 +202,6 @@ OC.L10N.register(
|
||||
"Edit description" : "Beschreibung bearbeiten",
|
||||
"View description" : "Beschreibung anzeigen",
|
||||
"Add Attachment" : "Anhang anhängen",
|
||||
"Write a description …" : "Beschreibung schreiben …",
|
||||
"Choose attachment" : "Anhang auswählen",
|
||||
"(group)" : "(Gruppe)",
|
||||
"(circle)" : "(Kreis)",
|
||||
@@ -219,10 +218,11 @@ OC.L10N.register(
|
||||
"All boards" : "Alle Boards",
|
||||
"Archived boards" : "Archivierte Boards",
|
||||
"Shared with you" : "Mit Dir geteilt",
|
||||
"Use bigger card view" : "Größere Kartenansicht verwenden",
|
||||
"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." : "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.",
|
||||
"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" : "Boardname",
|
||||
"Board details" : "Board-Details",
|
||||
"Edit board" : "Board bearbeiten",
|
||||
"Clone board" : "Board klonen",
|
||||
@@ -251,7 +251,6 @@ OC.L10N.register(
|
||||
"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);");
|
||||
|
||||
13
l10n/de.json
13
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",
|
||||
@@ -97,7 +97,7 @@
|
||||
"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",
|
||||
"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",
|
||||
@@ -165,7 +165,7 @@
|
||||
"Edit" : "Bearbeiten",
|
||||
"Add a new tag" : "Neues Schlagwort hinzufügen",
|
||||
"title and color value must be provided" : "Titel und Farbwert müssen angegeben werden",
|
||||
"Board name" : "Boardname",
|
||||
"Title" : "Titel",
|
||||
"Members" : "Mitglieder",
|
||||
"Upload attachment" : "Anhang hochladen",
|
||||
"Add this attachment" : "Diesen Anhang anhängen",
|
||||
@@ -200,7 +200,6 @@
|
||||
"Edit description" : "Beschreibung bearbeiten",
|
||||
"View description" : "Beschreibung anzeigen",
|
||||
"Add Attachment" : "Anhang anhängen",
|
||||
"Write a description …" : "Beschreibung schreiben …",
|
||||
"Choose attachment" : "Anhang auswählen",
|
||||
"(group)" : "(Gruppe)",
|
||||
"(circle)" : "(Kreis)",
|
||||
@@ -217,10 +216,11 @@
|
||||
"All boards" : "Alle Boards",
|
||||
"Archived boards" : "Archivierte Boards",
|
||||
"Shared with you" : "Mit Dir geteilt",
|
||||
"Use bigger card view" : "Größere Kartenansicht verwenden",
|
||||
"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." : "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.",
|
||||
"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" : "Boardname",
|
||||
"Board details" : "Board-Details",
|
||||
"Edit board" : "Board bearbeiten",
|
||||
"Clone board" : "Board klonen",
|
||||
@@ -249,7 +249,6 @@
|
||||
"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);"
|
||||
}
|
||||
@@ -26,7 +26,7 @@ OC.L10N.register(
|
||||
"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",
|
||||
@@ -99,7 +99,7 @@ OC.L10N.register(
|
||||
"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",
|
||||
"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",
|
||||
@@ -167,7 +167,7 @@ OC.L10N.register(
|
||||
"Edit" : "Bearbeiten",
|
||||
"Add a new tag" : "Neues Schlagwort hinzufügen",
|
||||
"title and color value must be provided" : "Titel und Farbwert müssen angegeben werden",
|
||||
"Board name" : "Boardname",
|
||||
"Title" : "Titel",
|
||||
"Members" : "Mitglieder",
|
||||
"Upload attachment" : "Anhang hochladen",
|
||||
"Add this attachment" : "Diesen Anhang anhängen",
|
||||
@@ -202,7 +202,6 @@ OC.L10N.register(
|
||||
"Edit description" : "Beschreibung bearbeiten",
|
||||
"View description" : "Beschreibung anzeigen",
|
||||
"Add Attachment" : "Anhang anhängen",
|
||||
"Write a description …" : "Beschreibung schreiben …",
|
||||
"Choose attachment" : "Anhang auswählen",
|
||||
"(group)" : "(Gruppe)",
|
||||
"(circle)" : "(Kreis)",
|
||||
@@ -219,10 +218,11 @@ OC.L10N.register(
|
||||
"All boards" : "Alle Boards",
|
||||
"Archived boards" : "Archivierte Boards",
|
||||
"Shared with you" : "Mit Ihnen geteilt",
|
||||
"Use bigger card view" : "Größere Kartenansicht verwenden",
|
||||
"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.",
|
||||
"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" : "Boardname",
|
||||
"Board details" : "Board-Details",
|
||||
"Edit board" : "Board bearbeiten",
|
||||
"Clone board" : "Board klonen",
|
||||
@@ -251,7 +251,6 @@ OC.L10N.register(
|
||||
"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);");
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
"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",
|
||||
@@ -97,7 +97,7 @@
|
||||
"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",
|
||||
"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",
|
||||
@@ -165,7 +165,7 @@
|
||||
"Edit" : "Bearbeiten",
|
||||
"Add a new tag" : "Neues Schlagwort hinzufügen",
|
||||
"title and color value must be provided" : "Titel und Farbwert müssen angegeben werden",
|
||||
"Board name" : "Boardname",
|
||||
"Title" : "Titel",
|
||||
"Members" : "Mitglieder",
|
||||
"Upload attachment" : "Anhang hochladen",
|
||||
"Add this attachment" : "Diesen Anhang anhängen",
|
||||
@@ -200,7 +200,6 @@
|
||||
"Edit description" : "Beschreibung bearbeiten",
|
||||
"View description" : "Beschreibung anzeigen",
|
||||
"Add Attachment" : "Anhang anhängen",
|
||||
"Write a description …" : "Beschreibung schreiben …",
|
||||
"Choose attachment" : "Anhang auswählen",
|
||||
"(group)" : "(Gruppe)",
|
||||
"(circle)" : "(Kreis)",
|
||||
@@ -217,10 +216,11 @@
|
||||
"All boards" : "Alle Boards",
|
||||
"Archived boards" : "Archivierte Boards",
|
||||
"Shared with you" : "Mit Ihnen geteilt",
|
||||
"Use bigger card view" : "Größere Kartenansicht verwenden",
|
||||
"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.",
|
||||
"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" : "Boardname",
|
||||
"Board details" : "Board-Details",
|
||||
"Edit board" : "Board bearbeiten",
|
||||
"Clone board" : "Board klonen",
|
||||
@@ -249,7 +249,6 @@
|
||||
"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);"
|
||||
}
|
||||
@@ -161,6 +161,7 @@ OC.L10N.register(
|
||||
"Edit" : "Επεξεργασία",
|
||||
"Add a new tag" : "Προσθήκη νέας ετικέτας",
|
||||
"title and color value must be provided" : "ο τίτλος και η τιμή χρώματος πρέπει να παρέχονται",
|
||||
"Title" : "Τίτλος",
|
||||
"Members" : "Μέλη",
|
||||
"Upload attachment" : "Μεταφόρτωση συνημμένων",
|
||||
"Add this attachment" : "Προσθήκη αυτού του συνημμένου",
|
||||
|
||||
@@ -159,6 +159,7 @@
|
||||
"Edit" : "Επεξεργασία",
|
||||
"Add a new tag" : "Προσθήκη νέας ετικέτας",
|
||||
"title and color value must be provided" : "ο τίτλος και η τιμή χρώματος πρέπει να παρέχονται",
|
||||
"Title" : "Τίτλος",
|
||||
"Members" : "Μέλη",
|
||||
"Upload attachment" : "Μεταφόρτωση συνημμένων",
|
||||
"Add this attachment" : "Προσθήκη αυτού του συνημμένου",
|
||||
|
||||
@@ -35,6 +35,7 @@ OC.L10N.register(
|
||||
"Delete" : "Delete",
|
||||
"Add card" : "Add card",
|
||||
"Edit" : "Edit",
|
||||
"Title" : "Title",
|
||||
"Members" : "Members",
|
||||
"Upload attachment" : "Upload attachment",
|
||||
"Attachments" : "Attachments",
|
||||
|
||||
@@ -33,6 +33,7 @@
|
||||
"Delete" : "Delete",
|
||||
"Add card" : "Add card",
|
||||
"Edit" : "Edit",
|
||||
"Title" : "Title",
|
||||
"Members" : "Members",
|
||||
"Upload attachment" : "Upload attachment",
|
||||
"Attachments" : "Attachments",
|
||||
|
||||
@@ -94,6 +94,7 @@ OC.L10N.register(
|
||||
"Delete" : "Forigi",
|
||||
"Add card" : "Aldoni karton",
|
||||
"Edit" : "Redakti",
|
||||
"Title" : "Titolo",
|
||||
"Members" : "Membroj",
|
||||
"Upload attachment" : "Alŝuti dosieran aldonaĵon",
|
||||
"Attachments" : "Dosieraj aldonaĵoj",
|
||||
|
||||
@@ -92,6 +92,7 @@
|
||||
"Delete" : "Forigi",
|
||||
"Add card" : "Aldoni karton",
|
||||
"Edit" : "Redakti",
|
||||
"Title" : "Titolo",
|
||||
"Members" : "Membroj",
|
||||
"Upload attachment" : "Alŝuti dosieran aldonaĵon",
|
||||
"Attachments" : "Dosieraj aldonaĵoj",
|
||||
|
||||
18
l10n/es.js
18
l10n/es.js
@@ -167,7 +167,7 @@ OC.L10N.register(
|
||||
"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 ",
|
||||
"Board name" : "Nombre del tablero",
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Subir adjunto",
|
||||
"Add this attachment" : "Añadir este adjunto",
|
||||
@@ -202,7 +202,6 @@ 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...",
|
||||
"Choose attachment" : "Escoger adjunto",
|
||||
"(group)" : "(grupo)",
|
||||
"(circle)" : "(circle)",
|
||||
@@ -219,24 +218,14 @@ OC.L10N.register(
|
||||
"All boards" : "Todos los tableros",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Shared with you" : "Compartido contigo",
|
||||
"Use modal card view" : "Usar vista de tarjeta modal",
|
||||
"Show boards in calendar/tasks" : "Mostrar tableros en calendario/tareas",
|
||||
"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",
|
||||
"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?",
|
||||
@@ -250,7 +239,6 @@ OC.L10N.register(
|
||||
"Link to a board" : "Enlace a un tablero",
|
||||
"Link to a card" : "Enlace a una tarjeta",
|
||||
"Something went wrong" : "Algo ha ido mal",
|
||||
"Failed to upload {name}" : "Error al subir {name}",
|
||||
"Maximum file size of {size} exceeded" : "Tamaño máximo de archivo de {size} excedido"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
18
l10n/es.json
18
l10n/es.json
@@ -165,7 +165,7 @@
|
||||
"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 ",
|
||||
"Board name" : "Nombre del tablero",
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Subir adjunto",
|
||||
"Add this attachment" : "Añadir este adjunto",
|
||||
@@ -200,7 +200,6 @@
|
||||
"Edit description" : "Editar descripción",
|
||||
"View description" : "Ver descripción",
|
||||
"Add Attachment" : "Añadir adjunto",
|
||||
"Write a description …" : "Escribe una descripción...",
|
||||
"Choose attachment" : "Escoger adjunto",
|
||||
"(group)" : "(grupo)",
|
||||
"(circle)" : "(circle)",
|
||||
@@ -217,24 +216,14 @@
|
||||
"All boards" : "Todos los tableros",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Shared with you" : "Compartido contigo",
|
||||
"Use modal card view" : "Usar vista de tarjeta modal",
|
||||
"Show boards in calendar/tasks" : "Mostrar tableros en calendario/tareas",
|
||||
"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",
|
||||
"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?",
|
||||
@@ -248,7 +237,6 @@
|
||||
"Link to a board" : "Enlace a un tablero",
|
||||
"Link to a card" : "Enlace a una tarjeta",
|
||||
"Something went wrong" : "Algo ha ido mal",
|
||||
"Failed to upload {name}" : "Error al subir {name}",
|
||||
"Maximum file size of {size} exceeded" : "Tamaño máximo de archivo de {size} excedido"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
@@ -30,6 +30,7 @@ OC.L10N.register(
|
||||
"Delete" : "Borrar",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Edit" : "Editar",
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Comments" : "Comentarios",
|
||||
|
||||
@@ -28,6 +28,7 @@
|
||||
"Delete" : "Borrar",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Edit" : "Editar",
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Comments" : "Comentarios",
|
||||
|
||||
@@ -23,6 +23,7 @@ OC.L10N.register(
|
||||
"Can share" : "Puede compartir",
|
||||
"Delete" : "Eliminar",
|
||||
"Edit" : "Editar",
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Attachments" : "Adjuntos",
|
||||
"Comments" : "Comentarios",
|
||||
|
||||
@@ -21,6 +21,7 @@
|
||||
"Can share" : "Puede compartir",
|
||||
"Delete" : "Eliminar",
|
||||
"Edit" : "Editar",
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Attachments" : "Adjuntos",
|
||||
"Comments" : "Comentarios",
|
||||
|
||||
@@ -33,6 +33,7 @@ OC.L10N.register(
|
||||
"Delete" : "Borrar",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Edit" : "Editar",
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Comments" : "Comentarios",
|
||||
|
||||
@@ -31,6 +31,7 @@
|
||||
"Delete" : "Borrar",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Edit" : "Editar",
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Comments" : "Comentarios",
|
||||
|
||||
@@ -34,6 +34,7 @@ OC.L10N.register(
|
||||
"Delete" : "Borrar",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Edit" : "Editar",
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Comments" : "Comentarios",
|
||||
|
||||
@@ -32,6 +32,7 @@
|
||||
"Delete" : "Borrar",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Edit" : "Editar",
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Comments" : "Comentarios",
|
||||
|
||||
@@ -33,6 +33,7 @@ OC.L10N.register(
|
||||
"Delete" : "Borrar",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Edit" : "Editar",
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Comments" : "Comentarios",
|
||||
|
||||
@@ -31,6 +31,7 @@
|
||||
"Delete" : "Borrar",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Edit" : "Editar",
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Comments" : "Comentarios",
|
||||
|
||||
@@ -33,6 +33,7 @@ OC.L10N.register(
|
||||
"Delete" : "Borrar",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Edit" : "Editar",
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Comments" : "Comentarios",
|
||||
|
||||
@@ -31,6 +31,7 @@
|
||||
"Delete" : "Borrar",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Edit" : "Editar",
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Comments" : "Comentarios",
|
||||
|
||||
@@ -33,6 +33,7 @@ OC.L10N.register(
|
||||
"Delete" : "Borrar",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Edit" : "Editar",
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Comments" : "Comentarios",
|
||||
|
||||
@@ -31,6 +31,7 @@
|
||||
"Delete" : "Borrar",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Edit" : "Editar",
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Comments" : "Comentarios",
|
||||
|
||||
@@ -33,6 +33,7 @@ OC.L10N.register(
|
||||
"Delete" : "Borrar",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Edit" : "Editar",
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Comments" : "Comentarios",
|
||||
|
||||
@@ -31,6 +31,7 @@
|
||||
"Delete" : "Borrar",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Edit" : "Editar",
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Comments" : "Comentarios",
|
||||
|
||||
@@ -29,6 +29,7 @@ OC.L10N.register(
|
||||
"Delete" : "Borrar",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Edit" : "Editar",
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Comments" : "Comentarios",
|
||||
|
||||
@@ -27,6 +27,7 @@
|
||||
"Delete" : "Borrar",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Edit" : "Editar",
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Comments" : "Comentarios",
|
||||
|
||||
@@ -34,6 +34,7 @@ OC.L10N.register(
|
||||
"Delete" : "Borrar",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Edit" : "Editar",
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Attachments" : "Adjuntos",
|
||||
|
||||
@@ -32,6 +32,7 @@
|
||||
"Delete" : "Borrar",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Edit" : "Editar",
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Attachments" : "Adjuntos",
|
||||
|
||||
@@ -29,6 +29,7 @@ OC.L10N.register(
|
||||
"Delete" : "Borrar",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Edit" : "Editar",
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Comments" : "Comentarios",
|
||||
|
||||
@@ -27,6 +27,7 @@
|
||||
"Delete" : "Borrar",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Edit" : "Editar",
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Comments" : "Comentarios",
|
||||
|
||||
@@ -29,6 +29,7 @@ OC.L10N.register(
|
||||
"Delete" : "Borrar",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Edit" : "Editar",
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Comments" : "Comentarios",
|
||||
|
||||
@@ -27,6 +27,7 @@
|
||||
"Delete" : "Borrar",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Edit" : "Editar",
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Comments" : "Comentarios",
|
||||
|
||||
@@ -29,6 +29,7 @@ OC.L10N.register(
|
||||
"Delete" : "Borrar",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Edit" : "Editar",
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Comments" : "Comentarios",
|
||||
|
||||
@@ -27,6 +27,7 @@
|
||||
"Delete" : "Borrar",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Edit" : "Editar",
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Comments" : "Comentarios",
|
||||
|
||||
@@ -29,6 +29,7 @@ OC.L10N.register(
|
||||
"Delete" : "Borrar",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Edit" : "Editar",
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Comments" : "Comentarios",
|
||||
|
||||
@@ -27,6 +27,7 @@
|
||||
"Delete" : "Borrar",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Edit" : "Editar",
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Comments" : "Comentarios",
|
||||
|
||||
@@ -30,6 +30,7 @@ OC.L10N.register(
|
||||
"Delete" : "Borrar",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Edit" : "Editar",
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Comments" : "Comentarios",
|
||||
|
||||
@@ -28,6 +28,7 @@
|
||||
"Delete" : "Borrar",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Edit" : "Editar",
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Comments" : "Comentarios",
|
||||
|
||||
@@ -33,6 +33,7 @@ OC.L10N.register(
|
||||
"Delete" : "Borrar",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Edit" : "Editar",
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Comments" : "Comentarios",
|
||||
|
||||
@@ -31,6 +31,7 @@
|
||||
"Delete" : "Borrar",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Edit" : "Editar",
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Comments" : "Comentarios",
|
||||
|
||||
@@ -29,6 +29,7 @@ OC.L10N.register(
|
||||
"Delete" : "Borrar",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Edit" : "Editar",
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Comments" : "Comentarios",
|
||||
|
||||
@@ -27,6 +27,7 @@
|
||||
"Delete" : "Borrar",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Edit" : "Editar",
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Comments" : "Comentarios",
|
||||
|
||||
@@ -17,6 +17,7 @@ OC.L10N.register(
|
||||
"Can share" : "Can share",
|
||||
"Delete" : "Kustuta",
|
||||
"Edit" : "Redigeeri",
|
||||
"Title" : "Pealkiri",
|
||||
"Comments" : "Kommentaarid",
|
||||
"Modified" : "Muudetud",
|
||||
"Created" : "Loodud",
|
||||
|
||||
@@ -15,6 +15,7 @@
|
||||
"Can share" : "Can share",
|
||||
"Delete" : "Kustuta",
|
||||
"Edit" : "Redigeeri",
|
||||
"Title" : "Pealkiri",
|
||||
"Comments" : "Kommentaarid",
|
||||
"Modified" : "Muudetud",
|
||||
"Created" : "Loodud",
|
||||
|
||||
@@ -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",
|
||||
@@ -165,7 +162,7 @@ OC.L10N.register(
|
||||
"Edit" : "Editatu",
|
||||
"Add a new tag" : "Gehitu etiketa berri bat",
|
||||
"title and color value must be provided" : "izenburu eta kolore balioak hornitu behar dira",
|
||||
"Board name" : "Mahaiaren izena",
|
||||
"Title" : "Izenburua",
|
||||
"Members" : "Partaideak",
|
||||
"Upload attachment" : "Igo eranskina",
|
||||
"Add this attachment" : "Gehitu eranskin hau",
|
||||
@@ -216,10 +213,10 @@ OC.L10N.register(
|
||||
"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",
|
||||
"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?",
|
||||
|
||||
@@ -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",
|
||||
@@ -163,7 +160,7 @@
|
||||
"Edit" : "Editatu",
|
||||
"Add a new tag" : "Gehitu etiketa berri bat",
|
||||
"title and color value must be provided" : "izenburu eta kolore balioak hornitu behar dira",
|
||||
"Board name" : "Mahaiaren izena",
|
||||
"Title" : "Izenburua",
|
||||
"Members" : "Partaideak",
|
||||
"Upload attachment" : "Igo eranskina",
|
||||
"Add this attachment" : "Gehitu eranskin hau",
|
||||
@@ -214,10 +211,10 @@
|
||||
"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",
|
||||
"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?",
|
||||
|
||||
@@ -91,6 +91,7 @@ OC.L10N.register(
|
||||
"Edit" : "ویرایش",
|
||||
"Add a new tag" : "افزودن یک برچسب جدید",
|
||||
"title and color value must be provided" : "نام و رنگ باید مشخص شود",
|
||||
"Title" : "عنوان",
|
||||
"Members" : "اعضا",
|
||||
"Upload attachment" : "بارگذاری پیوست",
|
||||
"Add this attachment" : "افزودن این پیوست",
|
||||
|
||||
@@ -89,6 +89,7 @@
|
||||
"Edit" : "ویرایش",
|
||||
"Add a new tag" : "افزودن یک برچسب جدید",
|
||||
"title and color value must be provided" : "نام و رنگ باید مشخص شود",
|
||||
"Title" : "عنوان",
|
||||
"Members" : "اعضا",
|
||||
"Upload attachment" : "بارگذاری پیوست",
|
||||
"Add this attachment" : "افزودن این پیوست",
|
||||
|
||||
33
l10n/fi.js
33
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\".",
|
||||
@@ -119,18 +105,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,18 +120,15 @@ 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",
|
||||
"Board name" : "Taulun nimi",
|
||||
"Title" : "Otsikko",
|
||||
"Members" : "Jäsenet",
|
||||
"Upload attachment" : "Lähetä liite",
|
||||
"Add this attachment" : "Lisää tämä liite",
|
||||
@@ -182,9 +161,6 @@ OC.L10N.register(
|
||||
"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",
|
||||
"seconds ago" : "sekuntia sitten",
|
||||
"All boards" : "Kaikki taulut",
|
||||
"Archived boards" : "Arkistoidut taulut",
|
||||
@@ -192,19 +168,12 @@ OC.L10N.register(
|
||||
"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 details" : "Taulun tiedot",
|
||||
"Edit board" : "Muokkaa taulua",
|
||||
"Clone board" : "Monista taulu",
|
||||
"All cards" : "Kaikki kortit",
|
||||
"No notifications" : "Ei ilmoituksia",
|
||||
"Delete board" : "Poista taulu",
|
||||
"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",
|
||||
|
||||
33
l10n/fi.json
33
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\".",
|
||||
@@ -117,18 +103,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,18 +118,15 @@
|
||||
"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",
|
||||
"Board name" : "Taulun nimi",
|
||||
"Title" : "Otsikko",
|
||||
"Members" : "Jäsenet",
|
||||
"Upload attachment" : "Lähetä liite",
|
||||
"Add this attachment" : "Lisää tämä liite",
|
||||
@@ -180,9 +159,6 @@
|
||||
"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",
|
||||
"seconds ago" : "sekuntia sitten",
|
||||
"All boards" : "Kaikki taulut",
|
||||
"Archived boards" : "Arkistoidut taulut",
|
||||
@@ -190,19 +166,12 @@
|
||||
"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 details" : "Taulun tiedot",
|
||||
"Edit board" : "Muokkaa taulua",
|
||||
"Clone board" : "Monista taulu",
|
||||
"All cards" : "Kaikki kortit",
|
||||
"No notifications" : "Ei ilmoituksia",
|
||||
"Delete board" : "Poista taulu",
|
||||
"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",
|
||||
|
||||
13
l10n/fr.js
13
l10n/fr.js
@@ -167,7 +167,7 @@ OC.L10N.register(
|
||||
"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",
|
||||
"Board name" : "Nom du tableau",
|
||||
"Title" : "Titre",
|
||||
"Members" : "Membres",
|
||||
"Upload attachment" : "Envoyer une pièce jointe",
|
||||
"Add this attachment" : "Ajouter cette pièce jointe",
|
||||
@@ -202,7 +202,6 @@ 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 ...",
|
||||
"Choose attachment" : "Choisir une pièce jointe",
|
||||
"(group)" : "(groupe)",
|
||||
"(circle)" : "(cercle)",
|
||||
@@ -219,24 +218,19 @@ OC.L10N.register(
|
||||
"All boards" : "Tous les tableaux",
|
||||
"Archived boards" : "Tableaux archivés",
|
||||
"Shared with you" : "Partagés avec vous",
|
||||
"Use bigger card view" : "Utiliser la vue large des cartes",
|
||||
"Use modal card view" : "Utiliser la vue modale",
|
||||
"Show boards in calendar/tasks" : "Afficher les tableaux dans les agendas/tâches",
|
||||
"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",
|
||||
"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.",
|
||||
@@ -251,7 +245,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);");
|
||||
|
||||
13
l10n/fr.json
13
l10n/fr.json
@@ -165,7 +165,7 @@
|
||||
"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",
|
||||
"Board name" : "Nom du tableau",
|
||||
"Title" : "Titre",
|
||||
"Members" : "Membres",
|
||||
"Upload attachment" : "Envoyer une pièce jointe",
|
||||
"Add this attachment" : "Ajouter cette pièce jointe",
|
||||
@@ -200,7 +200,6 @@
|
||||
"Edit description" : "Modifier la description",
|
||||
"View description" : "Afficher la description",
|
||||
"Add Attachment" : "Ajouter une pièce jointe",
|
||||
"Write a description …" : "Écrire une description ...",
|
||||
"Choose attachment" : "Choisir une pièce jointe",
|
||||
"(group)" : "(groupe)",
|
||||
"(circle)" : "(cercle)",
|
||||
@@ -217,24 +216,19 @@
|
||||
"All boards" : "Tous les tableaux",
|
||||
"Archived boards" : "Tableaux archivés",
|
||||
"Shared with you" : "Partagés avec vous",
|
||||
"Use bigger card view" : "Utiliser la vue large des cartes",
|
||||
"Use modal card view" : "Utiliser la vue modale",
|
||||
"Show boards in calendar/tasks" : "Afficher les tableaux dans les agendas/tâches",
|
||||
"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",
|
||||
"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.",
|
||||
@@ -249,7 +243,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);"
|
||||
}
|
||||
19
l10n/gl.js
19
l10n/gl.js
@@ -167,7 +167,7 @@ OC.L10N.register(
|
||||
"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",
|
||||
"Board name" : "Nome do taboleiro",
|
||||
"Title" : "Título",
|
||||
"Members" : "Membros",
|
||||
"Upload attachment" : "Enviar anexos",
|
||||
"Add this attachment" : "Engadir este anexo",
|
||||
@@ -202,7 +202,6 @@ 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…",
|
||||
"Choose attachment" : "Escoller o anexo",
|
||||
"(group)" : "(grupo)",
|
||||
"(circle)" : "(círculo)",
|
||||
@@ -219,25 +218,14 @@ OC.L10N.register(
|
||||
"All boards" : "Todos os taboleiros",
|
||||
"Archived boards" : "Taboleiros arquivados",
|
||||
"Shared with you" : "Compartido con vostede",
|
||||
"Use bigger card view" : "Usa a vista de tarxeta máis grande",
|
||||
"Use modal card view" : "Usar a vista de tarxeta modal",
|
||||
"Show boards in calendar/tasks" : "Amosar taboleiros no calendario/tarefas",
|
||||
"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",
|
||||
"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?",
|
||||
@@ -251,7 +239,6 @@ OC.L10N.register(
|
||||
"Link to a board" : "Ligar a un taboleiro",
|
||||
"Link to a card" : "Ligar a unha tarxeta",
|
||||
"Something went wrong" : "Algo foi mal",
|
||||
"Failed to upload {name}" : "Produciuse un fallo ao actualizar {name}",
|
||||
"Maximum file size of {size} exceeded" : "Excedeuse o tamaño máximo de ficheiro de {size}"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
19
l10n/gl.json
19
l10n/gl.json
@@ -165,7 +165,7 @@
|
||||
"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",
|
||||
"Board name" : "Nome do taboleiro",
|
||||
"Title" : "Título",
|
||||
"Members" : "Membros",
|
||||
"Upload attachment" : "Enviar anexos",
|
||||
"Add this attachment" : "Engadir este anexo",
|
||||
@@ -200,7 +200,6 @@
|
||||
"Edit description" : "Editar a descrición",
|
||||
"View description" : "Ver a descrición",
|
||||
"Add Attachment" : "Engadir o anexo",
|
||||
"Write a description …" : "Escriba unha descrición…",
|
||||
"Choose attachment" : "Escoller o anexo",
|
||||
"(group)" : "(grupo)",
|
||||
"(circle)" : "(círculo)",
|
||||
@@ -217,25 +216,14 @@
|
||||
"All boards" : "Todos os taboleiros",
|
||||
"Archived boards" : "Taboleiros arquivados",
|
||||
"Shared with you" : "Compartido con vostede",
|
||||
"Use bigger card view" : "Usa a vista de tarxeta máis grande",
|
||||
"Use modal card view" : "Usar a vista de tarxeta modal",
|
||||
"Show boards in calendar/tasks" : "Amosar taboleiros no calendario/tarefas",
|
||||
"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",
|
||||
"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?",
|
||||
@@ -249,7 +237,6 @@
|
||||
"Link to a board" : "Ligar a un taboleiro",
|
||||
"Link to a card" : "Ligar a unha tarxeta",
|
||||
"Something went wrong" : "Algo foi mal",
|
||||
"Failed to upload {name}" : "Produciuse un fallo ao actualizar {name}",
|
||||
"Maximum file size of {size} exceeded" : "Excedeuse o tamaño máximo de ficheiro de {size}"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
86
l10n/he.js
86
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,37 +106,28 @@ 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" : "יש לספק כותרת וערך צבע",
|
||||
"Board name" : "שם הלוח",
|
||||
"Title" : "תפקיד",
|
||||
"Members" : "חברים",
|
||||
"Upload attachment" : "העלאת קבצים מצורפים",
|
||||
"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" : "בחירת תאריך",
|
||||
@@ -195,62 +137,40 @@ OC.L10N.register(
|
||||
"In reply to" : "בתגובה אל",
|
||||
"Reply" : "תגובה",
|
||||
"Update" : "עדכון",
|
||||
"Description" : "תיאור",
|
||||
"Description" : "תיאוג",
|
||||
"(Unsaved)" : "(לא נשמר)",
|
||||
"(Saving…)" : "(מתבצעת שמירה…)",
|
||||
"Formatting help" : "עזרה בסידור בתבנית",
|
||||
"Edit description" : "עריכת תיאור",
|
||||
"View description" : "הצגת תיאור",
|
||||
"Add Attachment" : "הוספת קובץ מצורף",
|
||||
"Write a description …" : "כתוב תיאור ...",
|
||||
"Choose attachment" : "בחירת קובץ מצורף",
|
||||
"(group)" : "(קבוצה)",
|
||||
"(circle)" : "(מעגל)",
|
||||
"Assign to me" : "הקצאה אלי",
|
||||
"Unassign myself" : "לבטל את הקצאת עצמי",
|
||||
"Move card" : "העברת כרטיס",
|
||||
"Unarchive card" : "הוצאת הכרטיס מהארכיון",
|
||||
"Archive card" : "העברת כרטיס לארכיון",
|
||||
"Delete card" : "מחיקת כרטיס לארכיון",
|
||||
"Move card to another board" : "העברת כרטיס ללוח אחר",
|
||||
"Select a list" : "בחר רשימה",
|
||||
"Card deleted" : "הכרטיס נמחק",
|
||||
"seconds ago" : "לפני מספר שניות",
|
||||
"All boards" : "כל הלוחות",
|
||||
"Archived boards" : "לוחות שנשמרו בארכיון",
|
||||
"Shared with you" : "משותף אתך",
|
||||
"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 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" : "מחק לוח",
|
||||
"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;");
|
||||
|
||||
86
l10n/he.json
86
l10n/he.json
@@ -15,57 +15,14 @@
|
||||
"{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}.",
|
||||
@@ -96,7 +53,6 @@
|
||||
"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" : "נא לבחור את הלוח לקישור למיזם",
|
||||
@@ -120,7 +76,6 @@
|
||||
"Apply filter" : "החלת מסנן",
|
||||
"Filter by tag" : "סינון לפי תגית",
|
||||
"Filter by assigned user" : "סינון לפי משתמש מוקצה",
|
||||
"Unassigned" : "לא הוקצה",
|
||||
"Filter by due date" : "סינון לפי תאריך יעד",
|
||||
"Overdue" : "באיחור",
|
||||
"Next 24 hours" : "ב־24 השעות הבאות",
|
||||
@@ -133,8 +88,6 @@
|
||||
"Toggle compact mode" : "החלפת מצב חסכוני",
|
||||
"Details" : "פרטים",
|
||||
"Loading board" : "הלוח נטען",
|
||||
"No lists available" : "אין רשימות זמינות",
|
||||
"Create a new list to add cards to this board" : "צור רשימה חדשה כדי להוסיף כרטיסים ללוח זה",
|
||||
"Board not found" : "הלוח לא נמצא",
|
||||
"Sharing" : "שיתוף",
|
||||
"Tags" : "תגיות",
|
||||
@@ -144,8 +97,6 @@
|
||||
"Undo" : "ביטול",
|
||||
"Deleted cards" : "כרטיסים שנמחקו",
|
||||
"Share board with a user, group or circle …" : "שיתוף לוח עם משתמש, קבוצה או מעגל…",
|
||||
"Searching for users, groups and circles …" : "מחפש משתמשים, קבוצות, ומעגלים ...",
|
||||
"No participants found" : "לא נמצאו משתתפים",
|
||||
"Board owner" : "בעלות על הלוח",
|
||||
"(Group)" : "(קבוצה)",
|
||||
"(Circle)" : "(מעגל)",
|
||||
@@ -153,37 +104,28 @@
|
||||
"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" : "יש לספק כותרת וערך צבע",
|
||||
"Board name" : "שם הלוח",
|
||||
"Title" : "תפקיד",
|
||||
"Members" : "חברים",
|
||||
"Upload attachment" : "העלאת קבצים מצורפים",
|
||||
"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" : "בחירת תאריך",
|
||||
@@ -193,62 +135,40 @@
|
||||
"In reply to" : "בתגובה אל",
|
||||
"Reply" : "תגובה",
|
||||
"Update" : "עדכון",
|
||||
"Description" : "תיאור",
|
||||
"Description" : "תיאוג",
|
||||
"(Unsaved)" : "(לא נשמר)",
|
||||
"(Saving…)" : "(מתבצעת שמירה…)",
|
||||
"Formatting help" : "עזרה בסידור בתבנית",
|
||||
"Edit description" : "עריכת תיאור",
|
||||
"View description" : "הצגת תיאור",
|
||||
"Add Attachment" : "הוספת קובץ מצורף",
|
||||
"Write a description …" : "כתוב תיאור ...",
|
||||
"Choose attachment" : "בחירת קובץ מצורף",
|
||||
"(group)" : "(קבוצה)",
|
||||
"(circle)" : "(מעגל)",
|
||||
"Assign to me" : "הקצאה אלי",
|
||||
"Unassign myself" : "לבטל את הקצאת עצמי",
|
||||
"Move card" : "העברת כרטיס",
|
||||
"Unarchive card" : "הוצאת הכרטיס מהארכיון",
|
||||
"Archive card" : "העברת כרטיס לארכיון",
|
||||
"Delete card" : "מחיקת כרטיס לארכיון",
|
||||
"Move card to another board" : "העברת כרטיס ללוח אחר",
|
||||
"Select a list" : "בחר רשימה",
|
||||
"Card deleted" : "הכרטיס נמחק",
|
||||
"seconds ago" : "לפני מספר שניות",
|
||||
"All boards" : "כל הלוחות",
|
||||
"Archived boards" : "לוחות שנשמרו בארכיון",
|
||||
"Shared with you" : "משותף אתך",
|
||||
"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 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" : "מחק לוח",
|
||||
"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} הושג"
|
||||
},"pluralForm" :"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;"
|
||||
}
|
||||
18
l10n/hr.js
18
l10n/hr.js
@@ -67,7 +67,6 @@ OC.L10N.register(
|
||||
"Deck" : "Deck",
|
||||
"Changes in the <strong>Deck app</strong>" : "Promjene u <strong>aplikaciji Deck</strong>",
|
||||
"A <strong>comment</strong> was created on a card" : "Na kartici je stvoren <strong>komentar</strong>",
|
||||
"Upcoming cards" : "Nadolazeće kartice",
|
||||
"Personal" : "Osobno",
|
||||
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Karticu „%s” na „%s” dodijelio vam je %s.",
|
||||
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} vam je dodijelio karticu „%s” na „%s”.",
|
||||
@@ -146,7 +145,6 @@ OC.L10N.register(
|
||||
"Undo" : "Poništi",
|
||||
"Deleted cards" : "Izbrisane kartice",
|
||||
"Share board with a user, group or circle …" : "Dijelite ploču s korisnikom, grupom ili krugom...",
|
||||
"No participants found" : "Nije pronađen nijedan sudionik",
|
||||
"Board owner" : "Vlasnik ploče",
|
||||
"(Group)" : "(Grupa)",
|
||||
"(Circle)" : "(Krug)",
|
||||
@@ -154,31 +152,23 @@ OC.L10N.register(
|
||||
"Can share" : "Dijeljenje moguće",
|
||||
"Can manage" : "Upravljanje moguće",
|
||||
"Delete" : "Izbriši",
|
||||
"Failed to create share with {displayName}" : "Dijeljenje s {displayName} nije uspjelo",
|
||||
"Add a new list" : "Dodaj novi popis",
|
||||
"Archive all cards" : "Arhiviraj sve kartice",
|
||||
"Delete list" : "Izbriši popis",
|
||||
"Add card" : "Dodaj karticu",
|
||||
"Archive all cards in this list" : "Arhiviraj sve kartice s ovog popisa",
|
||||
"Add a new card" : "Dodaj novu karticu",
|
||||
"Card name" : "Naziv kartice",
|
||||
"List deleted" : "Popis je izbrisan",
|
||||
"Edit" : "Uredi",
|
||||
"Add a new tag" : "Dodaj novu oznaku",
|
||||
"title and color value must be provided" : "potrebno je odabrati naziv i vrijednost boje",
|
||||
"Board name" : "Naziv ploče",
|
||||
"Title" : "Naslov",
|
||||
"Members" : "Članovi",
|
||||
"Upload attachment" : "Otpremi privitak",
|
||||
"Add this attachment" : "Dodajte ovaj privitak",
|
||||
"Delete Attachment" : "Izbriši privitak",
|
||||
"Restore Attachment" : "Vrati privitak",
|
||||
"Open in sidebar view" : "Otvori u bočnom prikazu",
|
||||
"Open in bigger view" : "Otvori u većem prikazu",
|
||||
"Attachments" : "Privici",
|
||||
"Comments" : "Komentari",
|
||||
"Modified" : "Promijenjeno",
|
||||
"Created" : "Stvoreno",
|
||||
"The title cannot be empty." : "Naslov ne može biti prazan.",
|
||||
"No comments yet. Begin the discussion!" : "Nema komentara. Započnite raspravu!",
|
||||
"Assign a tag to this card…" : "Dodijeli oznaku ovoj kartici...",
|
||||
"Assign to users" : "Dodijeli korisnicima",
|
||||
@@ -212,12 +202,10 @@ OC.L10N.register(
|
||||
"Delete card" : "Izbriši karticu",
|
||||
"Move card to another board" : "Premjesti karticu na drugu ploču",
|
||||
"Select a list" : "Odaberi popis",
|
||||
"Card deleted" : "Kartica je izbrisana",
|
||||
"seconds ago" : "prije nekoliko sekundi",
|
||||
"All boards" : "Sve ploče",
|
||||
"Archived boards" : "Arhivirane ploče",
|
||||
"Shared with you" : "Podijeljeno s vama",
|
||||
"Show boards in calendar/tasks" : "Prikaži ploče u kalendaru/zadacima",
|
||||
"Limit deck usage of groups" : "Ograniči uporabu decka grupama",
|
||||
"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." : "Ograničenjem Decka možete spriječiti korisnike koji ne sudjeluju u tim grupama da stvaraju vlastite ploče. Korisnici će i dalje moći raditi na pločama koje su dijeljene s njima.",
|
||||
"Board details" : "Pojedinosti o ploči",
|
||||
@@ -226,13 +214,9 @@ OC.L10N.register(
|
||||
"An error occurred" : "Došlo je do pogreške",
|
||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Jeste li sigurni da želite izbrisati ploču {title}? Time ćete izbrisati sve podatke ploče.",
|
||||
"Delete the board?" : "Želite li izbrisati ploču?",
|
||||
"Loading filtered view" : "Učitavanje filtriranog prikaza",
|
||||
"Today" : "Danas",
|
||||
"Tomorrow" : "Sutra",
|
||||
"This week" : "Ovaj tjedan",
|
||||
"No due" : "Nema nezavršenih",
|
||||
"No upcoming cards" : "Nema nadolazećih kartica",
|
||||
"upcoming cards" : "nadolazeće kartice",
|
||||
"Link to a board" : "Poveznica na ploču",
|
||||
"Link to a card" : "Poveznica na karticu",
|
||||
"Something went wrong" : "Nešto je pošlo po krivu",
|
||||
|
||||
18
l10n/hr.json
18
l10n/hr.json
@@ -65,7 +65,6 @@
|
||||
"Deck" : "Deck",
|
||||
"Changes in the <strong>Deck app</strong>" : "Promjene u <strong>aplikaciji Deck</strong>",
|
||||
"A <strong>comment</strong> was created on a card" : "Na kartici je stvoren <strong>komentar</strong>",
|
||||
"Upcoming cards" : "Nadolazeće kartice",
|
||||
"Personal" : "Osobno",
|
||||
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Karticu „%s” na „%s” dodijelio vam je %s.",
|
||||
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} vam je dodijelio karticu „%s” na „%s”.",
|
||||
@@ -144,7 +143,6 @@
|
||||
"Undo" : "Poništi",
|
||||
"Deleted cards" : "Izbrisane kartice",
|
||||
"Share board with a user, group or circle …" : "Dijelite ploču s korisnikom, grupom ili krugom...",
|
||||
"No participants found" : "Nije pronađen nijedan sudionik",
|
||||
"Board owner" : "Vlasnik ploče",
|
||||
"(Group)" : "(Grupa)",
|
||||
"(Circle)" : "(Krug)",
|
||||
@@ -152,31 +150,23 @@
|
||||
"Can share" : "Dijeljenje moguće",
|
||||
"Can manage" : "Upravljanje moguće",
|
||||
"Delete" : "Izbriši",
|
||||
"Failed to create share with {displayName}" : "Dijeljenje s {displayName} nije uspjelo",
|
||||
"Add a new list" : "Dodaj novi popis",
|
||||
"Archive all cards" : "Arhiviraj sve kartice",
|
||||
"Delete list" : "Izbriši popis",
|
||||
"Add card" : "Dodaj karticu",
|
||||
"Archive all cards in this list" : "Arhiviraj sve kartice s ovog popisa",
|
||||
"Add a new card" : "Dodaj novu karticu",
|
||||
"Card name" : "Naziv kartice",
|
||||
"List deleted" : "Popis je izbrisan",
|
||||
"Edit" : "Uredi",
|
||||
"Add a new tag" : "Dodaj novu oznaku",
|
||||
"title and color value must be provided" : "potrebno je odabrati naziv i vrijednost boje",
|
||||
"Board name" : "Naziv ploče",
|
||||
"Title" : "Naslov",
|
||||
"Members" : "Članovi",
|
||||
"Upload attachment" : "Otpremi privitak",
|
||||
"Add this attachment" : "Dodajte ovaj privitak",
|
||||
"Delete Attachment" : "Izbriši privitak",
|
||||
"Restore Attachment" : "Vrati privitak",
|
||||
"Open in sidebar view" : "Otvori u bočnom prikazu",
|
||||
"Open in bigger view" : "Otvori u većem prikazu",
|
||||
"Attachments" : "Privici",
|
||||
"Comments" : "Komentari",
|
||||
"Modified" : "Promijenjeno",
|
||||
"Created" : "Stvoreno",
|
||||
"The title cannot be empty." : "Naslov ne može biti prazan.",
|
||||
"No comments yet. Begin the discussion!" : "Nema komentara. Započnite raspravu!",
|
||||
"Assign a tag to this card…" : "Dodijeli oznaku ovoj kartici...",
|
||||
"Assign to users" : "Dodijeli korisnicima",
|
||||
@@ -210,12 +200,10 @@
|
||||
"Delete card" : "Izbriši karticu",
|
||||
"Move card to another board" : "Premjesti karticu na drugu ploču",
|
||||
"Select a list" : "Odaberi popis",
|
||||
"Card deleted" : "Kartica je izbrisana",
|
||||
"seconds ago" : "prije nekoliko sekundi",
|
||||
"All boards" : "Sve ploče",
|
||||
"Archived boards" : "Arhivirane ploče",
|
||||
"Shared with you" : "Podijeljeno s vama",
|
||||
"Show boards in calendar/tasks" : "Prikaži ploče u kalendaru/zadacima",
|
||||
"Limit deck usage of groups" : "Ograniči uporabu decka grupama",
|
||||
"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." : "Ograničenjem Decka možete spriječiti korisnike koji ne sudjeluju u tim grupama da stvaraju vlastite ploče. Korisnici će i dalje moći raditi na pločama koje su dijeljene s njima.",
|
||||
"Board details" : "Pojedinosti o ploči",
|
||||
@@ -224,13 +212,9 @@
|
||||
"An error occurred" : "Došlo je do pogreške",
|
||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Jeste li sigurni da želite izbrisati ploču {title}? Time ćete izbrisati sve podatke ploče.",
|
||||
"Delete the board?" : "Želite li izbrisati ploču?",
|
||||
"Loading filtered view" : "Učitavanje filtriranog prikaza",
|
||||
"Today" : "Danas",
|
||||
"Tomorrow" : "Sutra",
|
||||
"This week" : "Ovaj tjedan",
|
||||
"No due" : "Nema nezavršenih",
|
||||
"No upcoming cards" : "Nema nadolazećih kartica",
|
||||
"upcoming cards" : "nadolazeće kartice",
|
||||
"Link to a board" : "Poveznica na ploču",
|
||||
"Link to a card" : "Poveznica na karticu",
|
||||
"Something went wrong" : "Nešto je pošlo po krivu",
|
||||
|
||||
@@ -132,6 +132,7 @@ OC.L10N.register(
|
||||
"Edit" : "Szerkesztés",
|
||||
"Add a new tag" : "Új címke hozzáadása",
|
||||
"title and color value must be provided" : "a cím és szín értékét meg kell adni",
|
||||
"Title" : "Cím",
|
||||
"Members" : "Tagok",
|
||||
"Upload attachment" : "Melléklet feltöltése",
|
||||
"Add this attachment" : "E melléklet hozzáadása",
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user