Compare commits
1 Commits
enh/attach
...
enh/due-da
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d7b64ea17d |
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:
|
on:
|
||||||
pull_request:
|
pull_request:
|
||||||
|
|||||||
2
.github/workflows/appbuild.yml
vendored
2
.github/workflows/appbuild.yml
vendored
@@ -1,4 +1,4 @@
|
|||||||
name: Package build
|
name: Build app package
|
||||||
|
|
||||||
on:
|
on:
|
||||||
pull_request:
|
pull_request:
|
||||||
|
|||||||
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:
|
on:
|
||||||
push:
|
push:
|
||||||
|
|||||||
5
.github/workflows/nodejs.yml
vendored
5
.github/workflows/nodejs.yml
vendored
@@ -22,8 +22,5 @@ jobs:
|
|||||||
npm ci
|
npm ci
|
||||||
- name: build
|
- name: build
|
||||||
run: |
|
run: |
|
||||||
mkdir -p js
|
npm run build --if-present
|
||||||
npm run build --if-present -- --profile --json | tail -n +6 > js/webpack-stats.json
|
|
||||||
npx relative-ci-agent
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
161
.github/workflows/phpunit.yml
vendored
161
.github/workflows/phpunit.yml
vendored
@@ -10,30 +10,82 @@ on:
|
|||||||
env:
|
env:
|
||||||
APP_NAME: deck
|
APP_NAME: deck
|
||||||
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
integration:
|
php:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
strategy:
|
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
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
php-versions: ['7.3', '7.4']
|
php-versions: ['7.3', '7.4']
|
||||||
databases: ['sqlite', 'mysql', 'pgsql']
|
databases: ['mysql']
|
||||||
server-versions: ['master']
|
server-versions: ['master']
|
||||||
|
|
||||||
name: php${{ matrix.php-versions }}-${{ matrix.databases }}-${{ matrix.server-versions }}
|
name: php${{ matrix.php-versions }}-${{ matrix.databases }}-${{ matrix.server-versions }}
|
||||||
|
|
||||||
services:
|
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:
|
mysql:
|
||||||
image: mariadb
|
image: mariadb
|
||||||
ports:
|
ports:
|
||||||
@@ -62,11 +114,11 @@ jobs:
|
|||||||
path: apps/${{ env.APP_NAME }}
|
path: apps/${{ env.APP_NAME }}
|
||||||
|
|
||||||
- name: Set up php ${{ matrix.php-versions }}
|
- name: Set up php ${{ matrix.php-versions }}
|
||||||
uses: shivammathur/setup-php@v2
|
uses: shivammathur/setup-php@v1
|
||||||
with:
|
with:
|
||||||
php-version: ${{ matrix.php-versions }}
|
php-version: ${{ matrix.php-versions }}
|
||||||
tools: phpunit
|
tools: phpunit
|
||||||
extensions: mbstring, iconv, fileinfo, intl, sqlite, pdo_sqlite, mysql, pdo_mysql, pgsql, pdo_pgsql
|
extensions: mbstring, iconv, fileinfo, intl, mysql, pdo_mysql
|
||||||
coverage: none
|
coverage: none
|
||||||
|
|
||||||
- name: Set up PHPUnit
|
- name: Set up PHPUnit
|
||||||
@@ -74,14 +126,83 @@ jobs:
|
|||||||
run: composer i
|
run: composer i
|
||||||
|
|
||||||
- name: Set up Nextcloud
|
- name: Set up Nextcloud
|
||||||
|
env:
|
||||||
|
DB_PORT: 4444
|
||||||
run: |
|
run: |
|
||||||
if [ "${{ matrix.databases }}" = "mysql" ]; then
|
|
||||||
export DB_PORT=4444
|
|
||||||
elif [ "${{ matrix.databases }}" = "pgsql" ]; then
|
|
||||||
export DB_PORT=4445
|
|
||||||
fi
|
|
||||||
mkdir data
|
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 }}
|
./occ app:enable --force ${{ env.APP_NAME }}
|
||||||
php -S localhost:8080 &
|
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/integration/composer.lock
|
||||||
tests/.phpunit.result.cache
|
tests/.phpunit.result.cache
|
||||||
vendor/
|
vendor/
|
||||||
|
*.lock
|
||||||
.php_cs.cache
|
.php_cs.cache
|
||||||
\.idea/
|
\.idea/
|
||||||
|
|||||||
59
CHANGELOG.md
59
CHANGELOG.md
@@ -1,65 +1,6 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
## 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
|
|
||||||
|
|
||||||
### Added
|
|
||||||
|
|
||||||
* [#2430](https://github.com/nextcloud/deck/pull/2430) Due date notification setting per board
|
|
||||||
* [#2230](https://github.com/nextcloud/deck/pull/2230) Implement scrolling per stack
|
|
||||||
* [#1396](https://github.com/nextcloud/deck/pull/1396) API: Expose canCreateBoards through capabilities
|
|
||||||
* [#2245](https://github.com/nextcloud/deck/pull/2245) API: ETag support for API endpoints
|
|
||||||
|
|
||||||
### Fixed
|
|
||||||
|
|
||||||
* [#2330](https://github.com/nextcloud/deck/pull/2330) Enhanced undo handling for deletions @jakobroehrl
|
|
||||||
* [#2336](https://github.com/nextcloud/deck/pull/2336) Run unit tests on github actions
|
|
||||||
* [#2358](https://github.com/nextcloud/deck/pull/2358) Properly check if FTSEvent has an argument set
|
|
||||||
* [#2359](https://github.com/nextcloud/deck/pull/2359) Also exclude deleted items from calendar boards
|
|
||||||
* [#2361](https://github.com/nextcloud/deck/pull/2361) Comments do not depend on the comments app @jakobroehrl
|
|
||||||
* [#2363](https://github.com/nextcloud/deck/pull/2363) Use uid instead of displayname for sharee results
|
|
||||||
* [#2367](https://github.com/nextcloud/deck/pull/2367) Properly handle multiple shares in a row and refactor sharee loading
|
|
||||||
* [#2404](https://github.com/nextcloud/deck/pull/2404) Update Controls.vue @Flamenco
|
|
||||||
* [#2433](https://github.com/nextcloud/deck/pull/2433) Fix scrollable titles with Dyslexia font
|
|
||||||
* [#2434](https://github.com/nextcloud/deck/pull/2434) Move most destructive actions in drop down menus to the bottom @Nienzu
|
|
||||||
* [#2435](https://github.com/nextcloud/deck/pull/2435) Do not open the dialog automatically upon card creation, only upon click
|
|
||||||
* [#2437](https://github.com/nextcloud/deck/pull/2437) Only remove card padding for editable cards
|
|
||||||
* [#2440](https://github.com/nextcloud/deck/pull/2440) Move navigation toggle handling to @nextcloud/vue native one
|
|
||||||
* [#2463](https://github.com/nextcloud/deck/pull/2463) Changed triple dots to ellipsis @rakekniven
|
|
||||||
* [#2500](https://github.com/nextcloud/deck/pull/2500) Move details and description to dedicated component
|
|
||||||
* [#2517](https://github.com/nextcloud/deck/pull/2517) Filter out duplicate cards in overview
|
|
||||||
* [#2502](https://github.com/nextcloud/deck/pull/2502) Assignment code refactoring
|
|
||||||
* [#2519](https://github.com/nextcloud/deck/pull/2519) Fix invisibility bug on modal component @wrox
|
|
||||||
* [#2520](https://github.com/nextcloud/deck/pull/2520) Add placeholder for the description input
|
|
||||||
* [#2521](https://github.com/nextcloud/deck/pull/2521) Add migration step to make table layout consistent
|
|
||||||
* [#2524](https://github.com/nextcloud/deck/pull/2524) Only try to extract first part of the explode result
|
|
||||||
* [#2531](https://github.com/nextcloud/deck/pull/2531) Add proper type to boolean parameter
|
|
||||||
* [#2532](https://github.com/nextcloud/deck/pull/2532) Fix handling of notifications if a board does no longer exist
|
|
||||||
* [#2536](https://github.com/nextcloud/deck/pull/2536) Only set flex layout on the active tab
|
|
||||||
* [#2538](https://github.com/nextcloud/deck/pull/2538) Do not reset filter when staying on the same board
|
|
||||||
* [#2539](https://github.com/nextcloud/deck/pull/2539) Apply proper checks for menu items
|
|
||||||
* [#2540](https://github.com/nextcloud/deck/pull/2540) Only build one main bundle
|
|
||||||
* [#2562](https://github.com/nextcloud/deck/pull/2562) Only try to extract first part of the explode result (Part 2)
|
|
||||||
|
|
||||||
|
|
||||||
## 1.1.0 - 2020-10-03
|
## 1.1.0 - 2020-10-03
|
||||||
|
|
||||||
### Features
|
### Features
|
||||||
|
|||||||
18
README.md
18
README.md
@@ -5,15 +5,15 @@
|
|||||||
|
|
||||||
Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.
|
Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.
|
||||||
|
|
||||||
- Add your tasks to cards and put them in order
|
- :inbox_tray: Add your tasks to cards and put them in order
|
||||||
- Write down additional notes in markdown
|
- :page_facing_up: Write down additional notes in markdown
|
||||||
- Assign labels for even better organization
|
- :bookmark: Assign labels for even better organization
|
||||||
- Share with your team, friends or family
|
- :busts_in_silhouette: Share with your team, friends or family
|
||||||
- Integrates with the [Circles](https://github.com/nextcloud/circles) app!
|
- :family: Integrates with the [Circles](https://github.com/nextcloud/circles) app!
|
||||||
- Attach files and embed them in your markdown description
|
- :paperclip: Attach files and embed them in your markdown description
|
||||||
- Discuss with your team using comments
|
- :speech_balloon: Discuss with your team using comments
|
||||||
- Keep track of changes in the activity stream
|
- :zap: Keep track of changes in the activity stream
|
||||||
- Get your project organized
|
- :rocket: Get your project organized
|
||||||
|
|
||||||
### Mobile apps
|
### Mobile apps
|
||||||
|
|
||||||
|
|||||||
@@ -17,7 +17,7 @@
|
|||||||
- 🚀 Get your project organized
|
- 🚀 Get your project organized
|
||||||
|
|
||||||
</description>
|
</description>
|
||||||
<version>1.2.2</version>
|
<version>1.2.0-dev1</version>
|
||||||
<licence>agpl</licence>
|
<licence>agpl</licence>
|
||||||
<author>Julius Härtl</author>
|
<author>Julius Härtl</author>
|
||||||
<namespace>Deck</namespace>
|
<namespace>Deck</namespace>
|
||||||
|
|||||||
@@ -13,12 +13,11 @@
|
|||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
"roave/security-advisories": "dev-master",
|
"roave/security-advisories": "dev-master",
|
||||||
"christophwurst/nextcloud": "^20",
|
"christophwurst/nextcloud": "^17",
|
||||||
|
"jakub-onderka/php-parallel-lint": "^1.0.0",
|
||||||
"phpunit/phpunit": "^8",
|
"phpunit/phpunit": "^8",
|
||||||
"nextcloud/coding-standard": "^0.4.0",
|
"nextcloud/coding-standard": "^0.3.0",
|
||||||
"symfony/event-dispatcher": "^4.0",
|
"symfony/event-dispatcher": "^4.0"
|
||||||
"vimeo/psalm": "^4.3",
|
|
||||||
"php-parallel-lint/php-parallel-lint": "^1.2"
|
|
||||||
},
|
},
|
||||||
"config": {
|
"config": {
|
||||||
"optimize-autoloader": true,
|
"optimize-autoloader": true,
|
||||||
@@ -27,8 +26,6 @@
|
|||||||
"scripts": {
|
"scripts": {
|
||||||
"lint": "find . -name \\*.php -not -path './vendor/*' -print0 | xargs -0 -n1 php -l",
|
"lint": "find . -name \\*.php -not -path './vendor/*' -print0 | xargs -0 -n1 php -l",
|
||||||
"cs:check": "php-cs-fixer fix --dry-run --diff",
|
"cs:check": "php-cs-fixer fix --dry-run --diff",
|
||||||
"cs:fix": "php-cs-fixer fix",
|
"cs:fix": "php-cs-fixer fix"
|
||||||
"psalm": "psalm",
|
|
||||||
"psalm:fix": "psalm --alter --issues=InvalidReturnType,InvalidNullableReturnType,MismatchingDocblockParamType,MismatchingDocblockReturnType,MissingParamType,InvalidFalsableReturnType"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
4906
composer.lock
generated
4906
composer.lock
generated
File diff suppressed because it is too large
Load Diff
@@ -9,8 +9,6 @@
|
|||||||
@include icon-black-white('filter_set', 'deck', 1);
|
@include icon-black-white('filter_set', 'deck', 1);
|
||||||
@include icon-black-white('attach', 'deck', 1);
|
@include icon-black-white('attach', 'deck', 1);
|
||||||
@include icon-black-white('reply', '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 {
|
.icon-toggle-compact-collapsed {
|
||||||
@include icon-color('toggle-view-expand', 'deck', $color-black);
|
@include icon-color('toggle-view-expand', 'deck', $color-black);
|
||||||
|
|||||||
@@ -1,34 +1,5 @@
|
|||||||
# Nextcloud APIs
|
# Nextcloud APIs
|
||||||
|
|
||||||
## Capabilities
|
|
||||||
|
|
||||||
The [Nextcloud Capabilities API](https://docs.nextcloud.com/server/latest/developer_manual/client_apis/OCS/ocs-api-overview.html#capabilities-api) provides the following information for the Deck app:
|
|
||||||
|
|
||||||
- `version` Current version of the Deck app running
|
|
||||||
- `canCreateBoards` Ability of the current user to create new boards for themselves
|
|
||||||
|
|
||||||
```
|
|
||||||
{
|
|
||||||
"ocs": {
|
|
||||||
"meta": {
|
|
||||||
"status": "ok",
|
|
||||||
"statuscode": 200,
|
|
||||||
"message": "OK"
|
|
||||||
},
|
|
||||||
"data": {
|
|
||||||
"capabilities": {
|
|
||||||
"deck": {
|
|
||||||
"version": "0.8.0",
|
|
||||||
"canCreateBoards": true
|
|
||||||
},
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Available sharees
|
## Available sharees
|
||||||
|
|
||||||
When sharing a board to a user, group or circle, the possible sharees can be obtained though the files_sharing API.
|
When sharing a board to a user, group or circle, the possible sharees can be obtained though the files_sharing API.
|
||||||
|
|||||||
123
docs/API.md
123
docs/API.md
@@ -5,7 +5,6 @@ The REST API provides access for authenticated users to their data inside the De
|
|||||||
|
|
||||||
- All requests require a `OCS-APIRequest` HTTP header to be set to `true` and a `Content-Type` of `application/json`.
|
- All requests require a `OCS-APIRequest` HTTP header to be set to `true` and a `Content-Type` of `application/json`.
|
||||||
- The API is located at https://nextcloud.local/index.php/apps/deck/api/v1.0
|
- The API is located at https://nextcloud.local/index.php/apps/deck/api/v1.0
|
||||||
- All request parameters are required, unless otherwise specified
|
|
||||||
|
|
||||||
## Naming
|
## Naming
|
||||||
|
|
||||||
@@ -21,7 +20,7 @@ The REST API provides access for authenticated users to their data inside the De
|
|||||||
|
|
||||||
### 400 Bad request
|
### 400 Bad request
|
||||||
|
|
||||||
In case the request is invalid, e.g. because a parameter is missing or an invalid value has been transmitted, a 400 error will be returned:
|
In case the request is invalid, e.g. because a parameter is missing, a 400 error will be returned:
|
||||||
|
|
||||||
```json
|
```json
|
||||||
{
|
{
|
||||||
@@ -41,12 +40,6 @@ In any case a user doesn't have access to a requested entity, a 403 error will b
|
|||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
## Formats
|
|
||||||
|
|
||||||
### Date
|
|
||||||
|
|
||||||
Datetime values in request data need to be provided in ISO-8601. Example: 2020-01-20T09:52:43+00:00
|
|
||||||
|
|
||||||
## Headers
|
## Headers
|
||||||
|
|
||||||
### If-Modified-Since
|
### If-Modified-Since
|
||||||
@@ -58,7 +51,7 @@ The supported date formats are:
|
|||||||
* (obsolete) RFC 850: `Sunday, 03-Aug-19 10:34:12 GMT`
|
* (obsolete) RFC 850: `Sunday, 03-Aug-19 10:34:12 GMT`
|
||||||
* (obsolete) ANSI C asctime(): `Sun Aug 3 10:34:12 2019`
|
* (obsolete) ANSI C asctime(): `Sun Aug 3 10:34:12 2019`
|
||||||
|
|
||||||
It is highly recommended to only use the IMF-fixdate format. Note that according to [RFC2616](https://tools.ietf.org/html/rfc2616#section-3.3) all HTTP date/time stamps MUST be represented in Greenwich Mean Time (GMT), without exception.
|
It is highly recommended to only use the IMF-fixdate format.
|
||||||
|
|
||||||
Example curl request:
|
Example curl request:
|
||||||
|
|
||||||
@@ -69,31 +62,6 @@ curl -u admin:admin -X GET \
|
|||||||
-H "If-Modified-Since: Mon, 05 Nov 2018 09:28:00 GMT"
|
-H "If-Modified-Since: Mon, 05 Nov 2018 09:28:00 GMT"
|
||||||
```
|
```
|
||||||
|
|
||||||
### ETag
|
|
||||||
|
|
||||||
An ETag header is returned in order to determine if further child elements have been updated for the following endpoints:
|
|
||||||
|
|
||||||
- Fetch all user board `GET /api/v1.0/boards`
|
|
||||||
- Fetch a single board `GET /api/v1.0/boards/{boardId}`
|
|
||||||
- Fetch all stacks of a board `GET /api/v1.0/boards/{boardId}/stacks`
|
|
||||||
- Fetch a single stacks of a board `GET /api/v1.0/boards/{boardId}/stacks/{stackId}`
|
|
||||||
- Fetch a single card of a board `GET /api/v1.0/boards/{boardId}/stacks/{stackId}/cards/{cardId}`
|
|
||||||
- Fetch attachments of a card `GET /api/v1.0/boards/{boardId}/stacks/{stackId}/cards/{cardId}/attachments`
|
|
||||||
|
|
||||||
If a `If-None-Match` header is provided and the requested element has not changed a `304` Not Modified response will be returned.
|
|
||||||
|
|
||||||
Changes of child elements will propagate to their parents and also cause an update of the ETag which will be useful for determining if a sync is necessary on any client integration side. As an example, if a label is added to a card, the ETag of all related entities (the card, stack and board) will change.
|
|
||||||
|
|
||||||
If available the ETag will also be part of JSON response objects as shown below for a card:
|
|
||||||
|
|
||||||
```json
|
|
||||||
{
|
|
||||||
"id": 81,
|
|
||||||
"ETag": "bdb10fa2d2aeda092a2b6b469454dc90",
|
|
||||||
"title": "Test card"
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
## 1.0.0 (unreleased)
|
## 1.0.0 (unreleased)
|
||||||
@@ -115,7 +83,7 @@ The board list endpoint supports setting an `If-Modified-Since` header to limit
|
|||||||
|
|
||||||
| Parameter | Type | Description |
|
| 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
|
#### Response
|
||||||
|
|
||||||
@@ -147,10 +115,6 @@ Returns an array of board items
|
|||||||
"deletedAt": 0,
|
"deletedAt": 0,
|
||||||
"id": 10,
|
"id": 10,
|
||||||
"lastModified": 1586269585,
|
"lastModified": 1586269585,
|
||||||
"settings": {
|
|
||||||
"notify-due": "off",
|
|
||||||
"calendar": true
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
```
|
```
|
||||||
@@ -229,10 +193,6 @@ Returns an array of board items
|
|||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
##### 403 Forbidden
|
|
||||||
|
|
||||||
A 403 response might be returned if the users ability to create new boards has been disabled by the administrator. For checking this before, see the `canCreateBoards` value in the [Nextcloud capabilties](./API-Nextcloud.md).
|
|
||||||
|
|
||||||
### GET /boards/{boardId} - Get board details
|
### GET /boards/{boardId} - Get board details
|
||||||
|
|
||||||
#### Request parameters
|
#### Request parameters
|
||||||
@@ -584,7 +544,7 @@ The board list endpoint supports setting an `If-Modified-Since` header to limit
|
|||||||
"owner":"admin",
|
"owner":"admin",
|
||||||
"order":999,
|
"order":999,
|
||||||
"archived":false,
|
"archived":false,
|
||||||
"duedate": "2019-12-24T19:29:30+00:00",
|
"duedate":null,
|
||||||
"deletedAt":0,
|
"deletedAt":0,
|
||||||
"commentsUnread":0,
|
"commentsUnread":0,
|
||||||
"id":10,
|
"id":10,
|
||||||
@@ -612,7 +572,7 @@ The board list endpoint supports setting an `If-Modified-Since` header to limit
|
|||||||
| description | String | The markdown description of the card |
|
| description | String | The markdown description of the card |
|
||||||
| type | String | Type of the card (for later use) use 'plain' for now |
|
| type | String | Type of the card (for later use) use 'plain' for now |
|
||||||
| order | Integer | Order for sorting the stacks |
|
| order | Integer | Order for sorting the stacks |
|
||||||
| duedate | timestamp | The ISO-8601 formatted duedate of the card or null |
|
| duedate | timestamp | The duedate of the card or null |
|
||||||
|
|
||||||
|
|
||||||
```
|
```
|
||||||
@@ -621,7 +581,7 @@ The board list endpoint supports setting an `If-Modified-Since` header to limit
|
|||||||
"description": "A card description",
|
"description": "A card description",
|
||||||
"type": "plain",
|
"type": "plain",
|
||||||
"order": 999,
|
"order": 999,
|
||||||
"duedate": "2019-12-24T19:29:30+00:00",
|
"duedate": null,
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
@@ -992,77 +952,6 @@ For now only `deck_file` is supported as an attachment type.
|
|||||||
The following endpoints are available through the Nextcloud OCS endpoint, which is available at `/ocs/v2.php/apps/deck/api/v1.0/`.
|
The following endpoints are available through the Nextcloud OCS endpoint, which is available at `/ocs/v2.php/apps/deck/api/v1.0/`.
|
||||||
This has the benefit that both the web UI as well as external integrations can use the same API.
|
This has the benefit that both the web UI as well as external integrations can use the same API.
|
||||||
|
|
||||||
## Config
|
|
||||||
|
|
||||||
Deck stores user and app configuration values globally and per board. The GET endpoint allows to fetch the current global configuration while board settings will be exposed through the board element on the regular API endpoints.
|
|
||||||
|
|
||||||
### GET /api/v1.0/config - Fetch app configuration values
|
|
||||||
|
|
||||||
#### Response
|
|
||||||
|
|
||||||
| Config key | Description | Value |
|
|
||||||
| --- | --- |
|
|
||||||
| calendar | Determines if the calendar/tasks integration through the CalDAV backend is enabled for the user (boolean) |
|
|
||||||
| groupLimit | Determines if creating new boards is limited to certain groups of the instance. The resulting output is an array of group objects with the id and the displayname (Admin only)|
|
|
||||||
|
|
||||||
```
|
|
||||||
{
|
|
||||||
"ocs": {
|
|
||||||
"meta": {
|
|
||||||
"status": "ok",
|
|
||||||
"statuscode": 200,
|
|
||||||
"message": "OK"
|
|
||||||
},
|
|
||||||
"data": {
|
|
||||||
"calendar": true,
|
|
||||||
"groupLimit": [
|
|
||||||
{
|
|
||||||
"id": "admin",
|
|
||||||
"displayname": "admin"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
```
|
|
||||||
|
|
||||||
### POST /api/v1.0/config/{id}/{key} - Set a config value
|
|
||||||
|
|
||||||
|
|
||||||
#### Request parameters
|
|
||||||
|
|
||||||
| Parameter | Type | Description |
|
|
||||||
| --------- | ------- | --------------------------------------- |
|
|
||||||
| id | Integer | The id of the board |
|
|
||||||
| key | String | The config key to set, prefixed with `board:{boardId}:` for board specific settings |
|
|
||||||
| value | String | The value that should be stored for the config key |
|
|
||||||
|
|
||||||
##### Board configuration
|
|
||||||
|
|
||||||
| Key | Value |
|
|
||||||
| --- | ----- |
|
|
||||||
| notify-due | `off`, `assigned` or `all` |
|
|
||||||
| calendar | Boolean |
|
|
||||||
|
|
||||||
#### Example request
|
|
||||||
|
|
||||||
```
|
|
||||||
curl -X POST 'https://admin:admin@nextcloud.local/ocs/v2.php/apps/deck/api/v1.0/config/calendar' -H 'Accept: application/json' -H "Content-Type: application/json" -H 'OCS-APIRequest: true' --data-raw '{"value":false}'
|
|
||||||
|
|
||||||
{
|
|
||||||
"ocs": {
|
|
||||||
"meta": {
|
|
||||||
"status": "ok",
|
|
||||||
"statuscode": 200,
|
|
||||||
"message": "OK"
|
|
||||||
},
|
|
||||||
"data": false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
```
|
|
||||||
|
|
||||||
## Comments
|
## Comments
|
||||||
|
|
||||||
### GET /cards/{cardId}/comments - List comments
|
### GET /cards/{cardId}/comments - List comments
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M14,17L4,17v2h10v-2zM20,9L4,9v2h16L20,9zM4,15h16v-2L4,13v2zM4,5v2h16L20,5L4,5z"/></svg>
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" version="1.1" height="16"><path fill="#000" d="m2.5 1c-0.28 0-0.5 0.22-0.5 0.5v13c0 0.28 0.22 0.5 0.5 0.5h11c0.28 0 0.5-0.22 0.5-0.5v-10.5l-3-3h-8.5zm1.5 2h6v1h-6v-1zm0 3h5v1h-5v-1zm0 3h8v1h-8v-1zm0 3h4v1h-4v-1z"/></svg>
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 180 B After Width: | Height: | Size: 292 B |
@@ -1,4 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.1" viewBox="0 0 16 16">
|
|
||||||
<path d="m8 2c-0.5523 0-1 0.4477-1 1 0 0.0472 0.021 0.0873 0.0273 0.1328-1.7366 0.4362-3.0273 1.9953-3.0273 3.8672v2l-1 1v1h10v-1l-1-1v-2c0-1.8719-1.291-3.431-3.0273-3.8672 0.0063-0.0455 0.0273-0.0856 0.0273-0.1328 0-0.5523-0.4477-1-1-1zm-2 10c0 1.1046 0.8954 2 2 2s2-0.8954 2-2z" fill="#000"/>
|
|
||||||
</svg>
|
|
||||||
|
Before Width: | Height: | Size: 456 B |
@@ -20,15 +20,15 @@ OC.L10N.register(
|
|||||||
"Delete" : "Skrap",
|
"Delete" : "Skrap",
|
||||||
"Edit" : "Wysig",
|
"Edit" : "Wysig",
|
||||||
"Title" : "Titel",
|
"Title" : "Titel",
|
||||||
|
"Due date" : "Sperdatum",
|
||||||
|
"Description" : "Beskrywing",
|
||||||
"Comments" : "Kommentare",
|
"Comments" : "Kommentare",
|
||||||
|
"Select Date" : "Kies Datum",
|
||||||
"Modified" : "Gewysig",
|
"Modified" : "Gewysig",
|
||||||
"Created" : "Geskep",
|
"Created" : "Geskep",
|
||||||
"Due date" : "Sperdatum",
|
|
||||||
"Select Date" : "Kies Datum",
|
|
||||||
"Save" : "Stoor",
|
"Save" : "Stoor",
|
||||||
"Reply" : "Antwoord",
|
"Reply" : "Antwoord",
|
||||||
"Update" : "Werk by",
|
"Update" : "Werk by",
|
||||||
"Description" : "Beskrywing",
|
|
||||||
"seconds ago" : "sekondes gelede",
|
"seconds ago" : "sekondes gelede",
|
||||||
"Shared with you" : "Met u gedeel",
|
"Shared with you" : "Met u gedeel",
|
||||||
"An error occurred" : "'n Fout het voorgekom",
|
"An error occurred" : "'n Fout het voorgekom",
|
||||||
|
|||||||
@@ -18,15 +18,15 @@
|
|||||||
"Delete" : "Skrap",
|
"Delete" : "Skrap",
|
||||||
"Edit" : "Wysig",
|
"Edit" : "Wysig",
|
||||||
"Title" : "Titel",
|
"Title" : "Titel",
|
||||||
|
"Due date" : "Sperdatum",
|
||||||
|
"Description" : "Beskrywing",
|
||||||
"Comments" : "Kommentare",
|
"Comments" : "Kommentare",
|
||||||
|
"Select Date" : "Kies Datum",
|
||||||
"Modified" : "Gewysig",
|
"Modified" : "Gewysig",
|
||||||
"Created" : "Geskep",
|
"Created" : "Geskep",
|
||||||
"Due date" : "Sperdatum",
|
|
||||||
"Select Date" : "Kies Datum",
|
|
||||||
"Save" : "Stoor",
|
"Save" : "Stoor",
|
||||||
"Reply" : "Antwoord",
|
"Reply" : "Antwoord",
|
||||||
"Update" : "Werk by",
|
"Update" : "Werk by",
|
||||||
"Description" : "Beskrywing",
|
|
||||||
"seconds ago" : "sekondes gelede",
|
"seconds ago" : "sekondes gelede",
|
||||||
"Shared with you" : "Met u gedeel",
|
"Shared with you" : "Met u gedeel",
|
||||||
"An error occurred" : "'n Fout het voorgekom",
|
"An error occurred" : "'n Fout het voorgekom",
|
||||||
|
|||||||
25
l10n/ar.js
25
l10n/ar.js
@@ -78,7 +78,6 @@ OC.L10N.register(
|
|||||||
"Undo" : "تراجع",
|
"Undo" : "تراجع",
|
||||||
"Deleted cards" : "البطاقات المحذوفة",
|
"Deleted cards" : "البطاقات المحذوفة",
|
||||||
"Share board with a user, group or circle …" : "مشاركة اللوح مع مستخدم،مجموعة او دائرة ..",
|
"Share board with a user, group or circle …" : "مشاركة اللوح مع مستخدم،مجموعة او دائرة ..",
|
||||||
"Searching for users, groups and circles …" : "ابحث عن اعضاء، مجموعات أو حلقات ...",
|
|
||||||
"Board owner" : "منشئ اللوح",
|
"Board owner" : "منشئ اللوح",
|
||||||
"(Group)" : "(مجموعة)",
|
"(Group)" : "(مجموعة)",
|
||||||
"(Circle)" : "(دائرة)",
|
"(Circle)" : "(دائرة)",
|
||||||
@@ -98,11 +97,6 @@ OC.L10N.register(
|
|||||||
"Add this attachment" : "إضافة هذا المرفق",
|
"Add this attachment" : "إضافة هذا المرفق",
|
||||||
"Delete Attachment" : "مسح المرفق",
|
"Delete Attachment" : "مسح المرفق",
|
||||||
"Restore Attachment" : "استعادة المرفق",
|
"Restore Attachment" : "استعادة المرفق",
|
||||||
"Attachments" : "المرفقات",
|
|
||||||
"Comments" : "تعليقات",
|
|
||||||
"Modified" : "عُدل",
|
|
||||||
"Created" : "أُنشئ",
|
|
||||||
"No comments yet. Begin the discussion!" : "لا يوجد تعليقات بعد, ابدأ النقاش الآن!",
|
|
||||||
"Assign a tag to this card…" : "انسب وسم الى هذه البطاقة..",
|
"Assign a tag to this card…" : "انسب وسم الى هذه البطاقة..",
|
||||||
"Assign to users" : "انسب الى المتسخدمين",
|
"Assign to users" : "انسب الى المتسخدمين",
|
||||||
"Assign to users/groups/circles" : "انسب الى المستخدمين،المجموعات،الدوائر",
|
"Assign to users/groups/circles" : "انسب الى المستخدمين،المجموعات،الدوائر",
|
||||||
@@ -110,19 +104,24 @@ OC.L10N.register(
|
|||||||
"Due date" : "تاريخ الانجاز",
|
"Due date" : "تاريخ الانجاز",
|
||||||
"Set a due date" : "تعيين تاريخ الانجاز",
|
"Set a due date" : "تعيين تاريخ الانجاز",
|
||||||
"Remove due date" : "ازالة تاريخ الانجاز",
|
"Remove due date" : "ازالة تاريخ الانجاز",
|
||||||
"Save" : "حفظ",
|
|
||||||
"The comment cannot be empty." : "التعليق لايمكن ان يكون فارغا.",
|
|
||||||
"The comment cannot be longer than 1000 characters." : "التعليق لا يمكن ان يكون اطول من 1000 حرف.",
|
|
||||||
"In reply to" : "يقوم بالرد على",
|
|
||||||
"Reply" : "رد",
|
|
||||||
"Update" : "تحديث",
|
|
||||||
"Description" : "الوصف",
|
"Description" : "الوصف",
|
||||||
"(Unsaved)" : "(غير محفوظ)",
|
"(Unsaved)" : "(غير محفوظ)",
|
||||||
"(Saving…)" : "(يُحفظ..)",
|
"(Saving…)" : "(يُحفظ..)",
|
||||||
"Edit description" : "تعديل الوصف",
|
"Edit description" : "تعديل الوصف",
|
||||||
"View description" : "إظهار الوصف",
|
"View description" : "إظهار الوصف",
|
||||||
"Add Attachment" : "أضف ملحق",
|
"Add Attachment" : "أضف ملحق",
|
||||||
|
"Attachments" : "المرفقات",
|
||||||
|
"Comments" : "تعليقات",
|
||||||
"Choose attachment" : "اختيار مرفق",
|
"Choose attachment" : "اختيار مرفق",
|
||||||
|
"Modified" : "عُدل",
|
||||||
|
"Created" : "أُنشئ",
|
||||||
|
"No comments yet. Begin the discussion!" : "لا يوجد تعليقات بعد, ابدأ النقاش الآن!",
|
||||||
|
"Save" : "حفظ",
|
||||||
|
"The comment cannot be empty." : "التعليق لايمكن ان يكون فارغا.",
|
||||||
|
"The comment cannot be longer than 1000 characters." : "التعليق لا يمكن ان يكون اطول من 1000 حرف.",
|
||||||
|
"In reply to" : "يقوم بالرد على",
|
||||||
|
"Reply" : "رد",
|
||||||
|
"Update" : "تحديث",
|
||||||
"(group)" : "(مجموعة)",
|
"(group)" : "(مجموعة)",
|
||||||
"(circle)" : "(دائرة)",
|
"(circle)" : "(دائرة)",
|
||||||
"Assign to me" : "ينسب لي",
|
"Assign to me" : "ينسب لي",
|
||||||
@@ -134,8 +133,8 @@ OC.L10N.register(
|
|||||||
"Archived boards" : "الالواح المؤرشفة",
|
"Archived boards" : "الالواح المؤرشفة",
|
||||||
"Shared with you" : "شورك معك",
|
"Shared with you" : "شورك معك",
|
||||||
"Limit deck usage of groups" : "استخدام دك Deck محدود للمجاميع",
|
"Limit deck usage of groups" : "استخدام دك Deck محدود للمجاميع",
|
||||||
"Board details" : "تفاصيل لوح",
|
|
||||||
"Edit board" : "تعديل اللوح",
|
"Edit board" : "تعديل اللوح",
|
||||||
|
"Board details" : "تفاصيل لوح",
|
||||||
"An error occurred" : "طرأ هناك خطأ",
|
"An error occurred" : "طرأ هناك خطأ",
|
||||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "هل انت متأكد تريد مسح اللوح {title}؟ هذا سوف يمسح جميع بيانات هذا اللوح.",
|
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "هل انت متأكد تريد مسح اللوح {title}؟ هذا سوف يمسح جميع بيانات هذا اللوح.",
|
||||||
"Delete the board?" : "مسح اللوح؟",
|
"Delete the board?" : "مسح اللوح؟",
|
||||||
|
|||||||
25
l10n/ar.json
25
l10n/ar.json
@@ -76,7 +76,6 @@
|
|||||||
"Undo" : "تراجع",
|
"Undo" : "تراجع",
|
||||||
"Deleted cards" : "البطاقات المحذوفة",
|
"Deleted cards" : "البطاقات المحذوفة",
|
||||||
"Share board with a user, group or circle …" : "مشاركة اللوح مع مستخدم،مجموعة او دائرة ..",
|
"Share board with a user, group or circle …" : "مشاركة اللوح مع مستخدم،مجموعة او دائرة ..",
|
||||||
"Searching for users, groups and circles …" : "ابحث عن اعضاء، مجموعات أو حلقات ...",
|
|
||||||
"Board owner" : "منشئ اللوح",
|
"Board owner" : "منشئ اللوح",
|
||||||
"(Group)" : "(مجموعة)",
|
"(Group)" : "(مجموعة)",
|
||||||
"(Circle)" : "(دائرة)",
|
"(Circle)" : "(دائرة)",
|
||||||
@@ -96,11 +95,6 @@
|
|||||||
"Add this attachment" : "إضافة هذا المرفق",
|
"Add this attachment" : "إضافة هذا المرفق",
|
||||||
"Delete Attachment" : "مسح المرفق",
|
"Delete Attachment" : "مسح المرفق",
|
||||||
"Restore Attachment" : "استعادة المرفق",
|
"Restore Attachment" : "استعادة المرفق",
|
||||||
"Attachments" : "المرفقات",
|
|
||||||
"Comments" : "تعليقات",
|
|
||||||
"Modified" : "عُدل",
|
|
||||||
"Created" : "أُنشئ",
|
|
||||||
"No comments yet. Begin the discussion!" : "لا يوجد تعليقات بعد, ابدأ النقاش الآن!",
|
|
||||||
"Assign a tag to this card…" : "انسب وسم الى هذه البطاقة..",
|
"Assign a tag to this card…" : "انسب وسم الى هذه البطاقة..",
|
||||||
"Assign to users" : "انسب الى المتسخدمين",
|
"Assign to users" : "انسب الى المتسخدمين",
|
||||||
"Assign to users/groups/circles" : "انسب الى المستخدمين،المجموعات،الدوائر",
|
"Assign to users/groups/circles" : "انسب الى المستخدمين،المجموعات،الدوائر",
|
||||||
@@ -108,19 +102,24 @@
|
|||||||
"Due date" : "تاريخ الانجاز",
|
"Due date" : "تاريخ الانجاز",
|
||||||
"Set a due date" : "تعيين تاريخ الانجاز",
|
"Set a due date" : "تعيين تاريخ الانجاز",
|
||||||
"Remove due date" : "ازالة تاريخ الانجاز",
|
"Remove due date" : "ازالة تاريخ الانجاز",
|
||||||
"Save" : "حفظ",
|
|
||||||
"The comment cannot be empty." : "التعليق لايمكن ان يكون فارغا.",
|
|
||||||
"The comment cannot be longer than 1000 characters." : "التعليق لا يمكن ان يكون اطول من 1000 حرف.",
|
|
||||||
"In reply to" : "يقوم بالرد على",
|
|
||||||
"Reply" : "رد",
|
|
||||||
"Update" : "تحديث",
|
|
||||||
"Description" : "الوصف",
|
"Description" : "الوصف",
|
||||||
"(Unsaved)" : "(غير محفوظ)",
|
"(Unsaved)" : "(غير محفوظ)",
|
||||||
"(Saving…)" : "(يُحفظ..)",
|
"(Saving…)" : "(يُحفظ..)",
|
||||||
"Edit description" : "تعديل الوصف",
|
"Edit description" : "تعديل الوصف",
|
||||||
"View description" : "إظهار الوصف",
|
"View description" : "إظهار الوصف",
|
||||||
"Add Attachment" : "أضف ملحق",
|
"Add Attachment" : "أضف ملحق",
|
||||||
|
"Attachments" : "المرفقات",
|
||||||
|
"Comments" : "تعليقات",
|
||||||
"Choose attachment" : "اختيار مرفق",
|
"Choose attachment" : "اختيار مرفق",
|
||||||
|
"Modified" : "عُدل",
|
||||||
|
"Created" : "أُنشئ",
|
||||||
|
"No comments yet. Begin the discussion!" : "لا يوجد تعليقات بعد, ابدأ النقاش الآن!",
|
||||||
|
"Save" : "حفظ",
|
||||||
|
"The comment cannot be empty." : "التعليق لايمكن ان يكون فارغا.",
|
||||||
|
"The comment cannot be longer than 1000 characters." : "التعليق لا يمكن ان يكون اطول من 1000 حرف.",
|
||||||
|
"In reply to" : "يقوم بالرد على",
|
||||||
|
"Reply" : "رد",
|
||||||
|
"Update" : "تحديث",
|
||||||
"(group)" : "(مجموعة)",
|
"(group)" : "(مجموعة)",
|
||||||
"(circle)" : "(دائرة)",
|
"(circle)" : "(دائرة)",
|
||||||
"Assign to me" : "ينسب لي",
|
"Assign to me" : "ينسب لي",
|
||||||
@@ -132,8 +131,8 @@
|
|||||||
"Archived boards" : "الالواح المؤرشفة",
|
"Archived boards" : "الالواح المؤرشفة",
|
||||||
"Shared with you" : "شورك معك",
|
"Shared with you" : "شورك معك",
|
||||||
"Limit deck usage of groups" : "استخدام دك Deck محدود للمجاميع",
|
"Limit deck usage of groups" : "استخدام دك Deck محدود للمجاميع",
|
||||||
"Board details" : "تفاصيل لوح",
|
|
||||||
"Edit board" : "تعديل اللوح",
|
"Edit board" : "تعديل اللوح",
|
||||||
|
"Board details" : "تفاصيل لوح",
|
||||||
"An error occurred" : "طرأ هناك خطأ",
|
"An error occurred" : "طرأ هناك خطأ",
|
||||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "هل انت متأكد تريد مسح اللوح {title}؟ هذا سوف يمسح جميع بيانات هذا اللوح.",
|
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "هل انت متأكد تريد مسح اللوح {title}؟ هذا سوف يمسح جميع بيانات هذا اللوح.",
|
||||||
"Delete the board?" : "مسح اللوح؟",
|
"Delete the board?" : "مسح اللوح؟",
|
||||||
|
|||||||
@@ -27,6 +27,7 @@ OC.L10N.register(
|
|||||||
"Edit" : "Editar",
|
"Edit" : "Editar",
|
||||||
"Title" : "Títulu",
|
"Title" : "Títulu",
|
||||||
"Members" : "Miembros",
|
"Members" : "Miembros",
|
||||||
|
"Description" : "Descripción",
|
||||||
"Attachments" : "Axuntos",
|
"Attachments" : "Axuntos",
|
||||||
"Comments" : "Comentarios",
|
"Comments" : "Comentarios",
|
||||||
"Modified" : "Modificóse'l",
|
"Modified" : "Modificóse'l",
|
||||||
@@ -34,7 +35,6 @@ OC.L10N.register(
|
|||||||
"Save" : "Guardar",
|
"Save" : "Guardar",
|
||||||
"Reply" : "Rempuesta",
|
"Reply" : "Rempuesta",
|
||||||
"Update" : "Anovar",
|
"Update" : "Anovar",
|
||||||
"Description" : "Descripción",
|
|
||||||
"(group)" : "(grupu)",
|
"(group)" : "(grupu)",
|
||||||
"seconds ago" : "hai segundos",
|
"seconds ago" : "hai segundos",
|
||||||
"Shared with you" : "Shared with you",
|
"Shared with you" : "Shared with you",
|
||||||
|
|||||||
@@ -25,6 +25,7 @@
|
|||||||
"Edit" : "Editar",
|
"Edit" : "Editar",
|
||||||
"Title" : "Títulu",
|
"Title" : "Títulu",
|
||||||
"Members" : "Miembros",
|
"Members" : "Miembros",
|
||||||
|
"Description" : "Descripción",
|
||||||
"Attachments" : "Axuntos",
|
"Attachments" : "Axuntos",
|
||||||
"Comments" : "Comentarios",
|
"Comments" : "Comentarios",
|
||||||
"Modified" : "Modificóse'l",
|
"Modified" : "Modificóse'l",
|
||||||
@@ -32,7 +33,6 @@
|
|||||||
"Save" : "Guardar",
|
"Save" : "Guardar",
|
||||||
"Reply" : "Rempuesta",
|
"Reply" : "Rempuesta",
|
||||||
"Update" : "Anovar",
|
"Update" : "Anovar",
|
||||||
"Description" : "Descripción",
|
|
||||||
"(group)" : "(grupu)",
|
"(group)" : "(grupu)",
|
||||||
"seconds ago" : "hai segundos",
|
"seconds ago" : "hai segundos",
|
||||||
"Shared with you" : "Shared with you",
|
"Shared with you" : "Shared with you",
|
||||||
|
|||||||
@@ -15,11 +15,11 @@ OC.L10N.register(
|
|||||||
"Delete" : "Sil",
|
"Delete" : "Sil",
|
||||||
"Edit" : "Dəyişiklik et",
|
"Edit" : "Dəyişiklik et",
|
||||||
"Title" : "Başlıq",
|
"Title" : "Başlıq",
|
||||||
|
"Description" : "Açıqlanma",
|
||||||
"Modified" : "Dəyişdirildi",
|
"Modified" : "Dəyişdirildi",
|
||||||
"Save" : "Saxla",
|
"Save" : "Saxla",
|
||||||
"Reply" : "Cavab",
|
"Reply" : "Cavab",
|
||||||
"Update" : "Yenilənmə",
|
"Update" : "Yenilənmə",
|
||||||
"Description" : "Açıqlanma",
|
|
||||||
"(group)" : "(qrup)",
|
"(group)" : "(qrup)",
|
||||||
"seconds ago" : "saniyələr öncə",
|
"seconds ago" : "saniyələr öncə",
|
||||||
"Shared with you" : "Shared with you",
|
"Shared with you" : "Shared with you",
|
||||||
|
|||||||
@@ -13,11 +13,11 @@
|
|||||||
"Delete" : "Sil",
|
"Delete" : "Sil",
|
||||||
"Edit" : "Dəyişiklik et",
|
"Edit" : "Dəyişiklik et",
|
||||||
"Title" : "Başlıq",
|
"Title" : "Başlıq",
|
||||||
|
"Description" : "Açıqlanma",
|
||||||
"Modified" : "Dəyişdirildi",
|
"Modified" : "Dəyişdirildi",
|
||||||
"Save" : "Saxla",
|
"Save" : "Saxla",
|
||||||
"Reply" : "Cavab",
|
"Reply" : "Cavab",
|
||||||
"Update" : "Yenilənmə",
|
"Update" : "Yenilənmə",
|
||||||
"Description" : "Açıqlanma",
|
|
||||||
"(group)" : "(qrup)",
|
"(group)" : "(qrup)",
|
||||||
"seconds ago" : "saniyələr öncə",
|
"seconds ago" : "saniyələr öncə",
|
||||||
"Shared with you" : "Shared with you",
|
"Shared with you" : "Shared with you",
|
||||||
|
|||||||
10
l10n/bg.js
10
l10n/bg.js
@@ -28,17 +28,17 @@ OC.L10N.register(
|
|||||||
"Title" : "Име",
|
"Title" : "Име",
|
||||||
"Members" : "Членове",
|
"Members" : "Членове",
|
||||||
"Upload attachment" : "Качване",
|
"Upload attachment" : "Качване",
|
||||||
"Attachments" : "Прикачени файлове",
|
|
||||||
"Comments" : "Коментари",
|
|
||||||
"Modified" : "Промяна",
|
|
||||||
"Created" : "Създаден",
|
|
||||||
"Due date" : "Крайна дата",
|
"Due date" : "Крайна дата",
|
||||||
"Remove due date" : "Премахни крайната дата",
|
"Remove due date" : "Премахни крайната дата",
|
||||||
|
"Description" : "Описание",
|
||||||
|
"Attachments" : "Прикачени файлове",
|
||||||
|
"Comments" : "Коментари",
|
||||||
"Select Date" : "Изберете дата",
|
"Select Date" : "Изберете дата",
|
||||||
|
"Modified" : "Промяна",
|
||||||
|
"Created" : "Създаден",
|
||||||
"Save" : "Запазване",
|
"Save" : "Запазване",
|
||||||
"Reply" : "Отговори",
|
"Reply" : "Отговори",
|
||||||
"Update" : "Обновяване",
|
"Update" : "Обновяване",
|
||||||
"Description" : "Описание",
|
|
||||||
"(group)" : "(група)",
|
"(group)" : "(група)",
|
||||||
"seconds ago" : "преди секунди",
|
"seconds ago" : "преди секунди",
|
||||||
"Shared with you" : "Споделени с вас",
|
"Shared with you" : "Споделени с вас",
|
||||||
|
|||||||
10
l10n/bg.json
10
l10n/bg.json
@@ -26,17 +26,17 @@
|
|||||||
"Title" : "Име",
|
"Title" : "Име",
|
||||||
"Members" : "Членове",
|
"Members" : "Членове",
|
||||||
"Upload attachment" : "Качване",
|
"Upload attachment" : "Качване",
|
||||||
"Attachments" : "Прикачени файлове",
|
|
||||||
"Comments" : "Коментари",
|
|
||||||
"Modified" : "Промяна",
|
|
||||||
"Created" : "Създаден",
|
|
||||||
"Due date" : "Крайна дата",
|
"Due date" : "Крайна дата",
|
||||||
"Remove due date" : "Премахни крайната дата",
|
"Remove due date" : "Премахни крайната дата",
|
||||||
|
"Description" : "Описание",
|
||||||
|
"Attachments" : "Прикачени файлове",
|
||||||
|
"Comments" : "Коментари",
|
||||||
"Select Date" : "Изберете дата",
|
"Select Date" : "Изберете дата",
|
||||||
|
"Modified" : "Промяна",
|
||||||
|
"Created" : "Създаден",
|
||||||
"Save" : "Запазване",
|
"Save" : "Запазване",
|
||||||
"Reply" : "Отговори",
|
"Reply" : "Отговори",
|
||||||
"Update" : "Обновяване",
|
"Update" : "Обновяване",
|
||||||
"Description" : "Описание",
|
|
||||||
"(group)" : "(група)",
|
"(group)" : "(група)",
|
||||||
"seconds ago" : "преди секунди",
|
"seconds ago" : "преди секунди",
|
||||||
"Shared with you" : "Споделени с вас",
|
"Shared with you" : "Споделени с вас",
|
||||||
|
|||||||
@@ -15,11 +15,11 @@ OC.L10N.register(
|
|||||||
"Delete" : "মুছে",
|
"Delete" : "মুছে",
|
||||||
"Edit" : "সম্পাদনা",
|
"Edit" : "সম্পাদনা",
|
||||||
"Title" : "শিরোনাম",
|
"Title" : "শিরোনাম",
|
||||||
|
"Description" : "বিবরণ",
|
||||||
"Modified" : "পরিবর্তিত",
|
"Modified" : "পরিবর্তিত",
|
||||||
"Save" : "সংরক্ষণ",
|
"Save" : "সংরক্ষণ",
|
||||||
"Reply" : "জবাব",
|
"Reply" : "জবাব",
|
||||||
"Update" : "পরিবর্ধন",
|
"Update" : "পরিবর্ধন",
|
||||||
"Description" : "বিবরণ",
|
|
||||||
"(group)" : "(গোষ্ঠি)",
|
"(group)" : "(গোষ্ঠি)",
|
||||||
"seconds ago" : "সেকেন্ড পূর্বে",
|
"seconds ago" : "সেকেন্ড পূর্বে",
|
||||||
"Shared with you" : "Shared with you",
|
"Shared with you" : "Shared with you",
|
||||||
|
|||||||
@@ -13,11 +13,11 @@
|
|||||||
"Delete" : "মুছে",
|
"Delete" : "মুছে",
|
||||||
"Edit" : "সম্পাদনা",
|
"Edit" : "সম্পাদনা",
|
||||||
"Title" : "শিরোনাম",
|
"Title" : "শিরোনাম",
|
||||||
|
"Description" : "বিবরণ",
|
||||||
"Modified" : "পরিবর্তিত",
|
"Modified" : "পরিবর্তিত",
|
||||||
"Save" : "সংরক্ষণ",
|
"Save" : "সংরক্ষণ",
|
||||||
"Reply" : "জবাব",
|
"Reply" : "জবাব",
|
||||||
"Update" : "পরিবর্ধন",
|
"Update" : "পরিবর্ধন",
|
||||||
"Description" : "বিবরণ",
|
|
||||||
"(group)" : "(গোষ্ঠি)",
|
"(group)" : "(গোষ্ঠি)",
|
||||||
"seconds ago" : "সেকেন্ড পূর্বে",
|
"seconds ago" : "সেকেন্ড পূর্বে",
|
||||||
"Shared with you" : "Shared with you",
|
"Shared with you" : "Shared with you",
|
||||||
|
|||||||
@@ -14,12 +14,12 @@ OC.L10N.register(
|
|||||||
"Can share" : "Galout a ra rannañ",
|
"Can share" : "Galout a ra rannañ",
|
||||||
"Delete" : "Dilemel",
|
"Delete" : "Dilemel",
|
||||||
"Edit" : "Cheñch",
|
"Edit" : "Cheñch",
|
||||||
|
"Description" : "Diskrivadur",
|
||||||
"Comments" : "Displegadennoù",
|
"Comments" : "Displegadennoù",
|
||||||
"Modified" : "Cheñchet",
|
"Modified" : "Cheñchet",
|
||||||
"Save" : "Enrollañ",
|
"Save" : "Enrollañ",
|
||||||
"Reply" : "Respont",
|
"Reply" : "Respont",
|
||||||
"Update" : "Adnevesaat",
|
"Update" : "Adnevesaat",
|
||||||
"Description" : "Diskrivadur",
|
|
||||||
"(group)" : "(strollad)",
|
"(group)" : "(strollad)",
|
||||||
"seconds ago" : "eilenn zo",
|
"seconds ago" : "eilenn zo",
|
||||||
"Shared with you" : "Rannet ganeoc'h",
|
"Shared with you" : "Rannet ganeoc'h",
|
||||||
|
|||||||
@@ -12,12 +12,12 @@
|
|||||||
"Can share" : "Galout a ra rannañ",
|
"Can share" : "Galout a ra rannañ",
|
||||||
"Delete" : "Dilemel",
|
"Delete" : "Dilemel",
|
||||||
"Edit" : "Cheñch",
|
"Edit" : "Cheñch",
|
||||||
|
"Description" : "Diskrivadur",
|
||||||
"Comments" : "Displegadennoù",
|
"Comments" : "Displegadennoù",
|
||||||
"Modified" : "Cheñchet",
|
"Modified" : "Cheñchet",
|
||||||
"Save" : "Enrollañ",
|
"Save" : "Enrollañ",
|
||||||
"Reply" : "Respont",
|
"Reply" : "Respont",
|
||||||
"Update" : "Adnevesaat",
|
"Update" : "Adnevesaat",
|
||||||
"Description" : "Diskrivadur",
|
|
||||||
"(group)" : "(strollad)",
|
"(group)" : "(strollad)",
|
||||||
"seconds ago" : "eilenn zo",
|
"seconds ago" : "eilenn zo",
|
||||||
"Shared with you" : "Rannet ganeoc'h",
|
"Shared with you" : "Rannet ganeoc'h",
|
||||||
|
|||||||
@@ -14,11 +14,11 @@ OC.L10N.register(
|
|||||||
"Edit" : "Izmjeni",
|
"Edit" : "Izmjeni",
|
||||||
"Title" : "Naslov",
|
"Title" : "Naslov",
|
||||||
"Members" : "Članovi",
|
"Members" : "Članovi",
|
||||||
|
"Description" : "Opis",
|
||||||
"Comments" : "Komentari",
|
"Comments" : "Komentari",
|
||||||
"Modified" : "Izmijenjeno",
|
"Modified" : "Izmijenjeno",
|
||||||
"Save" : "Spremi",
|
"Save" : "Spremi",
|
||||||
"Update" : "Ažuriraj",
|
"Update" : "Ažuriraj",
|
||||||
"Description" : "Opis",
|
|
||||||
"Shared with you" : "Shared with you",
|
"Shared with you" : "Shared with you",
|
||||||
"Today" : "Danas",
|
"Today" : "Danas",
|
||||||
"Tomorrow" : "Sutra",
|
"Tomorrow" : "Sutra",
|
||||||
|
|||||||
@@ -12,11 +12,11 @@
|
|||||||
"Edit" : "Izmjeni",
|
"Edit" : "Izmjeni",
|
||||||
"Title" : "Naslov",
|
"Title" : "Naslov",
|
||||||
"Members" : "Članovi",
|
"Members" : "Članovi",
|
||||||
|
"Description" : "Opis",
|
||||||
"Comments" : "Komentari",
|
"Comments" : "Komentari",
|
||||||
"Modified" : "Izmijenjeno",
|
"Modified" : "Izmijenjeno",
|
||||||
"Save" : "Spremi",
|
"Save" : "Spremi",
|
||||||
"Update" : "Ažuriraj",
|
"Update" : "Ažuriraj",
|
||||||
"Description" : "Opis",
|
|
||||||
"Shared with you" : "Shared with you",
|
"Shared with you" : "Shared with you",
|
||||||
"Today" : "Danas",
|
"Today" : "Danas",
|
||||||
"Tomorrow" : "Sutra",
|
"Tomorrow" : "Sutra",
|
||||||
|
|||||||
88
l10n/ca.js
88
l10n/ca.js
@@ -64,10 +64,10 @@ OC.L10N.register(
|
|||||||
"You have commented on card {card}" : "Heu comentat la targeta {card}",
|
"You have commented on card {card}" : "Heu comentat la targeta {card}",
|
||||||
"{user} has commented on card {card}" : "{user} ha 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",
|
"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",
|
"Deck" : "Tauler",
|
||||||
"Changes in the <strong>Deck app</strong>" : "Canvis a l'<strong>aplicació Targetes</strong>",
|
"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",
|
"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",
|
"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.",
|
"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\".",
|
"{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",
|
"To review" : "Per revisar",
|
||||||
"Action needed" : "Acció necessària",
|
"Action needed" : "Acció necessària",
|
||||||
"Later" : "Més tard",
|
"Later" : "Més tard",
|
||||||
"copy" : "còpia",
|
"copy" : "copia",
|
||||||
"To do" : "Pendent",
|
"To do" : "Pendents",
|
||||||
"Doing" : "En procés",
|
"Doing" : "En procés",
|
||||||
"Done" : "Finalitzat",
|
"Done" : "Finalitzades",
|
||||||
"Example Task 3" : "Tasca d'exemple 3",
|
"Example Task 3" : "Tasca d'exemple 3",
|
||||||
"Example Task 2" : "Tasca d'exemple 2",
|
"Example Task 2" : "Tasca d'exemple 2",
|
||||||
"Example Task 1" : "Tasca d'exemple 1",
|
"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 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 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",
|
"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",
|
"Missing a temporary folder" : "Falta una carpeta temporal",
|
||||||
"Could not write file to disk" : "No s’ha pogut escriure el fitxer al disc",
|
"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",
|
"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",
|
"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",
|
"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",
|
"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",
|
"Card details" : "Dades de la targeta",
|
||||||
"Add board" : "Afegeix un tauler",
|
"Add board" : "Afegeix una taula",
|
||||||
"Select the board to link to a project" : "Selecciona el tauler per enllaçar a un projecte",
|
"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",
|
"Search by board title" : "Cerca per títol del tauler",
|
||||||
"Select board" : "Selecciona un 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",
|
"Drop your files to upload" : "Deixeu anar els fitxers per penjar-los",
|
||||||
"Archived cards" : "Targetes arxivades",
|
"Archived cards" : "Targetes arxivades",
|
||||||
"Add list" : "Afegeix una llista",
|
"Add list" : "Afegeix una llista",
|
||||||
"List name" : "Nom de la llista",
|
"List name" : "Nom de llista",
|
||||||
"Apply filter" : "Aplica el filtre",
|
"Apply filter" : "Aplica el filtre",
|
||||||
"Filter by tag" : "Filtra per etiqueta",
|
"Filter by tag" : "Filtra per etiqueta",
|
||||||
"Filter by assigned user" : "Filtra per usuari assignat",
|
"Filter by assigned user" : "Filtra per usuari assignat",
|
||||||
@@ -126,16 +126,16 @@ OC.L10N.register(
|
|||||||
"Filter by due date" : "Filtra per data de venciment",
|
"Filter by due date" : "Filtra per data de venciment",
|
||||||
"Overdue" : "Endarrerit",
|
"Overdue" : "Endarrerit",
|
||||||
"Next 24 hours" : "Pròximes 24 hores",
|
"Next 24 hours" : "Pròximes 24 hores",
|
||||||
"Next 7 days" : "Pròxims 7 dies",
|
"Next 7 days" : "Propers 7 dies",
|
||||||
"Next 30 days" : "Pròxims 30 dies",
|
"Next 30 days" : "Propers 30 dies",
|
||||||
"No due date" : "Sense venciment",
|
"No due date" : "Sense venciment",
|
||||||
"Clear filter" : "Esborra el filtre",
|
"Clear filter" : "Neteja el filtre",
|
||||||
"Hide archived cards" : "Amaga les targetes arxivades",
|
"Hide archived cards" : "Amaga les targetes arxivades",
|
||||||
"Show archived cards" : "Mostra les targetes arxivades",
|
"Show archived cards" : "Mostra les targetes arxivades",
|
||||||
"Toggle compact mode" : "Commuta el mode compacte",
|
"Toggle compact mode" : "Commuta el mode compacte",
|
||||||
"Details" : "Detalls",
|
"Details" : "Detalls",
|
||||||
"Loading board" : "S'està carregant el tauler",
|
"Loading board" : "Carregant tauler",
|
||||||
"No lists available" : "No hi ha cap llista disponible",
|
"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",
|
"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",
|
"Board not found" : "Tauler no trobat",
|
||||||
"Sharing" : "Compartició",
|
"Sharing" : "Compartició",
|
||||||
@@ -146,8 +146,6 @@ OC.L10N.register(
|
|||||||
"Undo" : "Desfés",
|
"Undo" : "Desfés",
|
||||||
"Deleted cards" : "Targetes suprimides",
|
"Deleted cards" : "Targetes suprimides",
|
||||||
"Share board with a user, group or circle …" : "Compartir tauler amb un usuari, grup o cercle …",
|
"Share board with a user, group or circle …" : "Compartir tauler amb un usuari, grup o cercle …",
|
||||||
"Searching for users, groups and circles …" : "Buscant usuaris, grups i cercles",
|
|
||||||
"No participants found" : "No s'han trobat participants",
|
|
||||||
"Board owner" : "Propietari del tauler",
|
"Board owner" : "Propietari del tauler",
|
||||||
"(Group)" : "(Grup)",
|
"(Group)" : "(Grup)",
|
||||||
"(Circle)" : "(Cercle)",
|
"(Circle)" : "(Cercle)",
|
||||||
@@ -155,7 +153,6 @@ OC.L10N.register(
|
|||||||
"Can share" : "Pot compartir",
|
"Can share" : "Pot compartir",
|
||||||
"Can manage" : "Pot gestionar",
|
"Can manage" : "Pot gestionar",
|
||||||
"Delete" : "Eliminar",
|
"Delete" : "Eliminar",
|
||||||
"Failed to create share with {displayName}" : "Ha fallat la creació de la compartició amb {displayName}",
|
|
||||||
"Add a new list" : "Afegir una llista nova",
|
"Add a new list" : "Afegir una llista nova",
|
||||||
"Archive all cards" : "Arxiva totes les targetes",
|
"Archive all cards" : "Arxiva totes les targetes",
|
||||||
"Delete list" : "Suprimeix la llista",
|
"Delete list" : "Suprimeix la llista",
|
||||||
@@ -163,7 +160,6 @@ OC.L10N.register(
|
|||||||
"Archive all cards in this list" : "Arxiva totes les targetes d'aquesta llista",
|
"Archive all cards in this list" : "Arxiva totes les targetes d'aquesta llista",
|
||||||
"Add a new card" : "Afegir una nova targeta",
|
"Add a new card" : "Afegir una nova targeta",
|
||||||
"Card name" : "Nom de la targeta",
|
"Card name" : "Nom de la targeta",
|
||||||
"List deleted" : "Llista suprimida",
|
|
||||||
"Edit" : "Edita",
|
"Edit" : "Edita",
|
||||||
"Add a new tag" : "Afegir una etiqueta nova",
|
"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",
|
"title and color value must be provided" : "s’ha de proporcionar el valor del títol i del color",
|
||||||
@@ -175,12 +171,6 @@ OC.L10N.register(
|
|||||||
"Restore Attachment" : "Restaura l'adjunt",
|
"Restore Attachment" : "Restaura l'adjunt",
|
||||||
"Open in sidebar view" : "Obre a la vista de la barra lateral",
|
"Open in sidebar view" : "Obre a la vista de la barra lateral",
|
||||||
"Open in bigger view" : "Obre a la vista més gran",
|
"Open in bigger view" : "Obre a la vista més gran",
|
||||||
"Attachments" : "Adjunts",
|
|
||||||
"Comments" : "Comentaris",
|
|
||||||
"Modified" : "Darrera modificació",
|
|
||||||
"Created" : "Creat",
|
|
||||||
"The title cannot be empty." : "El títol no pot estar buit",
|
|
||||||
"No comments yet. Begin the discussion!" : "No hi ha comentaris encara. Començar la discussió!",
|
|
||||||
"Assign a tag to this card…" : "Assigna una etiqueta a aquesta targeta…",
|
"Assign a tag to this card…" : "Assigna una etiqueta a aquesta targeta…",
|
||||||
"Assign to users" : "Assigna als usuaris",
|
"Assign to users" : "Assigna als usuaris",
|
||||||
"Assign to users/groups/circles" : "Assigna a usuaris/grups/cercles",
|
"Assign to users/groups/circles" : "Assigna a usuaris/grups/cercles",
|
||||||
@@ -188,13 +178,6 @@ OC.L10N.register(
|
|||||||
"Due date" : "Per la data",
|
"Due date" : "Per la data",
|
||||||
"Set a due date" : "Definir una data de venciment",
|
"Set a due date" : "Definir una data de venciment",
|
||||||
"Remove due date" : "Elimina la data de venciment",
|
"Remove due date" : "Elimina la data de venciment",
|
||||||
"Select Date" : "Selecciona la data",
|
|
||||||
"Save" : "Desa",
|
|
||||||
"The comment cannot be empty." : "El comentari no pot estar buit.",
|
|
||||||
"The comment cannot be longer than 1000 characters." : "El comentari no pot ser més llarg que 1000 caràcters.",
|
|
||||||
"In reply to" : "En resposta a",
|
|
||||||
"Reply" : "Respon",
|
|
||||||
"Update" : "Actualitza",
|
|
||||||
"Description" : "Descripció",
|
"Description" : "Descripció",
|
||||||
"(Unsaved)" : "(No desat)",
|
"(Unsaved)" : "(No desat)",
|
||||||
"(Saving…)" : "(Desant…)",
|
"(Saving…)" : "(Desant…)",
|
||||||
@@ -202,8 +185,19 @@ OC.L10N.register(
|
|||||||
"Edit description" : "Edita descripció",
|
"Edit description" : "Edita descripció",
|
||||||
"View description" : "Veure descripció",
|
"View description" : "Veure descripció",
|
||||||
"Add Attachment" : "Afegeix un adjunt",
|
"Add Attachment" : "Afegeix un adjunt",
|
||||||
"Write a description …" : "Escriviu una descripció...",
|
"Attachments" : "Adjunts",
|
||||||
|
"Comments" : "Comentaris",
|
||||||
"Choose attachment" : "Triar adjunt",
|
"Choose attachment" : "Triar adjunt",
|
||||||
|
"Select Date" : "Selecciona la data",
|
||||||
|
"Modified" : "Darrera modificació",
|
||||||
|
"Created" : "Creat",
|
||||||
|
"No comments yet. Begin the discussion!" : "No hi ha comentaris encara. Començar la discussió!",
|
||||||
|
"Save" : "Desa",
|
||||||
|
"The comment cannot be empty." : "El comentari no pot estar buit.",
|
||||||
|
"The comment cannot be longer than 1000 characters." : "El comentari no pot ser més llarg que 1000 caràcters.",
|
||||||
|
"In reply to" : "En resposta a",
|
||||||
|
"Reply" : "Respon",
|
||||||
|
"Update" : "Actualitza",
|
||||||
"(group)" : "(grup)",
|
"(group)" : "(grup)",
|
||||||
"(circle)" : "(cercle)",
|
"(circle)" : "(cercle)",
|
||||||
"Assign to me" : "Assigna'm a mi",
|
"Assign to me" : "Assigna'm a mi",
|
||||||
@@ -214,7 +208,6 @@ OC.L10N.register(
|
|||||||
"Delete card" : "Suprimeix targeta",
|
"Delete card" : "Suprimeix targeta",
|
||||||
"Move card to another board" : "Mou la targeta a un altre tauler",
|
"Move card to another board" : "Mou la targeta a un altre tauler",
|
||||||
"Select a list" : "Seleccioneu una llista",
|
"Select a list" : "Seleccioneu una llista",
|
||||||
"Card deleted" : "Targeta suprimida",
|
|
||||||
"seconds ago" : "fa uns segons",
|
"seconds ago" : "fa uns segons",
|
||||||
"All boards" : "Tots els taulers",
|
"All boards" : "Tots els taulers",
|
||||||
"Archived boards" : "Taulers arxivats",
|
"Archived boards" : "Taulers arxivats",
|
||||||
@@ -223,32 +216,23 @@ OC.L10N.register(
|
|||||||
"Show boards in calendar/tasks" : "Mostra els taulers al calendari/tasques",
|
"Show boards in calendar/tasks" : "Mostra els taulers al calendari/tasques",
|
||||||
"Limit deck usage of groups" : "Limitar l'ús del tauler de grups",
|
"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.",
|
"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",
|
"Edit board" : "Edita el tauler",
|
||||||
"Clone board" : "Clonar tauler",
|
"Clone board " : "Clonar tauler ",
|
||||||
"Unarchive board" : "Desarxiva el tauler",
|
"Unarchive board " : "Desarxiva tauler ",
|
||||||
"Archive board" : "Arxiva el tauler",
|
"Archive board " : "Arxiva tauler ",
|
||||||
"Turn on due date reminders" : "Activa els recordatoris de data de venciment",
|
"Delete board " : "Suprimeix tauler ",
|
||||||
"Turn off due date reminders" : "Desactiva els recordatoris de data de venciment",
|
"Board details" : "Detalls de la junta",
|
||||||
"Due date reminders" : "Recordatoris de data de venciment",
|
|
||||||
"All cards" : "Totes les targetes",
|
|
||||||
"Assigned cards" : "Targetes assignades",
|
|
||||||
"No notifications" : "No hi ha notificacions",
|
|
||||||
"Delete board" : "Suprimeix el tauler",
|
|
||||||
"Board {0} deleted" : "S’ha suprimit el tauler {0}",
|
"Board {0} deleted" : "S’ha suprimit el tauler {0}",
|
||||||
"Only assigned cards" : "Només les targetes assignades",
|
|
||||||
"No reminder" : "Sense recordatoris",
|
|
||||||
"An error occurred" : "S'ha produït un error",
|
"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.",
|
"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",
|
"Loading filtered view" : "S'està carregant la visualització filtrada",
|
||||||
"Today" : "Avui",
|
"Today" : "Avui",
|
||||||
"Tomorrow" : "Demà",
|
"Tomorrow" : "Demà",
|
||||||
"This week" : "Aquesta setmana",
|
"This week" : "Aquesta setmana",
|
||||||
"No due" : "Sense venciment",
|
"No due" : "Sense venciment",
|
||||||
"No upcoming cards" : "No hi ha pròximes targetes",
|
"No upcoming cards" : "No hi ha targetes futures",
|
||||||
"upcoming cards" : "pròximes targetes",
|
"upcoming cards" : "properes targetes",
|
||||||
"Link to a board" : "Enllaça a un tauler",
|
"Link to a board" : "Enllaça a un tauler",
|
||||||
"Link to a card" : "Enllaç una targeta",
|
"Link to a card" : "Enllaç una targeta",
|
||||||
"Something went wrong" : "Alguna cosa ha anat malament",
|
"Something went wrong" : "Alguna cosa ha anat malament",
|
||||||
|
|||||||
88
l10n/ca.json
88
l10n/ca.json
@@ -62,10 +62,10 @@
|
|||||||
"You have commented on card {card}" : "Heu comentat la targeta {card}",
|
"You have commented on card {card}" : "Heu comentat la targeta {card}",
|
||||||
"{user} has commented on card {card}" : "{user} ha 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",
|
"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",
|
"Deck" : "Tauler",
|
||||||
"Changes in the <strong>Deck app</strong>" : "Canvis a l'<strong>aplicació Targetes</strong>",
|
"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",
|
"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",
|
"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.",
|
"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\".",
|
"{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",
|
"To review" : "Per revisar",
|
||||||
"Action needed" : "Acció necessària",
|
"Action needed" : "Acció necessària",
|
||||||
"Later" : "Més tard",
|
"Later" : "Més tard",
|
||||||
"copy" : "còpia",
|
"copy" : "copia",
|
||||||
"To do" : "Pendent",
|
"To do" : "Pendents",
|
||||||
"Doing" : "En procés",
|
"Doing" : "En procés",
|
||||||
"Done" : "Finalitzat",
|
"Done" : "Finalitzades",
|
||||||
"Example Task 3" : "Tasca d'exemple 3",
|
"Example Task 3" : "Tasca d'exemple 3",
|
||||||
"Example Task 2" : "Tasca d'exemple 2",
|
"Example Task 2" : "Tasca d'exemple 2",
|
||||||
"Example Task 1" : "Tasca d'exemple 1",
|
"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 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 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",
|
"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",
|
"Missing a temporary folder" : "Falta una carpeta temporal",
|
||||||
"Could not write file to disk" : "No s’ha pogut escriure el fitxer al disc",
|
"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",
|
"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",
|
"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",
|
"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",
|
"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",
|
"Card details" : "Dades de la targeta",
|
||||||
"Add board" : "Afegeix un tauler",
|
"Add board" : "Afegeix una taula",
|
||||||
"Select the board to link to a project" : "Selecciona el tauler per enllaçar a un projecte",
|
"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",
|
"Search by board title" : "Cerca per títol del tauler",
|
||||||
"Select board" : "Selecciona un tauler",
|
"Select board" : "Selecciona un tauler",
|
||||||
@@ -116,7 +116,7 @@
|
|||||||
"Drop your files to upload" : "Deixeu anar els fitxers per penjar-los",
|
"Drop your files to upload" : "Deixeu anar els fitxers per penjar-los",
|
||||||
"Archived cards" : "Targetes arxivades",
|
"Archived cards" : "Targetes arxivades",
|
||||||
"Add list" : "Afegeix una llista",
|
"Add list" : "Afegeix una llista",
|
||||||
"List name" : "Nom de la llista",
|
"List name" : "Nom de llista",
|
||||||
"Apply filter" : "Aplica el filtre",
|
"Apply filter" : "Aplica el filtre",
|
||||||
"Filter by tag" : "Filtra per etiqueta",
|
"Filter by tag" : "Filtra per etiqueta",
|
||||||
"Filter by assigned user" : "Filtra per usuari assignat",
|
"Filter by assigned user" : "Filtra per usuari assignat",
|
||||||
@@ -124,16 +124,16 @@
|
|||||||
"Filter by due date" : "Filtra per data de venciment",
|
"Filter by due date" : "Filtra per data de venciment",
|
||||||
"Overdue" : "Endarrerit",
|
"Overdue" : "Endarrerit",
|
||||||
"Next 24 hours" : "Pròximes 24 hores",
|
"Next 24 hours" : "Pròximes 24 hores",
|
||||||
"Next 7 days" : "Pròxims 7 dies",
|
"Next 7 days" : "Propers 7 dies",
|
||||||
"Next 30 days" : "Pròxims 30 dies",
|
"Next 30 days" : "Propers 30 dies",
|
||||||
"No due date" : "Sense venciment",
|
"No due date" : "Sense venciment",
|
||||||
"Clear filter" : "Esborra el filtre",
|
"Clear filter" : "Neteja el filtre",
|
||||||
"Hide archived cards" : "Amaga les targetes arxivades",
|
"Hide archived cards" : "Amaga les targetes arxivades",
|
||||||
"Show archived cards" : "Mostra les targetes arxivades",
|
"Show archived cards" : "Mostra les targetes arxivades",
|
||||||
"Toggle compact mode" : "Commuta el mode compacte",
|
"Toggle compact mode" : "Commuta el mode compacte",
|
||||||
"Details" : "Detalls",
|
"Details" : "Detalls",
|
||||||
"Loading board" : "S'està carregant el tauler",
|
"Loading board" : "Carregant tauler",
|
||||||
"No lists available" : "No hi ha cap llista disponible",
|
"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",
|
"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",
|
"Board not found" : "Tauler no trobat",
|
||||||
"Sharing" : "Compartició",
|
"Sharing" : "Compartició",
|
||||||
@@ -144,8 +144,6 @@
|
|||||||
"Undo" : "Desfés",
|
"Undo" : "Desfés",
|
||||||
"Deleted cards" : "Targetes suprimides",
|
"Deleted cards" : "Targetes suprimides",
|
||||||
"Share board with a user, group or circle …" : "Compartir tauler amb un usuari, grup o cercle …",
|
"Share board with a user, group or circle …" : "Compartir tauler amb un usuari, grup o cercle …",
|
||||||
"Searching for users, groups and circles …" : "Buscant usuaris, grups i cercles",
|
|
||||||
"No participants found" : "No s'han trobat participants",
|
|
||||||
"Board owner" : "Propietari del tauler",
|
"Board owner" : "Propietari del tauler",
|
||||||
"(Group)" : "(Grup)",
|
"(Group)" : "(Grup)",
|
||||||
"(Circle)" : "(Cercle)",
|
"(Circle)" : "(Cercle)",
|
||||||
@@ -153,7 +151,6 @@
|
|||||||
"Can share" : "Pot compartir",
|
"Can share" : "Pot compartir",
|
||||||
"Can manage" : "Pot gestionar",
|
"Can manage" : "Pot gestionar",
|
||||||
"Delete" : "Eliminar",
|
"Delete" : "Eliminar",
|
||||||
"Failed to create share with {displayName}" : "Ha fallat la creació de la compartició amb {displayName}",
|
|
||||||
"Add a new list" : "Afegir una llista nova",
|
"Add a new list" : "Afegir una llista nova",
|
||||||
"Archive all cards" : "Arxiva totes les targetes",
|
"Archive all cards" : "Arxiva totes les targetes",
|
||||||
"Delete list" : "Suprimeix la llista",
|
"Delete list" : "Suprimeix la llista",
|
||||||
@@ -161,7 +158,6 @@
|
|||||||
"Archive all cards in this list" : "Arxiva totes les targetes d'aquesta llista",
|
"Archive all cards in this list" : "Arxiva totes les targetes d'aquesta llista",
|
||||||
"Add a new card" : "Afegir una nova targeta",
|
"Add a new card" : "Afegir una nova targeta",
|
||||||
"Card name" : "Nom de la targeta",
|
"Card name" : "Nom de la targeta",
|
||||||
"List deleted" : "Llista suprimida",
|
|
||||||
"Edit" : "Edita",
|
"Edit" : "Edita",
|
||||||
"Add a new tag" : "Afegir una etiqueta nova",
|
"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",
|
"title and color value must be provided" : "s’ha de proporcionar el valor del títol i del color",
|
||||||
@@ -173,12 +169,6 @@
|
|||||||
"Restore Attachment" : "Restaura l'adjunt",
|
"Restore Attachment" : "Restaura l'adjunt",
|
||||||
"Open in sidebar view" : "Obre a la vista de la barra lateral",
|
"Open in sidebar view" : "Obre a la vista de la barra lateral",
|
||||||
"Open in bigger view" : "Obre a la vista més gran",
|
"Open in bigger view" : "Obre a la vista més gran",
|
||||||
"Attachments" : "Adjunts",
|
|
||||||
"Comments" : "Comentaris",
|
|
||||||
"Modified" : "Darrera modificació",
|
|
||||||
"Created" : "Creat",
|
|
||||||
"The title cannot be empty." : "El títol no pot estar buit",
|
|
||||||
"No comments yet. Begin the discussion!" : "No hi ha comentaris encara. Començar la discussió!",
|
|
||||||
"Assign a tag to this card…" : "Assigna una etiqueta a aquesta targeta…",
|
"Assign a tag to this card…" : "Assigna una etiqueta a aquesta targeta…",
|
||||||
"Assign to users" : "Assigna als usuaris",
|
"Assign to users" : "Assigna als usuaris",
|
||||||
"Assign to users/groups/circles" : "Assigna a usuaris/grups/cercles",
|
"Assign to users/groups/circles" : "Assigna a usuaris/grups/cercles",
|
||||||
@@ -186,13 +176,6 @@
|
|||||||
"Due date" : "Per la data",
|
"Due date" : "Per la data",
|
||||||
"Set a due date" : "Definir una data de venciment",
|
"Set a due date" : "Definir una data de venciment",
|
||||||
"Remove due date" : "Elimina la data de venciment",
|
"Remove due date" : "Elimina la data de venciment",
|
||||||
"Select Date" : "Selecciona la data",
|
|
||||||
"Save" : "Desa",
|
|
||||||
"The comment cannot be empty." : "El comentari no pot estar buit.",
|
|
||||||
"The comment cannot be longer than 1000 characters." : "El comentari no pot ser més llarg que 1000 caràcters.",
|
|
||||||
"In reply to" : "En resposta a",
|
|
||||||
"Reply" : "Respon",
|
|
||||||
"Update" : "Actualitza",
|
|
||||||
"Description" : "Descripció",
|
"Description" : "Descripció",
|
||||||
"(Unsaved)" : "(No desat)",
|
"(Unsaved)" : "(No desat)",
|
||||||
"(Saving…)" : "(Desant…)",
|
"(Saving…)" : "(Desant…)",
|
||||||
@@ -200,8 +183,19 @@
|
|||||||
"Edit description" : "Edita descripció",
|
"Edit description" : "Edita descripció",
|
||||||
"View description" : "Veure descripció",
|
"View description" : "Veure descripció",
|
||||||
"Add Attachment" : "Afegeix un adjunt",
|
"Add Attachment" : "Afegeix un adjunt",
|
||||||
"Write a description …" : "Escriviu una descripció...",
|
"Attachments" : "Adjunts",
|
||||||
|
"Comments" : "Comentaris",
|
||||||
"Choose attachment" : "Triar adjunt",
|
"Choose attachment" : "Triar adjunt",
|
||||||
|
"Select Date" : "Selecciona la data",
|
||||||
|
"Modified" : "Darrera modificació",
|
||||||
|
"Created" : "Creat",
|
||||||
|
"No comments yet. Begin the discussion!" : "No hi ha comentaris encara. Començar la discussió!",
|
||||||
|
"Save" : "Desa",
|
||||||
|
"The comment cannot be empty." : "El comentari no pot estar buit.",
|
||||||
|
"The comment cannot be longer than 1000 characters." : "El comentari no pot ser més llarg que 1000 caràcters.",
|
||||||
|
"In reply to" : "En resposta a",
|
||||||
|
"Reply" : "Respon",
|
||||||
|
"Update" : "Actualitza",
|
||||||
"(group)" : "(grup)",
|
"(group)" : "(grup)",
|
||||||
"(circle)" : "(cercle)",
|
"(circle)" : "(cercle)",
|
||||||
"Assign to me" : "Assigna'm a mi",
|
"Assign to me" : "Assigna'm a mi",
|
||||||
@@ -212,7 +206,6 @@
|
|||||||
"Delete card" : "Suprimeix targeta",
|
"Delete card" : "Suprimeix targeta",
|
||||||
"Move card to another board" : "Mou la targeta a un altre tauler",
|
"Move card to another board" : "Mou la targeta a un altre tauler",
|
||||||
"Select a list" : "Seleccioneu una llista",
|
"Select a list" : "Seleccioneu una llista",
|
||||||
"Card deleted" : "Targeta suprimida",
|
|
||||||
"seconds ago" : "fa uns segons",
|
"seconds ago" : "fa uns segons",
|
||||||
"All boards" : "Tots els taulers",
|
"All boards" : "Tots els taulers",
|
||||||
"Archived boards" : "Taulers arxivats",
|
"Archived boards" : "Taulers arxivats",
|
||||||
@@ -221,32 +214,23 @@
|
|||||||
"Show boards in calendar/tasks" : "Mostra els taulers al calendari/tasques",
|
"Show boards in calendar/tasks" : "Mostra els taulers al calendari/tasques",
|
||||||
"Limit deck usage of groups" : "Limitar l'ús del tauler de grups",
|
"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.",
|
"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",
|
"Edit board" : "Edita el tauler",
|
||||||
"Clone board" : "Clonar tauler",
|
"Clone board " : "Clonar tauler ",
|
||||||
"Unarchive board" : "Desarxiva el tauler",
|
"Unarchive board " : "Desarxiva tauler ",
|
||||||
"Archive board" : "Arxiva el tauler",
|
"Archive board " : "Arxiva tauler ",
|
||||||
"Turn on due date reminders" : "Activa els recordatoris de data de venciment",
|
"Delete board " : "Suprimeix tauler ",
|
||||||
"Turn off due date reminders" : "Desactiva els recordatoris de data de venciment",
|
"Board details" : "Detalls de la junta",
|
||||||
"Due date reminders" : "Recordatoris de data de venciment",
|
|
||||||
"All cards" : "Totes les targetes",
|
|
||||||
"Assigned cards" : "Targetes assignades",
|
|
||||||
"No notifications" : "No hi ha notificacions",
|
|
||||||
"Delete board" : "Suprimeix el tauler",
|
|
||||||
"Board {0} deleted" : "S’ha suprimit el tauler {0}",
|
"Board {0} deleted" : "S’ha suprimit el tauler {0}",
|
||||||
"Only assigned cards" : "Només les targetes assignades",
|
|
||||||
"No reminder" : "Sense recordatoris",
|
|
||||||
"An error occurred" : "S'ha produït un error",
|
"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.",
|
"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",
|
"Loading filtered view" : "S'està carregant la visualització filtrada",
|
||||||
"Today" : "Avui",
|
"Today" : "Avui",
|
||||||
"Tomorrow" : "Demà",
|
"Tomorrow" : "Demà",
|
||||||
"This week" : "Aquesta setmana",
|
"This week" : "Aquesta setmana",
|
||||||
"No due" : "Sense venciment",
|
"No due" : "Sense venciment",
|
||||||
"No upcoming cards" : "No hi ha pròximes targetes",
|
"No upcoming cards" : "No hi ha targetes futures",
|
||||||
"upcoming cards" : "pròximes targetes",
|
"upcoming cards" : "properes targetes",
|
||||||
"Link to a board" : "Enllaça a un tauler",
|
"Link to a board" : "Enllaça a un tauler",
|
||||||
"Link to a card" : "Enllaç una targeta",
|
"Link to a card" : "Enllaç una targeta",
|
||||||
"Something went wrong" : "Alguna cosa ha anat malament",
|
"Something went wrong" : "Alguna cosa ha anat malament",
|
||||||
|
|||||||
46
l10n/cs.js
46
l10n/cs.js
@@ -146,7 +146,6 @@ OC.L10N.register(
|
|||||||
"Undo" : "Vrátit zpět",
|
"Undo" : "Vrátit zpět",
|
||||||
"Deleted cards" : "Smazané karty",
|
"Deleted cards" : "Smazané karty",
|
||||||
"Share board with a user, group or circle …" : "Sdílet tabuli s uživatelem, skupinou nebo okruhem…",
|
"Share board with a user, group or circle …" : "Sdílet tabuli s uživatelem, skupinou nebo okruhem…",
|
||||||
"Searching for users, groups and circles …" : "Hledání v uživatelích, skupinách a okruzích…",
|
|
||||||
"No participants found" : "Nenalezeni žádní účastníci",
|
"No participants found" : "Nenalezeni žádní účastníci",
|
||||||
"Board owner" : "Vlastník tabule",
|
"Board owner" : "Vlastník tabule",
|
||||||
"(Group)" : "(Skupina)",
|
"(Group)" : "(Skupina)",
|
||||||
@@ -175,12 +174,6 @@ OC.L10N.register(
|
|||||||
"Restore Attachment" : "Obnovit přílohu",
|
"Restore Attachment" : "Obnovit přílohu",
|
||||||
"Open in sidebar view" : "Otevřít v zobrazení v postranním panelu",
|
"Open in sidebar view" : "Otevřít v zobrazení v postranním panelu",
|
||||||
"Open in bigger view" : "Otevřít ve větším zobrazení",
|
"Open in bigger view" : "Otevřít ve větším zobrazení",
|
||||||
"Attachments" : "Přílohy",
|
|
||||||
"Comments" : "Komentáře",
|
|
||||||
"Modified" : "Změněno",
|
|
||||||
"Created" : "Vytvořeno",
|
|
||||||
"The title cannot be empty." : "Nadpis je třeba vyplnit.",
|
|
||||||
"No comments yet. Begin the discussion!" : "Zatím bez komentářů. Zahajte diskuzi!",
|
|
||||||
"Assign a tag to this card…" : "Přiřadit této kartě štítek…",
|
"Assign a tag to this card…" : "Přiřadit této kartě štítek…",
|
||||||
"Assign to users" : "Přiřadit k uživatelům",
|
"Assign to users" : "Přiřadit k uživatelům",
|
||||||
"Assign to users/groups/circles" : "Přiřadit uživatelům/skupinám/okruhům",
|
"Assign to users/groups/circles" : "Přiřadit uživatelům/skupinám/okruhům",
|
||||||
@@ -188,13 +181,6 @@ OC.L10N.register(
|
|||||||
"Due date" : "Termín",
|
"Due date" : "Termín",
|
||||||
"Set a due date" : "Vybrat termín",
|
"Set a due date" : "Vybrat termín",
|
||||||
"Remove due date" : "Odstranit termín",
|
"Remove due date" : "Odstranit termín",
|
||||||
"Select Date" : "Vybrat datum",
|
|
||||||
"Save" : "Uložit",
|
|
||||||
"The comment cannot be empty." : "Komentář je třeba vyplnit",
|
|
||||||
"The comment cannot be longer than 1000 characters." : "Délka komentáře může být nejvýše 1 000 znaků.",
|
|
||||||
"In reply to" : "V odpověď na",
|
|
||||||
"Reply" : "Odpovědět",
|
|
||||||
"Update" : "Aktualizovat",
|
|
||||||
"Description" : "Popis",
|
"Description" : "Popis",
|
||||||
"(Unsaved)" : "(Neuloženo)",
|
"(Unsaved)" : "(Neuloženo)",
|
||||||
"(Saving…)" : "(Ukládání…)",
|
"(Saving…)" : "(Ukládání…)",
|
||||||
@@ -202,8 +188,20 @@ OC.L10N.register(
|
|||||||
"Edit description" : "Upravit popis",
|
"Edit description" : "Upravit popis",
|
||||||
"View description" : "Zobrazit popis",
|
"View description" : "Zobrazit popis",
|
||||||
"Add Attachment" : "Přidat přílohu",
|
"Add Attachment" : "Přidat přílohu",
|
||||||
"Write a description …" : "Zadejte popis…",
|
"Attachments" : "Přílohy",
|
||||||
|
"Comments" : "Komentáře",
|
||||||
"Choose attachment" : "Zvolte přílohu",
|
"Choose attachment" : "Zvolte přílohu",
|
||||||
|
"Select Date" : "Vybrat datum",
|
||||||
|
"Modified" : "Změněno",
|
||||||
|
"Created" : "Vytvořeno",
|
||||||
|
"The title cannot be empty." : "Nadpis je třeba vyplnit.",
|
||||||
|
"No comments yet. Begin the discussion!" : "Zatím bez komentářů. Zahajte diskuzi!",
|
||||||
|
"Save" : "Uložit",
|
||||||
|
"The comment cannot be empty." : "Komentář je třeba vyplnit",
|
||||||
|
"The comment cannot be longer than 1000 characters." : "Délka komentáře může být nejvýše 1 000 znaků.",
|
||||||
|
"In reply to" : "V odpověď na",
|
||||||
|
"Reply" : "Odpovědět",
|
||||||
|
"Update" : "Aktualizovat",
|
||||||
"(group)" : "(skupina)",
|
"(group)" : "(skupina)",
|
||||||
"(circle)" : "(okruh)",
|
"(circle)" : "(okruh)",
|
||||||
"Assign to me" : "Přiřadit mě",
|
"Assign to me" : "Přiřadit mě",
|
||||||
@@ -224,21 +222,13 @@ OC.L10N.register(
|
|||||||
"Limit deck usage of groups" : "Omezit využití deck na skupiny",
|
"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.",
|
"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 name" : "Název tabule",
|
||||||
"Board details" : "Podrobnosti o desce",
|
|
||||||
"Edit board" : "Upravit tabuli",
|
"Edit board" : "Upravit tabuli",
|
||||||
"Clone board" : "Klonovat tabuli",
|
"Clone board " : "Klonovat tabuli ",
|
||||||
"Unarchive board" : "Vrátit tabuli zpět z archivu",
|
"Unarchive board " : "Vrátit tabuli zpět z archivu ",
|
||||||
"Archive board" : "Archivovat tabuli",
|
"Archive board " : "Archivovat tabuli ",
|
||||||
"Turn on due date reminders" : "Zapnout upomínky termínů",
|
"Delete board " : "Smazat tabuli",
|
||||||
"Turn off due date reminders" : "Vypnout upomínky termínů",
|
"Board details" : "Podrobnosti o desce",
|
||||||
"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",
|
"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ě",
|
"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.",
|
"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?",
|
"Delete the board?" : "Smazat tabuli?",
|
||||||
|
|||||||
46
l10n/cs.json
46
l10n/cs.json
@@ -144,7 +144,6 @@
|
|||||||
"Undo" : "Vrátit zpět",
|
"Undo" : "Vrátit zpět",
|
||||||
"Deleted cards" : "Smazané karty",
|
"Deleted cards" : "Smazané karty",
|
||||||
"Share board with a user, group or circle …" : "Sdílet tabuli s uživatelem, skupinou nebo okruhem…",
|
"Share board with a user, group or circle …" : "Sdílet tabuli s uživatelem, skupinou nebo okruhem…",
|
||||||
"Searching for users, groups and circles …" : "Hledání v uživatelích, skupinách a okruzích…",
|
|
||||||
"No participants found" : "Nenalezeni žádní účastníci",
|
"No participants found" : "Nenalezeni žádní účastníci",
|
||||||
"Board owner" : "Vlastník tabule",
|
"Board owner" : "Vlastník tabule",
|
||||||
"(Group)" : "(Skupina)",
|
"(Group)" : "(Skupina)",
|
||||||
@@ -173,12 +172,6 @@
|
|||||||
"Restore Attachment" : "Obnovit přílohu",
|
"Restore Attachment" : "Obnovit přílohu",
|
||||||
"Open in sidebar view" : "Otevřít v zobrazení v postranním panelu",
|
"Open in sidebar view" : "Otevřít v zobrazení v postranním panelu",
|
||||||
"Open in bigger view" : "Otevřít ve větším zobrazení",
|
"Open in bigger view" : "Otevřít ve větším zobrazení",
|
||||||
"Attachments" : "Přílohy",
|
|
||||||
"Comments" : "Komentáře",
|
|
||||||
"Modified" : "Změněno",
|
|
||||||
"Created" : "Vytvořeno",
|
|
||||||
"The title cannot be empty." : "Nadpis je třeba vyplnit.",
|
|
||||||
"No comments yet. Begin the discussion!" : "Zatím bez komentářů. Zahajte diskuzi!",
|
|
||||||
"Assign a tag to this card…" : "Přiřadit této kartě štítek…",
|
"Assign a tag to this card…" : "Přiřadit této kartě štítek…",
|
||||||
"Assign to users" : "Přiřadit k uživatelům",
|
"Assign to users" : "Přiřadit k uživatelům",
|
||||||
"Assign to users/groups/circles" : "Přiřadit uživatelům/skupinám/okruhům",
|
"Assign to users/groups/circles" : "Přiřadit uživatelům/skupinám/okruhům",
|
||||||
@@ -186,13 +179,6 @@
|
|||||||
"Due date" : "Termín",
|
"Due date" : "Termín",
|
||||||
"Set a due date" : "Vybrat termín",
|
"Set a due date" : "Vybrat termín",
|
||||||
"Remove due date" : "Odstranit termín",
|
"Remove due date" : "Odstranit termín",
|
||||||
"Select Date" : "Vybrat datum",
|
|
||||||
"Save" : "Uložit",
|
|
||||||
"The comment cannot be empty." : "Komentář je třeba vyplnit",
|
|
||||||
"The comment cannot be longer than 1000 characters." : "Délka komentáře může být nejvýše 1 000 znaků.",
|
|
||||||
"In reply to" : "V odpověď na",
|
|
||||||
"Reply" : "Odpovědět",
|
|
||||||
"Update" : "Aktualizovat",
|
|
||||||
"Description" : "Popis",
|
"Description" : "Popis",
|
||||||
"(Unsaved)" : "(Neuloženo)",
|
"(Unsaved)" : "(Neuloženo)",
|
||||||
"(Saving…)" : "(Ukládání…)",
|
"(Saving…)" : "(Ukládání…)",
|
||||||
@@ -200,8 +186,20 @@
|
|||||||
"Edit description" : "Upravit popis",
|
"Edit description" : "Upravit popis",
|
||||||
"View description" : "Zobrazit popis",
|
"View description" : "Zobrazit popis",
|
||||||
"Add Attachment" : "Přidat přílohu",
|
"Add Attachment" : "Přidat přílohu",
|
||||||
"Write a description …" : "Zadejte popis…",
|
"Attachments" : "Přílohy",
|
||||||
|
"Comments" : "Komentáře",
|
||||||
"Choose attachment" : "Zvolte přílohu",
|
"Choose attachment" : "Zvolte přílohu",
|
||||||
|
"Select Date" : "Vybrat datum",
|
||||||
|
"Modified" : "Změněno",
|
||||||
|
"Created" : "Vytvořeno",
|
||||||
|
"The title cannot be empty." : "Nadpis je třeba vyplnit.",
|
||||||
|
"No comments yet. Begin the discussion!" : "Zatím bez komentářů. Zahajte diskuzi!",
|
||||||
|
"Save" : "Uložit",
|
||||||
|
"The comment cannot be empty." : "Komentář je třeba vyplnit",
|
||||||
|
"The comment cannot be longer than 1000 characters." : "Délka komentáře může být nejvýše 1 000 znaků.",
|
||||||
|
"In reply to" : "V odpověď na",
|
||||||
|
"Reply" : "Odpovědět",
|
||||||
|
"Update" : "Aktualizovat",
|
||||||
"(group)" : "(skupina)",
|
"(group)" : "(skupina)",
|
||||||
"(circle)" : "(okruh)",
|
"(circle)" : "(okruh)",
|
||||||
"Assign to me" : "Přiřadit mě",
|
"Assign to me" : "Přiřadit mě",
|
||||||
@@ -222,21 +220,13 @@
|
|||||||
"Limit deck usage of groups" : "Omezit využití deck na skupiny",
|
"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.",
|
"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 name" : "Název tabule",
|
||||||
"Board details" : "Podrobnosti o desce",
|
|
||||||
"Edit board" : "Upravit tabuli",
|
"Edit board" : "Upravit tabuli",
|
||||||
"Clone board" : "Klonovat tabuli",
|
"Clone board " : "Klonovat tabuli ",
|
||||||
"Unarchive board" : "Vrátit tabuli zpět z archivu",
|
"Unarchive board " : "Vrátit tabuli zpět z archivu ",
|
||||||
"Archive board" : "Archivovat tabuli",
|
"Archive board " : "Archivovat tabuli ",
|
||||||
"Turn on due date reminders" : "Zapnout upomínky termínů",
|
"Delete board " : "Smazat tabuli",
|
||||||
"Turn off due date reminders" : "Vypnout upomínky termínů",
|
"Board details" : "Podrobnosti o desce",
|
||||||
"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",
|
"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ě",
|
"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.",
|
"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?",
|
"Delete the board?" : "Smazat tabuli?",
|
||||||
|
|||||||
@@ -16,11 +16,11 @@ OC.L10N.register(
|
|||||||
"Edit" : "Golygu",
|
"Edit" : "Golygu",
|
||||||
"Title" : "Teitl",
|
"Title" : "Teitl",
|
||||||
"Upload attachment" : "Llwytho atodiad",
|
"Upload attachment" : "Llwytho atodiad",
|
||||||
"Modified" : "Addaswyd",
|
"Description" : "Disgrifiad",
|
||||||
"Select Date" : "Dewis Dyddiad",
|
"Select Date" : "Dewis Dyddiad",
|
||||||
|
"Modified" : "Addaswyd",
|
||||||
"Save" : "Cadw",
|
"Save" : "Cadw",
|
||||||
"Update" : "Diweddaru",
|
"Update" : "Diweddaru",
|
||||||
"Description" : "Disgrifiad",
|
|
||||||
"seconds ago" : "eiliad yn ôl",
|
"seconds ago" : "eiliad yn ôl",
|
||||||
"Shared with you" : "Shared with you",
|
"Shared with you" : "Shared with you",
|
||||||
"An error occurred" : "Digwyddodd gwall",
|
"An error occurred" : "Digwyddodd gwall",
|
||||||
|
|||||||
@@ -14,11 +14,11 @@
|
|||||||
"Edit" : "Golygu",
|
"Edit" : "Golygu",
|
||||||
"Title" : "Teitl",
|
"Title" : "Teitl",
|
||||||
"Upload attachment" : "Llwytho atodiad",
|
"Upload attachment" : "Llwytho atodiad",
|
||||||
"Modified" : "Addaswyd",
|
"Description" : "Disgrifiad",
|
||||||
"Select Date" : "Dewis Dyddiad",
|
"Select Date" : "Dewis Dyddiad",
|
||||||
|
"Modified" : "Addaswyd",
|
||||||
"Save" : "Cadw",
|
"Save" : "Cadw",
|
||||||
"Update" : "Diweddaru",
|
"Update" : "Diweddaru",
|
||||||
"Description" : "Disgrifiad",
|
|
||||||
"seconds ago" : "eiliad yn ôl",
|
"seconds ago" : "eiliad yn ôl",
|
||||||
"Shared with you" : "Shared with you",
|
"Shared with you" : "Shared with you",
|
||||||
"An error occurred" : "Digwyddodd gwall",
|
"An error occurred" : "Digwyddodd gwall",
|
||||||
|
|||||||
14
l10n/da.js
14
l10n/da.js
@@ -37,18 +37,18 @@ OC.L10N.register(
|
|||||||
"Title" : "Titel",
|
"Title" : "Titel",
|
||||||
"Members" : "Medlemmer",
|
"Members" : "Medlemmer",
|
||||||
"Upload attachment" : "Upload vedhæftning",
|
"Upload attachment" : "Upload vedhæftning",
|
||||||
"Attachments" : "Vedhæftede filer",
|
|
||||||
"Comments" : "Kommentarer",
|
|
||||||
"Modified" : "Ændret",
|
|
||||||
"Created" : "Oprettet",
|
|
||||||
"Due date" : "Forfaldsdato",
|
"Due date" : "Forfaldsdato",
|
||||||
"Remove due date" : "Fjern forfaldsdato",
|
"Remove due date" : "Fjern forfaldsdato",
|
||||||
|
"Description" : "Beskrivelse",
|
||||||
|
"Formatting help" : "Hjælp til formatering",
|
||||||
|
"Attachments" : "Vedhæftede filer",
|
||||||
|
"Comments" : "Kommentarer",
|
||||||
"Select Date" : "Vælg dato",
|
"Select Date" : "Vælg dato",
|
||||||
|
"Modified" : "Ændret",
|
||||||
|
"Created" : "Oprettet",
|
||||||
"Save" : "Gem",
|
"Save" : "Gem",
|
||||||
"Reply" : "Besvar",
|
"Reply" : "Besvar",
|
||||||
"Update" : "Opdatér",
|
"Update" : "Opdatér",
|
||||||
"Description" : "Beskrivelse",
|
|
||||||
"Formatting help" : "Hjælp til formatering",
|
|
||||||
"(group)" : "(gruppe)",
|
"(group)" : "(gruppe)",
|
||||||
"Move card" : "Flyt kort",
|
"Move card" : "Flyt kort",
|
||||||
"Archive card" : "Arkivér kort",
|
"Archive card" : "Arkivér kort",
|
||||||
@@ -56,8 +56,8 @@ OC.L10N.register(
|
|||||||
"seconds ago" : "sekunder siden",
|
"seconds ago" : "sekunder siden",
|
||||||
"Archived boards" : "Arkiverede lister",
|
"Archived boards" : "Arkiverede lister",
|
||||||
"Shared with you" : "Shared with you",
|
"Shared with you" : "Shared with you",
|
||||||
"Board details" : "Liste detaljer",
|
|
||||||
"Edit board" : "Rediger liste",
|
"Edit board" : "Rediger liste",
|
||||||
|
"Board details" : "Liste detaljer",
|
||||||
"An error occurred" : "Der var en fejl",
|
"An error occurred" : "Der var en fejl",
|
||||||
"Today" : "I dag",
|
"Today" : "I dag",
|
||||||
"Tomorrow" : "I morgen",
|
"Tomorrow" : "I morgen",
|
||||||
|
|||||||
14
l10n/da.json
14
l10n/da.json
@@ -35,18 +35,18 @@
|
|||||||
"Title" : "Titel",
|
"Title" : "Titel",
|
||||||
"Members" : "Medlemmer",
|
"Members" : "Medlemmer",
|
||||||
"Upload attachment" : "Upload vedhæftning",
|
"Upload attachment" : "Upload vedhæftning",
|
||||||
"Attachments" : "Vedhæftede filer",
|
|
||||||
"Comments" : "Kommentarer",
|
|
||||||
"Modified" : "Ændret",
|
|
||||||
"Created" : "Oprettet",
|
|
||||||
"Due date" : "Forfaldsdato",
|
"Due date" : "Forfaldsdato",
|
||||||
"Remove due date" : "Fjern forfaldsdato",
|
"Remove due date" : "Fjern forfaldsdato",
|
||||||
|
"Description" : "Beskrivelse",
|
||||||
|
"Formatting help" : "Hjælp til formatering",
|
||||||
|
"Attachments" : "Vedhæftede filer",
|
||||||
|
"Comments" : "Kommentarer",
|
||||||
"Select Date" : "Vælg dato",
|
"Select Date" : "Vælg dato",
|
||||||
|
"Modified" : "Ændret",
|
||||||
|
"Created" : "Oprettet",
|
||||||
"Save" : "Gem",
|
"Save" : "Gem",
|
||||||
"Reply" : "Besvar",
|
"Reply" : "Besvar",
|
||||||
"Update" : "Opdatér",
|
"Update" : "Opdatér",
|
||||||
"Description" : "Beskrivelse",
|
|
||||||
"Formatting help" : "Hjælp til formatering",
|
|
||||||
"(group)" : "(gruppe)",
|
"(group)" : "(gruppe)",
|
||||||
"Move card" : "Flyt kort",
|
"Move card" : "Flyt kort",
|
||||||
"Archive card" : "Arkivér kort",
|
"Archive card" : "Arkivér kort",
|
||||||
@@ -54,8 +54,8 @@
|
|||||||
"seconds ago" : "sekunder siden",
|
"seconds ago" : "sekunder siden",
|
||||||
"Archived boards" : "Arkiverede lister",
|
"Archived boards" : "Arkiverede lister",
|
||||||
"Shared with you" : "Shared with you",
|
"Shared with you" : "Shared with you",
|
||||||
"Board details" : "Liste detaljer",
|
|
||||||
"Edit board" : "Rediger liste",
|
"Edit board" : "Rediger liste",
|
||||||
|
"Board details" : "Liste detaljer",
|
||||||
"An error occurred" : "Der var en fejl",
|
"An error occurred" : "Der var en fejl",
|
||||||
"Today" : "I dag",
|
"Today" : "I dag",
|
||||||
"Tomorrow" : "I morgen",
|
"Tomorrow" : "I morgen",
|
||||||
|
|||||||
60
l10n/de.js
60
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",
|
"{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",
|
"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",
|
"{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",
|
"{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",
|
"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",
|
"{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",
|
||||||
@@ -67,7 +67,7 @@ OC.L10N.register(
|
|||||||
"Deck" : "Deck",
|
"Deck" : "Deck",
|
||||||
"Changes in the <strong>Deck app</strong>" : "Änderungen in der <strong>Deck-App</strong>",
|
"Changes in the <strong>Deck app</strong>" : "Änderungen in der <strong>Deck-App</strong>",
|
||||||
"A <strong>comment</strong> was created on a card" : "Ein <strong>Kommentar</strong> zu einer Karte wurde erstellt",
|
"A <strong>comment</strong> was created on a card" : "Ein <strong>Kommentar</strong> zu einer Karte wurde erstellt",
|
||||||
"Upcoming cards" : "Anstehende Karten",
|
"Upcoming cards" : "Zukünftige Karten",
|
||||||
"Personal" : "Persönlich",
|
"Personal" : "Persönlich",
|
||||||
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Die Karte \"%s\" auf \"%s\" wurde Dir von %s zugewiesen.",
|
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Die Karte \"%s\" auf \"%s\" wurde Dir von %s zugewiesen.",
|
||||||
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} hat Dir die Karte \"%s\" auf \"%s\" zugewiesen.",
|
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} hat Dir die Karte \"%s\" auf \"%s\" zugewiesen.",
|
||||||
@@ -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",
|
"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",
|
"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",
|
"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",
|
"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",
|
"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",
|
"Search by board title" : "Nach einem Board suchen",
|
||||||
@@ -175,12 +175,6 @@ OC.L10N.register(
|
|||||||
"Restore Attachment" : "Anhang wiederherstellen",
|
"Restore Attachment" : "Anhang wiederherstellen",
|
||||||
"Open in sidebar view" : "In Seitenleiste öffnen",
|
"Open in sidebar view" : "In Seitenleiste öffnen",
|
||||||
"Open in bigger view" : "In größerer Ansicht öffnen",
|
"Open in bigger view" : "In größerer Ansicht öffnen",
|
||||||
"Attachments" : "Anhänge",
|
|
||||||
"Comments" : "Kommentare",
|
|
||||||
"Modified" : "Geändert",
|
|
||||||
"Created" : "Erstellt",
|
|
||||||
"The title cannot be empty." : "Der Titel darf nicht leer sein.",
|
|
||||||
"No comments yet. Begin the discussion!" : "Bislang keine Kommentare. Beginne die Diskussion!",
|
|
||||||
"Assign a tag to this card…" : "Dieser Karte ein Schlagwort zuweisen…",
|
"Assign a tag to this card…" : "Dieser Karte ein Schlagwort zuweisen…",
|
||||||
"Assign to users" : "Benutzern zuweisen",
|
"Assign to users" : "Benutzern zuweisen",
|
||||||
"Assign to users/groups/circles" : "An Benutzer, Gruppen oder Kreise zuweisen",
|
"Assign to users/groups/circles" : "An Benutzer, Gruppen oder Kreise zuweisen",
|
||||||
@@ -188,13 +182,6 @@ OC.L10N.register(
|
|||||||
"Due date" : "Fälligkeitsdatum",
|
"Due date" : "Fälligkeitsdatum",
|
||||||
"Set a due date" : "Ein Ablaufdatum setzen",
|
"Set a due date" : "Ein Ablaufdatum setzen",
|
||||||
"Remove due date" : "Fälligkeitsdatum löschen",
|
"Remove due date" : "Fälligkeitsdatum löschen",
|
||||||
"Select Date" : "Datum auswählen",
|
|
||||||
"Save" : "Speichern",
|
|
||||||
"The comment cannot be empty." : "Der Kommentar darf nicht leer sein.",
|
|
||||||
"The comment cannot be longer than 1000 characters." : "Der Kommentar darf nicht länger als 1000 Zeichen sein.",
|
|
||||||
"In reply to" : "Als Antwort auf",
|
|
||||||
"Reply" : "Antworten",
|
|
||||||
"Update" : "Aktualisieren",
|
|
||||||
"Description" : "Beschreibung",
|
"Description" : "Beschreibung",
|
||||||
"(Unsaved)" : "(nicht gespeichert)",
|
"(Unsaved)" : "(nicht gespeichert)",
|
||||||
"(Saving…)" : "(Speichere…)",
|
"(Saving…)" : "(Speichere…)",
|
||||||
@@ -202,8 +189,20 @@ OC.L10N.register(
|
|||||||
"Edit description" : "Beschreibung bearbeiten",
|
"Edit description" : "Beschreibung bearbeiten",
|
||||||
"View description" : "Beschreibung anzeigen",
|
"View description" : "Beschreibung anzeigen",
|
||||||
"Add Attachment" : "Anhang anhängen",
|
"Add Attachment" : "Anhang anhängen",
|
||||||
"Write a description …" : "Beschreibung schreiben …",
|
"Attachments" : "Anhänge",
|
||||||
|
"Comments" : "Kommentare",
|
||||||
"Choose attachment" : "Anhang auswählen",
|
"Choose attachment" : "Anhang auswählen",
|
||||||
|
"Select Date" : "Datum auswählen",
|
||||||
|
"Modified" : "Geändert",
|
||||||
|
"Created" : "Erstellt",
|
||||||
|
"The title cannot be empty." : "Der Titel darf nicht leer sein.",
|
||||||
|
"No comments yet. Begin the discussion!" : "Bislang keine Kommentare. Beginne die Diskussion!",
|
||||||
|
"Save" : "Speichern",
|
||||||
|
"The comment cannot be empty." : "Der Kommentar darf nicht leer sein.",
|
||||||
|
"The comment cannot be longer than 1000 characters." : "Der Kommentar darf nicht länger als 1000 Zeichen sein.",
|
||||||
|
"In reply to" : "Als Antwort auf",
|
||||||
|
"Reply" : "Antworten",
|
||||||
|
"Update" : "Aktualisieren",
|
||||||
"(group)" : "(Gruppe)",
|
"(group)" : "(Gruppe)",
|
||||||
"(circle)" : "(Kreis)",
|
"(circle)" : "(Kreis)",
|
||||||
"Assign to me" : "Mir zuweisen",
|
"Assign to me" : "Mir zuweisen",
|
||||||
@@ -222,23 +221,15 @@ OC.L10N.register(
|
|||||||
"Use modal card view" : "Modale Kartenansicht verwenden",
|
"Use modal card view" : "Modale Kartenansicht verwenden",
|
||||||
"Show boards in calendar/tasks" : "Board in Kalender/Aufgaben anzeigen",
|
"Show boards in calendar/tasks" : "Board in Kalender/Aufgaben anzeigen",
|
||||||
"Limit deck usage of groups" : "Nutzung von Deck auf Gruppen einschränken",
|
"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 name" : "Board-Name",
|
||||||
"Board details" : "Board-Details",
|
|
||||||
"Edit board" : "Board bearbeiten",
|
"Edit board" : "Board bearbeiten",
|
||||||
"Clone board" : "Board klonen",
|
"Clone board " : "Board duplizieren",
|
||||||
"Unarchive board" : "Board dearchivieren",
|
"Unarchive board " : "Board dearchivieren",
|
||||||
"Archive board" : "Board archivieren",
|
"Archive board " : "Board archivieren",
|
||||||
"Turn on due date reminders" : "Fälligkeitserinnerungen einschalten",
|
"Delete board " : "Board löschen",
|
||||||
"Turn off due date reminders" : "Fälligkeitserinnerungen ausschalten",
|
"Board details" : "Board-Details",
|
||||||
"Due date reminders" : "Fälligkeitserinnerungen",
|
|
||||||
"All cards" : "Alle Karten",
|
|
||||||
"Assigned cards" : "Zugewiesene Karten",
|
|
||||||
"No notifications" : "Keine Benachrichtigungen",
|
|
||||||
"Delete board" : "Board löschen",
|
|
||||||
"Board {0} deleted" : "Board {0} gelöscht",
|
"Board {0} deleted" : "Board {0} gelöscht",
|
||||||
"Only assigned cards" : "Nur zugewiesene Karten",
|
|
||||||
"No reminder" : "Keine Erinnerung",
|
|
||||||
"An error occurred" : "Es ist ein Fehler aufgetreten",
|
"An error occurred" : "Es ist ein Fehler aufgetreten",
|
||||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Möchtest Du wirklich dieses Board {title} mit all seinen Daten löschen?",
|
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Möchtest Du wirklich dieses Board {title} mit all seinen Daten löschen?",
|
||||||
"Delete the board?" : "Das Board löschen?",
|
"Delete the board?" : "Das Board löschen?",
|
||||||
@@ -247,12 +238,11 @@ OC.L10N.register(
|
|||||||
"Tomorrow" : "Morgen",
|
"Tomorrow" : "Morgen",
|
||||||
"This week" : "Diese Woche",
|
"This week" : "Diese Woche",
|
||||||
"No due" : "Kein Fälligkeitsdatum",
|
"No due" : "Kein Fälligkeitsdatum",
|
||||||
"No upcoming cards" : "Keine anstehenden Karten",
|
"No upcoming cards" : "Keine zukünftigen Karten",
|
||||||
"upcoming cards" : "Anstehende Karten",
|
"upcoming cards" : "zukünftige Karten",
|
||||||
"Link to a board" : "Mit einem Board verknüpfen",
|
"Link to a board" : "Mit einem Board verknüpfen",
|
||||||
"Link to a card" : "Mit einer Karte verknüpfen",
|
"Link to a card" : "Mit einer Karte verknüpfen",
|
||||||
"Something went wrong" : "Etwas ist schiefgelaufen",
|
"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"
|
"Maximum file size of {size} exceeded" : "Maximale Dateigröße von {size} überschritten"
|
||||||
},
|
},
|
||||||
"nplurals=2; plural=(n != 1);");
|
"nplurals=2; plural=(n != 1);");
|
||||||
|
|||||||
60
l10n/de.json
60
l10n/de.json
@@ -29,7 +29,7 @@
|
|||||||
"{user} has renamed the card {before} to {card}" : "{user} hat 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}" : "Du hast der Karte {card} in der Liste {stack} auf dem Board {board} eine Beschreibung hinzugefügt",
|
"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",
|
"{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",
|
"{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",
|
"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",
|
"{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",
|
||||||
@@ -65,7 +65,7 @@
|
|||||||
"Deck" : "Deck",
|
"Deck" : "Deck",
|
||||||
"Changes in the <strong>Deck app</strong>" : "Änderungen in der <strong>Deck-App</strong>",
|
"Changes in the <strong>Deck app</strong>" : "Änderungen in der <strong>Deck-App</strong>",
|
||||||
"A <strong>comment</strong> was created on a card" : "Ein <strong>Kommentar</strong> zu einer Karte wurde erstellt",
|
"A <strong>comment</strong> was created on a card" : "Ein <strong>Kommentar</strong> zu einer Karte wurde erstellt",
|
||||||
"Upcoming cards" : "Anstehende Karten",
|
"Upcoming cards" : "Zukünftige Karten",
|
||||||
"Personal" : "Persönlich",
|
"Personal" : "Persönlich",
|
||||||
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Die Karte \"%s\" auf \"%s\" wurde Dir von %s zugewiesen.",
|
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Die Karte \"%s\" auf \"%s\" wurde Dir von %s zugewiesen.",
|
||||||
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} hat Dir die Karte \"%s\" auf \"%s\" zugewiesen.",
|
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} hat Dir die Karte \"%s\" auf \"%s\" zugewiesen.",
|
||||||
@@ -97,7 +97,7 @@
|
|||||||
"No file uploaded or file size exceeds maximum of %s" : "Keine Datei hochgeladen oder die Dateigröße überschreitet %s",
|
"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",
|
"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",
|
"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",
|
"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",
|
"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",
|
"Search by board title" : "Nach einem Board suchen",
|
||||||
@@ -173,12 +173,6 @@
|
|||||||
"Restore Attachment" : "Anhang wiederherstellen",
|
"Restore Attachment" : "Anhang wiederherstellen",
|
||||||
"Open in sidebar view" : "In Seitenleiste öffnen",
|
"Open in sidebar view" : "In Seitenleiste öffnen",
|
||||||
"Open in bigger view" : "In größerer Ansicht öffnen",
|
"Open in bigger view" : "In größerer Ansicht öffnen",
|
||||||
"Attachments" : "Anhänge",
|
|
||||||
"Comments" : "Kommentare",
|
|
||||||
"Modified" : "Geändert",
|
|
||||||
"Created" : "Erstellt",
|
|
||||||
"The title cannot be empty." : "Der Titel darf nicht leer sein.",
|
|
||||||
"No comments yet. Begin the discussion!" : "Bislang keine Kommentare. Beginne die Diskussion!",
|
|
||||||
"Assign a tag to this card…" : "Dieser Karte ein Schlagwort zuweisen…",
|
"Assign a tag to this card…" : "Dieser Karte ein Schlagwort zuweisen…",
|
||||||
"Assign to users" : "Benutzern zuweisen",
|
"Assign to users" : "Benutzern zuweisen",
|
||||||
"Assign to users/groups/circles" : "An Benutzer, Gruppen oder Kreise zuweisen",
|
"Assign to users/groups/circles" : "An Benutzer, Gruppen oder Kreise zuweisen",
|
||||||
@@ -186,13 +180,6 @@
|
|||||||
"Due date" : "Fälligkeitsdatum",
|
"Due date" : "Fälligkeitsdatum",
|
||||||
"Set a due date" : "Ein Ablaufdatum setzen",
|
"Set a due date" : "Ein Ablaufdatum setzen",
|
||||||
"Remove due date" : "Fälligkeitsdatum löschen",
|
"Remove due date" : "Fälligkeitsdatum löschen",
|
||||||
"Select Date" : "Datum auswählen",
|
|
||||||
"Save" : "Speichern",
|
|
||||||
"The comment cannot be empty." : "Der Kommentar darf nicht leer sein.",
|
|
||||||
"The comment cannot be longer than 1000 characters." : "Der Kommentar darf nicht länger als 1000 Zeichen sein.",
|
|
||||||
"In reply to" : "Als Antwort auf",
|
|
||||||
"Reply" : "Antworten",
|
|
||||||
"Update" : "Aktualisieren",
|
|
||||||
"Description" : "Beschreibung",
|
"Description" : "Beschreibung",
|
||||||
"(Unsaved)" : "(nicht gespeichert)",
|
"(Unsaved)" : "(nicht gespeichert)",
|
||||||
"(Saving…)" : "(Speichere…)",
|
"(Saving…)" : "(Speichere…)",
|
||||||
@@ -200,8 +187,20 @@
|
|||||||
"Edit description" : "Beschreibung bearbeiten",
|
"Edit description" : "Beschreibung bearbeiten",
|
||||||
"View description" : "Beschreibung anzeigen",
|
"View description" : "Beschreibung anzeigen",
|
||||||
"Add Attachment" : "Anhang anhängen",
|
"Add Attachment" : "Anhang anhängen",
|
||||||
"Write a description …" : "Beschreibung schreiben …",
|
"Attachments" : "Anhänge",
|
||||||
|
"Comments" : "Kommentare",
|
||||||
"Choose attachment" : "Anhang auswählen",
|
"Choose attachment" : "Anhang auswählen",
|
||||||
|
"Select Date" : "Datum auswählen",
|
||||||
|
"Modified" : "Geändert",
|
||||||
|
"Created" : "Erstellt",
|
||||||
|
"The title cannot be empty." : "Der Titel darf nicht leer sein.",
|
||||||
|
"No comments yet. Begin the discussion!" : "Bislang keine Kommentare. Beginne die Diskussion!",
|
||||||
|
"Save" : "Speichern",
|
||||||
|
"The comment cannot be empty." : "Der Kommentar darf nicht leer sein.",
|
||||||
|
"The comment cannot be longer than 1000 characters." : "Der Kommentar darf nicht länger als 1000 Zeichen sein.",
|
||||||
|
"In reply to" : "Als Antwort auf",
|
||||||
|
"Reply" : "Antworten",
|
||||||
|
"Update" : "Aktualisieren",
|
||||||
"(group)" : "(Gruppe)",
|
"(group)" : "(Gruppe)",
|
||||||
"(circle)" : "(Kreis)",
|
"(circle)" : "(Kreis)",
|
||||||
"Assign to me" : "Mir zuweisen",
|
"Assign to me" : "Mir zuweisen",
|
||||||
@@ -220,23 +219,15 @@
|
|||||||
"Use modal card view" : "Modale Kartenansicht verwenden",
|
"Use modal card view" : "Modale Kartenansicht verwenden",
|
||||||
"Show boards in calendar/tasks" : "Board in Kalender/Aufgaben anzeigen",
|
"Show boards in calendar/tasks" : "Board in Kalender/Aufgaben anzeigen",
|
||||||
"Limit deck usage of groups" : "Nutzung von Deck auf Gruppen einschränken",
|
"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 name" : "Board-Name",
|
||||||
"Board details" : "Board-Details",
|
|
||||||
"Edit board" : "Board bearbeiten",
|
"Edit board" : "Board bearbeiten",
|
||||||
"Clone board" : "Board klonen",
|
"Clone board " : "Board duplizieren",
|
||||||
"Unarchive board" : "Board dearchivieren",
|
"Unarchive board " : "Board dearchivieren",
|
||||||
"Archive board" : "Board archivieren",
|
"Archive board " : "Board archivieren",
|
||||||
"Turn on due date reminders" : "Fälligkeitserinnerungen einschalten",
|
"Delete board " : "Board löschen",
|
||||||
"Turn off due date reminders" : "Fälligkeitserinnerungen ausschalten",
|
"Board details" : "Board-Details",
|
||||||
"Due date reminders" : "Fälligkeitserinnerungen",
|
|
||||||
"All cards" : "Alle Karten",
|
|
||||||
"Assigned cards" : "Zugewiesene Karten",
|
|
||||||
"No notifications" : "Keine Benachrichtigungen",
|
|
||||||
"Delete board" : "Board löschen",
|
|
||||||
"Board {0} deleted" : "Board {0} gelöscht",
|
"Board {0} deleted" : "Board {0} gelöscht",
|
||||||
"Only assigned cards" : "Nur zugewiesene Karten",
|
|
||||||
"No reminder" : "Keine Erinnerung",
|
|
||||||
"An error occurred" : "Es ist ein Fehler aufgetreten",
|
"An error occurred" : "Es ist ein Fehler aufgetreten",
|
||||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Möchtest Du wirklich dieses Board {title} mit all seinen Daten löschen?",
|
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Möchtest Du wirklich dieses Board {title} mit all seinen Daten löschen?",
|
||||||
"Delete the board?" : "Das Board löschen?",
|
"Delete the board?" : "Das Board löschen?",
|
||||||
@@ -245,12 +236,11 @@
|
|||||||
"Tomorrow" : "Morgen",
|
"Tomorrow" : "Morgen",
|
||||||
"This week" : "Diese Woche",
|
"This week" : "Diese Woche",
|
||||||
"No due" : "Kein Fälligkeitsdatum",
|
"No due" : "Kein Fälligkeitsdatum",
|
||||||
"No upcoming cards" : "Keine anstehenden Karten",
|
"No upcoming cards" : "Keine zukünftigen Karten",
|
||||||
"upcoming cards" : "Anstehende Karten",
|
"upcoming cards" : "zukünftige Karten",
|
||||||
"Link to a board" : "Mit einem Board verknüpfen",
|
"Link to a board" : "Mit einem Board verknüpfen",
|
||||||
"Link to a card" : "Mit einer Karte verknüpfen",
|
"Link to a card" : "Mit einer Karte verknüpfen",
|
||||||
"Something went wrong" : "Etwas ist schiefgelaufen",
|
"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"
|
"Maximum file size of {size} exceeded" : "Maximale Dateigröße von {size} überschritten"
|
||||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
},"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",
|
"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",
|
"{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",
|
"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",
|
"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",
|
"{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",
|
"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",
|
||||||
@@ -67,7 +67,7 @@ OC.L10N.register(
|
|||||||
"Deck" : "Deck",
|
"Deck" : "Deck",
|
||||||
"Changes in the <strong>Deck app</strong>" : "Änderungen in der <strong>Deck-App</strong>",
|
"Changes in the <strong>Deck app</strong>" : "Änderungen in der <strong>Deck-App</strong>",
|
||||||
"A <strong>comment</strong> was created on a card" : "Ein <strong>Kommentar</strong> zu einer Karte wurde erstellt",
|
"A <strong>comment</strong> was created on a card" : "Ein <strong>Kommentar</strong> zu einer Karte wurde erstellt",
|
||||||
"Upcoming cards" : "Anstehende Karten",
|
"Upcoming cards" : "Zukünftige Karten",
|
||||||
"Personal" : "Persönlich",
|
"Personal" : "Persönlich",
|
||||||
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Die Karte \"%s\" auf \"%s\" wurde Ihnen von %s zugewiesen.",
|
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Die Karte \"%s\" auf \"%s\" wurde Ihnen von %s zugewiesen.",
|
||||||
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} hat Ihnen die Karte \"%s\" auf \"%s\" zugewiesen.",
|
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} hat Ihnen die Karte \"%s\" auf \"%s\" zugewiesen.",
|
||||||
@@ -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",
|
"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",
|
"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",
|
"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",
|
"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",
|
"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",
|
"Search by board title" : "Nach einem Board suchen",
|
||||||
@@ -175,12 +175,6 @@ OC.L10N.register(
|
|||||||
"Restore Attachment" : "Anhang wiederherstellen",
|
"Restore Attachment" : "Anhang wiederherstellen",
|
||||||
"Open in sidebar view" : "In Seitenleiste öffnen",
|
"Open in sidebar view" : "In Seitenleiste öffnen",
|
||||||
"Open in bigger view" : "In größerer Ansicht öffnen",
|
"Open in bigger view" : "In größerer Ansicht öffnen",
|
||||||
"Attachments" : "Anhänge",
|
|
||||||
"Comments" : "Kommentare",
|
|
||||||
"Modified" : "Geändert",
|
|
||||||
"Created" : "Erstellt",
|
|
||||||
"The title cannot be empty." : "Der Titel darf nicht leer sein.",
|
|
||||||
"No comments yet. Begin the discussion!" : "Bislang keine Kommentare. Beginnen Sie die Diskussion!",
|
|
||||||
"Assign a tag to this card…" : "Dieser Karte ein Schlagwort zuweisen…",
|
"Assign a tag to this card…" : "Dieser Karte ein Schlagwort zuweisen…",
|
||||||
"Assign to users" : "Benutzern zuweisen",
|
"Assign to users" : "Benutzern zuweisen",
|
||||||
"Assign to users/groups/circles" : "An Benutzer, Gruppen oder Kreise zuweisen",
|
"Assign to users/groups/circles" : "An Benutzer, Gruppen oder Kreise zuweisen",
|
||||||
@@ -188,13 +182,6 @@ OC.L10N.register(
|
|||||||
"Due date" : "Fälligkeitsdatum",
|
"Due date" : "Fälligkeitsdatum",
|
||||||
"Set a due date" : "Ein Ablaufdatum setzen",
|
"Set a due date" : "Ein Ablaufdatum setzen",
|
||||||
"Remove due date" : "Fälligkeitsdatum löschen",
|
"Remove due date" : "Fälligkeitsdatum löschen",
|
||||||
"Select Date" : "Datum auswählen",
|
|
||||||
"Save" : "Speichern",
|
|
||||||
"The comment cannot be empty." : "Der Kommentar darf nicht leer sein.",
|
|
||||||
"The comment cannot be longer than 1000 characters." : "Der Kommentar darf nicht länger als 1000 Zeichen sein.",
|
|
||||||
"In reply to" : "Als Antwort auf",
|
|
||||||
"Reply" : "Antworten",
|
|
||||||
"Update" : "Aktualisieren",
|
|
||||||
"Description" : "Beschreibung",
|
"Description" : "Beschreibung",
|
||||||
"(Unsaved)" : "(nicht gespeichert)",
|
"(Unsaved)" : "(nicht gespeichert)",
|
||||||
"(Saving…)" : "(Speichere…)",
|
"(Saving…)" : "(Speichere…)",
|
||||||
@@ -202,8 +189,20 @@ OC.L10N.register(
|
|||||||
"Edit description" : "Beschreibung bearbeiten",
|
"Edit description" : "Beschreibung bearbeiten",
|
||||||
"View description" : "Beschreibung anzeigen",
|
"View description" : "Beschreibung anzeigen",
|
||||||
"Add Attachment" : "Anhang anhängen",
|
"Add Attachment" : "Anhang anhängen",
|
||||||
"Write a description …" : "Beschreibung schreiben …",
|
"Attachments" : "Anhänge",
|
||||||
|
"Comments" : "Kommentare",
|
||||||
"Choose attachment" : "Anhang auswählen",
|
"Choose attachment" : "Anhang auswählen",
|
||||||
|
"Select Date" : "Datum auswählen",
|
||||||
|
"Modified" : "Geändert",
|
||||||
|
"Created" : "Erstellt",
|
||||||
|
"The title cannot be empty." : "Der Titel darf nicht leer sein.",
|
||||||
|
"No comments yet. Begin the discussion!" : "Bislang keine Kommentare. Beginnen Sie die Diskussion!",
|
||||||
|
"Save" : "Speichern",
|
||||||
|
"The comment cannot be empty." : "Der Kommentar darf nicht leer sein.",
|
||||||
|
"The comment cannot be longer than 1000 characters." : "Der Kommentar darf nicht länger als 1000 Zeichen sein.",
|
||||||
|
"In reply to" : "Als Antwort auf",
|
||||||
|
"Reply" : "Antworten",
|
||||||
|
"Update" : "Aktualisieren",
|
||||||
"(group)" : "(Gruppe)",
|
"(group)" : "(Gruppe)",
|
||||||
"(circle)" : "(Kreis)",
|
"(circle)" : "(Kreis)",
|
||||||
"Assign to me" : "Mir zuweisen",
|
"Assign to me" : "Mir zuweisen",
|
||||||
@@ -222,23 +221,15 @@ OC.L10N.register(
|
|||||||
"Use modal card view" : "Modale Kartenansicht verwenden",
|
"Use modal card view" : "Modale Kartenansicht verwenden",
|
||||||
"Show boards in calendar/tasks" : "Board in Kalender/Aufgaben anzeigen",
|
"Show boards in calendar/tasks" : "Board in Kalender/Aufgaben anzeigen",
|
||||||
"Limit deck usage of groups" : "Nutzung von Deck auf Gruppen einschränken",
|
"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 name" : "Board-Name",
|
||||||
"Board details" : "Board-Details",
|
|
||||||
"Edit board" : "Board bearbeiten",
|
"Edit board" : "Board bearbeiten",
|
||||||
"Clone board" : "Board klonen",
|
"Clone board " : "Board duplizieren",
|
||||||
"Unarchive board" : "Board dearchivieren",
|
"Unarchive board " : "Board dearchivieren",
|
||||||
"Archive board" : "Board archivieren",
|
"Archive board " : "Board archivieren",
|
||||||
"Turn on due date reminders" : "Fälligkeitserinnerungen einschalten",
|
"Delete board " : "Board löschen",
|
||||||
"Turn off due date reminders" : "Fälligkeitserinnerungen ausschalten",
|
"Board details" : "Board-Details",
|
||||||
"Due date reminders" : "Fälligkeitserinnerungen",
|
|
||||||
"All cards" : "Alle Karten",
|
|
||||||
"Assigned cards" : "Zugewiesene Karten",
|
|
||||||
"No notifications" : "Keine Benachrichtigungen",
|
|
||||||
"Delete board" : "Board löschen",
|
|
||||||
"Board {0} deleted" : "Board {0} gelöscht",
|
"Board {0} deleted" : "Board {0} gelöscht",
|
||||||
"Only assigned cards" : "Nur zugewiesene Karten",
|
|
||||||
"No reminder" : "Keine Erinnerung",
|
|
||||||
"An error occurred" : "Es ist ein Fehler aufgetreten",
|
"An error occurred" : "Es ist ein Fehler aufgetreten",
|
||||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Möchten Sie wirklich dieses Board {title} mit all seinen Daten löschen?",
|
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Möchten Sie wirklich dieses Board {title} mit all seinen Daten löschen?",
|
||||||
"Delete the board?" : "Das Board löschen?",
|
"Delete the board?" : "Das Board löschen?",
|
||||||
@@ -247,12 +238,11 @@ OC.L10N.register(
|
|||||||
"Tomorrow" : "Morgen",
|
"Tomorrow" : "Morgen",
|
||||||
"This week" : "Diese Woche",
|
"This week" : "Diese Woche",
|
||||||
"No due" : "Kein Fälligkeitsdatum",
|
"No due" : "Kein Fälligkeitsdatum",
|
||||||
"No upcoming cards" : "Keine anstehenden Karten",
|
"No upcoming cards" : "Keine zukünftigen Karten",
|
||||||
"upcoming cards" : "Anstehende Karten",
|
"upcoming cards" : "zukünftige Karten",
|
||||||
"Link to a board" : "Mit einem Board verknüpfen",
|
"Link to a board" : "Mit einem Board verknüpfen",
|
||||||
"Link to a card" : "Mit einer Karte verknüpfen",
|
"Link to a card" : "Mit einer Karte verknüpfen",
|
||||||
"Something went wrong" : "Etwas ist schiefgelaufen",
|
"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"
|
"Maximum file size of {size} exceeded" : "Maximale Dateigröße von {size} überschritten"
|
||||||
},
|
},
|
||||||
"nplurals=2; plural=(n != 1);");
|
"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",
|
"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",
|
"{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",
|
"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",
|
"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",
|
"{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",
|
"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",
|
||||||
@@ -65,7 +65,7 @@
|
|||||||
"Deck" : "Deck",
|
"Deck" : "Deck",
|
||||||
"Changes in the <strong>Deck app</strong>" : "Änderungen in der <strong>Deck-App</strong>",
|
"Changes in the <strong>Deck app</strong>" : "Änderungen in der <strong>Deck-App</strong>",
|
||||||
"A <strong>comment</strong> was created on a card" : "Ein <strong>Kommentar</strong> zu einer Karte wurde erstellt",
|
"A <strong>comment</strong> was created on a card" : "Ein <strong>Kommentar</strong> zu einer Karte wurde erstellt",
|
||||||
"Upcoming cards" : "Anstehende Karten",
|
"Upcoming cards" : "Zukünftige Karten",
|
||||||
"Personal" : "Persönlich",
|
"Personal" : "Persönlich",
|
||||||
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Die Karte \"%s\" auf \"%s\" wurde Ihnen von %s zugewiesen.",
|
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Die Karte \"%s\" auf \"%s\" wurde Ihnen von %s zugewiesen.",
|
||||||
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} hat Ihnen die Karte \"%s\" auf \"%s\" zugewiesen.",
|
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} hat Ihnen die Karte \"%s\" auf \"%s\" zugewiesen.",
|
||||||
@@ -97,7 +97,7 @@
|
|||||||
"No file uploaded or file size exceeds maximum of %s" : "Keine Datei hochgeladen oder die Dateigröße überschreitet %s",
|
"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",
|
"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",
|
"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",
|
"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",
|
"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",
|
"Search by board title" : "Nach einem Board suchen",
|
||||||
@@ -173,12 +173,6 @@
|
|||||||
"Restore Attachment" : "Anhang wiederherstellen",
|
"Restore Attachment" : "Anhang wiederherstellen",
|
||||||
"Open in sidebar view" : "In Seitenleiste öffnen",
|
"Open in sidebar view" : "In Seitenleiste öffnen",
|
||||||
"Open in bigger view" : "In größerer Ansicht öffnen",
|
"Open in bigger view" : "In größerer Ansicht öffnen",
|
||||||
"Attachments" : "Anhänge",
|
|
||||||
"Comments" : "Kommentare",
|
|
||||||
"Modified" : "Geändert",
|
|
||||||
"Created" : "Erstellt",
|
|
||||||
"The title cannot be empty." : "Der Titel darf nicht leer sein.",
|
|
||||||
"No comments yet. Begin the discussion!" : "Bislang keine Kommentare. Beginnen Sie die Diskussion!",
|
|
||||||
"Assign a tag to this card…" : "Dieser Karte ein Schlagwort zuweisen…",
|
"Assign a tag to this card…" : "Dieser Karte ein Schlagwort zuweisen…",
|
||||||
"Assign to users" : "Benutzern zuweisen",
|
"Assign to users" : "Benutzern zuweisen",
|
||||||
"Assign to users/groups/circles" : "An Benutzer, Gruppen oder Kreise zuweisen",
|
"Assign to users/groups/circles" : "An Benutzer, Gruppen oder Kreise zuweisen",
|
||||||
@@ -186,13 +180,6 @@
|
|||||||
"Due date" : "Fälligkeitsdatum",
|
"Due date" : "Fälligkeitsdatum",
|
||||||
"Set a due date" : "Ein Ablaufdatum setzen",
|
"Set a due date" : "Ein Ablaufdatum setzen",
|
||||||
"Remove due date" : "Fälligkeitsdatum löschen",
|
"Remove due date" : "Fälligkeitsdatum löschen",
|
||||||
"Select Date" : "Datum auswählen",
|
|
||||||
"Save" : "Speichern",
|
|
||||||
"The comment cannot be empty." : "Der Kommentar darf nicht leer sein.",
|
|
||||||
"The comment cannot be longer than 1000 characters." : "Der Kommentar darf nicht länger als 1000 Zeichen sein.",
|
|
||||||
"In reply to" : "Als Antwort auf",
|
|
||||||
"Reply" : "Antworten",
|
|
||||||
"Update" : "Aktualisieren",
|
|
||||||
"Description" : "Beschreibung",
|
"Description" : "Beschreibung",
|
||||||
"(Unsaved)" : "(nicht gespeichert)",
|
"(Unsaved)" : "(nicht gespeichert)",
|
||||||
"(Saving…)" : "(Speichere…)",
|
"(Saving…)" : "(Speichere…)",
|
||||||
@@ -200,8 +187,20 @@
|
|||||||
"Edit description" : "Beschreibung bearbeiten",
|
"Edit description" : "Beschreibung bearbeiten",
|
||||||
"View description" : "Beschreibung anzeigen",
|
"View description" : "Beschreibung anzeigen",
|
||||||
"Add Attachment" : "Anhang anhängen",
|
"Add Attachment" : "Anhang anhängen",
|
||||||
"Write a description …" : "Beschreibung schreiben …",
|
"Attachments" : "Anhänge",
|
||||||
|
"Comments" : "Kommentare",
|
||||||
"Choose attachment" : "Anhang auswählen",
|
"Choose attachment" : "Anhang auswählen",
|
||||||
|
"Select Date" : "Datum auswählen",
|
||||||
|
"Modified" : "Geändert",
|
||||||
|
"Created" : "Erstellt",
|
||||||
|
"The title cannot be empty." : "Der Titel darf nicht leer sein.",
|
||||||
|
"No comments yet. Begin the discussion!" : "Bislang keine Kommentare. Beginnen Sie die Diskussion!",
|
||||||
|
"Save" : "Speichern",
|
||||||
|
"The comment cannot be empty." : "Der Kommentar darf nicht leer sein.",
|
||||||
|
"The comment cannot be longer than 1000 characters." : "Der Kommentar darf nicht länger als 1000 Zeichen sein.",
|
||||||
|
"In reply to" : "Als Antwort auf",
|
||||||
|
"Reply" : "Antworten",
|
||||||
|
"Update" : "Aktualisieren",
|
||||||
"(group)" : "(Gruppe)",
|
"(group)" : "(Gruppe)",
|
||||||
"(circle)" : "(Kreis)",
|
"(circle)" : "(Kreis)",
|
||||||
"Assign to me" : "Mir zuweisen",
|
"Assign to me" : "Mir zuweisen",
|
||||||
@@ -220,23 +219,15 @@
|
|||||||
"Use modal card view" : "Modale Kartenansicht verwenden",
|
"Use modal card view" : "Modale Kartenansicht verwenden",
|
||||||
"Show boards in calendar/tasks" : "Board in Kalender/Aufgaben anzeigen",
|
"Show boards in calendar/tasks" : "Board in Kalender/Aufgaben anzeigen",
|
||||||
"Limit deck usage of groups" : "Nutzung von Deck auf Gruppen einschränken",
|
"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 name" : "Board-Name",
|
||||||
"Board details" : "Board-Details",
|
|
||||||
"Edit board" : "Board bearbeiten",
|
"Edit board" : "Board bearbeiten",
|
||||||
"Clone board" : "Board klonen",
|
"Clone board " : "Board duplizieren",
|
||||||
"Unarchive board" : "Board dearchivieren",
|
"Unarchive board " : "Board dearchivieren",
|
||||||
"Archive board" : "Board archivieren",
|
"Archive board " : "Board archivieren",
|
||||||
"Turn on due date reminders" : "Fälligkeitserinnerungen einschalten",
|
"Delete board " : "Board löschen",
|
||||||
"Turn off due date reminders" : "Fälligkeitserinnerungen ausschalten",
|
"Board details" : "Board-Details",
|
||||||
"Due date reminders" : "Fälligkeitserinnerungen",
|
|
||||||
"All cards" : "Alle Karten",
|
|
||||||
"Assigned cards" : "Zugewiesene Karten",
|
|
||||||
"No notifications" : "Keine Benachrichtigungen",
|
|
||||||
"Delete board" : "Board löschen",
|
|
||||||
"Board {0} deleted" : "Board {0} gelöscht",
|
"Board {0} deleted" : "Board {0} gelöscht",
|
||||||
"Only assigned cards" : "Nur zugewiesene Karten",
|
|
||||||
"No reminder" : "Keine Erinnerung",
|
|
||||||
"An error occurred" : "Es ist ein Fehler aufgetreten",
|
"An error occurred" : "Es ist ein Fehler aufgetreten",
|
||||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Möchten Sie wirklich dieses Board {title} mit all seinen Daten löschen?",
|
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Möchten Sie wirklich dieses Board {title} mit all seinen Daten löschen?",
|
||||||
"Delete the board?" : "Das Board löschen?",
|
"Delete the board?" : "Das Board löschen?",
|
||||||
@@ -245,12 +236,11 @@
|
|||||||
"Tomorrow" : "Morgen",
|
"Tomorrow" : "Morgen",
|
||||||
"This week" : "Diese Woche",
|
"This week" : "Diese Woche",
|
||||||
"No due" : "Kein Fälligkeitsdatum",
|
"No due" : "Kein Fälligkeitsdatum",
|
||||||
"No upcoming cards" : "Keine anstehenden Karten",
|
"No upcoming cards" : "Keine zukünftigen Karten",
|
||||||
"upcoming cards" : "Anstehende Karten",
|
"upcoming cards" : "zukünftige Karten",
|
||||||
"Link to a board" : "Mit einem Board verknüpfen",
|
"Link to a board" : "Mit einem Board verknüpfen",
|
||||||
"Link to a card" : "Mit einer Karte verknüpfen",
|
"Link to a card" : "Mit einer Karte verknüpfen",
|
||||||
"Something went wrong" : "Etwas ist schiefgelaufen",
|
"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"
|
"Maximum file size of {size} exceeded" : "Maximale Dateigröße von {size} überschritten"
|
||||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||||
}
|
}
|
||||||
30
l10n/el.js
30
l10n/el.js
@@ -167,11 +167,6 @@ OC.L10N.register(
|
|||||||
"Add this attachment" : "Προσθήκη αυτού του συνημμένου",
|
"Add this attachment" : "Προσθήκη αυτού του συνημμένου",
|
||||||
"Delete Attachment" : "Διαγραφή Συνημμένου",
|
"Delete Attachment" : "Διαγραφή Συνημμένου",
|
||||||
"Restore Attachment" : "Επαναφορά Συνημμένου",
|
"Restore Attachment" : "Επαναφορά Συνημμένου",
|
||||||
"Attachments" : "Συνημμένα",
|
|
||||||
"Comments" : "Σχόλια",
|
|
||||||
"Modified" : "Τροποποιήθηκε",
|
|
||||||
"Created" : "Δημιουργήθηκε",
|
|
||||||
"No comments yet. Begin the discussion!" : "Χωρίς σχόλια ακόμη. Ξεκινήστε την συζήτηση!",
|
|
||||||
"Assign a tag to this card…" : "Ορίστε μια ετικέτα σε αυτήν την καρτέλα...",
|
"Assign a tag to this card…" : "Ορίστε μια ετικέτα σε αυτήν την καρτέλα...",
|
||||||
"Assign to users" : "Αναθέστε στους χρήστες",
|
"Assign to users" : "Αναθέστε στους χρήστες",
|
||||||
"Assign to users/groups/circles" : "Ανάθεση σε χρήστες/ομάδες/κύκλους",
|
"Assign to users/groups/circles" : "Ανάθεση σε χρήστες/ομάδες/κύκλους",
|
||||||
@@ -179,13 +174,6 @@ OC.L10N.register(
|
|||||||
"Due date" : "Ημερομηνία λήξης",
|
"Due date" : "Ημερομηνία λήξης",
|
||||||
"Set a due date" : "Καθορίστε ημερομηνίας λήξης",
|
"Set a due date" : "Καθορίστε ημερομηνίας λήξης",
|
||||||
"Remove due date" : "Αφαίρεση ημερομηνίας λήξης",
|
"Remove due date" : "Αφαίρεση ημερομηνίας λήξης",
|
||||||
"Select Date" : "Επέλεξε Ημέρα",
|
|
||||||
"Save" : "Αποθήκευση",
|
|
||||||
"The comment cannot be empty." : "Το σχόλιο δεν μπορεί να είναι κενό.",
|
|
||||||
"The comment cannot be longer than 1000 characters." : "Το σχόλιο δεν μπορεί να έχι περισσότερους από 1000 χαρακτήρες.",
|
|
||||||
"In reply to" : "Ως απάντηση σε",
|
|
||||||
"Reply" : "Απάντηση",
|
|
||||||
"Update" : "Ενημέρωση",
|
|
||||||
"Description" : "Περιγραφή",
|
"Description" : "Περιγραφή",
|
||||||
"(Unsaved)" : "(Δεν αποθηκεύτηκε)",
|
"(Unsaved)" : "(Δεν αποθηκεύτηκε)",
|
||||||
"(Saving…)" : "(Αποθήκευση...)",
|
"(Saving…)" : "(Αποθήκευση...)",
|
||||||
@@ -193,7 +181,19 @@ OC.L10N.register(
|
|||||||
"Edit description" : "Επεξεργασία περιγραφής",
|
"Edit description" : "Επεξεργασία περιγραφής",
|
||||||
"View description" : "Εμφάνιση περιγραφής",
|
"View description" : "Εμφάνιση περιγραφής",
|
||||||
"Add Attachment" : "Προσθήκη συνημμένου",
|
"Add Attachment" : "Προσθήκη συνημμένου",
|
||||||
|
"Attachments" : "Συνημμένα",
|
||||||
|
"Comments" : "Σχόλια",
|
||||||
"Choose attachment" : "Επιλογή συνημμένου",
|
"Choose attachment" : "Επιλογή συνημμένου",
|
||||||
|
"Select Date" : "Επέλεξε Ημέρα",
|
||||||
|
"Modified" : "Τροποποιήθηκε",
|
||||||
|
"Created" : "Δημιουργήθηκε",
|
||||||
|
"No comments yet. Begin the discussion!" : "Χωρίς σχόλια ακόμη. Ξεκινήστε την συζήτηση!",
|
||||||
|
"Save" : "Αποθήκευση",
|
||||||
|
"The comment cannot be empty." : "Το σχόλιο δεν μπορεί να είναι κενό.",
|
||||||
|
"The comment cannot be longer than 1000 characters." : "Το σχόλιο δεν μπορεί να έχι περισσότερους από 1000 χαρακτήρες.",
|
||||||
|
"In reply to" : "Ως απάντηση σε",
|
||||||
|
"Reply" : "Απάντηση",
|
||||||
|
"Update" : "Ενημέρωση",
|
||||||
"(group)" : "(ομάδα)",
|
"(group)" : "(ομάδα)",
|
||||||
"(circle)" : "(κύκλος)",
|
"(circle)" : "(κύκλος)",
|
||||||
"Assign to me" : "Ανάθεση σε εμένα",
|
"Assign to me" : "Ανάθεση σε εμένα",
|
||||||
@@ -210,8 +210,12 @@ OC.L10N.register(
|
|||||||
"Shared with you" : "Διαμοιρασμένα μαζί σας",
|
"Shared with you" : "Διαμοιρασμένα μαζί σας",
|
||||||
"Limit deck usage of groups" : "Περιορίστε τη χρήση της εφαρμογής σε ομάδες",
|
"Limit deck usage of groups" : "Περιορίστε τη χρήση της εφαρμογής σε ομάδες",
|
||||||
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Ο περιορισμός του Deck θα εμποδίσει τους χρήστες που δεν είναι μέρος αυτών των ομάδων να δημιουργούν δικούς τους πίνακες. Οι χρήστες θα εξακολουθήσουν να εργάζονται σε πίνακες που έχουν διαμοιραστεί μαζί τους.",
|
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Ο περιορισμός του Deck θα εμποδίσει τους χρήστες που δεν είναι μέρος αυτών των ομάδων να δημιουργούν δικούς τους πίνακες. Οι χρήστες θα εξακολουθήσουν να εργάζονται σε πίνακες που έχουν διαμοιραστεί μαζί τους.",
|
||||||
"Board details" : "Λεπτομέριες πίνακα",
|
|
||||||
"Edit board" : "Επεξεργασία πίνακα",
|
"Edit board" : "Επεξεργασία πίνακα",
|
||||||
|
"Clone board " : "Κλωνοποίηση πίνακα",
|
||||||
|
"Unarchive board " : "Αναίρεση αρχειοθέτησης πίνακα",
|
||||||
|
"Archive board " : "Αρχειοθέτηση πίνακα",
|
||||||
|
"Delete board " : "Διαγραφή πίνακα",
|
||||||
|
"Board details" : "Λεπτομέριες πίνακα",
|
||||||
"Board {0} deleted" : "Διαγράφηκε {0} πίνακας",
|
"Board {0} deleted" : "Διαγράφηκε {0} πίνακας",
|
||||||
"An error occurred" : "Παρουσιάστηκε σφάλμα",
|
"An error occurred" : "Παρουσιάστηκε σφάλμα",
|
||||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Είστε βέβαιοι ότι θέλετε να διαγράψετε τον πίνακα {title}; Θα διαγραφούν όλα τα δεδομένα.",
|
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Είστε βέβαιοι ότι θέλετε να διαγράψετε τον πίνακα {title}; Θα διαγραφούν όλα τα δεδομένα.",
|
||||||
|
|||||||
30
l10n/el.json
30
l10n/el.json
@@ -165,11 +165,6 @@
|
|||||||
"Add this attachment" : "Προσθήκη αυτού του συνημμένου",
|
"Add this attachment" : "Προσθήκη αυτού του συνημμένου",
|
||||||
"Delete Attachment" : "Διαγραφή Συνημμένου",
|
"Delete Attachment" : "Διαγραφή Συνημμένου",
|
||||||
"Restore Attachment" : "Επαναφορά Συνημμένου",
|
"Restore Attachment" : "Επαναφορά Συνημμένου",
|
||||||
"Attachments" : "Συνημμένα",
|
|
||||||
"Comments" : "Σχόλια",
|
|
||||||
"Modified" : "Τροποποιήθηκε",
|
|
||||||
"Created" : "Δημιουργήθηκε",
|
|
||||||
"No comments yet. Begin the discussion!" : "Χωρίς σχόλια ακόμη. Ξεκινήστε την συζήτηση!",
|
|
||||||
"Assign a tag to this card…" : "Ορίστε μια ετικέτα σε αυτήν την καρτέλα...",
|
"Assign a tag to this card…" : "Ορίστε μια ετικέτα σε αυτήν την καρτέλα...",
|
||||||
"Assign to users" : "Αναθέστε στους χρήστες",
|
"Assign to users" : "Αναθέστε στους χρήστες",
|
||||||
"Assign to users/groups/circles" : "Ανάθεση σε χρήστες/ομάδες/κύκλους",
|
"Assign to users/groups/circles" : "Ανάθεση σε χρήστες/ομάδες/κύκλους",
|
||||||
@@ -177,13 +172,6 @@
|
|||||||
"Due date" : "Ημερομηνία λήξης",
|
"Due date" : "Ημερομηνία λήξης",
|
||||||
"Set a due date" : "Καθορίστε ημερομηνίας λήξης",
|
"Set a due date" : "Καθορίστε ημερομηνίας λήξης",
|
||||||
"Remove due date" : "Αφαίρεση ημερομηνίας λήξης",
|
"Remove due date" : "Αφαίρεση ημερομηνίας λήξης",
|
||||||
"Select Date" : "Επέλεξε Ημέρα",
|
|
||||||
"Save" : "Αποθήκευση",
|
|
||||||
"The comment cannot be empty." : "Το σχόλιο δεν μπορεί να είναι κενό.",
|
|
||||||
"The comment cannot be longer than 1000 characters." : "Το σχόλιο δεν μπορεί να έχι περισσότερους από 1000 χαρακτήρες.",
|
|
||||||
"In reply to" : "Ως απάντηση σε",
|
|
||||||
"Reply" : "Απάντηση",
|
|
||||||
"Update" : "Ενημέρωση",
|
|
||||||
"Description" : "Περιγραφή",
|
"Description" : "Περιγραφή",
|
||||||
"(Unsaved)" : "(Δεν αποθηκεύτηκε)",
|
"(Unsaved)" : "(Δεν αποθηκεύτηκε)",
|
||||||
"(Saving…)" : "(Αποθήκευση...)",
|
"(Saving…)" : "(Αποθήκευση...)",
|
||||||
@@ -191,7 +179,19 @@
|
|||||||
"Edit description" : "Επεξεργασία περιγραφής",
|
"Edit description" : "Επεξεργασία περιγραφής",
|
||||||
"View description" : "Εμφάνιση περιγραφής",
|
"View description" : "Εμφάνιση περιγραφής",
|
||||||
"Add Attachment" : "Προσθήκη συνημμένου",
|
"Add Attachment" : "Προσθήκη συνημμένου",
|
||||||
|
"Attachments" : "Συνημμένα",
|
||||||
|
"Comments" : "Σχόλια",
|
||||||
"Choose attachment" : "Επιλογή συνημμένου",
|
"Choose attachment" : "Επιλογή συνημμένου",
|
||||||
|
"Select Date" : "Επέλεξε Ημέρα",
|
||||||
|
"Modified" : "Τροποποιήθηκε",
|
||||||
|
"Created" : "Δημιουργήθηκε",
|
||||||
|
"No comments yet. Begin the discussion!" : "Χωρίς σχόλια ακόμη. Ξεκινήστε την συζήτηση!",
|
||||||
|
"Save" : "Αποθήκευση",
|
||||||
|
"The comment cannot be empty." : "Το σχόλιο δεν μπορεί να είναι κενό.",
|
||||||
|
"The comment cannot be longer than 1000 characters." : "Το σχόλιο δεν μπορεί να έχι περισσότερους από 1000 χαρακτήρες.",
|
||||||
|
"In reply to" : "Ως απάντηση σε",
|
||||||
|
"Reply" : "Απάντηση",
|
||||||
|
"Update" : "Ενημέρωση",
|
||||||
"(group)" : "(ομάδα)",
|
"(group)" : "(ομάδα)",
|
||||||
"(circle)" : "(κύκλος)",
|
"(circle)" : "(κύκλος)",
|
||||||
"Assign to me" : "Ανάθεση σε εμένα",
|
"Assign to me" : "Ανάθεση σε εμένα",
|
||||||
@@ -208,8 +208,12 @@
|
|||||||
"Shared with you" : "Διαμοιρασμένα μαζί σας",
|
"Shared with you" : "Διαμοιρασμένα μαζί σας",
|
||||||
"Limit deck usage of groups" : "Περιορίστε τη χρήση της εφαρμογής σε ομάδες",
|
"Limit deck usage of groups" : "Περιορίστε τη χρήση της εφαρμογής σε ομάδες",
|
||||||
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Ο περιορισμός του Deck θα εμποδίσει τους χρήστες που δεν είναι μέρος αυτών των ομάδων να δημιουργούν δικούς τους πίνακες. Οι χρήστες θα εξακολουθήσουν να εργάζονται σε πίνακες που έχουν διαμοιραστεί μαζί τους.",
|
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Ο περιορισμός του Deck θα εμποδίσει τους χρήστες που δεν είναι μέρος αυτών των ομάδων να δημιουργούν δικούς τους πίνακες. Οι χρήστες θα εξακολουθήσουν να εργάζονται σε πίνακες που έχουν διαμοιραστεί μαζί τους.",
|
||||||
"Board details" : "Λεπτομέριες πίνακα",
|
|
||||||
"Edit board" : "Επεξεργασία πίνακα",
|
"Edit board" : "Επεξεργασία πίνακα",
|
||||||
|
"Clone board " : "Κλωνοποίηση πίνακα",
|
||||||
|
"Unarchive board " : "Αναίρεση αρχειοθέτησης πίνακα",
|
||||||
|
"Archive board " : "Αρχειοθέτηση πίνακα",
|
||||||
|
"Delete board " : "Διαγραφή πίνακα",
|
||||||
|
"Board details" : "Λεπτομέριες πίνακα",
|
||||||
"Board {0} deleted" : "Διαγράφηκε {0} πίνακας",
|
"Board {0} deleted" : "Διαγράφηκε {0} πίνακας",
|
||||||
"An error occurred" : "Παρουσιάστηκε σφάλμα",
|
"An error occurred" : "Παρουσιάστηκε σφάλμα",
|
||||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Είστε βέβαιοι ότι θέλετε να διαγράψετε τον πίνακα {title}; Θα διαγραφούν όλα τα δεδομένα.",
|
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Είστε βέβαιοι ότι θέλετε να διαγράψετε τον πίνακα {title}; Θα διαγραφούν όλα τα δεδομένα.",
|
||||||
|
|||||||
@@ -38,25 +38,25 @@ OC.L10N.register(
|
|||||||
"Title" : "Title",
|
"Title" : "Title",
|
||||||
"Members" : "Members",
|
"Members" : "Members",
|
||||||
"Upload attachment" : "Upload attachment",
|
"Upload attachment" : "Upload attachment",
|
||||||
|
"Due date" : "Due date",
|
||||||
|
"Remove due date" : "Remove due date",
|
||||||
|
"Description" : "Description",
|
||||||
|
"Formatting help" : "Formatting help",
|
||||||
"Attachments" : "Attachments",
|
"Attachments" : "Attachments",
|
||||||
"Comments" : "Comments",
|
"Comments" : "Comments",
|
||||||
"Modified" : "Modified",
|
"Modified" : "Modified",
|
||||||
"Created" : "Created",
|
"Created" : "Created",
|
||||||
"Due date" : "Due date",
|
|
||||||
"Remove due date" : "Remove due date",
|
|
||||||
"Save" : "Save",
|
"Save" : "Save",
|
||||||
"Reply" : "Reply",
|
"Reply" : "Reply",
|
||||||
"Update" : "Update",
|
"Update" : "Update",
|
||||||
"Description" : "Description",
|
|
||||||
"Formatting help" : "Formatting help",
|
|
||||||
"(group)" : "(group)",
|
"(group)" : "(group)",
|
||||||
"Archive card" : "Archive card",
|
"Archive card" : "Archive card",
|
||||||
"Delete card" : "Delete card",
|
"Delete card" : "Delete card",
|
||||||
"seconds ago" : "seconds ago",
|
"seconds ago" : "seconds ago",
|
||||||
"Archived boards" : "Archived boards",
|
"Archived boards" : "Archived boards",
|
||||||
"Shared with you" : "Shared with you",
|
"Shared with you" : "Shared with you",
|
||||||
"Board details" : "Board details",
|
|
||||||
"Edit board" : "Edit board",
|
"Edit board" : "Edit board",
|
||||||
|
"Board details" : "Board details",
|
||||||
"Today" : "Today",
|
"Today" : "Today",
|
||||||
"Tomorrow" : "Tomorrow",
|
"Tomorrow" : "Tomorrow",
|
||||||
"This week" : "This week"
|
"This week" : "This week"
|
||||||
|
|||||||
@@ -36,25 +36,25 @@
|
|||||||
"Title" : "Title",
|
"Title" : "Title",
|
||||||
"Members" : "Members",
|
"Members" : "Members",
|
||||||
"Upload attachment" : "Upload attachment",
|
"Upload attachment" : "Upload attachment",
|
||||||
|
"Due date" : "Due date",
|
||||||
|
"Remove due date" : "Remove due date",
|
||||||
|
"Description" : "Description",
|
||||||
|
"Formatting help" : "Formatting help",
|
||||||
"Attachments" : "Attachments",
|
"Attachments" : "Attachments",
|
||||||
"Comments" : "Comments",
|
"Comments" : "Comments",
|
||||||
"Modified" : "Modified",
|
"Modified" : "Modified",
|
||||||
"Created" : "Created",
|
"Created" : "Created",
|
||||||
"Due date" : "Due date",
|
|
||||||
"Remove due date" : "Remove due date",
|
|
||||||
"Save" : "Save",
|
"Save" : "Save",
|
||||||
"Reply" : "Reply",
|
"Reply" : "Reply",
|
||||||
"Update" : "Update",
|
"Update" : "Update",
|
||||||
"Description" : "Description",
|
|
||||||
"Formatting help" : "Formatting help",
|
|
||||||
"(group)" : "(group)",
|
"(group)" : "(group)",
|
||||||
"Archive card" : "Archive card",
|
"Archive card" : "Archive card",
|
||||||
"Delete card" : "Delete card",
|
"Delete card" : "Delete card",
|
||||||
"seconds ago" : "seconds ago",
|
"seconds ago" : "seconds ago",
|
||||||
"Archived boards" : "Archived boards",
|
"Archived boards" : "Archived boards",
|
||||||
"Shared with you" : "Shared with you",
|
"Shared with you" : "Shared with you",
|
||||||
"Board details" : "Board details",
|
|
||||||
"Edit board" : "Edit board",
|
"Edit board" : "Edit board",
|
||||||
|
"Board details" : "Board details",
|
||||||
"Today" : "Today",
|
"Today" : "Today",
|
||||||
"Tomorrow" : "Tomorrow",
|
"Tomorrow" : "Tomorrow",
|
||||||
"This week" : "This week"
|
"This week" : "This week"
|
||||||
|
|||||||
12
l10n/eo.js
12
l10n/eo.js
@@ -97,18 +97,18 @@ OC.L10N.register(
|
|||||||
"Title" : "Titolo",
|
"Title" : "Titolo",
|
||||||
"Members" : "Membroj",
|
"Members" : "Membroj",
|
||||||
"Upload attachment" : "Alŝuti dosieran aldonaĵon",
|
"Upload attachment" : "Alŝuti dosieran aldonaĵon",
|
||||||
"Attachments" : "Dosieraj aldonaĵoj",
|
|
||||||
"Comments" : "Komentoj",
|
|
||||||
"Modified" : "Modifita",
|
|
||||||
"Created" : "Kreita",
|
|
||||||
"Due date" : "Limdato",
|
"Due date" : "Limdato",
|
||||||
"Remove due date" : "Viŝi limdaton",
|
"Remove due date" : "Viŝi limdaton",
|
||||||
|
"Description" : "Priskribo",
|
||||||
|
"Formatting help" : "Helpo pri tekstaranĝo",
|
||||||
|
"Attachments" : "Dosieraj aldonaĵoj",
|
||||||
|
"Comments" : "Komentoj",
|
||||||
"Select Date" : "Elekti daton",
|
"Select Date" : "Elekti daton",
|
||||||
|
"Modified" : "Modifita",
|
||||||
|
"Created" : "Kreita",
|
||||||
"Save" : "Konservi",
|
"Save" : "Konservi",
|
||||||
"Reply" : "Respondi",
|
"Reply" : "Respondi",
|
||||||
"Update" : "Ĝisdatigi",
|
"Update" : "Ĝisdatigi",
|
||||||
"Description" : "Priskribo",
|
|
||||||
"Formatting help" : "Helpo pri tekstaranĝo",
|
|
||||||
"(group)" : "(grupo)",
|
"(group)" : "(grupo)",
|
||||||
"Unarchive card" : "Malarĥivigi karton",
|
"Unarchive card" : "Malarĥivigi karton",
|
||||||
"Archive card" : "Arĥivigi karton",
|
"Archive card" : "Arĥivigi karton",
|
||||||
|
|||||||
12
l10n/eo.json
12
l10n/eo.json
@@ -95,18 +95,18 @@
|
|||||||
"Title" : "Titolo",
|
"Title" : "Titolo",
|
||||||
"Members" : "Membroj",
|
"Members" : "Membroj",
|
||||||
"Upload attachment" : "Alŝuti dosieran aldonaĵon",
|
"Upload attachment" : "Alŝuti dosieran aldonaĵon",
|
||||||
"Attachments" : "Dosieraj aldonaĵoj",
|
|
||||||
"Comments" : "Komentoj",
|
|
||||||
"Modified" : "Modifita",
|
|
||||||
"Created" : "Kreita",
|
|
||||||
"Due date" : "Limdato",
|
"Due date" : "Limdato",
|
||||||
"Remove due date" : "Viŝi limdaton",
|
"Remove due date" : "Viŝi limdaton",
|
||||||
|
"Description" : "Priskribo",
|
||||||
|
"Formatting help" : "Helpo pri tekstaranĝo",
|
||||||
|
"Attachments" : "Dosieraj aldonaĵoj",
|
||||||
|
"Comments" : "Komentoj",
|
||||||
"Select Date" : "Elekti daton",
|
"Select Date" : "Elekti daton",
|
||||||
|
"Modified" : "Modifita",
|
||||||
|
"Created" : "Kreita",
|
||||||
"Save" : "Konservi",
|
"Save" : "Konservi",
|
||||||
"Reply" : "Respondi",
|
"Reply" : "Respondi",
|
||||||
"Update" : "Ĝisdatigi",
|
"Update" : "Ĝisdatigi",
|
||||||
"Description" : "Priskribo",
|
|
||||||
"Formatting help" : "Helpo pri tekstaranĝo",
|
|
||||||
"(group)" : "(grupo)",
|
"(group)" : "(grupo)",
|
||||||
"Unarchive card" : "Malarĥivigi karton",
|
"Unarchive card" : "Malarĥivigi karton",
|
||||||
"Archive card" : "Arĥivigi karton",
|
"Archive card" : "Arĥivigi karton",
|
||||||
|
|||||||
45
l10n/es.js
45
l10n/es.js
@@ -175,12 +175,6 @@ OC.L10N.register(
|
|||||||
"Restore Attachment" : "Restaurar Adjunto",
|
"Restore Attachment" : "Restaurar Adjunto",
|
||||||
"Open in sidebar view" : "Abrir en vista de barra lateral",
|
"Open in sidebar view" : "Abrir en vista de barra lateral",
|
||||||
"Open in bigger view" : "Abrir en vista más grande",
|
"Open in bigger view" : "Abrir en vista más grande",
|
||||||
"Attachments" : "Adjuntos",
|
|
||||||
"Comments" : "Comentarios",
|
|
||||||
"Modified" : "Modificado",
|
|
||||||
"Created" : "Creado",
|
|
||||||
"The title cannot be empty." : "El título no puede estar vacío.",
|
|
||||||
"No comments yet. Begin the discussion!" : "Todavía no hay comentarios. ¡Comienza la discusión!",
|
|
||||||
"Assign a tag to this card…" : "Asignar una etiqueta a esta tarjeta...",
|
"Assign a tag to this card…" : "Asignar una etiqueta a esta tarjeta...",
|
||||||
"Assign to users" : "Asignar a usuarios",
|
"Assign to users" : "Asignar a usuarios",
|
||||||
"Assign to users/groups/circles" : "Asignar a usuarios/grupos/círculos",
|
"Assign to users/groups/circles" : "Asignar a usuarios/grupos/círculos",
|
||||||
@@ -188,13 +182,6 @@ OC.L10N.register(
|
|||||||
"Due date" : "Fecha límite",
|
"Due date" : "Fecha límite",
|
||||||
"Set a due date" : "Fijar una fecha límite",
|
"Set a due date" : "Fijar una fecha límite",
|
||||||
"Remove due date" : "Eliminar fecha límite",
|
"Remove due date" : "Eliminar fecha límite",
|
||||||
"Select Date" : "Seleccione la fecha",
|
|
||||||
"Save" : "Guardar",
|
|
||||||
"The comment cannot be empty." : "El comentario no puede estar vacío.",
|
|
||||||
"The comment cannot be longer than 1000 characters." : "El comentario no puede tener más de 1000 caracteres.",
|
|
||||||
"In reply to" : "En respuesta a",
|
|
||||||
"Reply" : "Responder",
|
|
||||||
"Update" : "Actualizar",
|
|
||||||
"Description" : "Descripción",
|
"Description" : "Descripción",
|
||||||
"(Unsaved)" : "(Sin salvar)",
|
"(Unsaved)" : "(Sin salvar)",
|
||||||
"(Saving…)" : "(Guardando...)",
|
"(Saving…)" : "(Guardando...)",
|
||||||
@@ -202,8 +189,20 @@ OC.L10N.register(
|
|||||||
"Edit description" : "Editar descripción",
|
"Edit description" : "Editar descripción",
|
||||||
"View description" : "Ver descripción",
|
"View description" : "Ver descripción",
|
||||||
"Add Attachment" : "Añadir adjunto",
|
"Add Attachment" : "Añadir adjunto",
|
||||||
"Write a description …" : "Escribe una descripción...",
|
"Attachments" : "Adjuntos",
|
||||||
|
"Comments" : "Comentarios",
|
||||||
"Choose attachment" : "Escoger adjunto",
|
"Choose attachment" : "Escoger adjunto",
|
||||||
|
"Select Date" : "Seleccione la fecha",
|
||||||
|
"Modified" : "Modificado",
|
||||||
|
"Created" : "Creado",
|
||||||
|
"The title cannot be empty." : "El título no puede estar vacío.",
|
||||||
|
"No comments yet. Begin the discussion!" : "Todavía no hay comentarios. ¡Comienza la discusión!",
|
||||||
|
"Save" : "Guardar",
|
||||||
|
"The comment cannot be empty." : "El comentario no puede estar vacío.",
|
||||||
|
"The comment cannot be longer than 1000 characters." : "El comentario no puede tener más de 1000 caracteres.",
|
||||||
|
"In reply to" : "En respuesta a",
|
||||||
|
"Reply" : "Responder",
|
||||||
|
"Update" : "Actualizar",
|
||||||
"(group)" : "(grupo)",
|
"(group)" : "(grupo)",
|
||||||
"(circle)" : "(circle)",
|
"(circle)" : "(circle)",
|
||||||
"Assign to me" : "Asignarme a mí",
|
"Assign to me" : "Asignarme a mí",
|
||||||
@@ -224,21 +223,13 @@ OC.L10N.register(
|
|||||||
"Limit deck usage of groups" : "Limitar el uso de Deck a grupos",
|
"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.",
|
"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 name" : "Nombre del tablero",
|
||||||
"Board details" : "Detalles del tablero",
|
|
||||||
"Edit board" : "Editar tablero",
|
"Edit board" : "Editar tablero",
|
||||||
"Clone board" : "Clonar tablero",
|
"Clone board " : "Clonar tablero",
|
||||||
"Unarchive board" : "Desarchivar tablero",
|
"Unarchive board " : "Desarchivar tablero",
|
||||||
"Archive board" : "Archivar tablero",
|
"Archive board " : "Archivar tablero",
|
||||||
"Turn on due date reminders" : "Activar recordatorios de la fecha de vencimiento",
|
"Delete board " : "Eliminar tablero",
|
||||||
"Turn off due date reminders" : "Desactivar recordatorios de la fecha de vencimiento",
|
"Board details" : "Detalles del tablero",
|
||||||
"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",
|
"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",
|
"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.",
|
"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?",
|
"Delete the board?" : "¿Borrar el tablero?",
|
||||||
|
|||||||
45
l10n/es.json
45
l10n/es.json
@@ -173,12 +173,6 @@
|
|||||||
"Restore Attachment" : "Restaurar Adjunto",
|
"Restore Attachment" : "Restaurar Adjunto",
|
||||||
"Open in sidebar view" : "Abrir en vista de barra lateral",
|
"Open in sidebar view" : "Abrir en vista de barra lateral",
|
||||||
"Open in bigger view" : "Abrir en vista más grande",
|
"Open in bigger view" : "Abrir en vista más grande",
|
||||||
"Attachments" : "Adjuntos",
|
|
||||||
"Comments" : "Comentarios",
|
|
||||||
"Modified" : "Modificado",
|
|
||||||
"Created" : "Creado",
|
|
||||||
"The title cannot be empty." : "El título no puede estar vacío.",
|
|
||||||
"No comments yet. Begin the discussion!" : "Todavía no hay comentarios. ¡Comienza la discusión!",
|
|
||||||
"Assign a tag to this card…" : "Asignar una etiqueta a esta tarjeta...",
|
"Assign a tag to this card…" : "Asignar una etiqueta a esta tarjeta...",
|
||||||
"Assign to users" : "Asignar a usuarios",
|
"Assign to users" : "Asignar a usuarios",
|
||||||
"Assign to users/groups/circles" : "Asignar a usuarios/grupos/círculos",
|
"Assign to users/groups/circles" : "Asignar a usuarios/grupos/círculos",
|
||||||
@@ -186,13 +180,6 @@
|
|||||||
"Due date" : "Fecha límite",
|
"Due date" : "Fecha límite",
|
||||||
"Set a due date" : "Fijar una fecha límite",
|
"Set a due date" : "Fijar una fecha límite",
|
||||||
"Remove due date" : "Eliminar fecha límite",
|
"Remove due date" : "Eliminar fecha límite",
|
||||||
"Select Date" : "Seleccione la fecha",
|
|
||||||
"Save" : "Guardar",
|
|
||||||
"The comment cannot be empty." : "El comentario no puede estar vacío.",
|
|
||||||
"The comment cannot be longer than 1000 characters." : "El comentario no puede tener más de 1000 caracteres.",
|
|
||||||
"In reply to" : "En respuesta a",
|
|
||||||
"Reply" : "Responder",
|
|
||||||
"Update" : "Actualizar",
|
|
||||||
"Description" : "Descripción",
|
"Description" : "Descripción",
|
||||||
"(Unsaved)" : "(Sin salvar)",
|
"(Unsaved)" : "(Sin salvar)",
|
||||||
"(Saving…)" : "(Guardando...)",
|
"(Saving…)" : "(Guardando...)",
|
||||||
@@ -200,8 +187,20 @@
|
|||||||
"Edit description" : "Editar descripción",
|
"Edit description" : "Editar descripción",
|
||||||
"View description" : "Ver descripción",
|
"View description" : "Ver descripción",
|
||||||
"Add Attachment" : "Añadir adjunto",
|
"Add Attachment" : "Añadir adjunto",
|
||||||
"Write a description …" : "Escribe una descripción...",
|
"Attachments" : "Adjuntos",
|
||||||
|
"Comments" : "Comentarios",
|
||||||
"Choose attachment" : "Escoger adjunto",
|
"Choose attachment" : "Escoger adjunto",
|
||||||
|
"Select Date" : "Seleccione la fecha",
|
||||||
|
"Modified" : "Modificado",
|
||||||
|
"Created" : "Creado",
|
||||||
|
"The title cannot be empty." : "El título no puede estar vacío.",
|
||||||
|
"No comments yet. Begin the discussion!" : "Todavía no hay comentarios. ¡Comienza la discusión!",
|
||||||
|
"Save" : "Guardar",
|
||||||
|
"The comment cannot be empty." : "El comentario no puede estar vacío.",
|
||||||
|
"The comment cannot be longer than 1000 characters." : "El comentario no puede tener más de 1000 caracteres.",
|
||||||
|
"In reply to" : "En respuesta a",
|
||||||
|
"Reply" : "Responder",
|
||||||
|
"Update" : "Actualizar",
|
||||||
"(group)" : "(grupo)",
|
"(group)" : "(grupo)",
|
||||||
"(circle)" : "(circle)",
|
"(circle)" : "(circle)",
|
||||||
"Assign to me" : "Asignarme a mí",
|
"Assign to me" : "Asignarme a mí",
|
||||||
@@ -222,21 +221,13 @@
|
|||||||
"Limit deck usage of groups" : "Limitar el uso de Deck a grupos",
|
"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.",
|
"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 name" : "Nombre del tablero",
|
||||||
"Board details" : "Detalles del tablero",
|
|
||||||
"Edit board" : "Editar tablero",
|
"Edit board" : "Editar tablero",
|
||||||
"Clone board" : "Clonar tablero",
|
"Clone board " : "Clonar tablero",
|
||||||
"Unarchive board" : "Desarchivar tablero",
|
"Unarchive board " : "Desarchivar tablero",
|
||||||
"Archive board" : "Archivar tablero",
|
"Archive board " : "Archivar tablero",
|
||||||
"Turn on due date reminders" : "Activar recordatorios de la fecha de vencimiento",
|
"Delete board " : "Eliminar tablero",
|
||||||
"Turn off due date reminders" : "Desactivar recordatorios de la fecha de vencimiento",
|
"Board details" : "Detalles del tablero",
|
||||||
"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",
|
"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",
|
"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.",
|
"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?",
|
"Delete the board?" : "¿Borrar el tablero?",
|
||||||
|
|||||||
@@ -33,22 +33,22 @@ OC.L10N.register(
|
|||||||
"Title" : "Título",
|
"Title" : "Título",
|
||||||
"Members" : "Miembros",
|
"Members" : "Miembros",
|
||||||
"Upload attachment" : "Cargar adjunto",
|
"Upload attachment" : "Cargar adjunto",
|
||||||
|
"Due date" : "Fecha de vencimiento",
|
||||||
|
"Remove due date" : "Eliminar fecha de expiración",
|
||||||
|
"Description" : "Descripción",
|
||||||
|
"Formatting help" : "Ayuda de formato",
|
||||||
"Comments" : "Comentarios",
|
"Comments" : "Comentarios",
|
||||||
"Modified" : "Modificado",
|
"Modified" : "Modificado",
|
||||||
"Created" : "Creado",
|
"Created" : "Creado",
|
||||||
"Due date" : "Fecha de vencimiento",
|
|
||||||
"Remove due date" : "Eliminar fecha de expiración",
|
|
||||||
"Save" : "Guardar",
|
"Save" : "Guardar",
|
||||||
"Reply" : "Responder",
|
"Reply" : "Responder",
|
||||||
"Update" : "Actualizar",
|
"Update" : "Actualizar",
|
||||||
"Description" : "Descripción",
|
|
||||||
"Formatting help" : "Ayuda de formato",
|
|
||||||
"(group)" : "(grupo)",
|
"(group)" : "(grupo)",
|
||||||
"seconds ago" : "hace segundos",
|
"seconds ago" : "hace segundos",
|
||||||
"Archived boards" : "Tableros archivados",
|
"Archived boards" : "Tableros archivados",
|
||||||
"Shared with you" : "Compartido con usted",
|
"Shared with you" : "Compartido con usted",
|
||||||
"Board details" : "Detalles del tablero",
|
|
||||||
"Edit board" : "Editar el tablero",
|
"Edit board" : "Editar el tablero",
|
||||||
|
"Board details" : "Detalles del tablero",
|
||||||
"Today" : "Hoy",
|
"Today" : "Hoy",
|
||||||
"Tomorrow" : "Mañana",
|
"Tomorrow" : "Mañana",
|
||||||
"This week" : "Esta semana"
|
"This week" : "Esta semana"
|
||||||
|
|||||||
@@ -31,22 +31,22 @@
|
|||||||
"Title" : "Título",
|
"Title" : "Título",
|
||||||
"Members" : "Miembros",
|
"Members" : "Miembros",
|
||||||
"Upload attachment" : "Cargar adjunto",
|
"Upload attachment" : "Cargar adjunto",
|
||||||
|
"Due date" : "Fecha de vencimiento",
|
||||||
|
"Remove due date" : "Eliminar fecha de expiración",
|
||||||
|
"Description" : "Descripción",
|
||||||
|
"Formatting help" : "Ayuda de formato",
|
||||||
"Comments" : "Comentarios",
|
"Comments" : "Comentarios",
|
||||||
"Modified" : "Modificado",
|
"Modified" : "Modificado",
|
||||||
"Created" : "Creado",
|
"Created" : "Creado",
|
||||||
"Due date" : "Fecha de vencimiento",
|
|
||||||
"Remove due date" : "Eliminar fecha de expiración",
|
|
||||||
"Save" : "Guardar",
|
"Save" : "Guardar",
|
||||||
"Reply" : "Responder",
|
"Reply" : "Responder",
|
||||||
"Update" : "Actualizar",
|
"Update" : "Actualizar",
|
||||||
"Description" : "Descripción",
|
|
||||||
"Formatting help" : "Ayuda de formato",
|
|
||||||
"(group)" : "(grupo)",
|
"(group)" : "(grupo)",
|
||||||
"seconds ago" : "hace segundos",
|
"seconds ago" : "hace segundos",
|
||||||
"Archived boards" : "Tableros archivados",
|
"Archived boards" : "Tableros archivados",
|
||||||
"Shared with you" : "Compartido con usted",
|
"Shared with you" : "Compartido con usted",
|
||||||
"Board details" : "Detalles del tablero",
|
|
||||||
"Edit board" : "Editar el tablero",
|
"Edit board" : "Editar el tablero",
|
||||||
|
"Board details" : "Detalles del tablero",
|
||||||
"Today" : "Hoy",
|
"Today" : "Hoy",
|
||||||
"Tomorrow" : "Mañana",
|
"Tomorrow" : "Mañana",
|
||||||
"This week" : "Esta semana"
|
"This week" : "Esta semana"
|
||||||
|
|||||||
@@ -25,17 +25,17 @@ OC.L10N.register(
|
|||||||
"Edit" : "Editar",
|
"Edit" : "Editar",
|
||||||
"Title" : "Título",
|
"Title" : "Título",
|
||||||
"Members" : "Miembros",
|
"Members" : "Miembros",
|
||||||
|
"Due date" : "Fecha de vencimiento",
|
||||||
|
"Description" : "Descripción",
|
||||||
|
"Formatting help" : "Ayuda de formato",
|
||||||
"Attachments" : "Adjuntos",
|
"Attachments" : "Adjuntos",
|
||||||
"Comments" : "Comentarios",
|
"Comments" : "Comentarios",
|
||||||
|
"Select Date" : "Seleccionar fecha",
|
||||||
"Modified" : "Modificado",
|
"Modified" : "Modificado",
|
||||||
"Created" : "Creado",
|
"Created" : "Creado",
|
||||||
"Due date" : "Fecha de vencimiento",
|
|
||||||
"Select Date" : "Seleccionar fecha",
|
|
||||||
"Save" : "Guardar",
|
"Save" : "Guardar",
|
||||||
"Reply" : "Responder",
|
"Reply" : "Responder",
|
||||||
"Update" : "Actualizar",
|
"Update" : "Actualizar",
|
||||||
"Description" : "Descripción",
|
|
||||||
"Formatting help" : "Ayuda de formato",
|
|
||||||
"(group)" : "(grupo)",
|
"(group)" : "(grupo)",
|
||||||
"seconds ago" : "segundos",
|
"seconds ago" : "segundos",
|
||||||
"Shared with you" : "Compartido con usted",
|
"Shared with you" : "Compartido con usted",
|
||||||
|
|||||||
@@ -23,17 +23,17 @@
|
|||||||
"Edit" : "Editar",
|
"Edit" : "Editar",
|
||||||
"Title" : "Título",
|
"Title" : "Título",
|
||||||
"Members" : "Miembros",
|
"Members" : "Miembros",
|
||||||
|
"Due date" : "Fecha de vencimiento",
|
||||||
|
"Description" : "Descripción",
|
||||||
|
"Formatting help" : "Ayuda de formato",
|
||||||
"Attachments" : "Adjuntos",
|
"Attachments" : "Adjuntos",
|
||||||
"Comments" : "Comentarios",
|
"Comments" : "Comentarios",
|
||||||
|
"Select Date" : "Seleccionar fecha",
|
||||||
"Modified" : "Modificado",
|
"Modified" : "Modificado",
|
||||||
"Created" : "Creado",
|
"Created" : "Creado",
|
||||||
"Due date" : "Fecha de vencimiento",
|
|
||||||
"Select Date" : "Seleccionar fecha",
|
|
||||||
"Save" : "Guardar",
|
"Save" : "Guardar",
|
||||||
"Reply" : "Responder",
|
"Reply" : "Responder",
|
||||||
"Update" : "Actualizar",
|
"Update" : "Actualizar",
|
||||||
"Description" : "Descripción",
|
|
||||||
"Formatting help" : "Ayuda de formato",
|
|
||||||
"(group)" : "(grupo)",
|
"(group)" : "(grupo)",
|
||||||
"seconds ago" : "segundos",
|
"seconds ago" : "segundos",
|
||||||
"Shared with you" : "Compartido con usted",
|
"Shared with you" : "Compartido con usted",
|
||||||
|
|||||||
@@ -36,22 +36,22 @@ OC.L10N.register(
|
|||||||
"Title" : "Título",
|
"Title" : "Título",
|
||||||
"Members" : "Miembros",
|
"Members" : "Miembros",
|
||||||
"Upload attachment" : "Cargar adjunto",
|
"Upload attachment" : "Cargar adjunto",
|
||||||
|
"Due date" : "Fecha de vencimiento",
|
||||||
|
"Remove due date" : "Eliminar fecha de expiración",
|
||||||
|
"Description" : "Descripción",
|
||||||
|
"Formatting help" : "Ayuda de formato",
|
||||||
"Comments" : "Comentarios",
|
"Comments" : "Comentarios",
|
||||||
"Modified" : "Modificado",
|
"Modified" : "Modificado",
|
||||||
"Created" : "Creado",
|
"Created" : "Creado",
|
||||||
"Due date" : "Fecha de vencimiento",
|
|
||||||
"Remove due date" : "Eliminar fecha de expiración",
|
|
||||||
"Save" : "Guardar",
|
"Save" : "Guardar",
|
||||||
"Reply" : "Responder",
|
"Reply" : "Responder",
|
||||||
"Update" : "Actualizar",
|
"Update" : "Actualizar",
|
||||||
"Description" : "Descripción",
|
|
||||||
"Formatting help" : "Ayuda de formato",
|
|
||||||
"(group)" : "(grupo)",
|
"(group)" : "(grupo)",
|
||||||
"seconds ago" : "hace segundos",
|
"seconds ago" : "hace segundos",
|
||||||
"Archived boards" : "Tableros archivados",
|
"Archived boards" : "Tableros archivados",
|
||||||
"Shared with you" : "Compartido con usted",
|
"Shared with you" : "Compartido con usted",
|
||||||
"Board details" : "Detalles del tablero",
|
|
||||||
"Edit board" : "Editar el tablero",
|
"Edit board" : "Editar el tablero",
|
||||||
|
"Board details" : "Detalles del tablero",
|
||||||
"Today" : "Hoy",
|
"Today" : "Hoy",
|
||||||
"Tomorrow" : "Mañana",
|
"Tomorrow" : "Mañana",
|
||||||
"This week" : "Esta semana"
|
"This week" : "Esta semana"
|
||||||
|
|||||||
@@ -34,22 +34,22 @@
|
|||||||
"Title" : "Título",
|
"Title" : "Título",
|
||||||
"Members" : "Miembros",
|
"Members" : "Miembros",
|
||||||
"Upload attachment" : "Cargar adjunto",
|
"Upload attachment" : "Cargar adjunto",
|
||||||
|
"Due date" : "Fecha de vencimiento",
|
||||||
|
"Remove due date" : "Eliminar fecha de expiración",
|
||||||
|
"Description" : "Descripción",
|
||||||
|
"Formatting help" : "Ayuda de formato",
|
||||||
"Comments" : "Comentarios",
|
"Comments" : "Comentarios",
|
||||||
"Modified" : "Modificado",
|
"Modified" : "Modificado",
|
||||||
"Created" : "Creado",
|
"Created" : "Creado",
|
||||||
"Due date" : "Fecha de vencimiento",
|
|
||||||
"Remove due date" : "Eliminar fecha de expiración",
|
|
||||||
"Save" : "Guardar",
|
"Save" : "Guardar",
|
||||||
"Reply" : "Responder",
|
"Reply" : "Responder",
|
||||||
"Update" : "Actualizar",
|
"Update" : "Actualizar",
|
||||||
"Description" : "Descripción",
|
|
||||||
"Formatting help" : "Ayuda de formato",
|
|
||||||
"(group)" : "(grupo)",
|
"(group)" : "(grupo)",
|
||||||
"seconds ago" : "hace segundos",
|
"seconds ago" : "hace segundos",
|
||||||
"Archived boards" : "Tableros archivados",
|
"Archived boards" : "Tableros archivados",
|
||||||
"Shared with you" : "Compartido con usted",
|
"Shared with you" : "Compartido con usted",
|
||||||
"Board details" : "Detalles del tablero",
|
|
||||||
"Edit board" : "Editar el tablero",
|
"Edit board" : "Editar el tablero",
|
||||||
|
"Board details" : "Detalles del tablero",
|
||||||
"Today" : "Hoy",
|
"Today" : "Hoy",
|
||||||
"Tomorrow" : "Mañana",
|
"Tomorrow" : "Mañana",
|
||||||
"This week" : "Esta semana"
|
"This week" : "Esta semana"
|
||||||
|
|||||||
@@ -37,22 +37,22 @@ OC.L10N.register(
|
|||||||
"Title" : "Título",
|
"Title" : "Título",
|
||||||
"Members" : "Miembros",
|
"Members" : "Miembros",
|
||||||
"Upload attachment" : "Cargar adjunto",
|
"Upload attachment" : "Cargar adjunto",
|
||||||
|
"Due date" : "Fecha de vencimiento",
|
||||||
|
"Remove due date" : "Eliminar fecha de expiración",
|
||||||
|
"Description" : "Descripción",
|
||||||
|
"Formatting help" : "Ayuda de formato",
|
||||||
"Comments" : "Comentarios",
|
"Comments" : "Comentarios",
|
||||||
"Modified" : "Modificado",
|
"Modified" : "Modificado",
|
||||||
"Created" : "Creado",
|
"Created" : "Creado",
|
||||||
"Due date" : "Fecha de vencimiento",
|
|
||||||
"Remove due date" : "Eliminar fecha de expiración",
|
|
||||||
"Save" : "Guardar",
|
"Save" : "Guardar",
|
||||||
"Reply" : "Responder",
|
"Reply" : "Responder",
|
||||||
"Update" : "Actualizar",
|
"Update" : "Actualizar",
|
||||||
"Description" : "Descripción",
|
|
||||||
"Formatting help" : "Ayuda de formato",
|
|
||||||
"(group)" : "(grupo)",
|
"(group)" : "(grupo)",
|
||||||
"seconds ago" : "hace segundos",
|
"seconds ago" : "hace segundos",
|
||||||
"Archived boards" : "Tableros archivados",
|
"Archived boards" : "Tableros archivados",
|
||||||
"Shared with you" : "Compartido con usted",
|
"Shared with you" : "Compartido con usted",
|
||||||
"Board details" : "Detalles del tablero",
|
|
||||||
"Edit board" : "Editar el tablero",
|
"Edit board" : "Editar el tablero",
|
||||||
|
"Board details" : "Detalles del tablero",
|
||||||
"Today" : "Hoy",
|
"Today" : "Hoy",
|
||||||
"Tomorrow" : "Mañana",
|
"Tomorrow" : "Mañana",
|
||||||
"This week" : "Esta semana"
|
"This week" : "Esta semana"
|
||||||
|
|||||||
@@ -35,22 +35,22 @@
|
|||||||
"Title" : "Título",
|
"Title" : "Título",
|
||||||
"Members" : "Miembros",
|
"Members" : "Miembros",
|
||||||
"Upload attachment" : "Cargar adjunto",
|
"Upload attachment" : "Cargar adjunto",
|
||||||
|
"Due date" : "Fecha de vencimiento",
|
||||||
|
"Remove due date" : "Eliminar fecha de expiración",
|
||||||
|
"Description" : "Descripción",
|
||||||
|
"Formatting help" : "Ayuda de formato",
|
||||||
"Comments" : "Comentarios",
|
"Comments" : "Comentarios",
|
||||||
"Modified" : "Modificado",
|
"Modified" : "Modificado",
|
||||||
"Created" : "Creado",
|
"Created" : "Creado",
|
||||||
"Due date" : "Fecha de vencimiento",
|
|
||||||
"Remove due date" : "Eliminar fecha de expiración",
|
|
||||||
"Save" : "Guardar",
|
"Save" : "Guardar",
|
||||||
"Reply" : "Responder",
|
"Reply" : "Responder",
|
||||||
"Update" : "Actualizar",
|
"Update" : "Actualizar",
|
||||||
"Description" : "Descripción",
|
|
||||||
"Formatting help" : "Ayuda de formato",
|
|
||||||
"(group)" : "(grupo)",
|
"(group)" : "(grupo)",
|
||||||
"seconds ago" : "hace segundos",
|
"seconds ago" : "hace segundos",
|
||||||
"Archived boards" : "Tableros archivados",
|
"Archived boards" : "Tableros archivados",
|
||||||
"Shared with you" : "Compartido con usted",
|
"Shared with you" : "Compartido con usted",
|
||||||
"Board details" : "Detalles del tablero",
|
|
||||||
"Edit board" : "Editar el tablero",
|
"Edit board" : "Editar el tablero",
|
||||||
|
"Board details" : "Detalles del tablero",
|
||||||
"Today" : "Hoy",
|
"Today" : "Hoy",
|
||||||
"Tomorrow" : "Mañana",
|
"Tomorrow" : "Mañana",
|
||||||
"This week" : "Esta semana"
|
"This week" : "Esta semana"
|
||||||
|
|||||||
@@ -36,22 +36,22 @@ OC.L10N.register(
|
|||||||
"Title" : "Título",
|
"Title" : "Título",
|
||||||
"Members" : "Miembros",
|
"Members" : "Miembros",
|
||||||
"Upload attachment" : "Cargar adjunto",
|
"Upload attachment" : "Cargar adjunto",
|
||||||
|
"Due date" : "Fecha de vencimiento",
|
||||||
|
"Remove due date" : "Eliminar fecha de expiración",
|
||||||
|
"Description" : "Descripción",
|
||||||
|
"Formatting help" : "Ayuda de formato",
|
||||||
"Comments" : "Comentarios",
|
"Comments" : "Comentarios",
|
||||||
"Modified" : "Modificado",
|
"Modified" : "Modificado",
|
||||||
"Created" : "Creado",
|
"Created" : "Creado",
|
||||||
"Due date" : "Fecha de vencimiento",
|
|
||||||
"Remove due date" : "Eliminar fecha de expiración",
|
|
||||||
"Save" : "Guardar",
|
"Save" : "Guardar",
|
||||||
"Reply" : "Responder",
|
"Reply" : "Responder",
|
||||||
"Update" : "Actualizar",
|
"Update" : "Actualizar",
|
||||||
"Description" : "Descripción",
|
|
||||||
"Formatting help" : "Ayuda de formato",
|
|
||||||
"(group)" : "(grupo)",
|
"(group)" : "(grupo)",
|
||||||
"seconds ago" : "hace segundos",
|
"seconds ago" : "hace segundos",
|
||||||
"Archived boards" : "Tableros archivados",
|
"Archived boards" : "Tableros archivados",
|
||||||
"Shared with you" : "Compartido con usted",
|
"Shared with you" : "Compartido con usted",
|
||||||
"Board details" : "Detalles del tablero",
|
|
||||||
"Edit board" : "Editar el tablero",
|
"Edit board" : "Editar el tablero",
|
||||||
|
"Board details" : "Detalles del tablero",
|
||||||
"Today" : "Hoy",
|
"Today" : "Hoy",
|
||||||
"Tomorrow" : "Mañana",
|
"Tomorrow" : "Mañana",
|
||||||
"This week" : "Esta semana"
|
"This week" : "Esta semana"
|
||||||
|
|||||||
@@ -34,22 +34,22 @@
|
|||||||
"Title" : "Título",
|
"Title" : "Título",
|
||||||
"Members" : "Miembros",
|
"Members" : "Miembros",
|
||||||
"Upload attachment" : "Cargar adjunto",
|
"Upload attachment" : "Cargar adjunto",
|
||||||
|
"Due date" : "Fecha de vencimiento",
|
||||||
|
"Remove due date" : "Eliminar fecha de expiración",
|
||||||
|
"Description" : "Descripción",
|
||||||
|
"Formatting help" : "Ayuda de formato",
|
||||||
"Comments" : "Comentarios",
|
"Comments" : "Comentarios",
|
||||||
"Modified" : "Modificado",
|
"Modified" : "Modificado",
|
||||||
"Created" : "Creado",
|
"Created" : "Creado",
|
||||||
"Due date" : "Fecha de vencimiento",
|
|
||||||
"Remove due date" : "Eliminar fecha de expiración",
|
|
||||||
"Save" : "Guardar",
|
"Save" : "Guardar",
|
||||||
"Reply" : "Responder",
|
"Reply" : "Responder",
|
||||||
"Update" : "Actualizar",
|
"Update" : "Actualizar",
|
||||||
"Description" : "Descripción",
|
|
||||||
"Formatting help" : "Ayuda de formato",
|
|
||||||
"(group)" : "(grupo)",
|
"(group)" : "(grupo)",
|
||||||
"seconds ago" : "hace segundos",
|
"seconds ago" : "hace segundos",
|
||||||
"Archived boards" : "Tableros archivados",
|
"Archived boards" : "Tableros archivados",
|
||||||
"Shared with you" : "Compartido con usted",
|
"Shared with you" : "Compartido con usted",
|
||||||
"Board details" : "Detalles del tablero",
|
|
||||||
"Edit board" : "Editar el tablero",
|
"Edit board" : "Editar el tablero",
|
||||||
|
"Board details" : "Detalles del tablero",
|
||||||
"Today" : "Hoy",
|
"Today" : "Hoy",
|
||||||
"Tomorrow" : "Mañana",
|
"Tomorrow" : "Mañana",
|
||||||
"This week" : "Esta semana"
|
"This week" : "Esta semana"
|
||||||
|
|||||||
@@ -36,22 +36,22 @@ OC.L10N.register(
|
|||||||
"Title" : "Título",
|
"Title" : "Título",
|
||||||
"Members" : "Miembros",
|
"Members" : "Miembros",
|
||||||
"Upload attachment" : "Cargar adjunto",
|
"Upload attachment" : "Cargar adjunto",
|
||||||
|
"Due date" : "Fecha de vencimiento",
|
||||||
|
"Remove due date" : "Eliminar fecha de expiración",
|
||||||
|
"Description" : "Descripción",
|
||||||
|
"Formatting help" : "Ayuda de formato",
|
||||||
"Comments" : "Comentarios",
|
"Comments" : "Comentarios",
|
||||||
"Modified" : "Modificado",
|
"Modified" : "Modificado",
|
||||||
"Created" : "Creado",
|
"Created" : "Creado",
|
||||||
"Due date" : "Fecha de vencimiento",
|
|
||||||
"Remove due date" : "Eliminar fecha de expiración",
|
|
||||||
"Save" : "Guardar",
|
"Save" : "Guardar",
|
||||||
"Reply" : "Responder",
|
"Reply" : "Responder",
|
||||||
"Update" : "Actualizar",
|
"Update" : "Actualizar",
|
||||||
"Description" : "Descripción",
|
|
||||||
"Formatting help" : "Ayuda de formato",
|
|
||||||
"(group)" : "(grupo)",
|
"(group)" : "(grupo)",
|
||||||
"seconds ago" : "hace segundos",
|
"seconds ago" : "hace segundos",
|
||||||
"Archived boards" : "Tableros archivados",
|
"Archived boards" : "Tableros archivados",
|
||||||
"Shared with you" : "Compartido con usted",
|
"Shared with you" : "Compartido con usted",
|
||||||
"Board details" : "Detalles del tablero",
|
|
||||||
"Edit board" : "Editar el tablero",
|
"Edit board" : "Editar el tablero",
|
||||||
|
"Board details" : "Detalles del tablero",
|
||||||
"Today" : "Hoy",
|
"Today" : "Hoy",
|
||||||
"Tomorrow" : "Mañana",
|
"Tomorrow" : "Mañana",
|
||||||
"This week" : "Esta semana"
|
"This week" : "Esta semana"
|
||||||
|
|||||||
@@ -34,22 +34,22 @@
|
|||||||
"Title" : "Título",
|
"Title" : "Título",
|
||||||
"Members" : "Miembros",
|
"Members" : "Miembros",
|
||||||
"Upload attachment" : "Cargar adjunto",
|
"Upload attachment" : "Cargar adjunto",
|
||||||
|
"Due date" : "Fecha de vencimiento",
|
||||||
|
"Remove due date" : "Eliminar fecha de expiración",
|
||||||
|
"Description" : "Descripción",
|
||||||
|
"Formatting help" : "Ayuda de formato",
|
||||||
"Comments" : "Comentarios",
|
"Comments" : "Comentarios",
|
||||||
"Modified" : "Modificado",
|
"Modified" : "Modificado",
|
||||||
"Created" : "Creado",
|
"Created" : "Creado",
|
||||||
"Due date" : "Fecha de vencimiento",
|
|
||||||
"Remove due date" : "Eliminar fecha de expiración",
|
|
||||||
"Save" : "Guardar",
|
"Save" : "Guardar",
|
||||||
"Reply" : "Responder",
|
"Reply" : "Responder",
|
||||||
"Update" : "Actualizar",
|
"Update" : "Actualizar",
|
||||||
"Description" : "Descripción",
|
|
||||||
"Formatting help" : "Ayuda de formato",
|
|
||||||
"(group)" : "(grupo)",
|
"(group)" : "(grupo)",
|
||||||
"seconds ago" : "hace segundos",
|
"seconds ago" : "hace segundos",
|
||||||
"Archived boards" : "Tableros archivados",
|
"Archived boards" : "Tableros archivados",
|
||||||
"Shared with you" : "Compartido con usted",
|
"Shared with you" : "Compartido con usted",
|
||||||
"Board details" : "Detalles del tablero",
|
|
||||||
"Edit board" : "Editar el tablero",
|
"Edit board" : "Editar el tablero",
|
||||||
|
"Board details" : "Detalles del tablero",
|
||||||
"Today" : "Hoy",
|
"Today" : "Hoy",
|
||||||
"Tomorrow" : "Mañana",
|
"Tomorrow" : "Mañana",
|
||||||
"This week" : "Esta semana"
|
"This week" : "Esta semana"
|
||||||
|
|||||||
@@ -36,22 +36,22 @@ OC.L10N.register(
|
|||||||
"Title" : "Título",
|
"Title" : "Título",
|
||||||
"Members" : "Miembros",
|
"Members" : "Miembros",
|
||||||
"Upload attachment" : "Cargar adjunto",
|
"Upload attachment" : "Cargar adjunto",
|
||||||
|
"Due date" : "Fecha de vencimiento",
|
||||||
|
"Remove due date" : "Eliminar fecha de expiración",
|
||||||
|
"Description" : "Descripción",
|
||||||
|
"Formatting help" : "Ayuda de formato",
|
||||||
"Comments" : "Comentarios",
|
"Comments" : "Comentarios",
|
||||||
"Modified" : "Modificado",
|
"Modified" : "Modificado",
|
||||||
"Created" : "Creado",
|
"Created" : "Creado",
|
||||||
"Due date" : "Fecha de vencimiento",
|
|
||||||
"Remove due date" : "Eliminar fecha de expiración",
|
|
||||||
"Save" : "Guardar",
|
"Save" : "Guardar",
|
||||||
"Reply" : "Responder",
|
"Reply" : "Responder",
|
||||||
"Update" : "Actualizar",
|
"Update" : "Actualizar",
|
||||||
"Description" : "Descripción",
|
|
||||||
"Formatting help" : "Ayuda de formato",
|
|
||||||
"(group)" : "(grupo)",
|
"(group)" : "(grupo)",
|
||||||
"seconds ago" : "hace segundos",
|
"seconds ago" : "hace segundos",
|
||||||
"Archived boards" : "Tableros archivados",
|
"Archived boards" : "Tableros archivados",
|
||||||
"Shared with you" : "Compartido con usted",
|
"Shared with you" : "Compartido con usted",
|
||||||
"Board details" : "Detalles del tablero",
|
|
||||||
"Edit board" : "Editar el tablero",
|
"Edit board" : "Editar el tablero",
|
||||||
|
"Board details" : "Detalles del tablero",
|
||||||
"Today" : "Hoy",
|
"Today" : "Hoy",
|
||||||
"Tomorrow" : "Mañana",
|
"Tomorrow" : "Mañana",
|
||||||
"This week" : "Esta semana"
|
"This week" : "Esta semana"
|
||||||
|
|||||||
@@ -34,22 +34,22 @@
|
|||||||
"Title" : "Título",
|
"Title" : "Título",
|
||||||
"Members" : "Miembros",
|
"Members" : "Miembros",
|
||||||
"Upload attachment" : "Cargar adjunto",
|
"Upload attachment" : "Cargar adjunto",
|
||||||
|
"Due date" : "Fecha de vencimiento",
|
||||||
|
"Remove due date" : "Eliminar fecha de expiración",
|
||||||
|
"Description" : "Descripción",
|
||||||
|
"Formatting help" : "Ayuda de formato",
|
||||||
"Comments" : "Comentarios",
|
"Comments" : "Comentarios",
|
||||||
"Modified" : "Modificado",
|
"Modified" : "Modificado",
|
||||||
"Created" : "Creado",
|
"Created" : "Creado",
|
||||||
"Due date" : "Fecha de vencimiento",
|
|
||||||
"Remove due date" : "Eliminar fecha de expiración",
|
|
||||||
"Save" : "Guardar",
|
"Save" : "Guardar",
|
||||||
"Reply" : "Responder",
|
"Reply" : "Responder",
|
||||||
"Update" : "Actualizar",
|
"Update" : "Actualizar",
|
||||||
"Description" : "Descripción",
|
|
||||||
"Formatting help" : "Ayuda de formato",
|
|
||||||
"(group)" : "(grupo)",
|
"(group)" : "(grupo)",
|
||||||
"seconds ago" : "hace segundos",
|
"seconds ago" : "hace segundos",
|
||||||
"Archived boards" : "Tableros archivados",
|
"Archived boards" : "Tableros archivados",
|
||||||
"Shared with you" : "Compartido con usted",
|
"Shared with you" : "Compartido con usted",
|
||||||
"Board details" : "Detalles del tablero",
|
|
||||||
"Edit board" : "Editar el tablero",
|
"Edit board" : "Editar el tablero",
|
||||||
|
"Board details" : "Detalles del tablero",
|
||||||
"Today" : "Hoy",
|
"Today" : "Hoy",
|
||||||
"Tomorrow" : "Mañana",
|
"Tomorrow" : "Mañana",
|
||||||
"This week" : "Esta semana"
|
"This week" : "Esta semana"
|
||||||
|
|||||||
@@ -36,22 +36,22 @@ OC.L10N.register(
|
|||||||
"Title" : "Título",
|
"Title" : "Título",
|
||||||
"Members" : "Miembros",
|
"Members" : "Miembros",
|
||||||
"Upload attachment" : "Cargar adjunto",
|
"Upload attachment" : "Cargar adjunto",
|
||||||
|
"Due date" : "Fecha de vencimiento",
|
||||||
|
"Remove due date" : "Eliminar fecha de expiración",
|
||||||
|
"Description" : "Descripción",
|
||||||
|
"Formatting help" : "Ayuda de formato",
|
||||||
"Comments" : "Comentarios",
|
"Comments" : "Comentarios",
|
||||||
"Modified" : "Modificado",
|
"Modified" : "Modificado",
|
||||||
"Created" : "Creado",
|
"Created" : "Creado",
|
||||||
"Due date" : "Fecha de vencimiento",
|
|
||||||
"Remove due date" : "Eliminar fecha de expiración",
|
|
||||||
"Save" : "Guardar",
|
"Save" : "Guardar",
|
||||||
"Reply" : "Responder",
|
"Reply" : "Responder",
|
||||||
"Update" : "Actualizar",
|
"Update" : "Actualizar",
|
||||||
"Description" : "Descripción",
|
|
||||||
"Formatting help" : "Ayuda de formato",
|
|
||||||
"(group)" : "(grupo)",
|
"(group)" : "(grupo)",
|
||||||
"seconds ago" : "hace segundos",
|
"seconds ago" : "hace segundos",
|
||||||
"Archived boards" : "Tableros archivados",
|
"Archived boards" : "Tableros archivados",
|
||||||
"Shared with you" : "Compartido con usted",
|
"Shared with you" : "Compartido con usted",
|
||||||
"Board details" : "Detalles del tablero",
|
|
||||||
"Edit board" : "Editar el tablero",
|
"Edit board" : "Editar el tablero",
|
||||||
|
"Board details" : "Detalles del tablero",
|
||||||
"Today" : "Hoy",
|
"Today" : "Hoy",
|
||||||
"Tomorrow" : "Mañana",
|
"Tomorrow" : "Mañana",
|
||||||
"This week" : "Esta semana"
|
"This week" : "Esta semana"
|
||||||
|
|||||||
@@ -34,22 +34,22 @@
|
|||||||
"Title" : "Título",
|
"Title" : "Título",
|
||||||
"Members" : "Miembros",
|
"Members" : "Miembros",
|
||||||
"Upload attachment" : "Cargar adjunto",
|
"Upload attachment" : "Cargar adjunto",
|
||||||
|
"Due date" : "Fecha de vencimiento",
|
||||||
|
"Remove due date" : "Eliminar fecha de expiración",
|
||||||
|
"Description" : "Descripción",
|
||||||
|
"Formatting help" : "Ayuda de formato",
|
||||||
"Comments" : "Comentarios",
|
"Comments" : "Comentarios",
|
||||||
"Modified" : "Modificado",
|
"Modified" : "Modificado",
|
||||||
"Created" : "Creado",
|
"Created" : "Creado",
|
||||||
"Due date" : "Fecha de vencimiento",
|
|
||||||
"Remove due date" : "Eliminar fecha de expiración",
|
|
||||||
"Save" : "Guardar",
|
"Save" : "Guardar",
|
||||||
"Reply" : "Responder",
|
"Reply" : "Responder",
|
||||||
"Update" : "Actualizar",
|
"Update" : "Actualizar",
|
||||||
"Description" : "Descripción",
|
|
||||||
"Formatting help" : "Ayuda de formato",
|
|
||||||
"(group)" : "(grupo)",
|
"(group)" : "(grupo)",
|
||||||
"seconds ago" : "hace segundos",
|
"seconds ago" : "hace segundos",
|
||||||
"Archived boards" : "Tableros archivados",
|
"Archived boards" : "Tableros archivados",
|
||||||
"Shared with you" : "Compartido con usted",
|
"Shared with you" : "Compartido con usted",
|
||||||
"Board details" : "Detalles del tablero",
|
|
||||||
"Edit board" : "Editar el tablero",
|
"Edit board" : "Editar el tablero",
|
||||||
|
"Board details" : "Detalles del tablero",
|
||||||
"Today" : "Hoy",
|
"Today" : "Hoy",
|
||||||
"Tomorrow" : "Mañana",
|
"Tomorrow" : "Mañana",
|
||||||
"This week" : "Esta semana"
|
"This week" : "Esta semana"
|
||||||
|
|||||||
@@ -32,22 +32,22 @@ OC.L10N.register(
|
|||||||
"Title" : "Título",
|
"Title" : "Título",
|
||||||
"Members" : "Miembros",
|
"Members" : "Miembros",
|
||||||
"Upload attachment" : "Cargar adjunto",
|
"Upload attachment" : "Cargar adjunto",
|
||||||
|
"Due date" : "Fecha de vencimiento",
|
||||||
|
"Remove due date" : "Eliminar fecha de expiración",
|
||||||
|
"Description" : "Descripción",
|
||||||
|
"Formatting help" : "Ayuda de formato",
|
||||||
"Comments" : "Comentarios",
|
"Comments" : "Comentarios",
|
||||||
"Modified" : "Modificado",
|
"Modified" : "Modificado",
|
||||||
"Created" : "Creado",
|
"Created" : "Creado",
|
||||||
"Due date" : "Fecha de vencimiento",
|
|
||||||
"Remove due date" : "Eliminar fecha de expiración",
|
|
||||||
"Save" : "Guardar",
|
"Save" : "Guardar",
|
||||||
"Reply" : "Responder",
|
"Reply" : "Responder",
|
||||||
"Update" : "Actualizar",
|
"Update" : "Actualizar",
|
||||||
"Description" : "Descripción",
|
|
||||||
"Formatting help" : "Ayuda de formato",
|
|
||||||
"(group)" : "(grupo)",
|
"(group)" : "(grupo)",
|
||||||
"seconds ago" : "hace segundos",
|
"seconds ago" : "hace segundos",
|
||||||
"Archived boards" : "Tableros archivados",
|
"Archived boards" : "Tableros archivados",
|
||||||
"Shared with you" : "Compartido con usted",
|
"Shared with you" : "Compartido con usted",
|
||||||
"Board details" : "Detalles del tablero",
|
|
||||||
"Edit board" : "Editar el tablero",
|
"Edit board" : "Editar el tablero",
|
||||||
|
"Board details" : "Detalles del tablero",
|
||||||
"Today" : "Hoy",
|
"Today" : "Hoy",
|
||||||
"Tomorrow" : "Mañana",
|
"Tomorrow" : "Mañana",
|
||||||
"This week" : "Esta semana"
|
"This week" : "Esta semana"
|
||||||
|
|||||||
@@ -30,22 +30,22 @@
|
|||||||
"Title" : "Título",
|
"Title" : "Título",
|
||||||
"Members" : "Miembros",
|
"Members" : "Miembros",
|
||||||
"Upload attachment" : "Cargar adjunto",
|
"Upload attachment" : "Cargar adjunto",
|
||||||
|
"Due date" : "Fecha de vencimiento",
|
||||||
|
"Remove due date" : "Eliminar fecha de expiración",
|
||||||
|
"Description" : "Descripción",
|
||||||
|
"Formatting help" : "Ayuda de formato",
|
||||||
"Comments" : "Comentarios",
|
"Comments" : "Comentarios",
|
||||||
"Modified" : "Modificado",
|
"Modified" : "Modificado",
|
||||||
"Created" : "Creado",
|
"Created" : "Creado",
|
||||||
"Due date" : "Fecha de vencimiento",
|
|
||||||
"Remove due date" : "Eliminar fecha de expiración",
|
|
||||||
"Save" : "Guardar",
|
"Save" : "Guardar",
|
||||||
"Reply" : "Responder",
|
"Reply" : "Responder",
|
||||||
"Update" : "Actualizar",
|
"Update" : "Actualizar",
|
||||||
"Description" : "Descripción",
|
|
||||||
"Formatting help" : "Ayuda de formato",
|
|
||||||
"(group)" : "(grupo)",
|
"(group)" : "(grupo)",
|
||||||
"seconds ago" : "hace segundos",
|
"seconds ago" : "hace segundos",
|
||||||
"Archived boards" : "Tableros archivados",
|
"Archived boards" : "Tableros archivados",
|
||||||
"Shared with you" : "Compartido con usted",
|
"Shared with you" : "Compartido con usted",
|
||||||
"Board details" : "Detalles del tablero",
|
|
||||||
"Edit board" : "Editar el tablero",
|
"Edit board" : "Editar el tablero",
|
||||||
|
"Board details" : "Detalles del tablero",
|
||||||
"Today" : "Hoy",
|
"Today" : "Hoy",
|
||||||
"Tomorrow" : "Mañana",
|
"Tomorrow" : "Mañana",
|
||||||
"This week" : "Esta semana"
|
"This week" : "Esta semana"
|
||||||
|
|||||||
@@ -37,23 +37,23 @@ OC.L10N.register(
|
|||||||
"Title" : "Título",
|
"Title" : "Título",
|
||||||
"Members" : "Miembros",
|
"Members" : "Miembros",
|
||||||
"Upload attachment" : "Cargar adjunto",
|
"Upload attachment" : "Cargar adjunto",
|
||||||
|
"Due date" : "Fecha de vencimiento",
|
||||||
|
"Remove due date" : "Eliminar fecha de expiración",
|
||||||
|
"Description" : "Descripción",
|
||||||
|
"Formatting help" : "Ayuda de formato",
|
||||||
"Attachments" : "Adjuntos",
|
"Attachments" : "Adjuntos",
|
||||||
"Comments" : "Comentarios",
|
"Comments" : "Comentarios",
|
||||||
"Modified" : "Modificado",
|
"Modified" : "Modificado",
|
||||||
"Created" : "Creado",
|
"Created" : "Creado",
|
||||||
"Due date" : "Fecha de vencimiento",
|
|
||||||
"Remove due date" : "Eliminar fecha de expiración",
|
|
||||||
"Save" : "Guardar",
|
"Save" : "Guardar",
|
||||||
"Reply" : "Responder",
|
"Reply" : "Responder",
|
||||||
"Update" : "Actualizar",
|
"Update" : "Actualizar",
|
||||||
"Description" : "Descripción",
|
|
||||||
"Formatting help" : "Ayuda de formato",
|
|
||||||
"(group)" : "(grupo)",
|
"(group)" : "(grupo)",
|
||||||
"seconds ago" : "hace segundos",
|
"seconds ago" : "hace segundos",
|
||||||
"Archived boards" : "Tableros archivados",
|
"Archived boards" : "Tableros archivados",
|
||||||
"Shared with you" : "Compartido con usted",
|
"Shared with you" : "Compartido con usted",
|
||||||
"Board details" : "Detalles del tablero",
|
|
||||||
"Edit board" : "Editar el tablero",
|
"Edit board" : "Editar el tablero",
|
||||||
|
"Board details" : "Detalles del tablero",
|
||||||
"An error occurred" : "Ha ocurrido un error",
|
"An error occurred" : "Ha ocurrido un error",
|
||||||
"Today" : "Hoy",
|
"Today" : "Hoy",
|
||||||
"Tomorrow" : "Mañana",
|
"Tomorrow" : "Mañana",
|
||||||
|
|||||||
@@ -35,23 +35,23 @@
|
|||||||
"Title" : "Título",
|
"Title" : "Título",
|
||||||
"Members" : "Miembros",
|
"Members" : "Miembros",
|
||||||
"Upload attachment" : "Cargar adjunto",
|
"Upload attachment" : "Cargar adjunto",
|
||||||
|
"Due date" : "Fecha de vencimiento",
|
||||||
|
"Remove due date" : "Eliminar fecha de expiración",
|
||||||
|
"Description" : "Descripción",
|
||||||
|
"Formatting help" : "Ayuda de formato",
|
||||||
"Attachments" : "Adjuntos",
|
"Attachments" : "Adjuntos",
|
||||||
"Comments" : "Comentarios",
|
"Comments" : "Comentarios",
|
||||||
"Modified" : "Modificado",
|
"Modified" : "Modificado",
|
||||||
"Created" : "Creado",
|
"Created" : "Creado",
|
||||||
"Due date" : "Fecha de vencimiento",
|
|
||||||
"Remove due date" : "Eliminar fecha de expiración",
|
|
||||||
"Save" : "Guardar",
|
"Save" : "Guardar",
|
||||||
"Reply" : "Responder",
|
"Reply" : "Responder",
|
||||||
"Update" : "Actualizar",
|
"Update" : "Actualizar",
|
||||||
"Description" : "Descripción",
|
|
||||||
"Formatting help" : "Ayuda de formato",
|
|
||||||
"(group)" : "(grupo)",
|
"(group)" : "(grupo)",
|
||||||
"seconds ago" : "hace segundos",
|
"seconds ago" : "hace segundos",
|
||||||
"Archived boards" : "Tableros archivados",
|
"Archived boards" : "Tableros archivados",
|
||||||
"Shared with you" : "Compartido con usted",
|
"Shared with you" : "Compartido con usted",
|
||||||
"Board details" : "Detalles del tablero",
|
|
||||||
"Edit board" : "Editar el tablero",
|
"Edit board" : "Editar el tablero",
|
||||||
|
"Board details" : "Detalles del tablero",
|
||||||
"An error occurred" : "Ha ocurrido un error",
|
"An error occurred" : "Ha ocurrido un error",
|
||||||
"Today" : "Hoy",
|
"Today" : "Hoy",
|
||||||
"Tomorrow" : "Mañana",
|
"Tomorrow" : "Mañana",
|
||||||
|
|||||||
@@ -32,22 +32,22 @@ OC.L10N.register(
|
|||||||
"Title" : "Título",
|
"Title" : "Título",
|
||||||
"Members" : "Miembros",
|
"Members" : "Miembros",
|
||||||
"Upload attachment" : "Cargar adjunto",
|
"Upload attachment" : "Cargar adjunto",
|
||||||
|
"Due date" : "Fecha de vencimiento",
|
||||||
|
"Remove due date" : "Eliminar fecha de expiración",
|
||||||
|
"Description" : "Descripción",
|
||||||
|
"Formatting help" : "Ayuda de formato",
|
||||||
"Comments" : "Comentarios",
|
"Comments" : "Comentarios",
|
||||||
"Modified" : "Modificado",
|
"Modified" : "Modificado",
|
||||||
"Created" : "Creado",
|
"Created" : "Creado",
|
||||||
"Due date" : "Fecha de vencimiento",
|
|
||||||
"Remove due date" : "Eliminar fecha de expiración",
|
|
||||||
"Save" : "Guardar",
|
"Save" : "Guardar",
|
||||||
"Reply" : "Responder",
|
"Reply" : "Responder",
|
||||||
"Update" : "Actualizar",
|
"Update" : "Actualizar",
|
||||||
"Description" : "Descripción",
|
|
||||||
"Formatting help" : "Ayuda de formato",
|
|
||||||
"(group)" : "(grupo)",
|
"(group)" : "(grupo)",
|
||||||
"seconds ago" : "hace segundos",
|
"seconds ago" : "hace segundos",
|
||||||
"Archived boards" : "Tableros archivados",
|
"Archived boards" : "Tableros archivados",
|
||||||
"Shared with you" : "Compartido con usted",
|
"Shared with you" : "Compartido con usted",
|
||||||
"Board details" : "Detalles del tablero",
|
|
||||||
"Edit board" : "Editar el tablero",
|
"Edit board" : "Editar el tablero",
|
||||||
|
"Board details" : "Detalles del tablero",
|
||||||
"Today" : "Hoy",
|
"Today" : "Hoy",
|
||||||
"Tomorrow" : "Mañana",
|
"Tomorrow" : "Mañana",
|
||||||
"This week" : "Esta semana"
|
"This week" : "Esta semana"
|
||||||
|
|||||||
@@ -30,22 +30,22 @@
|
|||||||
"Title" : "Título",
|
"Title" : "Título",
|
||||||
"Members" : "Miembros",
|
"Members" : "Miembros",
|
||||||
"Upload attachment" : "Cargar adjunto",
|
"Upload attachment" : "Cargar adjunto",
|
||||||
|
"Due date" : "Fecha de vencimiento",
|
||||||
|
"Remove due date" : "Eliminar fecha de expiración",
|
||||||
|
"Description" : "Descripción",
|
||||||
|
"Formatting help" : "Ayuda de formato",
|
||||||
"Comments" : "Comentarios",
|
"Comments" : "Comentarios",
|
||||||
"Modified" : "Modificado",
|
"Modified" : "Modificado",
|
||||||
"Created" : "Creado",
|
"Created" : "Creado",
|
||||||
"Due date" : "Fecha de vencimiento",
|
|
||||||
"Remove due date" : "Eliminar fecha de expiración",
|
|
||||||
"Save" : "Guardar",
|
"Save" : "Guardar",
|
||||||
"Reply" : "Responder",
|
"Reply" : "Responder",
|
||||||
"Update" : "Actualizar",
|
"Update" : "Actualizar",
|
||||||
"Description" : "Descripción",
|
|
||||||
"Formatting help" : "Ayuda de formato",
|
|
||||||
"(group)" : "(grupo)",
|
"(group)" : "(grupo)",
|
||||||
"seconds ago" : "hace segundos",
|
"seconds ago" : "hace segundos",
|
||||||
"Archived boards" : "Tableros archivados",
|
"Archived boards" : "Tableros archivados",
|
||||||
"Shared with you" : "Compartido con usted",
|
"Shared with you" : "Compartido con usted",
|
||||||
"Board details" : "Detalles del tablero",
|
|
||||||
"Edit board" : "Editar el tablero",
|
"Edit board" : "Editar el tablero",
|
||||||
|
"Board details" : "Detalles del tablero",
|
||||||
"Today" : "Hoy",
|
"Today" : "Hoy",
|
||||||
"Tomorrow" : "Mañana",
|
"Tomorrow" : "Mañana",
|
||||||
"This week" : "Esta semana"
|
"This week" : "Esta semana"
|
||||||
|
|||||||
@@ -32,22 +32,22 @@ OC.L10N.register(
|
|||||||
"Title" : "Título",
|
"Title" : "Título",
|
||||||
"Members" : "Miembros",
|
"Members" : "Miembros",
|
||||||
"Upload attachment" : "Cargar adjunto",
|
"Upload attachment" : "Cargar adjunto",
|
||||||
|
"Due date" : "Fecha de vencimiento",
|
||||||
|
"Remove due date" : "Eliminar fecha de expiración",
|
||||||
|
"Description" : "Descripción",
|
||||||
|
"Formatting help" : "Ayuda de formato",
|
||||||
"Comments" : "Comentarios",
|
"Comments" : "Comentarios",
|
||||||
"Modified" : "Modificado",
|
"Modified" : "Modificado",
|
||||||
"Created" : "Creado",
|
"Created" : "Creado",
|
||||||
"Due date" : "Fecha de vencimiento",
|
|
||||||
"Remove due date" : "Eliminar fecha de expiración",
|
|
||||||
"Save" : "Guardar",
|
"Save" : "Guardar",
|
||||||
"Reply" : "Responder",
|
"Reply" : "Responder",
|
||||||
"Update" : "Actualizar",
|
"Update" : "Actualizar",
|
||||||
"Description" : "Descripción",
|
|
||||||
"Formatting help" : "Ayuda de formato",
|
|
||||||
"(group)" : "(grupo)",
|
"(group)" : "(grupo)",
|
||||||
"seconds ago" : "hace segundos",
|
"seconds ago" : "hace segundos",
|
||||||
"Archived boards" : "Tableros archivados",
|
"Archived boards" : "Tableros archivados",
|
||||||
"Shared with you" : "Compartido con usted",
|
"Shared with you" : "Compartido con usted",
|
||||||
"Board details" : "Detalles del tablero",
|
|
||||||
"Edit board" : "Editar el tablero",
|
"Edit board" : "Editar el tablero",
|
||||||
|
"Board details" : "Detalles del tablero",
|
||||||
"Today" : "Hoy",
|
"Today" : "Hoy",
|
||||||
"Tomorrow" : "Mañana",
|
"Tomorrow" : "Mañana",
|
||||||
"This week" : "Esta semana"
|
"This week" : "Esta semana"
|
||||||
|
|||||||
@@ -30,22 +30,22 @@
|
|||||||
"Title" : "Título",
|
"Title" : "Título",
|
||||||
"Members" : "Miembros",
|
"Members" : "Miembros",
|
||||||
"Upload attachment" : "Cargar adjunto",
|
"Upload attachment" : "Cargar adjunto",
|
||||||
|
"Due date" : "Fecha de vencimiento",
|
||||||
|
"Remove due date" : "Eliminar fecha de expiración",
|
||||||
|
"Description" : "Descripción",
|
||||||
|
"Formatting help" : "Ayuda de formato",
|
||||||
"Comments" : "Comentarios",
|
"Comments" : "Comentarios",
|
||||||
"Modified" : "Modificado",
|
"Modified" : "Modificado",
|
||||||
"Created" : "Creado",
|
"Created" : "Creado",
|
||||||
"Due date" : "Fecha de vencimiento",
|
|
||||||
"Remove due date" : "Eliminar fecha de expiración",
|
|
||||||
"Save" : "Guardar",
|
"Save" : "Guardar",
|
||||||
"Reply" : "Responder",
|
"Reply" : "Responder",
|
||||||
"Update" : "Actualizar",
|
"Update" : "Actualizar",
|
||||||
"Description" : "Descripción",
|
|
||||||
"Formatting help" : "Ayuda de formato",
|
|
||||||
"(group)" : "(grupo)",
|
"(group)" : "(grupo)",
|
||||||
"seconds ago" : "hace segundos",
|
"seconds ago" : "hace segundos",
|
||||||
"Archived boards" : "Tableros archivados",
|
"Archived boards" : "Tableros archivados",
|
||||||
"Shared with you" : "Compartido con usted",
|
"Shared with you" : "Compartido con usted",
|
||||||
"Board details" : "Detalles del tablero",
|
|
||||||
"Edit board" : "Editar el tablero",
|
"Edit board" : "Editar el tablero",
|
||||||
|
"Board details" : "Detalles del tablero",
|
||||||
"Today" : "Hoy",
|
"Today" : "Hoy",
|
||||||
"Tomorrow" : "Mañana",
|
"Tomorrow" : "Mañana",
|
||||||
"This week" : "Esta semana"
|
"This week" : "Esta semana"
|
||||||
|
|||||||
@@ -32,22 +32,22 @@ OC.L10N.register(
|
|||||||
"Title" : "Título",
|
"Title" : "Título",
|
||||||
"Members" : "Miembros",
|
"Members" : "Miembros",
|
||||||
"Upload attachment" : "Cargar adjunto",
|
"Upload attachment" : "Cargar adjunto",
|
||||||
|
"Due date" : "Fecha de vencimiento",
|
||||||
|
"Remove due date" : "Eliminar fecha de expiración",
|
||||||
|
"Description" : "Descripción",
|
||||||
|
"Formatting help" : "Ayuda de formato",
|
||||||
"Comments" : "Comentarios",
|
"Comments" : "Comentarios",
|
||||||
"Modified" : "Modificado",
|
"Modified" : "Modificado",
|
||||||
"Created" : "Creado",
|
"Created" : "Creado",
|
||||||
"Due date" : "Fecha de vencimiento",
|
|
||||||
"Remove due date" : "Eliminar fecha de expiración",
|
|
||||||
"Save" : "Guardar",
|
"Save" : "Guardar",
|
||||||
"Reply" : "Responder",
|
"Reply" : "Responder",
|
||||||
"Update" : "Actualizar",
|
"Update" : "Actualizar",
|
||||||
"Description" : "Descripción",
|
|
||||||
"Formatting help" : "Ayuda de formato",
|
|
||||||
"(group)" : "(grupo)",
|
"(group)" : "(grupo)",
|
||||||
"seconds ago" : "hace segundos",
|
"seconds ago" : "hace segundos",
|
||||||
"Archived boards" : "Tableros archivados",
|
"Archived boards" : "Tableros archivados",
|
||||||
"Shared with you" : "Compartido con usted",
|
"Shared with you" : "Compartido con usted",
|
||||||
"Board details" : "Detalles del tablero",
|
|
||||||
"Edit board" : "Editar el tablero",
|
"Edit board" : "Editar el tablero",
|
||||||
|
"Board details" : "Detalles del tablero",
|
||||||
"Today" : "Hoy",
|
"Today" : "Hoy",
|
||||||
"Tomorrow" : "Mañana",
|
"Tomorrow" : "Mañana",
|
||||||
"This week" : "Esta semana"
|
"This week" : "Esta semana"
|
||||||
|
|||||||
@@ -30,22 +30,22 @@
|
|||||||
"Title" : "Título",
|
"Title" : "Título",
|
||||||
"Members" : "Miembros",
|
"Members" : "Miembros",
|
||||||
"Upload attachment" : "Cargar adjunto",
|
"Upload attachment" : "Cargar adjunto",
|
||||||
|
"Due date" : "Fecha de vencimiento",
|
||||||
|
"Remove due date" : "Eliminar fecha de expiración",
|
||||||
|
"Description" : "Descripción",
|
||||||
|
"Formatting help" : "Ayuda de formato",
|
||||||
"Comments" : "Comentarios",
|
"Comments" : "Comentarios",
|
||||||
"Modified" : "Modificado",
|
"Modified" : "Modificado",
|
||||||
"Created" : "Creado",
|
"Created" : "Creado",
|
||||||
"Due date" : "Fecha de vencimiento",
|
|
||||||
"Remove due date" : "Eliminar fecha de expiración",
|
|
||||||
"Save" : "Guardar",
|
"Save" : "Guardar",
|
||||||
"Reply" : "Responder",
|
"Reply" : "Responder",
|
||||||
"Update" : "Actualizar",
|
"Update" : "Actualizar",
|
||||||
"Description" : "Descripción",
|
|
||||||
"Formatting help" : "Ayuda de formato",
|
|
||||||
"(group)" : "(grupo)",
|
"(group)" : "(grupo)",
|
||||||
"seconds ago" : "hace segundos",
|
"seconds ago" : "hace segundos",
|
||||||
"Archived boards" : "Tableros archivados",
|
"Archived boards" : "Tableros archivados",
|
||||||
"Shared with you" : "Compartido con usted",
|
"Shared with you" : "Compartido con usted",
|
||||||
"Board details" : "Detalles del tablero",
|
|
||||||
"Edit board" : "Editar el tablero",
|
"Edit board" : "Editar el tablero",
|
||||||
|
"Board details" : "Detalles del tablero",
|
||||||
"Today" : "Hoy",
|
"Today" : "Hoy",
|
||||||
"Tomorrow" : "Mañana",
|
"Tomorrow" : "Mañana",
|
||||||
"This week" : "Esta semana"
|
"This week" : "Esta semana"
|
||||||
|
|||||||
@@ -32,22 +32,22 @@ OC.L10N.register(
|
|||||||
"Title" : "Título",
|
"Title" : "Título",
|
||||||
"Members" : "Miembros",
|
"Members" : "Miembros",
|
||||||
"Upload attachment" : "Cargar adjunto",
|
"Upload attachment" : "Cargar adjunto",
|
||||||
|
"Due date" : "Fecha de vencimiento",
|
||||||
|
"Remove due date" : "Eliminar fecha de expiración",
|
||||||
|
"Description" : "Descripción",
|
||||||
|
"Formatting help" : "Ayuda de formato",
|
||||||
"Comments" : "Comentarios",
|
"Comments" : "Comentarios",
|
||||||
"Modified" : "Modificado",
|
"Modified" : "Modificado",
|
||||||
"Created" : "Creado",
|
"Created" : "Creado",
|
||||||
"Due date" : "Fecha de vencimiento",
|
|
||||||
"Remove due date" : "Eliminar fecha de expiración",
|
|
||||||
"Save" : "Guardar",
|
"Save" : "Guardar",
|
||||||
"Reply" : "Responder",
|
"Reply" : "Responder",
|
||||||
"Update" : "Actualizar",
|
"Update" : "Actualizar",
|
||||||
"Description" : "Descripción",
|
|
||||||
"Formatting help" : "Ayuda de formato",
|
|
||||||
"(group)" : "(grupo)",
|
"(group)" : "(grupo)",
|
||||||
"seconds ago" : "hace segundos",
|
"seconds ago" : "hace segundos",
|
||||||
"Archived boards" : "Tableros archivados",
|
"Archived boards" : "Tableros archivados",
|
||||||
"Shared with you" : "Compartido con usted",
|
"Shared with you" : "Compartido con usted",
|
||||||
"Board details" : "Detalles del tablero",
|
|
||||||
"Edit board" : "Editar el tablero",
|
"Edit board" : "Editar el tablero",
|
||||||
|
"Board details" : "Detalles del tablero",
|
||||||
"Today" : "Hoy",
|
"Today" : "Hoy",
|
||||||
"Tomorrow" : "Mañana",
|
"Tomorrow" : "Mañana",
|
||||||
"This week" : "Esta semana"
|
"This week" : "Esta semana"
|
||||||
|
|||||||
@@ -30,22 +30,22 @@
|
|||||||
"Title" : "Título",
|
"Title" : "Título",
|
||||||
"Members" : "Miembros",
|
"Members" : "Miembros",
|
||||||
"Upload attachment" : "Cargar adjunto",
|
"Upload attachment" : "Cargar adjunto",
|
||||||
|
"Due date" : "Fecha de vencimiento",
|
||||||
|
"Remove due date" : "Eliminar fecha de expiración",
|
||||||
|
"Description" : "Descripción",
|
||||||
|
"Formatting help" : "Ayuda de formato",
|
||||||
"Comments" : "Comentarios",
|
"Comments" : "Comentarios",
|
||||||
"Modified" : "Modificado",
|
"Modified" : "Modificado",
|
||||||
"Created" : "Creado",
|
"Created" : "Creado",
|
||||||
"Due date" : "Fecha de vencimiento",
|
|
||||||
"Remove due date" : "Eliminar fecha de expiración",
|
|
||||||
"Save" : "Guardar",
|
"Save" : "Guardar",
|
||||||
"Reply" : "Responder",
|
"Reply" : "Responder",
|
||||||
"Update" : "Actualizar",
|
"Update" : "Actualizar",
|
||||||
"Description" : "Descripción",
|
|
||||||
"Formatting help" : "Ayuda de formato",
|
|
||||||
"(group)" : "(grupo)",
|
"(group)" : "(grupo)",
|
||||||
"seconds ago" : "hace segundos",
|
"seconds ago" : "hace segundos",
|
||||||
"Archived boards" : "Tableros archivados",
|
"Archived boards" : "Tableros archivados",
|
||||||
"Shared with you" : "Compartido con usted",
|
"Shared with you" : "Compartido con usted",
|
||||||
"Board details" : "Detalles del tablero",
|
|
||||||
"Edit board" : "Editar el tablero",
|
"Edit board" : "Editar el tablero",
|
||||||
|
"Board details" : "Detalles del tablero",
|
||||||
"Today" : "Hoy",
|
"Today" : "Hoy",
|
||||||
"Tomorrow" : "Mañana",
|
"Tomorrow" : "Mañana",
|
||||||
"This week" : "Esta semana"
|
"This week" : "Esta semana"
|
||||||
|
|||||||
@@ -33,22 +33,22 @@ OC.L10N.register(
|
|||||||
"Title" : "Título",
|
"Title" : "Título",
|
||||||
"Members" : "Miembros",
|
"Members" : "Miembros",
|
||||||
"Upload attachment" : "Cargar adjunto",
|
"Upload attachment" : "Cargar adjunto",
|
||||||
|
"Due date" : "Fecha de vencimiento",
|
||||||
|
"Remove due date" : "Eliminar fecha de expiración",
|
||||||
|
"Description" : "Descripción",
|
||||||
|
"Formatting help" : "Ayuda de formato",
|
||||||
"Comments" : "Comentarios",
|
"Comments" : "Comentarios",
|
||||||
"Modified" : "Modificado",
|
"Modified" : "Modificado",
|
||||||
"Created" : "Creado",
|
"Created" : "Creado",
|
||||||
"Due date" : "Fecha de vencimiento",
|
|
||||||
"Remove due date" : "Eliminar fecha de expiración",
|
|
||||||
"Save" : "Guardar",
|
"Save" : "Guardar",
|
||||||
"Reply" : "Responder",
|
"Reply" : "Responder",
|
||||||
"Update" : "Actualizar",
|
"Update" : "Actualizar",
|
||||||
"Description" : "Descripción",
|
|
||||||
"Formatting help" : "Ayuda de formato",
|
|
||||||
"(group)" : "(grupo)",
|
"(group)" : "(grupo)",
|
||||||
"seconds ago" : "hace segundos",
|
"seconds ago" : "hace segundos",
|
||||||
"Archived boards" : "Tableros archivados",
|
"Archived boards" : "Tableros archivados",
|
||||||
"Shared with you" : "Compartido con usted",
|
"Shared with you" : "Compartido con usted",
|
||||||
"Board details" : "Detalles del tablero",
|
|
||||||
"Edit board" : "Editar el tablero",
|
"Edit board" : "Editar el tablero",
|
||||||
|
"Board details" : "Detalles del tablero",
|
||||||
"An error occurred" : "Se presentó un error",
|
"An error occurred" : "Se presentó un error",
|
||||||
"Today" : "Hoy",
|
"Today" : "Hoy",
|
||||||
"Tomorrow" : "Mañana",
|
"Tomorrow" : "Mañana",
|
||||||
|
|||||||
@@ -31,22 +31,22 @@
|
|||||||
"Title" : "Título",
|
"Title" : "Título",
|
||||||
"Members" : "Miembros",
|
"Members" : "Miembros",
|
||||||
"Upload attachment" : "Cargar adjunto",
|
"Upload attachment" : "Cargar adjunto",
|
||||||
|
"Due date" : "Fecha de vencimiento",
|
||||||
|
"Remove due date" : "Eliminar fecha de expiración",
|
||||||
|
"Description" : "Descripción",
|
||||||
|
"Formatting help" : "Ayuda de formato",
|
||||||
"Comments" : "Comentarios",
|
"Comments" : "Comentarios",
|
||||||
"Modified" : "Modificado",
|
"Modified" : "Modificado",
|
||||||
"Created" : "Creado",
|
"Created" : "Creado",
|
||||||
"Due date" : "Fecha de vencimiento",
|
|
||||||
"Remove due date" : "Eliminar fecha de expiración",
|
|
||||||
"Save" : "Guardar",
|
"Save" : "Guardar",
|
||||||
"Reply" : "Responder",
|
"Reply" : "Responder",
|
||||||
"Update" : "Actualizar",
|
"Update" : "Actualizar",
|
||||||
"Description" : "Descripción",
|
|
||||||
"Formatting help" : "Ayuda de formato",
|
|
||||||
"(group)" : "(grupo)",
|
"(group)" : "(grupo)",
|
||||||
"seconds ago" : "hace segundos",
|
"seconds ago" : "hace segundos",
|
||||||
"Archived boards" : "Tableros archivados",
|
"Archived boards" : "Tableros archivados",
|
||||||
"Shared with you" : "Compartido con usted",
|
"Shared with you" : "Compartido con usted",
|
||||||
"Board details" : "Detalles del tablero",
|
|
||||||
"Edit board" : "Editar el tablero",
|
"Edit board" : "Editar el tablero",
|
||||||
|
"Board details" : "Detalles del tablero",
|
||||||
"An error occurred" : "Se presentó un error",
|
"An error occurred" : "Se presentó un error",
|
||||||
"Today" : "Hoy",
|
"Today" : "Hoy",
|
||||||
"Tomorrow" : "Mañana",
|
"Tomorrow" : "Mañana",
|
||||||
|
|||||||
@@ -36,22 +36,22 @@ OC.L10N.register(
|
|||||||
"Title" : "Título",
|
"Title" : "Título",
|
||||||
"Members" : "Miembros",
|
"Members" : "Miembros",
|
||||||
"Upload attachment" : "Cargar adjunto",
|
"Upload attachment" : "Cargar adjunto",
|
||||||
|
"Due date" : "Fecha de vencimiento",
|
||||||
|
"Remove due date" : "Eliminar fecha de expiración",
|
||||||
|
"Description" : "Descripción",
|
||||||
|
"Formatting help" : "Ayuda de formato",
|
||||||
"Comments" : "Comentarios",
|
"Comments" : "Comentarios",
|
||||||
"Modified" : "Modificado",
|
"Modified" : "Modificado",
|
||||||
"Created" : "Creado",
|
"Created" : "Creado",
|
||||||
"Due date" : "Fecha de vencimiento",
|
|
||||||
"Remove due date" : "Eliminar fecha de expiración",
|
|
||||||
"Save" : "Guardar",
|
"Save" : "Guardar",
|
||||||
"Reply" : "Responder",
|
"Reply" : "Responder",
|
||||||
"Update" : "Actualizar",
|
"Update" : "Actualizar",
|
||||||
"Description" : "Descripción",
|
|
||||||
"Formatting help" : "Ayuda de formato",
|
|
||||||
"(group)" : "(grupo)",
|
"(group)" : "(grupo)",
|
||||||
"seconds ago" : "hace segundos",
|
"seconds ago" : "hace segundos",
|
||||||
"Archived boards" : "Tableros archivados",
|
"Archived boards" : "Tableros archivados",
|
||||||
"Shared with you" : "Compartido con usted",
|
"Shared with you" : "Compartido con usted",
|
||||||
"Board details" : "Detalles del tablero",
|
|
||||||
"Edit board" : "Editar el tablero",
|
"Edit board" : "Editar el tablero",
|
||||||
|
"Board details" : "Detalles del tablero",
|
||||||
"Today" : "Hoy",
|
"Today" : "Hoy",
|
||||||
"Tomorrow" : "Mañana",
|
"Tomorrow" : "Mañana",
|
||||||
"This week" : "Esta semana"
|
"This week" : "Esta semana"
|
||||||
|
|||||||
@@ -34,22 +34,22 @@
|
|||||||
"Title" : "Título",
|
"Title" : "Título",
|
||||||
"Members" : "Miembros",
|
"Members" : "Miembros",
|
||||||
"Upload attachment" : "Cargar adjunto",
|
"Upload attachment" : "Cargar adjunto",
|
||||||
|
"Due date" : "Fecha de vencimiento",
|
||||||
|
"Remove due date" : "Eliminar fecha de expiración",
|
||||||
|
"Description" : "Descripción",
|
||||||
|
"Formatting help" : "Ayuda de formato",
|
||||||
"Comments" : "Comentarios",
|
"Comments" : "Comentarios",
|
||||||
"Modified" : "Modificado",
|
"Modified" : "Modificado",
|
||||||
"Created" : "Creado",
|
"Created" : "Creado",
|
||||||
"Due date" : "Fecha de vencimiento",
|
|
||||||
"Remove due date" : "Eliminar fecha de expiración",
|
|
||||||
"Save" : "Guardar",
|
"Save" : "Guardar",
|
||||||
"Reply" : "Responder",
|
"Reply" : "Responder",
|
||||||
"Update" : "Actualizar",
|
"Update" : "Actualizar",
|
||||||
"Description" : "Descripción",
|
|
||||||
"Formatting help" : "Ayuda de formato",
|
|
||||||
"(group)" : "(grupo)",
|
"(group)" : "(grupo)",
|
||||||
"seconds ago" : "hace segundos",
|
"seconds ago" : "hace segundos",
|
||||||
"Archived boards" : "Tableros archivados",
|
"Archived boards" : "Tableros archivados",
|
||||||
"Shared with you" : "Compartido con usted",
|
"Shared with you" : "Compartido con usted",
|
||||||
"Board details" : "Detalles del tablero",
|
|
||||||
"Edit board" : "Editar el tablero",
|
"Edit board" : "Editar el tablero",
|
||||||
|
"Board details" : "Detalles del tablero",
|
||||||
"Today" : "Hoy",
|
"Today" : "Hoy",
|
||||||
"Tomorrow" : "Mañana",
|
"Tomorrow" : "Mañana",
|
||||||
"This week" : "Esta semana"
|
"This week" : "Esta semana"
|
||||||
|
|||||||
@@ -32,22 +32,22 @@ OC.L10N.register(
|
|||||||
"Title" : "Título",
|
"Title" : "Título",
|
||||||
"Members" : "Miembros",
|
"Members" : "Miembros",
|
||||||
"Upload attachment" : "Cargar adjunto",
|
"Upload attachment" : "Cargar adjunto",
|
||||||
|
"Due date" : "Fecha de vencimiento",
|
||||||
|
"Remove due date" : "Eliminar fecha de expiración",
|
||||||
|
"Description" : "Descripción",
|
||||||
|
"Formatting help" : "Ayuda de formato",
|
||||||
"Comments" : "Comentarios",
|
"Comments" : "Comentarios",
|
||||||
"Modified" : "Modificado",
|
"Modified" : "Modificado",
|
||||||
"Created" : "Creado",
|
"Created" : "Creado",
|
||||||
"Due date" : "Fecha de vencimiento",
|
|
||||||
"Remove due date" : "Eliminar fecha de expiración",
|
|
||||||
"Save" : "Guardar",
|
"Save" : "Guardar",
|
||||||
"Reply" : "Responder",
|
"Reply" : "Responder",
|
||||||
"Update" : "Actualizar",
|
"Update" : "Actualizar",
|
||||||
"Description" : "Descripción",
|
|
||||||
"Formatting help" : "Ayuda de formato",
|
|
||||||
"(group)" : "(grupo)",
|
"(group)" : "(grupo)",
|
||||||
"seconds ago" : "hace segundos",
|
"seconds ago" : "hace segundos",
|
||||||
"Archived boards" : "Tableros archivados",
|
"Archived boards" : "Tableros archivados",
|
||||||
"Shared with you" : "Compartido con usted",
|
"Shared with you" : "Compartido con usted",
|
||||||
"Board details" : "Detalles del tablero",
|
|
||||||
"Edit board" : "Editar el tablero",
|
"Edit board" : "Editar el tablero",
|
||||||
|
"Board details" : "Detalles del tablero",
|
||||||
"Today" : "Hoy",
|
"Today" : "Hoy",
|
||||||
"Tomorrow" : "Mañana",
|
"Tomorrow" : "Mañana",
|
||||||
"This week" : "Esta semana"
|
"This week" : "Esta semana"
|
||||||
|
|||||||
@@ -30,22 +30,22 @@
|
|||||||
"Title" : "Título",
|
"Title" : "Título",
|
||||||
"Members" : "Miembros",
|
"Members" : "Miembros",
|
||||||
"Upload attachment" : "Cargar adjunto",
|
"Upload attachment" : "Cargar adjunto",
|
||||||
|
"Due date" : "Fecha de vencimiento",
|
||||||
|
"Remove due date" : "Eliminar fecha de expiración",
|
||||||
|
"Description" : "Descripción",
|
||||||
|
"Formatting help" : "Ayuda de formato",
|
||||||
"Comments" : "Comentarios",
|
"Comments" : "Comentarios",
|
||||||
"Modified" : "Modificado",
|
"Modified" : "Modificado",
|
||||||
"Created" : "Creado",
|
"Created" : "Creado",
|
||||||
"Due date" : "Fecha de vencimiento",
|
|
||||||
"Remove due date" : "Eliminar fecha de expiración",
|
|
||||||
"Save" : "Guardar",
|
"Save" : "Guardar",
|
||||||
"Reply" : "Responder",
|
"Reply" : "Responder",
|
||||||
"Update" : "Actualizar",
|
"Update" : "Actualizar",
|
||||||
"Description" : "Descripción",
|
|
||||||
"Formatting help" : "Ayuda de formato",
|
|
||||||
"(group)" : "(grupo)",
|
"(group)" : "(grupo)",
|
||||||
"seconds ago" : "hace segundos",
|
"seconds ago" : "hace segundos",
|
||||||
"Archived boards" : "Tableros archivados",
|
"Archived boards" : "Tableros archivados",
|
||||||
"Shared with you" : "Compartido con usted",
|
"Shared with you" : "Compartido con usted",
|
||||||
"Board details" : "Detalles del tablero",
|
|
||||||
"Edit board" : "Editar el tablero",
|
"Edit board" : "Editar el tablero",
|
||||||
|
"Board details" : "Detalles del tablero",
|
||||||
"Today" : "Hoy",
|
"Today" : "Hoy",
|
||||||
"Tomorrow" : "Mañana",
|
"Tomorrow" : "Mañana",
|
||||||
"This week" : "Esta semana"
|
"This week" : "Esta semana"
|
||||||
|
|||||||
@@ -18,14 +18,14 @@ OC.L10N.register(
|
|||||||
"Delete" : "Kustuta",
|
"Delete" : "Kustuta",
|
||||||
"Edit" : "Redigeeri",
|
"Edit" : "Redigeeri",
|
||||||
"Title" : "Pealkiri",
|
"Title" : "Pealkiri",
|
||||||
|
"Due date" : "Tähtaeg",
|
||||||
|
"Description" : "Kirjeldus",
|
||||||
"Comments" : "Kommentaarid",
|
"Comments" : "Kommentaarid",
|
||||||
"Modified" : "Muudetud",
|
"Modified" : "Muudetud",
|
||||||
"Created" : "Loodud",
|
"Created" : "Loodud",
|
||||||
"Due date" : "Tähtaeg",
|
|
||||||
"Save" : "Salvesta",
|
"Save" : "Salvesta",
|
||||||
"Reply" : "Vasta",
|
"Reply" : "Vasta",
|
||||||
"Update" : "Uuenda",
|
"Update" : "Uuenda",
|
||||||
"Description" : "Kirjeldus",
|
|
||||||
"(group)" : "(grupp)",
|
"(group)" : "(grupp)",
|
||||||
"Delete card" : "Kustuta kaart",
|
"Delete card" : "Kustuta kaart",
|
||||||
"seconds ago" : "sekundit tagasi",
|
"seconds ago" : "sekundit tagasi",
|
||||||
|
|||||||
@@ -16,14 +16,14 @@
|
|||||||
"Delete" : "Kustuta",
|
"Delete" : "Kustuta",
|
||||||
"Edit" : "Redigeeri",
|
"Edit" : "Redigeeri",
|
||||||
"Title" : "Pealkiri",
|
"Title" : "Pealkiri",
|
||||||
|
"Due date" : "Tähtaeg",
|
||||||
|
"Description" : "Kirjeldus",
|
||||||
"Comments" : "Kommentaarid",
|
"Comments" : "Kommentaarid",
|
||||||
"Modified" : "Muudetud",
|
"Modified" : "Muudetud",
|
||||||
"Created" : "Loodud",
|
"Created" : "Loodud",
|
||||||
"Due date" : "Tähtaeg",
|
|
||||||
"Save" : "Salvesta",
|
"Save" : "Salvesta",
|
||||||
"Reply" : "Vasta",
|
"Reply" : "Vasta",
|
||||||
"Update" : "Uuenda",
|
"Update" : "Uuenda",
|
||||||
"Description" : "Kirjeldus",
|
|
||||||
"(group)" : "(grupp)",
|
"(group)" : "(grupp)",
|
||||||
"Delete card" : "Kustuta kaart",
|
"Delete card" : "Kustuta kaart",
|
||||||
"seconds ago" : "sekundit tagasi",
|
"seconds ago" : "sekundit tagasi",
|
||||||
|
|||||||
36
l10n/eu.js
36
l10n/eu.js
@@ -146,8 +146,6 @@ OC.L10N.register(
|
|||||||
"Undo" : "Desegin",
|
"Undo" : "Desegin",
|
||||||
"Deleted cards" : "Ezabatutako txartelak",
|
"Deleted cards" : "Ezabatutako txartelak",
|
||||||
"Share board with a user, group or circle …" : "Partekatu mahaia erabiltzaile, talde edo zirkulu batekin...",
|
"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",
|
"Board owner" : "Mahaiaren jabea",
|
||||||
"(Group)" : "(Taldea)",
|
"(Group)" : "(Taldea)",
|
||||||
"(Circle)" : "(Zirkulua)",
|
"(Circle)" : "(Zirkulua)",
|
||||||
@@ -155,7 +153,6 @@ OC.L10N.register(
|
|||||||
"Can share" : "Partekatu dezake",
|
"Can share" : "Partekatu dezake",
|
||||||
"Can manage" : "Kudeatu dezake",
|
"Can manage" : "Kudeatu dezake",
|
||||||
"Delete" : "Ezabatu",
|
"Delete" : "Ezabatu",
|
||||||
"Failed to create share with {displayName}" : "Ezin izan da {displayName}-(r)ekin partekatzea sortu",
|
|
||||||
"Add a new list" : "Gehitu zerrenda berria",
|
"Add a new list" : "Gehitu zerrenda berria",
|
||||||
"Archive all cards" : "Artxibatu txartel guztiak",
|
"Archive all cards" : "Artxibatu txartel guztiak",
|
||||||
"Delete list" : "Zerrenda ezabatu",
|
"Delete list" : "Zerrenda ezabatu",
|
||||||
@@ -171,12 +168,6 @@ OC.L10N.register(
|
|||||||
"Add this attachment" : "Gehitu eranskin hau",
|
"Add this attachment" : "Gehitu eranskin hau",
|
||||||
"Delete Attachment" : "Ezabatu eranskina",
|
"Delete Attachment" : "Ezabatu eranskina",
|
||||||
"Restore Attachment" : "Berezarri eranskina",
|
"Restore Attachment" : "Berezarri eranskina",
|
||||||
"Attachments" : "Eranskinak",
|
|
||||||
"Comments" : "Iruzkinak",
|
|
||||||
"Modified" : "Aldatua",
|
|
||||||
"Created" : "Sortua",
|
|
||||||
"The title cannot be empty." : "Izenburua ezin da hutsik egon.",
|
|
||||||
"No comments yet. Begin the discussion!" : "Ez dago iruzkinik oraindik. Hasi eztabaidatzen!",
|
|
||||||
"Assign a tag to this card…" : "Esleitu etiketa bat txartel honi...",
|
"Assign a tag to this card…" : "Esleitu etiketa bat txartel honi...",
|
||||||
"Assign to users" : "Esleitu erabiltzaileei",
|
"Assign to users" : "Esleitu erabiltzaileei",
|
||||||
"Assign to users/groups/circles" : "Esleitu erabiltzaile/talde/zirkuluei",
|
"Assign to users/groups/circles" : "Esleitu erabiltzaile/talde/zirkuluei",
|
||||||
@@ -184,13 +175,6 @@ OC.L10N.register(
|
|||||||
"Due date" : "Epe-muga",
|
"Due date" : "Epe-muga",
|
||||||
"Set a due date" : "Ezarri epe-muga",
|
"Set a due date" : "Ezarri epe-muga",
|
||||||
"Remove due date" : "Ezabatu epe-muga",
|
"Remove due date" : "Ezabatu epe-muga",
|
||||||
"Select Date" : "Hautatu data",
|
|
||||||
"Save" : "Gorde",
|
|
||||||
"The comment cannot be empty." : "Iruzkina ezin da hutsik egon.",
|
|
||||||
"The comment cannot be longer than 1000 characters." : "Iruzkina ezin da 1000 karaktere baino luzeagoa izan.",
|
|
||||||
"In reply to" : "Honi erantzunez",
|
|
||||||
"Reply" : "Erantzun",
|
|
||||||
"Update" : "Eguneratu",
|
|
||||||
"Description" : "Deskribapena",
|
"Description" : "Deskribapena",
|
||||||
"(Unsaved)" : "(Gorde gabe)",
|
"(Unsaved)" : "(Gorde gabe)",
|
||||||
"(Saving…)" : "(Gordetzen...)",
|
"(Saving…)" : "(Gordetzen...)",
|
||||||
@@ -198,7 +182,20 @@ OC.L10N.register(
|
|||||||
"Edit description" : "Editatu azalpena",
|
"Edit description" : "Editatu azalpena",
|
||||||
"View description" : "Ikusi deskribapena",
|
"View description" : "Ikusi deskribapena",
|
||||||
"Add Attachment" : "Gehitu eranskina",
|
"Add Attachment" : "Gehitu eranskina",
|
||||||
|
"Attachments" : "Eranskinak",
|
||||||
|
"Comments" : "Iruzkinak",
|
||||||
"Choose attachment" : "Aukeratu eranskina",
|
"Choose attachment" : "Aukeratu eranskina",
|
||||||
|
"Select Date" : "Hautatu data",
|
||||||
|
"Modified" : "Aldatua",
|
||||||
|
"Created" : "Sortua",
|
||||||
|
"The title cannot be empty." : "Izenburua ezin da hutsik egon.",
|
||||||
|
"No comments yet. Begin the discussion!" : "Ez dago iruzkinik oraindik. Hasi eztabaidatzen!",
|
||||||
|
"Save" : "Gorde",
|
||||||
|
"The comment cannot be empty." : "Iruzkina ezin da hutsik egon.",
|
||||||
|
"The comment cannot be longer than 1000 characters." : "Iruzkina ezin da 1000 karaktere baino luzeagoa izan.",
|
||||||
|
"In reply to" : "Honi erantzunez",
|
||||||
|
"Reply" : "Erantzun",
|
||||||
|
"Update" : "Eguneratu",
|
||||||
"(group)" : "(taldea)",
|
"(group)" : "(taldea)",
|
||||||
"(circle)" : "(zirkulua)",
|
"(circle)" : "(zirkulua)",
|
||||||
"Assign to me" : "Esleitu niri",
|
"Assign to me" : "Esleitu niri",
|
||||||
@@ -217,10 +214,13 @@ OC.L10N.register(
|
|||||||
"Limit deck usage of groups" : "Mugatu taldeek Deck erabiltzeko aukera",
|
"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.",
|
"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 name" : "Mahaiaren izena",
|
||||||
"Board details" : "Mahaiaren xehetasunak",
|
|
||||||
"Edit board" : "Editatu mahaia",
|
"Edit board" : "Editatu mahaia",
|
||||||
|
"Clone board " : "Klonatu mahaia",
|
||||||
|
"Unarchive board " : "Berreskuratu mahaia artxibotik",
|
||||||
|
"Archive board " : "Artxibatu mahaia",
|
||||||
|
"Delete board " : "Ezabatu mahaia",
|
||||||
|
"Board details" : "Mahaiaren xehetasunak",
|
||||||
"Board {0} deleted" : "{0} mahaia ezabatu da",
|
"Board {0} deleted" : "{0} mahaia ezabatu da",
|
||||||
"No reminder" : "Abisurik ez",
|
|
||||||
"An error occurred" : "Errore bat gertatu da",
|
"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.",
|
"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?",
|
"Delete the board?" : "Mahaia ezabatu?",
|
||||||
|
|||||||
36
l10n/eu.json
36
l10n/eu.json
@@ -144,8 +144,6 @@
|
|||||||
"Undo" : "Desegin",
|
"Undo" : "Desegin",
|
||||||
"Deleted cards" : "Ezabatutako txartelak",
|
"Deleted cards" : "Ezabatutako txartelak",
|
||||||
"Share board with a user, group or circle …" : "Partekatu mahaia erabiltzaile, talde edo zirkulu batekin...",
|
"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",
|
"Board owner" : "Mahaiaren jabea",
|
||||||
"(Group)" : "(Taldea)",
|
"(Group)" : "(Taldea)",
|
||||||
"(Circle)" : "(Zirkulua)",
|
"(Circle)" : "(Zirkulua)",
|
||||||
@@ -153,7 +151,6 @@
|
|||||||
"Can share" : "Partekatu dezake",
|
"Can share" : "Partekatu dezake",
|
||||||
"Can manage" : "Kudeatu dezake",
|
"Can manage" : "Kudeatu dezake",
|
||||||
"Delete" : "Ezabatu",
|
"Delete" : "Ezabatu",
|
||||||
"Failed to create share with {displayName}" : "Ezin izan da {displayName}-(r)ekin partekatzea sortu",
|
|
||||||
"Add a new list" : "Gehitu zerrenda berria",
|
"Add a new list" : "Gehitu zerrenda berria",
|
||||||
"Archive all cards" : "Artxibatu txartel guztiak",
|
"Archive all cards" : "Artxibatu txartel guztiak",
|
||||||
"Delete list" : "Zerrenda ezabatu",
|
"Delete list" : "Zerrenda ezabatu",
|
||||||
@@ -169,12 +166,6 @@
|
|||||||
"Add this attachment" : "Gehitu eranskin hau",
|
"Add this attachment" : "Gehitu eranskin hau",
|
||||||
"Delete Attachment" : "Ezabatu eranskina",
|
"Delete Attachment" : "Ezabatu eranskina",
|
||||||
"Restore Attachment" : "Berezarri eranskina",
|
"Restore Attachment" : "Berezarri eranskina",
|
||||||
"Attachments" : "Eranskinak",
|
|
||||||
"Comments" : "Iruzkinak",
|
|
||||||
"Modified" : "Aldatua",
|
|
||||||
"Created" : "Sortua",
|
|
||||||
"The title cannot be empty." : "Izenburua ezin da hutsik egon.",
|
|
||||||
"No comments yet. Begin the discussion!" : "Ez dago iruzkinik oraindik. Hasi eztabaidatzen!",
|
|
||||||
"Assign a tag to this card…" : "Esleitu etiketa bat txartel honi...",
|
"Assign a tag to this card…" : "Esleitu etiketa bat txartel honi...",
|
||||||
"Assign to users" : "Esleitu erabiltzaileei",
|
"Assign to users" : "Esleitu erabiltzaileei",
|
||||||
"Assign to users/groups/circles" : "Esleitu erabiltzaile/talde/zirkuluei",
|
"Assign to users/groups/circles" : "Esleitu erabiltzaile/talde/zirkuluei",
|
||||||
@@ -182,13 +173,6 @@
|
|||||||
"Due date" : "Epe-muga",
|
"Due date" : "Epe-muga",
|
||||||
"Set a due date" : "Ezarri epe-muga",
|
"Set a due date" : "Ezarri epe-muga",
|
||||||
"Remove due date" : "Ezabatu epe-muga",
|
"Remove due date" : "Ezabatu epe-muga",
|
||||||
"Select Date" : "Hautatu data",
|
|
||||||
"Save" : "Gorde",
|
|
||||||
"The comment cannot be empty." : "Iruzkina ezin da hutsik egon.",
|
|
||||||
"The comment cannot be longer than 1000 characters." : "Iruzkina ezin da 1000 karaktere baino luzeagoa izan.",
|
|
||||||
"In reply to" : "Honi erantzunez",
|
|
||||||
"Reply" : "Erantzun",
|
|
||||||
"Update" : "Eguneratu",
|
|
||||||
"Description" : "Deskribapena",
|
"Description" : "Deskribapena",
|
||||||
"(Unsaved)" : "(Gorde gabe)",
|
"(Unsaved)" : "(Gorde gabe)",
|
||||||
"(Saving…)" : "(Gordetzen...)",
|
"(Saving…)" : "(Gordetzen...)",
|
||||||
@@ -196,7 +180,20 @@
|
|||||||
"Edit description" : "Editatu azalpena",
|
"Edit description" : "Editatu azalpena",
|
||||||
"View description" : "Ikusi deskribapena",
|
"View description" : "Ikusi deskribapena",
|
||||||
"Add Attachment" : "Gehitu eranskina",
|
"Add Attachment" : "Gehitu eranskina",
|
||||||
|
"Attachments" : "Eranskinak",
|
||||||
|
"Comments" : "Iruzkinak",
|
||||||
"Choose attachment" : "Aukeratu eranskina",
|
"Choose attachment" : "Aukeratu eranskina",
|
||||||
|
"Select Date" : "Hautatu data",
|
||||||
|
"Modified" : "Aldatua",
|
||||||
|
"Created" : "Sortua",
|
||||||
|
"The title cannot be empty." : "Izenburua ezin da hutsik egon.",
|
||||||
|
"No comments yet. Begin the discussion!" : "Ez dago iruzkinik oraindik. Hasi eztabaidatzen!",
|
||||||
|
"Save" : "Gorde",
|
||||||
|
"The comment cannot be empty." : "Iruzkina ezin da hutsik egon.",
|
||||||
|
"The comment cannot be longer than 1000 characters." : "Iruzkina ezin da 1000 karaktere baino luzeagoa izan.",
|
||||||
|
"In reply to" : "Honi erantzunez",
|
||||||
|
"Reply" : "Erantzun",
|
||||||
|
"Update" : "Eguneratu",
|
||||||
"(group)" : "(taldea)",
|
"(group)" : "(taldea)",
|
||||||
"(circle)" : "(zirkulua)",
|
"(circle)" : "(zirkulua)",
|
||||||
"Assign to me" : "Esleitu niri",
|
"Assign to me" : "Esleitu niri",
|
||||||
@@ -215,10 +212,13 @@
|
|||||||
"Limit deck usage of groups" : "Mugatu taldeek Deck erabiltzeko aukera",
|
"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.",
|
"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 name" : "Mahaiaren izena",
|
||||||
"Board details" : "Mahaiaren xehetasunak",
|
|
||||||
"Edit board" : "Editatu mahaia",
|
"Edit board" : "Editatu mahaia",
|
||||||
|
"Clone board " : "Klonatu mahaia",
|
||||||
|
"Unarchive board " : "Berreskuratu mahaia artxibotik",
|
||||||
|
"Archive board " : "Artxibatu mahaia",
|
||||||
|
"Delete board " : "Ezabatu mahaia",
|
||||||
|
"Board details" : "Mahaiaren xehetasunak",
|
||||||
"Board {0} deleted" : "{0} mahaia ezabatu da",
|
"Board {0} deleted" : "{0} mahaia ezabatu da",
|
||||||
"No reminder" : "Abisurik ez",
|
|
||||||
"An error occurred" : "Errore bat gertatu da",
|
"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.",
|
"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?",
|
"Delete the board?" : "Mahaia ezabatu?",
|
||||||
|
|||||||
24
l10n/fa.js
24
l10n/fa.js
@@ -97,19 +97,7 @@ OC.L10N.register(
|
|||||||
"Add this attachment" : "افزودن این پیوست",
|
"Add this attachment" : "افزودن این پیوست",
|
||||||
"Delete Attachment" : "حذف پیوست",
|
"Delete Attachment" : "حذف پیوست",
|
||||||
"Restore Attachment" : "بازیابی پیوست",
|
"Restore Attachment" : "بازیابی پیوست",
|
||||||
"Attachments" : "پیوستها",
|
|
||||||
"Comments" : "نظرات",
|
|
||||||
"Modified" : "تغییر یافته",
|
|
||||||
"Created" : "ایجاد شده",
|
|
||||||
"No comments yet. Begin the discussion!" : "هنوز نظری وجود ندارد. بحثی را آغاز کنید!",
|
|
||||||
"Due date" : "موعد مقرر",
|
"Due date" : "موعد مقرر",
|
||||||
"Select Date" : "تاریخ را انتخاب کنید",
|
|
||||||
"Save" : "ذخیره",
|
|
||||||
"The comment cannot be empty." : "نظر نمیتواند خالی باشد.",
|
|
||||||
"The comment cannot be longer than 1000 characters." : "نظر نمیتواند طولانیتر از ۱۰۰۰ حرف باشد.",
|
|
||||||
"In reply to" : "در پاسخ به",
|
|
||||||
"Reply" : "پاسخ",
|
|
||||||
"Update" : "بهروزرسانی",
|
|
||||||
"Description" : "توضیحات",
|
"Description" : "توضیحات",
|
||||||
"(Unsaved)" : "(ذخیره نشده)",
|
"(Unsaved)" : "(ذخیره نشده)",
|
||||||
"(Saving…)" : "(در حال ذخیره...)",
|
"(Saving…)" : "(در حال ذخیره...)",
|
||||||
@@ -117,7 +105,19 @@ OC.L10N.register(
|
|||||||
"Edit description" : "ویرایش توضیحات",
|
"Edit description" : "ویرایش توضیحات",
|
||||||
"View description" : "نمایش توضیحات",
|
"View description" : "نمایش توضیحات",
|
||||||
"Add Attachment" : "افزودن پیوست",
|
"Add Attachment" : "افزودن پیوست",
|
||||||
|
"Attachments" : "پیوستها",
|
||||||
|
"Comments" : "نظرات",
|
||||||
"Choose attachment" : "انتخاب پیوست",
|
"Choose attachment" : "انتخاب پیوست",
|
||||||
|
"Select Date" : "تاریخ را انتخاب کنید",
|
||||||
|
"Modified" : "تغییر یافته",
|
||||||
|
"Created" : "ایجاد شده",
|
||||||
|
"No comments yet. Begin the discussion!" : "هنوز نظری وجود ندارد. بحثی را آغاز کنید!",
|
||||||
|
"Save" : "ذخیره",
|
||||||
|
"The comment cannot be empty." : "نظر نمیتواند خالی باشد.",
|
||||||
|
"The comment cannot be longer than 1000 characters." : "نظر نمیتواند طولانیتر از ۱۰۰۰ حرف باشد.",
|
||||||
|
"In reply to" : "در پاسخ به",
|
||||||
|
"Reply" : "پاسخ",
|
||||||
|
"Update" : "بهروزرسانی",
|
||||||
"(group)" : "(گروه)",
|
"(group)" : "(گروه)",
|
||||||
"(circle)" : "(حلقه)",
|
"(circle)" : "(حلقه)",
|
||||||
"Move card" : "انتقال کارت",
|
"Move card" : "انتقال کارت",
|
||||||
|
|||||||
24
l10n/fa.json
24
l10n/fa.json
@@ -95,19 +95,7 @@
|
|||||||
"Add this attachment" : "افزودن این پیوست",
|
"Add this attachment" : "افزودن این پیوست",
|
||||||
"Delete Attachment" : "حذف پیوست",
|
"Delete Attachment" : "حذف پیوست",
|
||||||
"Restore Attachment" : "بازیابی پیوست",
|
"Restore Attachment" : "بازیابی پیوست",
|
||||||
"Attachments" : "پیوستها",
|
|
||||||
"Comments" : "نظرات",
|
|
||||||
"Modified" : "تغییر یافته",
|
|
||||||
"Created" : "ایجاد شده",
|
|
||||||
"No comments yet. Begin the discussion!" : "هنوز نظری وجود ندارد. بحثی را آغاز کنید!",
|
|
||||||
"Due date" : "موعد مقرر",
|
"Due date" : "موعد مقرر",
|
||||||
"Select Date" : "تاریخ را انتخاب کنید",
|
|
||||||
"Save" : "ذخیره",
|
|
||||||
"The comment cannot be empty." : "نظر نمیتواند خالی باشد.",
|
|
||||||
"The comment cannot be longer than 1000 characters." : "نظر نمیتواند طولانیتر از ۱۰۰۰ حرف باشد.",
|
|
||||||
"In reply to" : "در پاسخ به",
|
|
||||||
"Reply" : "پاسخ",
|
|
||||||
"Update" : "بهروزرسانی",
|
|
||||||
"Description" : "توضیحات",
|
"Description" : "توضیحات",
|
||||||
"(Unsaved)" : "(ذخیره نشده)",
|
"(Unsaved)" : "(ذخیره نشده)",
|
||||||
"(Saving…)" : "(در حال ذخیره...)",
|
"(Saving…)" : "(در حال ذخیره...)",
|
||||||
@@ -115,7 +103,19 @@
|
|||||||
"Edit description" : "ویرایش توضیحات",
|
"Edit description" : "ویرایش توضیحات",
|
||||||
"View description" : "نمایش توضیحات",
|
"View description" : "نمایش توضیحات",
|
||||||
"Add Attachment" : "افزودن پیوست",
|
"Add Attachment" : "افزودن پیوست",
|
||||||
|
"Attachments" : "پیوستها",
|
||||||
|
"Comments" : "نظرات",
|
||||||
"Choose attachment" : "انتخاب پیوست",
|
"Choose attachment" : "انتخاب پیوست",
|
||||||
|
"Select Date" : "تاریخ را انتخاب کنید",
|
||||||
|
"Modified" : "تغییر یافته",
|
||||||
|
"Created" : "ایجاد شده",
|
||||||
|
"No comments yet. Begin the discussion!" : "هنوز نظری وجود ندارد. بحثی را آغاز کنید!",
|
||||||
|
"Save" : "ذخیره",
|
||||||
|
"The comment cannot be empty." : "نظر نمیتواند خالی باشد.",
|
||||||
|
"The comment cannot be longer than 1000 characters." : "نظر نمیتواند طولانیتر از ۱۰۰۰ حرف باشد.",
|
||||||
|
"In reply to" : "در پاسخ به",
|
||||||
|
"Reply" : "پاسخ",
|
||||||
|
"Update" : "بهروزرسانی",
|
||||||
"(group)" : "(گروه)",
|
"(group)" : "(گروه)",
|
||||||
"(circle)" : "(حلقه)",
|
"(circle)" : "(حلقه)",
|
||||||
"Move card" : "انتقال کارت",
|
"Move card" : "انتقال کارت",
|
||||||
|
|||||||
59
l10n/fi.js
59
l10n/fi.js
@@ -17,20 +17,8 @@ OC.L10N.register(
|
|||||||
"{user} has archived the board {before}" : "{user} arkistoi taulun {before}",
|
"{user} has archived the board {before}" : "{user} arkistoi taulun {before}",
|
||||||
"You have unarchived the board {board}" : "Palautit taulun {board} arkistosta ",
|
"You have unarchived the board {board}" : "Palautit taulun {board} arkistosta ",
|
||||||
"{user} has unarchived the board {before}" : "{user} palautti taulun {before} 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}",
|
"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}",
|
"{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}",
|
"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}",
|
"{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}",
|
"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",
|
"Deck" : "Pakka",
|
||||||
"Changes in the <strong>Deck app</strong>" : "Muutokset <strong>Pakka-sovelluksessa</strong>",
|
"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",
|
"A <strong>comment</strong> was created on a card" : "<strong>Kommentti</strong> luotiin kortille",
|
||||||
"Upcoming cards" : "Tulevat kortit",
|
|
||||||
"Personal" : "Henkilökohtainen",
|
"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.",
|
"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.",
|
"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\".",
|
"%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\".",
|
"{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",
|
"Toggle compact mode" : "Käytä kompaktia tilaa",
|
||||||
"Details" : "Tiedot",
|
"Details" : "Tiedot",
|
||||||
"Loading board" : "Ladataan taulua",
|
"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",
|
"Board not found" : "Taulua ei löydy",
|
||||||
"Sharing" : "Jakaminen",
|
"Sharing" : "Jakaminen",
|
||||||
"Tags" : "Tunnisteet",
|
"Tags" : "Tunnisteet",
|
||||||
"Deleted items" : "Poistetut tietueet",
|
"Deleted items" : "Poistetut tietueet",
|
||||||
"Timeline" : "Aikajana",
|
"Timeline" : "Aikajana",
|
||||||
"Deleted lists" : "Poistetut listat",
|
|
||||||
"Undo" : "Kumoa",
|
"Undo" : "Kumoa",
|
||||||
"Deleted cards" : "Poistetut kortit",
|
"Deleted cards" : "Poistetut kortit",
|
||||||
"Share board with a user, group or circle …" : "Jaa taulu käyttäjän, ryhmän tai piirin ... kanssa",
|
"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",
|
"Board owner" : "Taulun omistaja",
|
||||||
"(Group)" : "(Ryhmä)",
|
"(Group)" : "(Ryhmä)",
|
||||||
"(Circle)" : "(Piiri)",
|
"(Circle)" : "(Piiri)",
|
||||||
@@ -138,14 +120,11 @@ OC.L10N.register(
|
|||||||
"Can share" : "Voi jakaa",
|
"Can share" : "Voi jakaa",
|
||||||
"Can manage" : "Voi hallita",
|
"Can manage" : "Voi hallita",
|
||||||
"Delete" : "Poista",
|
"Delete" : "Poista",
|
||||||
"Add a new list" : "Lisää uusi lista",
|
|
||||||
"Archive all cards" : "Arkistoi kaikki kortit",
|
"Archive all cards" : "Arkistoi kaikki kortit",
|
||||||
"Delete list" : "Poista lista",
|
"Delete list" : "Poista lista",
|
||||||
"Add card" : "Lisää kortti",
|
"Add card" : "Lisää kortti",
|
||||||
"Archive all cards in this list" : "Arkistoi kaikki kortit tässä listassa",
|
|
||||||
"Add a new card" : "Lisää uusi kortti",
|
"Add a new card" : "Lisää uusi kortti",
|
||||||
"Card name" : "Kortin nimi",
|
"Card name" : "Kortin nimi",
|
||||||
"List deleted" : "Lista poistettu",
|
|
||||||
"Edit" : "Muokkaa",
|
"Edit" : "Muokkaa",
|
||||||
"Add a new tag" : "Lisää uusi tunniste",
|
"Add a new tag" : "Lisää uusi tunniste",
|
||||||
"title and color value must be provided" : "tunnisteella on oltava nimi ja väri",
|
"title and color value must be provided" : "tunnisteella on oltava nimi ja väri",
|
||||||
@@ -155,57 +134,49 @@ OC.L10N.register(
|
|||||||
"Add this attachment" : "Lisää tämä liite",
|
"Add this attachment" : "Lisää tämä liite",
|
||||||
"Delete Attachment" : "Poista liite",
|
"Delete Attachment" : "Poista liite",
|
||||||
"Restore Attachment" : "Palauta liite",
|
"Restore Attachment" : "Palauta liite",
|
||||||
"Attachments" : "Liitteet",
|
|
||||||
"Comments" : "Kommentit",
|
|
||||||
"Modified" : "Muokattu",
|
|
||||||
"Created" : "Luotu",
|
|
||||||
"No comments yet. Begin the discussion!" : "Ei vielä kommentteja. Aloita keskustelu!",
|
|
||||||
"Assign a tag to this card…" : "Lisää kortille tunniste...",
|
"Assign a tag to this card…" : "Lisää kortille tunniste...",
|
||||||
"Due date" : "Eräpäivä",
|
"Due date" : "Eräpäivä",
|
||||||
"Set a due date" : "Aseta eräpäivä",
|
"Set a due date" : "Aseta eräpäivä",
|
||||||
"Remove due date" : "Poista eräpäivä",
|
"Remove due date" : "Poista eräpäivä",
|
||||||
"Select Date" : "Valitse päivä",
|
|
||||||
"Save" : "Tallenna",
|
|
||||||
"The comment cannot be empty." : "Kommentti ei voi olla tyhjä.",
|
|
||||||
"The comment cannot be longer than 1000 characters." : "Kommentin on oltava alle 1000 merkkiä pitkä.",
|
|
||||||
"Reply" : "Vastaa",
|
|
||||||
"Update" : "Päivitä",
|
|
||||||
"Description" : "Kuvaus",
|
"Description" : "Kuvaus",
|
||||||
"(Saving…)" : "(Tallennetaan…)",
|
"(Saving…)" : "(Tallennetaan…)",
|
||||||
"Formatting help" : "Muotoiluapu",
|
"Formatting help" : "Muotoiluapu",
|
||||||
"Edit description" : "Muokkaa kuvausta",
|
"Edit description" : "Muokkaa kuvausta",
|
||||||
"View description" : "Näytä kuvaus",
|
"View description" : "Näytä kuvaus",
|
||||||
"Add Attachment" : "Lisää liite",
|
"Add Attachment" : "Lisää liite",
|
||||||
|
"Attachments" : "Liitteet",
|
||||||
|
"Comments" : "Kommentit",
|
||||||
"Choose attachment" : "Valitse liite",
|
"Choose attachment" : "Valitse liite",
|
||||||
|
"Select Date" : "Valitse päivä",
|
||||||
|
"Modified" : "Muokattu",
|
||||||
|
"Created" : "Luotu",
|
||||||
|
"No comments yet. Begin the discussion!" : "Ei vielä kommentteja. Aloita keskustelu!",
|
||||||
|
"Save" : "Tallenna",
|
||||||
|
"The comment cannot be empty." : "Kommentti ei voi olla tyhjä.",
|
||||||
|
"The comment cannot be longer than 1000 characters." : "Kommentin on oltava alle 1000 merkkiä pitkä.",
|
||||||
|
"Reply" : "Vastaa",
|
||||||
|
"Update" : "Päivitä",
|
||||||
"(group)" : "(ryhmä)",
|
"(group)" : "(ryhmä)",
|
||||||
"Move card" : "Siirrä kortti",
|
"Move card" : "Siirrä kortti",
|
||||||
"Unarchive card" : "Poista kortti arkistosta",
|
"Unarchive card" : "Poista kortti arkistosta",
|
||||||
"Archive card" : "Arkistoi kortti",
|
"Archive card" : "Arkistoi kortti",
|
||||||
"Delete card" : "Poista 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",
|
"seconds ago" : "sekuntia sitten",
|
||||||
"All boards" : "Kaikki taulut",
|
"All boards" : "Kaikki taulut",
|
||||||
"Archived boards" : "Arkistoidut taulut",
|
"Archived boards" : "Arkistoidut taulut",
|
||||||
"Shared with you" : "Jaettu kanssasi",
|
"Shared with you" : "Jaettu kanssasi",
|
||||||
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Pakan käytön rajoittaminen estää merkittyjen ryhmien jäseniä luomasta omia taulujaan, mutta käyttäjät pystyvät silti käyttämään heidän kanssaan jaettuja tauluja.",
|
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Pakan käytön rajoittaminen estää merkittyjen ryhmien jäseniä luomasta omia taulujaan, mutta käyttäjät pystyvät silti käyttämään heidän kanssaan jaettuja tauluja.",
|
||||||
"Board name" : "Taulun nimi",
|
|
||||||
"Board details" : "Taulun tiedot",
|
|
||||||
"Edit board" : "Muokkaa taulua",
|
"Edit board" : "Muokkaa taulua",
|
||||||
"Clone board" : "Monista taulu",
|
"Clone board " : "Monista taulu",
|
||||||
"All cards" : "Kaikki kortit",
|
"Archive board " : "Arkistoi taulu",
|
||||||
"No notifications" : "Ei ilmoituksia",
|
"Delete board " : "Poista taulu",
|
||||||
"Delete board" : "Poista taulu",
|
"Board details" : "Taulun tiedot",
|
||||||
"Board {0} deleted" : "Taulu {0} poistettu",
|
"Board {0} deleted" : "Taulu {0} poistettu",
|
||||||
"No reminder" : "Ei muistutusta",
|
|
||||||
"An error occurred" : "Tapahtui virhe",
|
"An error occurred" : "Tapahtui virhe",
|
||||||
"Delete the board?" : "Poistetaanko tämä taulu?",
|
"Delete the board?" : "Poistetaanko tämä taulu?",
|
||||||
"Today" : "Tänään",
|
"Today" : "Tänään",
|
||||||
"Tomorrow" : "Huomenna",
|
"Tomorrow" : "Huomenna",
|
||||||
"This week" : "Tällä viikolla",
|
"This week" : "Tällä viikolla",
|
||||||
"No upcoming cards" : "Ei tulevia kortteja",
|
|
||||||
"upcoming cards" : "tulevat kortit",
|
|
||||||
"Link to a board" : "Linkki taululle",
|
"Link to a board" : "Linkki taululle",
|
||||||
"Link to a card" : "Linkitä korttiin",
|
"Link to a card" : "Linkitä korttiin",
|
||||||
"Something went wrong" : "Jokin meni vikaan",
|
"Something went wrong" : "Jokin meni vikaan",
|
||||||
|
|||||||
59
l10n/fi.json
59
l10n/fi.json
@@ -15,20 +15,8 @@
|
|||||||
"{user} has archived the board {before}" : "{user} arkistoi taulun {before}",
|
"{user} has archived the board {before}" : "{user} arkistoi taulun {before}",
|
||||||
"You have unarchived the board {board}" : "Palautit taulun {board} arkistosta ",
|
"You have unarchived the board {board}" : "Palautit taulun {board} arkistosta ",
|
||||||
"{user} has unarchived the board {before}" : "{user} palautti taulun {before} 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}",
|
"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}",
|
"{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}",
|
"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}",
|
"{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}",
|
"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",
|
"Deck" : "Pakka",
|
||||||
"Changes in the <strong>Deck app</strong>" : "Muutokset <strong>Pakka-sovelluksessa</strong>",
|
"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",
|
"A <strong>comment</strong> was created on a card" : "<strong>Kommentti</strong> luotiin kortille",
|
||||||
"Upcoming cards" : "Tulevat kortit",
|
|
||||||
"Personal" : "Henkilökohtainen",
|
"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.",
|
"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.",
|
"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\".",
|
"%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\".",
|
"{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",
|
"Toggle compact mode" : "Käytä kompaktia tilaa",
|
||||||
"Details" : "Tiedot",
|
"Details" : "Tiedot",
|
||||||
"Loading board" : "Ladataan taulua",
|
"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",
|
"Board not found" : "Taulua ei löydy",
|
||||||
"Sharing" : "Jakaminen",
|
"Sharing" : "Jakaminen",
|
||||||
"Tags" : "Tunnisteet",
|
"Tags" : "Tunnisteet",
|
||||||
"Deleted items" : "Poistetut tietueet",
|
"Deleted items" : "Poistetut tietueet",
|
||||||
"Timeline" : "Aikajana",
|
"Timeline" : "Aikajana",
|
||||||
"Deleted lists" : "Poistetut listat",
|
|
||||||
"Undo" : "Kumoa",
|
"Undo" : "Kumoa",
|
||||||
"Deleted cards" : "Poistetut kortit",
|
"Deleted cards" : "Poistetut kortit",
|
||||||
"Share board with a user, group or circle …" : "Jaa taulu käyttäjän, ryhmän tai piirin ... kanssa",
|
"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",
|
"Board owner" : "Taulun omistaja",
|
||||||
"(Group)" : "(Ryhmä)",
|
"(Group)" : "(Ryhmä)",
|
||||||
"(Circle)" : "(Piiri)",
|
"(Circle)" : "(Piiri)",
|
||||||
@@ -136,14 +118,11 @@
|
|||||||
"Can share" : "Voi jakaa",
|
"Can share" : "Voi jakaa",
|
||||||
"Can manage" : "Voi hallita",
|
"Can manage" : "Voi hallita",
|
||||||
"Delete" : "Poista",
|
"Delete" : "Poista",
|
||||||
"Add a new list" : "Lisää uusi lista",
|
|
||||||
"Archive all cards" : "Arkistoi kaikki kortit",
|
"Archive all cards" : "Arkistoi kaikki kortit",
|
||||||
"Delete list" : "Poista lista",
|
"Delete list" : "Poista lista",
|
||||||
"Add card" : "Lisää kortti",
|
"Add card" : "Lisää kortti",
|
||||||
"Archive all cards in this list" : "Arkistoi kaikki kortit tässä listassa",
|
|
||||||
"Add a new card" : "Lisää uusi kortti",
|
"Add a new card" : "Lisää uusi kortti",
|
||||||
"Card name" : "Kortin nimi",
|
"Card name" : "Kortin nimi",
|
||||||
"List deleted" : "Lista poistettu",
|
|
||||||
"Edit" : "Muokkaa",
|
"Edit" : "Muokkaa",
|
||||||
"Add a new tag" : "Lisää uusi tunniste",
|
"Add a new tag" : "Lisää uusi tunniste",
|
||||||
"title and color value must be provided" : "tunnisteella on oltava nimi ja väri",
|
"title and color value must be provided" : "tunnisteella on oltava nimi ja väri",
|
||||||
@@ -153,57 +132,49 @@
|
|||||||
"Add this attachment" : "Lisää tämä liite",
|
"Add this attachment" : "Lisää tämä liite",
|
||||||
"Delete Attachment" : "Poista liite",
|
"Delete Attachment" : "Poista liite",
|
||||||
"Restore Attachment" : "Palauta liite",
|
"Restore Attachment" : "Palauta liite",
|
||||||
"Attachments" : "Liitteet",
|
|
||||||
"Comments" : "Kommentit",
|
|
||||||
"Modified" : "Muokattu",
|
|
||||||
"Created" : "Luotu",
|
|
||||||
"No comments yet. Begin the discussion!" : "Ei vielä kommentteja. Aloita keskustelu!",
|
|
||||||
"Assign a tag to this card…" : "Lisää kortille tunniste...",
|
"Assign a tag to this card…" : "Lisää kortille tunniste...",
|
||||||
"Due date" : "Eräpäivä",
|
"Due date" : "Eräpäivä",
|
||||||
"Set a due date" : "Aseta eräpäivä",
|
"Set a due date" : "Aseta eräpäivä",
|
||||||
"Remove due date" : "Poista eräpäivä",
|
"Remove due date" : "Poista eräpäivä",
|
||||||
"Select Date" : "Valitse päivä",
|
|
||||||
"Save" : "Tallenna",
|
|
||||||
"The comment cannot be empty." : "Kommentti ei voi olla tyhjä.",
|
|
||||||
"The comment cannot be longer than 1000 characters." : "Kommentin on oltava alle 1000 merkkiä pitkä.",
|
|
||||||
"Reply" : "Vastaa",
|
|
||||||
"Update" : "Päivitä",
|
|
||||||
"Description" : "Kuvaus",
|
"Description" : "Kuvaus",
|
||||||
"(Saving…)" : "(Tallennetaan…)",
|
"(Saving…)" : "(Tallennetaan…)",
|
||||||
"Formatting help" : "Muotoiluapu",
|
"Formatting help" : "Muotoiluapu",
|
||||||
"Edit description" : "Muokkaa kuvausta",
|
"Edit description" : "Muokkaa kuvausta",
|
||||||
"View description" : "Näytä kuvaus",
|
"View description" : "Näytä kuvaus",
|
||||||
"Add Attachment" : "Lisää liite",
|
"Add Attachment" : "Lisää liite",
|
||||||
|
"Attachments" : "Liitteet",
|
||||||
|
"Comments" : "Kommentit",
|
||||||
"Choose attachment" : "Valitse liite",
|
"Choose attachment" : "Valitse liite",
|
||||||
|
"Select Date" : "Valitse päivä",
|
||||||
|
"Modified" : "Muokattu",
|
||||||
|
"Created" : "Luotu",
|
||||||
|
"No comments yet. Begin the discussion!" : "Ei vielä kommentteja. Aloita keskustelu!",
|
||||||
|
"Save" : "Tallenna",
|
||||||
|
"The comment cannot be empty." : "Kommentti ei voi olla tyhjä.",
|
||||||
|
"The comment cannot be longer than 1000 characters." : "Kommentin on oltava alle 1000 merkkiä pitkä.",
|
||||||
|
"Reply" : "Vastaa",
|
||||||
|
"Update" : "Päivitä",
|
||||||
"(group)" : "(ryhmä)",
|
"(group)" : "(ryhmä)",
|
||||||
"Move card" : "Siirrä kortti",
|
"Move card" : "Siirrä kortti",
|
||||||
"Unarchive card" : "Poista kortti arkistosta",
|
"Unarchive card" : "Poista kortti arkistosta",
|
||||||
"Archive card" : "Arkistoi kortti",
|
"Archive card" : "Arkistoi kortti",
|
||||||
"Delete card" : "Poista 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",
|
"seconds ago" : "sekuntia sitten",
|
||||||
"All boards" : "Kaikki taulut",
|
"All boards" : "Kaikki taulut",
|
||||||
"Archived boards" : "Arkistoidut taulut",
|
"Archived boards" : "Arkistoidut taulut",
|
||||||
"Shared with you" : "Jaettu kanssasi",
|
"Shared with you" : "Jaettu kanssasi",
|
||||||
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Pakan käytön rajoittaminen estää merkittyjen ryhmien jäseniä luomasta omia taulujaan, mutta käyttäjät pystyvät silti käyttämään heidän kanssaan jaettuja tauluja.",
|
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Pakan käytön rajoittaminen estää merkittyjen ryhmien jäseniä luomasta omia taulujaan, mutta käyttäjät pystyvät silti käyttämään heidän kanssaan jaettuja tauluja.",
|
||||||
"Board name" : "Taulun nimi",
|
|
||||||
"Board details" : "Taulun tiedot",
|
|
||||||
"Edit board" : "Muokkaa taulua",
|
"Edit board" : "Muokkaa taulua",
|
||||||
"Clone board" : "Monista taulu",
|
"Clone board " : "Monista taulu",
|
||||||
"All cards" : "Kaikki kortit",
|
"Archive board " : "Arkistoi taulu",
|
||||||
"No notifications" : "Ei ilmoituksia",
|
"Delete board " : "Poista taulu",
|
||||||
"Delete board" : "Poista taulu",
|
"Board details" : "Taulun tiedot",
|
||||||
"Board {0} deleted" : "Taulu {0} poistettu",
|
"Board {0} deleted" : "Taulu {0} poistettu",
|
||||||
"No reminder" : "Ei muistutusta",
|
|
||||||
"An error occurred" : "Tapahtui virhe",
|
"An error occurred" : "Tapahtui virhe",
|
||||||
"Delete the board?" : "Poistetaanko tämä taulu?",
|
"Delete the board?" : "Poistetaanko tämä taulu?",
|
||||||
"Today" : "Tänään",
|
"Today" : "Tänään",
|
||||||
"Tomorrow" : "Huomenna",
|
"Tomorrow" : "Huomenna",
|
||||||
"This week" : "Tällä viikolla",
|
"This week" : "Tällä viikolla",
|
||||||
"No upcoming cards" : "Ei tulevia kortteja",
|
|
||||||
"upcoming cards" : "tulevat kortit",
|
|
||||||
"Link to a board" : "Linkki taululle",
|
"Link to a board" : "Linkki taululle",
|
||||||
"Link to a card" : "Linkitä korttiin",
|
"Link to a card" : "Linkitä korttiin",
|
||||||
"Something went wrong" : "Jokin meni vikaan",
|
"Something went wrong" : "Jokin meni vikaan",
|
||||||
|
|||||||
46
l10n/fr.js
46
l10n/fr.js
@@ -175,12 +175,6 @@ OC.L10N.register(
|
|||||||
"Restore Attachment" : "Restaurer la pièce jointe",
|
"Restore Attachment" : "Restaurer la pièce jointe",
|
||||||
"Open in sidebar view" : "Ouvrir dans la barre latérale",
|
"Open in sidebar view" : "Ouvrir dans la barre latérale",
|
||||||
"Open in bigger view" : "Ouvrir dans la vue principale",
|
"Open in bigger view" : "Ouvrir dans la vue principale",
|
||||||
"Attachments" : "Pièces jointes",
|
|
||||||
"Comments" : "Commentaires",
|
|
||||||
"Modified" : "Modifié",
|
|
||||||
"Created" : "Créé",
|
|
||||||
"The title cannot be empty." : "Le titre ne peut pas être vide.",
|
|
||||||
"No comments yet. Begin the discussion!" : "Aucun commentaire pour l'instant, démarrez la discussion !",
|
|
||||||
"Assign a tag to this card…" : "Associer une étiquette à cette carte…",
|
"Assign a tag to this card…" : "Associer une étiquette à cette carte…",
|
||||||
"Assign to users" : "Attribuer aux utilisateurs",
|
"Assign to users" : "Attribuer aux utilisateurs",
|
||||||
"Assign to users/groups/circles" : "Attribuer à des utilisateurs / groupes / cercles",
|
"Assign to users/groups/circles" : "Attribuer à des utilisateurs / groupes / cercles",
|
||||||
@@ -188,13 +182,6 @@ OC.L10N.register(
|
|||||||
"Due date" : "Date d'échéance",
|
"Due date" : "Date d'échéance",
|
||||||
"Set a due date" : "Définir une date d'échéance",
|
"Set a due date" : "Définir une date d'échéance",
|
||||||
"Remove due date" : "Supprimer la date d'échéance",
|
"Remove due date" : "Supprimer la date d'échéance",
|
||||||
"Select Date" : "Sélectionnez une date",
|
|
||||||
"Save" : "Enregistrer",
|
|
||||||
"The comment cannot be empty." : "Un commentaire ne peut pas être vide.",
|
|
||||||
"The comment cannot be longer than 1000 characters." : "Un commentaire est limité à 1 000 caractères.",
|
|
||||||
"In reply to" : "En réponse à",
|
|
||||||
"Reply" : "Répondre",
|
|
||||||
"Update" : "Mettre à jour",
|
|
||||||
"Description" : "Description",
|
"Description" : "Description",
|
||||||
"(Unsaved)" : "(Non enregistré)",
|
"(Unsaved)" : "(Non enregistré)",
|
||||||
"(Saving…)" : "(Enregistrement ...)",
|
"(Saving…)" : "(Enregistrement ...)",
|
||||||
@@ -202,8 +189,20 @@ OC.L10N.register(
|
|||||||
"Edit description" : "Modifier la description",
|
"Edit description" : "Modifier la description",
|
||||||
"View description" : "Afficher la description",
|
"View description" : "Afficher la description",
|
||||||
"Add Attachment" : "Ajouter une pièce jointe",
|
"Add Attachment" : "Ajouter une pièce jointe",
|
||||||
"Write a description …" : "Écrire une description ...",
|
"Attachments" : "Pièces jointes",
|
||||||
|
"Comments" : "Commentaires",
|
||||||
"Choose attachment" : "Choisir une pièce jointe",
|
"Choose attachment" : "Choisir une pièce jointe",
|
||||||
|
"Select Date" : "Sélectionnez une date",
|
||||||
|
"Modified" : "Modifié",
|
||||||
|
"Created" : "Créé",
|
||||||
|
"The title cannot be empty." : "Le titre ne peut pas être vide.",
|
||||||
|
"No comments yet. Begin the discussion!" : "Aucun commentaire pour l'instant, démarrez la discussion !",
|
||||||
|
"Save" : "Enregistrer",
|
||||||
|
"The comment cannot be empty." : "Un commentaire ne peut pas être vide.",
|
||||||
|
"The comment cannot be longer than 1000 characters." : "Un commentaire est limité à 1 000 caractères.",
|
||||||
|
"In reply to" : "En réponse à",
|
||||||
|
"Reply" : "Répondre",
|
||||||
|
"Update" : "Mettre à jour",
|
||||||
"(group)" : "(groupe)",
|
"(group)" : "(groupe)",
|
||||||
"(circle)" : "(cercle)",
|
"(circle)" : "(cercle)",
|
||||||
"Assign to me" : "Me l'assigner",
|
"Assign to me" : "Me l'assigner",
|
||||||
@@ -224,21 +223,13 @@ OC.L10N.register(
|
|||||||
"Limit deck usage of groups" : "Limiter l'utilisation du tableau aux groupes",
|
"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.",
|
"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 name" : "Nom du tableau",
|
||||||
"Board details" : "Détails du tableau",
|
|
||||||
"Edit board" : "Modifier le tableau",
|
"Edit board" : "Modifier le tableau",
|
||||||
"Clone board" : "Dupliquer le tableau",
|
"Clone board " : "Dupliquer le tableau",
|
||||||
"Unarchive board" : "Désarchiver le tableau",
|
"Unarchive board " : "Sortir le tableau des archives",
|
||||||
"Archive board" : "Archiver le tableau",
|
"Archive board " : "Archiver le tableau",
|
||||||
"Turn on due date reminders" : "Activer les rappels",
|
"Delete board " : "Supprimer le tableau",
|
||||||
"Turn off due date reminders" : "Désactiver les rappels",
|
"Board details" : "Détails du tableau",
|
||||||
"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é",
|
"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",
|
"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.",
|
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Êtes-vous certain de vouloir supprimer le tableau {title} ? Cela supprimera l'ensemble des données de ce tableau.",
|
||||||
"Delete the board?" : "Supprimer le tableau ?",
|
"Delete the board?" : "Supprimer le tableau ?",
|
||||||
@@ -252,7 +243,6 @@ OC.L10N.register(
|
|||||||
"Link to a board" : "Relier à un tableau",
|
"Link to a board" : "Relier à un tableau",
|
||||||
"Link to a card" : "Relier à une carte",
|
"Link to a card" : "Relier à une carte",
|
||||||
"Something went wrong" : "Quelque chose s'est mal passé",
|
"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"
|
"Maximum file size of {size} exceeded" : "Taille de fichier maximale de {size} dépassée"
|
||||||
},
|
},
|
||||||
"nplurals=2; plural=(n > 1);");
|
"nplurals=2; plural=(n > 1);");
|
||||||
|
|||||||
46
l10n/fr.json
46
l10n/fr.json
@@ -173,12 +173,6 @@
|
|||||||
"Restore Attachment" : "Restaurer la pièce jointe",
|
"Restore Attachment" : "Restaurer la pièce jointe",
|
||||||
"Open in sidebar view" : "Ouvrir dans la barre latérale",
|
"Open in sidebar view" : "Ouvrir dans la barre latérale",
|
||||||
"Open in bigger view" : "Ouvrir dans la vue principale",
|
"Open in bigger view" : "Ouvrir dans la vue principale",
|
||||||
"Attachments" : "Pièces jointes",
|
|
||||||
"Comments" : "Commentaires",
|
|
||||||
"Modified" : "Modifié",
|
|
||||||
"Created" : "Créé",
|
|
||||||
"The title cannot be empty." : "Le titre ne peut pas être vide.",
|
|
||||||
"No comments yet. Begin the discussion!" : "Aucun commentaire pour l'instant, démarrez la discussion !",
|
|
||||||
"Assign a tag to this card…" : "Associer une étiquette à cette carte…",
|
"Assign a tag to this card…" : "Associer une étiquette à cette carte…",
|
||||||
"Assign to users" : "Attribuer aux utilisateurs",
|
"Assign to users" : "Attribuer aux utilisateurs",
|
||||||
"Assign to users/groups/circles" : "Attribuer à des utilisateurs / groupes / cercles",
|
"Assign to users/groups/circles" : "Attribuer à des utilisateurs / groupes / cercles",
|
||||||
@@ -186,13 +180,6 @@
|
|||||||
"Due date" : "Date d'échéance",
|
"Due date" : "Date d'échéance",
|
||||||
"Set a due date" : "Définir une date d'échéance",
|
"Set a due date" : "Définir une date d'échéance",
|
||||||
"Remove due date" : "Supprimer la date d'échéance",
|
"Remove due date" : "Supprimer la date d'échéance",
|
||||||
"Select Date" : "Sélectionnez une date",
|
|
||||||
"Save" : "Enregistrer",
|
|
||||||
"The comment cannot be empty." : "Un commentaire ne peut pas être vide.",
|
|
||||||
"The comment cannot be longer than 1000 characters." : "Un commentaire est limité à 1 000 caractères.",
|
|
||||||
"In reply to" : "En réponse à",
|
|
||||||
"Reply" : "Répondre",
|
|
||||||
"Update" : "Mettre à jour",
|
|
||||||
"Description" : "Description",
|
"Description" : "Description",
|
||||||
"(Unsaved)" : "(Non enregistré)",
|
"(Unsaved)" : "(Non enregistré)",
|
||||||
"(Saving…)" : "(Enregistrement ...)",
|
"(Saving…)" : "(Enregistrement ...)",
|
||||||
@@ -200,8 +187,20 @@
|
|||||||
"Edit description" : "Modifier la description",
|
"Edit description" : "Modifier la description",
|
||||||
"View description" : "Afficher la description",
|
"View description" : "Afficher la description",
|
||||||
"Add Attachment" : "Ajouter une pièce jointe",
|
"Add Attachment" : "Ajouter une pièce jointe",
|
||||||
"Write a description …" : "Écrire une description ...",
|
"Attachments" : "Pièces jointes",
|
||||||
|
"Comments" : "Commentaires",
|
||||||
"Choose attachment" : "Choisir une pièce jointe",
|
"Choose attachment" : "Choisir une pièce jointe",
|
||||||
|
"Select Date" : "Sélectionnez une date",
|
||||||
|
"Modified" : "Modifié",
|
||||||
|
"Created" : "Créé",
|
||||||
|
"The title cannot be empty." : "Le titre ne peut pas être vide.",
|
||||||
|
"No comments yet. Begin the discussion!" : "Aucun commentaire pour l'instant, démarrez la discussion !",
|
||||||
|
"Save" : "Enregistrer",
|
||||||
|
"The comment cannot be empty." : "Un commentaire ne peut pas être vide.",
|
||||||
|
"The comment cannot be longer than 1000 characters." : "Un commentaire est limité à 1 000 caractères.",
|
||||||
|
"In reply to" : "En réponse à",
|
||||||
|
"Reply" : "Répondre",
|
||||||
|
"Update" : "Mettre à jour",
|
||||||
"(group)" : "(groupe)",
|
"(group)" : "(groupe)",
|
||||||
"(circle)" : "(cercle)",
|
"(circle)" : "(cercle)",
|
||||||
"Assign to me" : "Me l'assigner",
|
"Assign to me" : "Me l'assigner",
|
||||||
@@ -222,21 +221,13 @@
|
|||||||
"Limit deck usage of groups" : "Limiter l'utilisation du tableau aux groupes",
|
"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.",
|
"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 name" : "Nom du tableau",
|
||||||
"Board details" : "Détails du tableau",
|
|
||||||
"Edit board" : "Modifier le tableau",
|
"Edit board" : "Modifier le tableau",
|
||||||
"Clone board" : "Dupliquer le tableau",
|
"Clone board " : "Dupliquer le tableau",
|
||||||
"Unarchive board" : "Désarchiver le tableau",
|
"Unarchive board " : "Sortir le tableau des archives",
|
||||||
"Archive board" : "Archiver le tableau",
|
"Archive board " : "Archiver le tableau",
|
||||||
"Turn on due date reminders" : "Activer les rappels",
|
"Delete board " : "Supprimer le tableau",
|
||||||
"Turn off due date reminders" : "Désactiver les rappels",
|
"Board details" : "Détails du tableau",
|
||||||
"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é",
|
"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",
|
"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.",
|
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Êtes-vous certain de vouloir supprimer le tableau {title} ? Cela supprimera l'ensemble des données de ce tableau.",
|
||||||
"Delete the board?" : "Supprimer le tableau ?",
|
"Delete the board?" : "Supprimer le tableau ?",
|
||||||
@@ -250,7 +241,6 @@
|
|||||||
"Link to a board" : "Relier à un tableau",
|
"Link to a board" : "Relier à un tableau",
|
||||||
"Link to a card" : "Relier à une carte",
|
"Link to a card" : "Relier à une carte",
|
||||||
"Something went wrong" : "Quelque chose s'est mal passé",
|
"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"
|
"Maximum file size of {size} exceeded" : "Taille de fichier maximale de {size} dépassée"
|
||||||
},"pluralForm" :"nplurals=2; plural=(n > 1);"
|
},"pluralForm" :"nplurals=2; plural=(n > 1);"
|
||||||
}
|
}
|
||||||
45
l10n/gl.js
45
l10n/gl.js
@@ -175,12 +175,6 @@ OC.L10N.register(
|
|||||||
"Restore Attachment" : "Restaurar o anexo",
|
"Restore Attachment" : "Restaurar o anexo",
|
||||||
"Open in sidebar view" : "Abrir na vista da barra lateral",
|
"Open in sidebar view" : "Abrir na vista da barra lateral",
|
||||||
"Open in bigger view" : "Abrir nunha vista máis grande",
|
"Open in bigger view" : "Abrir nunha vista máis grande",
|
||||||
"Attachments" : "Anexos",
|
|
||||||
"Comments" : "Comentarios",
|
|
||||||
"Modified" : "Modificado",
|
|
||||||
"Created" : "Creado",
|
|
||||||
"The title cannot be empty." : "O título non pode estar baleiro.",
|
|
||||||
"No comments yet. Begin the discussion!" : "Aínda non hai comentarios. Comece o debate!",
|
|
||||||
"Assign a tag to this card…" : "Asignar unha etiqueta a esta tarxeta…",
|
"Assign a tag to this card…" : "Asignar unha etiqueta a esta tarxeta…",
|
||||||
"Assign to users" : "Asignar a usuarios",
|
"Assign to users" : "Asignar a usuarios",
|
||||||
"Assign to users/groups/circles" : "Asignar a usuarios/grupos/círculos",
|
"Assign to users/groups/circles" : "Asignar a usuarios/grupos/círculos",
|
||||||
@@ -188,13 +182,6 @@ OC.L10N.register(
|
|||||||
"Due date" : "Data de caducidade",
|
"Due date" : "Data de caducidade",
|
||||||
"Set a due date" : "Estabelecer a data de caducidade",
|
"Set a due date" : "Estabelecer a data de caducidade",
|
||||||
"Remove due date" : "Retirar a data de caducidade",
|
"Remove due date" : "Retirar a data de caducidade",
|
||||||
"Select Date" : "Seleccione a data",
|
|
||||||
"Save" : "Gardar",
|
|
||||||
"The comment cannot be empty." : "O comentario non pode estar baleiro",
|
|
||||||
"The comment cannot be longer than 1000 characters." : "O comentario non pode ter máis de 1000 caracteres.",
|
|
||||||
"In reply to" : "En resposta a",
|
|
||||||
"Reply" : "Responder",
|
|
||||||
"Update" : "Actualizar",
|
|
||||||
"Description" : "Descrición",
|
"Description" : "Descrición",
|
||||||
"(Unsaved)" : "(Sen gardar)",
|
"(Unsaved)" : "(Sen gardar)",
|
||||||
"(Saving…)" : "(Gardando…)",
|
"(Saving…)" : "(Gardando…)",
|
||||||
@@ -202,8 +189,20 @@ OC.L10N.register(
|
|||||||
"Edit description" : "Editar a descrición",
|
"Edit description" : "Editar a descrición",
|
||||||
"View description" : "Ver a descrición",
|
"View description" : "Ver a descrición",
|
||||||
"Add Attachment" : "Engadir o anexo",
|
"Add Attachment" : "Engadir o anexo",
|
||||||
"Write a description …" : "Escriba unha descrición…",
|
"Attachments" : "Anexos",
|
||||||
|
"Comments" : "Comentarios",
|
||||||
"Choose attachment" : "Escoller o anexo",
|
"Choose attachment" : "Escoller o anexo",
|
||||||
|
"Select Date" : "Seleccione a data",
|
||||||
|
"Modified" : "Modificado",
|
||||||
|
"Created" : "Creado",
|
||||||
|
"The title cannot be empty." : "O título non pode estar baleiro.",
|
||||||
|
"No comments yet. Begin the discussion!" : "Aínda non hai comentarios. Comece o debate!",
|
||||||
|
"Save" : "Gardar",
|
||||||
|
"The comment cannot be empty." : "O comentario non pode estar baleiro",
|
||||||
|
"The comment cannot be longer than 1000 characters." : "O comentario non pode ter máis de 1000 caracteres.",
|
||||||
|
"In reply to" : "En resposta a",
|
||||||
|
"Reply" : "Responder",
|
||||||
|
"Update" : "Actualizar",
|
||||||
"(group)" : "(grupo)",
|
"(group)" : "(grupo)",
|
||||||
"(circle)" : "(círculo)",
|
"(circle)" : "(círculo)",
|
||||||
"Assign to me" : "Asignarme",
|
"Assign to me" : "Asignarme",
|
||||||
@@ -224,21 +223,13 @@ OC.L10N.register(
|
|||||||
"Limit deck usage of groups" : "Limitar o uso da plataforma a grupos",
|
"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.",
|
"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 name" : "Nome do taboleiro",
|
||||||
"Board details" : "Detalles do taboleiro",
|
|
||||||
"Edit board" : "Editar taboleiro",
|
"Edit board" : "Editar taboleiro",
|
||||||
"Clone board" : "Clonar taboleiro",
|
"Clone board " : "Clonar taboleiro",
|
||||||
"Unarchive board" : "Desarquivar taboleiro",
|
"Unarchive board " : "Desarquivar taboleiro",
|
||||||
"Archive board" : "Arquivar taboleiro",
|
"Archive board " : "Arquivar taboleiro",
|
||||||
"Turn on due date reminders" : "Activar os lembretes de data de caducidade",
|
"Delete board " : "Eliminar taboleiro",
|
||||||
"Turn off due date reminders" : "Desctivar os lembretes de data de caducidade",
|
"Board details" : "Detalles do taboleiro",
|
||||||
"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}",
|
"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",
|
"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.",
|
"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?",
|
"Delete the board?" : "Eliminar o taboleiro?",
|
||||||
|
|||||||
45
l10n/gl.json
45
l10n/gl.json
@@ -173,12 +173,6 @@
|
|||||||
"Restore Attachment" : "Restaurar o anexo",
|
"Restore Attachment" : "Restaurar o anexo",
|
||||||
"Open in sidebar view" : "Abrir na vista da barra lateral",
|
"Open in sidebar view" : "Abrir na vista da barra lateral",
|
||||||
"Open in bigger view" : "Abrir nunha vista máis grande",
|
"Open in bigger view" : "Abrir nunha vista máis grande",
|
||||||
"Attachments" : "Anexos",
|
|
||||||
"Comments" : "Comentarios",
|
|
||||||
"Modified" : "Modificado",
|
|
||||||
"Created" : "Creado",
|
|
||||||
"The title cannot be empty." : "O título non pode estar baleiro.",
|
|
||||||
"No comments yet. Begin the discussion!" : "Aínda non hai comentarios. Comece o debate!",
|
|
||||||
"Assign a tag to this card…" : "Asignar unha etiqueta a esta tarxeta…",
|
"Assign a tag to this card…" : "Asignar unha etiqueta a esta tarxeta…",
|
||||||
"Assign to users" : "Asignar a usuarios",
|
"Assign to users" : "Asignar a usuarios",
|
||||||
"Assign to users/groups/circles" : "Asignar a usuarios/grupos/círculos",
|
"Assign to users/groups/circles" : "Asignar a usuarios/grupos/círculos",
|
||||||
@@ -186,13 +180,6 @@
|
|||||||
"Due date" : "Data de caducidade",
|
"Due date" : "Data de caducidade",
|
||||||
"Set a due date" : "Estabelecer a data de caducidade",
|
"Set a due date" : "Estabelecer a data de caducidade",
|
||||||
"Remove due date" : "Retirar a data de caducidade",
|
"Remove due date" : "Retirar a data de caducidade",
|
||||||
"Select Date" : "Seleccione a data",
|
|
||||||
"Save" : "Gardar",
|
|
||||||
"The comment cannot be empty." : "O comentario non pode estar baleiro",
|
|
||||||
"The comment cannot be longer than 1000 characters." : "O comentario non pode ter máis de 1000 caracteres.",
|
|
||||||
"In reply to" : "En resposta a",
|
|
||||||
"Reply" : "Responder",
|
|
||||||
"Update" : "Actualizar",
|
|
||||||
"Description" : "Descrición",
|
"Description" : "Descrición",
|
||||||
"(Unsaved)" : "(Sen gardar)",
|
"(Unsaved)" : "(Sen gardar)",
|
||||||
"(Saving…)" : "(Gardando…)",
|
"(Saving…)" : "(Gardando…)",
|
||||||
@@ -200,8 +187,20 @@
|
|||||||
"Edit description" : "Editar a descrición",
|
"Edit description" : "Editar a descrición",
|
||||||
"View description" : "Ver a descrición",
|
"View description" : "Ver a descrición",
|
||||||
"Add Attachment" : "Engadir o anexo",
|
"Add Attachment" : "Engadir o anexo",
|
||||||
"Write a description …" : "Escriba unha descrición…",
|
"Attachments" : "Anexos",
|
||||||
|
"Comments" : "Comentarios",
|
||||||
"Choose attachment" : "Escoller o anexo",
|
"Choose attachment" : "Escoller o anexo",
|
||||||
|
"Select Date" : "Seleccione a data",
|
||||||
|
"Modified" : "Modificado",
|
||||||
|
"Created" : "Creado",
|
||||||
|
"The title cannot be empty." : "O título non pode estar baleiro.",
|
||||||
|
"No comments yet. Begin the discussion!" : "Aínda non hai comentarios. Comece o debate!",
|
||||||
|
"Save" : "Gardar",
|
||||||
|
"The comment cannot be empty." : "O comentario non pode estar baleiro",
|
||||||
|
"The comment cannot be longer than 1000 characters." : "O comentario non pode ter máis de 1000 caracteres.",
|
||||||
|
"In reply to" : "En resposta a",
|
||||||
|
"Reply" : "Responder",
|
||||||
|
"Update" : "Actualizar",
|
||||||
"(group)" : "(grupo)",
|
"(group)" : "(grupo)",
|
||||||
"(circle)" : "(círculo)",
|
"(circle)" : "(círculo)",
|
||||||
"Assign to me" : "Asignarme",
|
"Assign to me" : "Asignarme",
|
||||||
@@ -222,21 +221,13 @@
|
|||||||
"Limit deck usage of groups" : "Limitar o uso da plataforma a grupos",
|
"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.",
|
"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 name" : "Nome do taboleiro",
|
||||||
"Board details" : "Detalles do taboleiro",
|
|
||||||
"Edit board" : "Editar taboleiro",
|
"Edit board" : "Editar taboleiro",
|
||||||
"Clone board" : "Clonar taboleiro",
|
"Clone board " : "Clonar taboleiro",
|
||||||
"Unarchive board" : "Desarquivar taboleiro",
|
"Unarchive board " : "Desarquivar taboleiro",
|
||||||
"Archive board" : "Arquivar taboleiro",
|
"Archive board " : "Arquivar taboleiro",
|
||||||
"Turn on due date reminders" : "Activar os lembretes de data de caducidade",
|
"Delete board " : "Eliminar taboleiro",
|
||||||
"Turn off due date reminders" : "Desctivar os lembretes de data de caducidade",
|
"Board details" : "Detalles do taboleiro",
|
||||||
"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}",
|
"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",
|
"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.",
|
"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?",
|
"Delete the board?" : "Eliminar o taboleiro?",
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user