Compare commits

..

2 Commits

Author SHA1 Message Date
Jakob
bf609b6462 Delete Controls.vue 2020-12-30 13:00:12 +01:00
Jakob Röhrl
91be2a359b date shortcut
Signed-off-by: Jakob Röhrl <jakob.roehrl@web.de>
2020-12-30 12:58:49 +01:00
206 changed files with 1447 additions and 1423 deletions

View File

@@ -1,4 +1,4 @@
name: Nextcloud app code check
name: PHP AppCode Check
on:
pull_request:

View File

@@ -1,4 +1,4 @@
name: Package build
name: Build app package
on:
pull_request:
@@ -6,7 +6,7 @@ on:
jobs:
build:
runs-on: ubuntu-18.04
runs-on: ubuntu-latest
strategy:
matrix:

View File

@@ -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

View File

@@ -1,4 +1,4 @@
name: Package nightly
name: Nightly build
on:
push:

View File

@@ -21,12 +21,6 @@ jobs:
run: |
npm ci
- name: build
env:
RELATIVE_CI_KEY: ${{ secrets.RELATIVE_CI_KEY }}
RELATIVE_CI_SLUG: nextcloud/deck
run: |
mkdir -p js
npm run build --if-present -- --profile --json | tail -n +6 > js/webpack-stats.json
npx relative-ci-agent
npm run build --if-present

View File

@@ -10,30 +10,82 @@ on:
env:
APP_NAME: deck
jobs:
integration:
php:
runs-on: ubuntu-latest
strategy:
# do not stop on another job's failure
fail-fast: false
matrix:
php-versions: ['7.4']
databases: ['sqlite']
server-versions: ['master']
name: php${{ matrix.php-versions }}-${{ matrix.databases }}-${{ matrix.server-versions }}
steps:
- name: Checkout server
uses: actions/checkout@v2
with:
repository: nextcloud/server
ref: ${{ matrix.server-versions }}
- name: Checkout submodules
shell: bash
run: |
auth_header="$(git config --local --get http.https://github.com/.extraheader)"
git submodule sync --recursive
git -c "http.extraheader=$auth_header" -c protocol.version=2 submodule update --init --force --recursive --depth=1
- name: Checkout app
uses: actions/checkout@v2
with:
path: apps/${{ env.APP_NAME }}
- name: Set up php ${{ matrix.php-versions }}
uses: shivammathur/setup-php@v1
with:
php-version: ${{ matrix.php-versions }}
tools: phpunit
extensions: mbstring, iconv, fileinfo, intl, sqlite, pdo_sqlite
coverage: none
- name: Set up PHPUnit
working-directory: apps/${{ env.APP_NAME }}
run: composer i
- name: Set up Nextcloud
env:
DB_PORT: 4444
run: |
mkdir data
./occ maintenance:install --verbose --database=${{ matrix.databases }} --database-name=nextcloud --database-host=127.0.0.1 --database-port=$DB_PORT --database-user=root --database-pass=rootpassword --admin-user admin --admin-pass password
./occ app:enable --force ${{ env.APP_NAME }}
php -S localhost:8080 &
- name: PHPUnit
working-directory: apps/${{ env.APP_NAME }}
run: ./vendor/phpunit/phpunit/phpunit -c tests/phpunit.xml
- name: PHPUnit integration
working-directory: apps/${{ env.APP_NAME }}
run: ./vendor/phpunit/phpunit/phpunit -c tests/phpunit.integration.xml
mysql:
runs-on: ubuntu-latest
strategy:
# do not stop on another job's failure
fail-fast: false
matrix:
php-versions: ['7.3', '7.4']
databases: ['sqlite', 'mysql', 'pgsql']
databases: ['mysql']
server-versions: ['master']
name: php${{ matrix.php-versions }}-${{ matrix.databases }}-${{ matrix.server-versions }}
services:
postgres:
image: postgres
ports:
- 4445:5432/tcp
env:
POSTGRES_USER: root
POSTGRES_PASSWORD: rootpassword
POSTGRES_DB: nextcloud
options: --health-cmd pg_isready --health-interval 5s --health-timeout 2s --health-retries 5
mysql:
image: mariadb
ports:
@@ -62,11 +114,11 @@ jobs:
path: apps/${{ env.APP_NAME }}
- name: Set up php ${{ matrix.php-versions }}
uses: shivammathur/setup-php@v2
uses: shivammathur/setup-php@v1
with:
php-version: ${{ matrix.php-versions }}
tools: phpunit
extensions: mbstring, iconv, fileinfo, intl, sqlite, pdo_sqlite, mysql, pdo_mysql, pgsql, pdo_pgsql, zip, gd
extensions: mbstring, iconv, fileinfo, intl, mysql, pdo_mysql
coverage: none
- name: Set up PHPUnit
@@ -74,14 +126,83 @@ jobs:
run: composer i
- name: Set up Nextcloud
env:
DB_PORT: 4444
run: |
if [ "${{ matrix.databases }}" = "mysql" ]; then
export DB_PORT=4444
elif [ "${{ matrix.databases }}" = "pgsql" ]; then
export DB_PORT=4445
fi
mkdir data
./occ maintenance:install --verbose --database=${{ matrix.databases }} --database-name=nextcloud --database-host=127.0.0.1 --database-port=$DB_PORT --database-user=root --database-pass=rootpassword --admin-user admin --admin-pass admin
./occ maintenance:install --verbose --database=${{ matrix.databases }} --database-name=nextcloud --database-host=127.0.0.1 --database-port=$DB_PORT --database-user=root --database-pass=rootpassword --admin-user admin --admin-pass password
./occ app:enable --force ${{ env.APP_NAME }}
php -S localhost:8080 &
- name: PHPUnit
working-directory: apps/${{ env.APP_NAME }}
run: ./vendor/phpunit/phpunit/phpunit -c tests/phpunit.xml
- name: PHPUnit integration
working-directory: apps/${{ env.APP_NAME }}
run: ./vendor/phpunit/phpunit/phpunit -c tests/phpunit.integration.xml
pgsql:
runs-on: ubuntu-latest
strategy:
# do not stop on another job's failure
fail-fast: false
matrix:
php-versions: ['7.4']
databases: ['pgsql']
server-versions: ['master']
name: php${{ matrix.php-versions }}-${{ matrix.databases }}-${{ matrix.server-versions }}
services:
postgres:
image: postgres
ports:
- 4444:5432/tcp
env:
POSTGRES_USER: root
POSTGRES_PASSWORD: rootpassword
POSTGRES_DB: nextcloud
options: --health-cmd pg_isready --health-interval 5s --health-timeout 2s --health-retries 5
steps:
- name: Checkout server
uses: actions/checkout@v2
with:
repository: nextcloud/server
ref: ${{ matrix.server-versions }}
- name: Checkout submodules
shell: bash
run: |
auth_header="$(git config --local --get http.https://github.com/.extraheader)"
git submodule sync --recursive
git -c "http.extraheader=$auth_header" -c protocol.version=2 submodule update --init --force --recursive --depth=1
- name: Checkout app
uses: actions/checkout@v2
with:
path: apps/${{ env.APP_NAME }}
- name: Set up php ${{ matrix.php-versions }}
uses: shivammathur/setup-php@v1
with:
php-version: ${{ matrix.php-versions }}
tools: phpunit
extensions: mbstring, iconv, fileinfo, intl, pgsql, pdo_pgsql
coverage: none
- name: Set up PHPUnit
working-directory: apps/${{ env.APP_NAME }}
run: composer i
- name: Set up Nextcloud
env:
DB_PORT: 4444
run: |
mkdir data
./occ maintenance:install --verbose --database=${{ matrix.databases }} --database-name=nextcloud --database-host=127.0.0.1 --database-port=$DB_PORT --database-user=root --database-pass=rootpassword --admin-user admin --admin-pass password
./occ app:enable --force ${{ env.APP_NAME }}
php -S localhost:8080 &

View File

@@ -1,11 +1,6 @@
name: Static analysis
on:
pull_request:
push:
branches:
- master
- stable*
on: [push, pull_request]
jobs:
static-psalm-analysis:

View File

@@ -1,45 +1,6 @@
# Changelog
All notable changes to this project will be documented in this file.
## 1.2.6 - 2021-04-07
### Fixed
* [#2925](https://github.com/nextcloud/deck/pull/2925) Avoid reusing the existing route object to make navigation work properly
* [#2947](https://github.com/nextcloud/deck/pull/2947) Fix bug when saving the description
## 1.2.5 - 2021-03-05
### Fixed
* [#2845](https://github.com/nextcloud/deck/pull/2845) Search by mail on the board sharing input
* [#2850](https://github.com/nextcloud/deck/pull/2850) Switch to Content-Disposition attachment and check for sane mimetypes
* [#2860](https://github.com/nextcloud/deck/pull/2860) Properly pass the user to fetch circles when calling through occ
## 1.2.4 - 2021-02-02
### Fixed
* [#2715](https://github.com/nextcloud/deck/pull/2715) Handle clicks on calendar entries
* [#2752](https://github.com/nextcloud/deck/pull/2752) Remove invalid activity parameters
* [#2755](https://github.com/nextcloud/deck/pull/2755) Properly set author for activity events that are triggered by cron
* [#2757](https://github.com/nextcloud/deck/pull/2757) Remove repair step which is no longer needed as we cleanup properly
* [#2758](https://github.com/nextcloud/deck/pull/2758) Fix deck activity emails not being translated
## 1.2.3 - 2021-01-04
### Fixed
* [#2622](https://github.com/nextcloud/deck/pull/2622) Fix gradient and stack header spacing for safari
* [#2626](https://github.com/nextcloud/deck/pull/2626) Adding a description icon to cards when they contain a description without any checkmarks @MonkeySon
* [#2659](https://github.com/nextcloud/deck/pull/2659) Matching color of description cursor with text color @JonFStr
* [#2676](https://github.com/nextcloud/deck/pull/2676) Only load filter view when shown
* [#2680](https://github.com/nextcloud/deck/pull/2680) Do not try to add change data if it doesn't exist
* [#2681](https://github.com/nextcloud/deck/pull/2681) Filter out deleted stacks from results
* [#2685](https://github.com/nextcloud/deck/pull/2685) Show all boards in move card dialog @jakobroehrl
* [#2687](https://github.com/nextcloud/deck/pull/2687) 3dots no opacity @jakobroehrl
* [#2688](https://github.com/nextcloud/deck/pull/2688) Title > boardname @jakobroehrl
* [#2689](https://github.com/nextcloud/deck/pull/2689) Modal > bigger view wording @jakobroehrl
## 1.2.2 - 2020-11-24
### Fixed

View File

@@ -17,7 +17,7 @@
- 🚀 Get your project organized
</description>
<version>1.2.6</version>
<version>1.2.2</version>
<licence>agpl</licence>
<author>Julius Härtl</author>
<namespace>Deck</namespace>
@@ -36,13 +36,18 @@
<database min-version="9.4">pgsql</database>
<database>sqlite</database>
<database min-version="5.5">mysql</database>
<nextcloud min-version="18" max-version="20" />
<nextcloud min-version="18" max-version="21" />
</dependencies>
<background-jobs>
<job>OCA\Deck\Cron\DeleteCron</job>
<job>OCA\Deck\Cron\ScheduledNotifications</job>
<job>OCA\Deck\Cron\CardDescriptionActivity</job>
</background-jobs>
<repair-steps>
<post-migration>
<step>OCA\Deck\Migration\UnknownUsers</step>
</post-migration>
</repair-steps>
<commands>
<command>OCA\Deck\Command\UserExport</command>
</commands>

19
composer.lock generated
View File

@@ -4686,16 +4686,16 @@
},
{
"name": "vimeo/psalm",
"version": "4.3.2",
"version": "4.3.1",
"source": {
"type": "git",
"url": "https://github.com/vimeo/psalm.git",
"reference": "57b53ff26237074fdf5cbcb034f7da5172be4524"
"reference": "2feba22a005a18bf31d4c7b9bdb9252c73897476"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/vimeo/psalm/zipball/57b53ff26237074fdf5cbcb034f7da5172be4524",
"reference": "57b53ff26237074fdf5cbcb034f7da5172be4524",
"url": "https://api.github.com/repos/vimeo/psalm/zipball/2feba22a005a18bf31d4c7b9bdb9252c73897476",
"reference": "2feba22a005a18bf31d4c7b9bdb9252c73897476",
"shasum": ""
},
"require": {
@@ -4727,14 +4727,15 @@
"require-dev": {
"amphp/amp": "^2.4.2",
"bamarni/composer-bin-plugin": "^1.2",
"brianium/paratest": "^4.0||^6.0",
"brianium/paratest": "^4.0.0",
"ext-curl": "*",
"php": "^7.3|^8",
"phpdocumentor/reflection-docblock": "^5",
"phpmyadmin/sql-parser": "5.1.0||dev-master",
"phpmyadmin/sql-parser": "5.1.0",
"phpspec/prophecy": ">=1.9.0",
"phpunit/phpunit": "^9.0",
"psalm/plugin-phpunit": "^0.13",
"slevomat/coding-standard": "^6.3.11",
"slevomat/coding-standard": "^5.0",
"squizlabs/php_codesniffer": "^3.5",
"symfony/process": "^4.3",
"weirdan/prophecy-shim": "^1.0 || ^2.0"
@@ -4784,9 +4785,9 @@
],
"support": {
"issues": "https://github.com/vimeo/psalm/issues",
"source": "https://github.com/vimeo/psalm/tree/4.3.2"
"source": "https://github.com/vimeo/psalm/tree/4.3.1"
},
"time": "2020-12-29T17:37:09+00:00"
"time": "2020-12-03T16:44:10+00:00"
},
{
"name": "webmozart/assert",

View File

@@ -19,6 +19,7 @@ OC.L10N.register(
"Can share" : "Kan deel",
"Delete" : "Skrap",
"Edit" : "Wysig",
"Title" : "Titel",
"Comments" : "Kommentare",
"Modified" : "Gewysig",
"Created" : "Geskep",

View File

@@ -17,6 +17,7 @@
"Can share" : "Kan deel",
"Delete" : "Skrap",
"Edit" : "Wysig",
"Title" : "Titel",
"Comments" : "Kommentare",
"Modified" : "Gewysig",
"Created" : "Geskep",

View File

@@ -92,6 +92,7 @@ OC.L10N.register(
"Edit" : "تعديل",
"Add a new tag" : "إضافة وسم جديد",
"title and color value must be provided" : "العنوان و قيمة اللون يجب تقديمها ",
"Title" : "العنوان",
"Members" : "الاعضاء",
"Upload attachment" : "رفع المرفقات",
"Add this attachment" : "إضافة هذا المرفق",

View File

@@ -90,6 +90,7 @@
"Edit" : "تعديل",
"Add a new tag" : "إضافة وسم جديد",
"title and color value must be provided" : "العنوان و قيمة اللون يجب تقديمها ",
"Title" : "العنوان",
"Members" : "الاعضاء",
"Upload attachment" : "رفع المرفقات",
"Add this attachment" : "إضافة هذا المرفق",

View File

@@ -25,6 +25,7 @@ OC.L10N.register(
"Can share" : "Can share",
"Delete" : "Desaniciar",
"Edit" : "Editar",
"Title" : "Títulu",
"Members" : "Miembros",
"Attachments" : "Axuntos",
"Comments" : "Comentarios",

View File

@@ -23,6 +23,7 @@
"Can share" : "Can share",
"Delete" : "Desaniciar",
"Edit" : "Editar",
"Title" : "Títulu",
"Members" : "Miembros",
"Attachments" : "Axuntos",
"Comments" : "Comentarios",

View File

@@ -14,6 +14,7 @@ OC.L10N.register(
"Can share" : "Can share",
"Delete" : "Sil",
"Edit" : "Dəyişiklik et",
"Title" : "Başlıq",
"Modified" : "Dəyişdirildi",
"Save" : "Saxla",
"Reply" : "Cavab",

View File

@@ -12,6 +12,7 @@
"Can share" : "Can share",
"Delete" : "Sil",
"Edit" : "Dəyişiklik et",
"Title" : "Başlıq",
"Modified" : "Dəyişdirildi",
"Save" : "Saxla",
"Reply" : "Cavab",

View File

@@ -25,6 +25,7 @@ OC.L10N.register(
"Can share" : "Може да споделя",
"Delete" : "Изтриване",
"Edit" : "Редакция",
"Title" : "Име",
"Members" : "Членове",
"Upload attachment" : "Качване",
"Attachments" : "Прикачени файлове",

View File

@@ -23,6 +23,7 @@
"Can share" : "Може да споделя",
"Delete" : "Изтриване",
"Edit" : "Редакция",
"Title" : "Име",
"Members" : "Членове",
"Upload attachment" : "Качване",
"Attachments" : "Прикачени файлове",

View File

@@ -14,6 +14,7 @@ OC.L10N.register(
"Can share" : "Can share",
"Delete" : "মুছে",
"Edit" : "সম্পাদনা",
"Title" : "শিরোনাম",
"Modified" : "পরিবর্তিত",
"Save" : "সংরক্ষণ",
"Reply" : "জবাব",

View File

@@ -12,6 +12,7 @@
"Can share" : "Can share",
"Delete" : "মুছে",
"Edit" : "সম্পাদনা",
"Title" : "শিরোনাম",
"Modified" : "পরিবর্তিত",
"Save" : "সংরক্ষণ",
"Reply" : "জবাব",

View File

@@ -12,6 +12,7 @@ OC.L10N.register(
"Can share" : "Can share",
"Delete" : "Obriši",
"Edit" : "Izmjeni",
"Title" : "Naslov",
"Members" : "Članovi",
"Comments" : "Komentari",
"Modified" : "Izmijenjeno",

View File

@@ -10,6 +10,7 @@
"Can share" : "Can share",
"Delete" : "Obriši",
"Edit" : "Izmjeni",
"Title" : "Naslov",
"Members" : "Članovi",
"Comments" : "Komentari",
"Modified" : "Izmijenjeno",

View File

@@ -167,7 +167,7 @@ OC.L10N.register(
"Edit" : "Edita",
"Add a new tag" : "Afegir una etiqueta nova",
"title and color value must be provided" : "sha de proporcionar el valor del títol i del color",
"Board name" : "Nom del taulell",
"Title" : "Títol",
"Members" : "Membres",
"Upload attachment" : "Carrega l'adjunt",
"Add this attachment" : "Afegeix aquest adjunt",
@@ -219,10 +219,11 @@ OC.L10N.register(
"All boards" : "Tots els taulers",
"Archived boards" : "Taulers arxivats",
"Shared with you" : "Us han compartit",
"Use bigger card view" : "Utilitza la visualització de targetes més gran",
"Use modal card view" : "Utilitza la visualització de targetes modals",
"Show boards in calendar/tasks" : "Mostra els taulers al calendari/tasques",
"Limit deck usage of groups" : "Limitar l'ús del tauler de grups",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Limitant el Tauler bloquejarà la creació de taulers als usuaris que no són part d'aquests grups. Els usuaris podran seguir treballant en els taulers que hagin estat compartits amb ells.",
"Board name" : "Nom del taulell",
"Board details" : "Detalls de la junta",
"Edit board" : "Edita el tauler",
"Clone board" : "Clonar tauler",
@@ -251,7 +252,6 @@ OC.L10N.register(
"Link to a board" : "Enllaça a un tauler",
"Link to a card" : "Enllaç una targeta",
"Something went wrong" : "Alguna cosa ha anat malament",
"Failed to upload {name}" : "No s'ha pogut pujar {name}",
"Maximum file size of {size} exceeded" : "S'ha superat la mida màxima per fitxer de {size}"
},
"nplurals=2; plural=(n != 1);");

View File

@@ -165,7 +165,7 @@
"Edit" : "Edita",
"Add a new tag" : "Afegir una etiqueta nova",
"title and color value must be provided" : "sha de proporcionar el valor del títol i del color",
"Board name" : "Nom del taulell",
"Title" : "Títol",
"Members" : "Membres",
"Upload attachment" : "Carrega l'adjunt",
"Add this attachment" : "Afegeix aquest adjunt",
@@ -217,10 +217,11 @@
"All boards" : "Tots els taulers",
"Archived boards" : "Taulers arxivats",
"Shared with you" : "Us han compartit",
"Use bigger card view" : "Utilitza la visualització de targetes més gran",
"Use modal card view" : "Utilitza la visualització de targetes modals",
"Show boards in calendar/tasks" : "Mostra els taulers al calendari/tasques",
"Limit deck usage of groups" : "Limitar l'ús del tauler de grups",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Limitant el Tauler bloquejarà la creació de taulers als usuaris que no són part d'aquests grups. Els usuaris podran seguir treballant en els taulers que hagin estat compartits amb ells.",
"Board name" : "Nom del taulell",
"Board details" : "Detalls de la junta",
"Edit board" : "Edita el tauler",
"Clone board" : "Clonar tauler",
@@ -249,7 +250,6 @@
"Link to a board" : "Enllaça a un tauler",
"Link to a card" : "Enllaç una targeta",
"Something went wrong" : "Alguna cosa ha anat malament",
"Failed to upload {name}" : "No s'ha pogut pujar {name}",
"Maximum file size of {size} exceeded" : "S'ha superat la mida màxima per fitxer de {size}"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@@ -167,7 +167,7 @@ OC.L10N.register(
"Edit" : "Upravit",
"Add a new tag" : "Přidat nový štítek",
"title and color value must be provided" : "je třeba zadat nadpis a zvolit barvu",
"Board name" : "Název tabule",
"Title" : "Nadpis",
"Members" : "Členové",
"Upload attachment" : "Nahrát přílohu",
"Add this attachment" : "Přidat tuto přílohu",
@@ -219,9 +219,11 @@ OC.L10N.register(
"All boards" : "Všechny tabule",
"Archived boards" : "Archivované tabule",
"Shared with you" : "Sdíleno s vámi",
"Use modal card view" : "Použít modální zobrazení karty",
"Show boards in calendar/tasks" : "Zobrazit tabule v kalendáři/úkolech",
"Limit deck usage of groups" : "Omezit využití deck na skupiny",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Omezení nastavené pro Deck brání uživatelům, kteří nejsou součástí těchto skupin, ve vytváření vlastních tabulí. Nicméně i tak ale pořád budou moci pracovat na tabulích, které jsou jim nasdíleny.",
"Board name" : "Název tabule",
"Board details" : "Podrobnosti o desce",
"Edit board" : "Upravit tabuli",
"Clone board" : "Klonovat tabuli",

View File

@@ -165,7 +165,7 @@
"Edit" : "Upravit",
"Add a new tag" : "Přidat nový štítek",
"title and color value must be provided" : "je třeba zadat nadpis a zvolit barvu",
"Board name" : "Název tabule",
"Title" : "Nadpis",
"Members" : "Členové",
"Upload attachment" : "Nahrát přílohu",
"Add this attachment" : "Přidat tuto přílohu",
@@ -217,9 +217,11 @@
"All boards" : "Všechny tabule",
"Archived boards" : "Archivované tabule",
"Shared with you" : "Sdíleno s vámi",
"Use modal card view" : "Použít modální zobrazení karty",
"Show boards in calendar/tasks" : "Zobrazit tabule v kalendáři/úkolech",
"Limit deck usage of groups" : "Omezit využití deck na skupiny",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Omezení nastavené pro Deck brání uživatelům, kteří nejsou součástí těchto skupin, ve vytváření vlastních tabulí. Nicméně i tak ale pořád budou moci pracovat na tabulích, které jsou jim nasdíleny.",
"Board name" : "Název tabule",
"Board details" : "Podrobnosti o desce",
"Edit board" : "Upravit tabuli",
"Clone board" : "Klonovat tabuli",

View File

@@ -14,6 +14,7 @@ OC.L10N.register(
"Can share" : "Can share",
"Delete" : "Dileu",
"Edit" : "Golygu",
"Title" : "Teitl",
"Upload attachment" : "Llwytho atodiad",
"Modified" : "Addaswyd",
"Select Date" : "Dewis Dyddiad",

View File

@@ -12,6 +12,7 @@
"Can share" : "Can share",
"Delete" : "Dileu",
"Edit" : "Golygu",
"Title" : "Teitl",
"Upload attachment" : "Llwytho atodiad",
"Modified" : "Addaswyd",
"Select Date" : "Dewis Dyddiad",

View File

@@ -34,6 +34,7 @@ OC.L10N.register(
"Delete list" : "Slet liste",
"Add card" : "Tilføj kort",
"Edit" : "Redigér",
"Title" : "Titel",
"Members" : "Medlemmer",
"Upload attachment" : "Upload vedhæftning",
"Attachments" : "Vedhæftede filer",

View File

@@ -32,6 +32,7 @@
"Delete list" : "Slet liste",
"Add card" : "Tilføj kort",
"Edit" : "Redigér",
"Title" : "Titel",
"Members" : "Medlemmer",
"Upload attachment" : "Upload vedhæftning",
"Attachments" : "Vedhæftede filer",

View File

@@ -167,7 +167,7 @@ OC.L10N.register(
"Edit" : "Bearbeiten",
"Add a new tag" : "Neues Schlagwort hinzufügen",
"title and color value must be provided" : "Titel und Farbwert müssen angegeben werden",
"Board name" : "Boardname",
"Title" : "Titel",
"Members" : "Mitglieder",
"Upload attachment" : "Anhang hochladen",
"Add this attachment" : "Diesen Anhang anhängen",
@@ -219,10 +219,11 @@ OC.L10N.register(
"All boards" : "Alle Boards",
"Archived boards" : "Archivierte Boards",
"Shared with you" : "Mit Dir geteilt",
"Use bigger card view" : "Größere Kartenansicht verwenden",
"Use modal card view" : "Modale Kartenansicht verwenden",
"Show boards in calendar/tasks" : "Board in Kalender/Aufgaben anzeigen",
"Limit deck usage of groups" : "Nutzung von Deck auf Gruppen einschränken",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Durch die Begrenzung von Deck werden Benutzer, die nicht Teil dieser Gruppen sind, daran gehindert, eigene Boards zu erstellen. Benutzer können weiterhin an Boards arbeiten, die mit ihnen geteilt wurden.",
"Board name" : "Boardname",
"Board details" : "Board-Details",
"Edit board" : "Board bearbeiten",
"Clone board" : "Board klonen",

View File

@@ -165,7 +165,7 @@
"Edit" : "Bearbeiten",
"Add a new tag" : "Neues Schlagwort hinzufügen",
"title and color value must be provided" : "Titel und Farbwert müssen angegeben werden",
"Board name" : "Boardname",
"Title" : "Titel",
"Members" : "Mitglieder",
"Upload attachment" : "Anhang hochladen",
"Add this attachment" : "Diesen Anhang anhängen",
@@ -217,10 +217,11 @@
"All boards" : "Alle Boards",
"Archived boards" : "Archivierte Boards",
"Shared with you" : "Mit Dir geteilt",
"Use bigger card view" : "Größere Kartenansicht verwenden",
"Use modal card view" : "Modale Kartenansicht verwenden",
"Show boards in calendar/tasks" : "Board in Kalender/Aufgaben anzeigen",
"Limit deck usage of groups" : "Nutzung von Deck auf Gruppen einschränken",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Durch die Begrenzung von Deck werden Benutzer, die nicht Teil dieser Gruppen sind, daran gehindert, eigene Boards zu erstellen. Benutzer können weiterhin an Boards arbeiten, die mit ihnen geteilt wurden.",
"Board name" : "Boardname",
"Board details" : "Board-Details",
"Edit board" : "Board bearbeiten",
"Clone board" : "Board klonen",

View File

@@ -167,7 +167,7 @@ OC.L10N.register(
"Edit" : "Bearbeiten",
"Add a new tag" : "Neues Schlagwort hinzufügen",
"title and color value must be provided" : "Titel und Farbwert müssen angegeben werden",
"Board name" : "Boardname",
"Title" : "Titel",
"Members" : "Mitglieder",
"Upload attachment" : "Anhang hochladen",
"Add this attachment" : "Diesen Anhang anhängen",
@@ -219,10 +219,11 @@ OC.L10N.register(
"All boards" : "Alle Boards",
"Archived boards" : "Archivierte Boards",
"Shared with you" : "Mit Ihnen geteilt",
"Use bigger card view" : "Größere Kartenansicht verwenden",
"Use modal card view" : "Modale Kartenansicht verwenden",
"Show boards in calendar/tasks" : "Board in Kalender/Aufgaben anzeigen",
"Limit deck usage of groups" : "Nutzung von Deck auf Gruppen einschränken",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Wenn Sie Deck einschränken, können Benutzer, die nicht zu diesen Gruppen gehören, keine eigenen Boards erstellen. Die Benutzer können weiterhin an Boards arbeiten, die für sie freigegeben wurden.",
"Board name" : "Boardname",
"Board details" : "Board-Details",
"Edit board" : "Board bearbeiten",
"Clone board" : "Board klonen",

View File

@@ -165,7 +165,7 @@
"Edit" : "Bearbeiten",
"Add a new tag" : "Neues Schlagwort hinzufügen",
"title and color value must be provided" : "Titel und Farbwert müssen angegeben werden",
"Board name" : "Boardname",
"Title" : "Titel",
"Members" : "Mitglieder",
"Upload attachment" : "Anhang hochladen",
"Add this attachment" : "Diesen Anhang anhängen",
@@ -217,10 +217,11 @@
"All boards" : "Alle Boards",
"Archived boards" : "Archivierte Boards",
"Shared with you" : "Mit Ihnen geteilt",
"Use bigger card view" : "Größere Kartenansicht verwenden",
"Use modal card view" : "Modale Kartenansicht verwenden",
"Show boards in calendar/tasks" : "Board in Kalender/Aufgaben anzeigen",
"Limit deck usage of groups" : "Nutzung von Deck auf Gruppen einschränken",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Wenn Sie Deck einschränken, können Benutzer, die nicht zu diesen Gruppen gehören, keine eigenen Boards erstellen. Die Benutzer können weiterhin an Boards arbeiten, die für sie freigegeben wurden.",
"Board name" : "Boardname",
"Board details" : "Board-Details",
"Edit board" : "Board bearbeiten",
"Clone board" : "Board klonen",

View File

@@ -161,6 +161,7 @@ OC.L10N.register(
"Edit" : "Επεξεργασία",
"Add a new tag" : "Προσθήκη νέας ετικέτας",
"title and color value must be provided" : "ο τίτλος και η τιμή χρώματος πρέπει να παρέχονται",
"Title" : "Τίτλος",
"Members" : "Μέλη",
"Upload attachment" : "Μεταφόρτωση συνημμένων",
"Add this attachment" : "Προσθήκη αυτού του συνημμένου",

View File

@@ -159,6 +159,7 @@
"Edit" : "Επεξεργασία",
"Add a new tag" : "Προσθήκη νέας ετικέτας",
"title and color value must be provided" : "ο τίτλος και η τιμή χρώματος πρέπει να παρέχονται",
"Title" : "Τίτλος",
"Members" : "Μέλη",
"Upload attachment" : "Μεταφόρτωση συνημμένων",
"Add this attachment" : "Προσθήκη αυτού του συνημμένου",

View File

@@ -35,6 +35,7 @@ OC.L10N.register(
"Delete" : "Delete",
"Add card" : "Add card",
"Edit" : "Edit",
"Title" : "Title",
"Members" : "Members",
"Upload attachment" : "Upload attachment",
"Attachments" : "Attachments",

View File

@@ -33,6 +33,7 @@
"Delete" : "Delete",
"Add card" : "Add card",
"Edit" : "Edit",
"Title" : "Title",
"Members" : "Members",
"Upload attachment" : "Upload attachment",
"Attachments" : "Attachments",

View File

@@ -94,6 +94,7 @@ OC.L10N.register(
"Delete" : "Forigi",
"Add card" : "Aldoni karton",
"Edit" : "Redakti",
"Title" : "Titolo",
"Members" : "Membroj",
"Upload attachment" : "Alŝuti dosieran aldonaĵon",
"Attachments" : "Dosieraj aldonaĵoj",

View File

@@ -92,6 +92,7 @@
"Delete" : "Forigi",
"Add card" : "Aldoni karton",
"Edit" : "Redakti",
"Title" : "Titolo",
"Members" : "Membroj",
"Upload attachment" : "Alŝuti dosieran aldonaĵon",
"Attachments" : "Dosieraj aldonaĵoj",

View File

@@ -167,7 +167,7 @@ OC.L10N.register(
"Edit" : "Editar",
"Add a new tag" : "Añade una nueva etiqueta",
"title and color value must be provided" : "Se debe indicar un valor para título y color ",
"Board name" : "Nombre del tablero",
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Subir adjunto",
"Add this attachment" : "Añadir este adjunto",
@@ -219,9 +219,11 @@ OC.L10N.register(
"All boards" : "Todos los tableros",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido contigo",
"Use modal card view" : "Usar vista de tarjeta modal",
"Show boards in calendar/tasks" : "Mostrar tableros en calendario/tareas",
"Limit deck usage of groups" : "Limitar el uso de Deck a grupos",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Limitar Deck impedirá que usuarios que no formen parte de esos grupos creen sus propios tableros. Los usuarios todavía podrán trabajar en tableros que hayan sido compartidos con ellos.",
"Board name" : "Nombre del tablero",
"Board details" : "Detalles del tablero",
"Edit board" : "Editar tablero",
"Clone board" : "Clonar tablero",
@@ -250,7 +252,6 @@ OC.L10N.register(
"Link to a board" : "Enlace a un tablero",
"Link to a card" : "Enlace a una tarjeta",
"Something went wrong" : "Algo ha ido mal",
"Failed to upload {name}" : "Error al subir {name}",
"Maximum file size of {size} exceeded" : "Tamaño máximo de archivo de {size} excedido"
},
"nplurals=2; plural=(n != 1);");

View File

@@ -165,7 +165,7 @@
"Edit" : "Editar",
"Add a new tag" : "Añade una nueva etiqueta",
"title and color value must be provided" : "Se debe indicar un valor para título y color ",
"Board name" : "Nombre del tablero",
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Subir adjunto",
"Add this attachment" : "Añadir este adjunto",
@@ -217,9 +217,11 @@
"All boards" : "Todos los tableros",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido contigo",
"Use modal card view" : "Usar vista de tarjeta modal",
"Show boards in calendar/tasks" : "Mostrar tableros en calendario/tareas",
"Limit deck usage of groups" : "Limitar el uso de Deck a grupos",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Limitar Deck impedirá que usuarios que no formen parte de esos grupos creen sus propios tableros. Los usuarios todavía podrán trabajar en tableros que hayan sido compartidos con ellos.",
"Board name" : "Nombre del tablero",
"Board details" : "Detalles del tablero",
"Edit board" : "Editar tablero",
"Clone board" : "Clonar tablero",
@@ -248,7 +250,6 @@
"Link to a board" : "Enlace a un tablero",
"Link to a card" : "Enlace a una tarjeta",
"Something went wrong" : "Algo ha ido mal",
"Failed to upload {name}" : "Error al subir {name}",
"Maximum file size of {size} exceeded" : "Tamaño máximo de archivo de {size} excedido"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@@ -30,6 +30,7 @@ OC.L10N.register(
"Delete" : "Borrar",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Comments" : "Comentarios",

View File

@@ -28,6 +28,7 @@
"Delete" : "Borrar",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Comments" : "Comentarios",

View File

@@ -23,6 +23,7 @@ OC.L10N.register(
"Can share" : "Puede compartir",
"Delete" : "Eliminar",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Attachments" : "Adjuntos",
"Comments" : "Comentarios",

View File

@@ -21,6 +21,7 @@
"Can share" : "Puede compartir",
"Delete" : "Eliminar",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Attachments" : "Adjuntos",
"Comments" : "Comentarios",

View File

@@ -33,6 +33,7 @@ OC.L10N.register(
"Delete" : "Borrar",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Comments" : "Comentarios",

View File

@@ -31,6 +31,7 @@
"Delete" : "Borrar",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Comments" : "Comentarios",

View File

@@ -34,6 +34,7 @@ OC.L10N.register(
"Delete" : "Borrar",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Comments" : "Comentarios",

View File

@@ -32,6 +32,7 @@
"Delete" : "Borrar",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Comments" : "Comentarios",

View File

@@ -33,6 +33,7 @@ OC.L10N.register(
"Delete" : "Borrar",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Comments" : "Comentarios",

View File

@@ -31,6 +31,7 @@
"Delete" : "Borrar",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Comments" : "Comentarios",

View File

@@ -33,6 +33,7 @@ OC.L10N.register(
"Delete" : "Borrar",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Comments" : "Comentarios",

View File

@@ -31,6 +31,7 @@
"Delete" : "Borrar",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Comments" : "Comentarios",

View File

@@ -33,6 +33,7 @@ OC.L10N.register(
"Delete" : "Borrar",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Comments" : "Comentarios",

View File

@@ -31,6 +31,7 @@
"Delete" : "Borrar",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Comments" : "Comentarios",

View File

@@ -33,6 +33,7 @@ OC.L10N.register(
"Delete" : "Borrar",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Comments" : "Comentarios",

View File

@@ -31,6 +31,7 @@
"Delete" : "Borrar",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Comments" : "Comentarios",

View File

@@ -29,6 +29,7 @@ OC.L10N.register(
"Delete" : "Borrar",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Comments" : "Comentarios",

View File

@@ -27,6 +27,7 @@
"Delete" : "Borrar",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Comments" : "Comentarios",

View File

@@ -34,6 +34,7 @@ OC.L10N.register(
"Delete" : "Borrar",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Attachments" : "Adjuntos",

View File

@@ -32,6 +32,7 @@
"Delete" : "Borrar",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Attachments" : "Adjuntos",

View File

@@ -29,6 +29,7 @@ OC.L10N.register(
"Delete" : "Borrar",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Comments" : "Comentarios",

View File

@@ -27,6 +27,7 @@
"Delete" : "Borrar",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Comments" : "Comentarios",

View File

@@ -29,6 +29,7 @@ OC.L10N.register(
"Delete" : "Borrar",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Comments" : "Comentarios",

View File

@@ -27,6 +27,7 @@
"Delete" : "Borrar",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Comments" : "Comentarios",

View File

@@ -29,6 +29,7 @@ OC.L10N.register(
"Delete" : "Borrar",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Comments" : "Comentarios",

View File

@@ -27,6 +27,7 @@
"Delete" : "Borrar",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Comments" : "Comentarios",

View File

@@ -29,6 +29,7 @@ OC.L10N.register(
"Delete" : "Borrar",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Comments" : "Comentarios",

View File

@@ -27,6 +27,7 @@
"Delete" : "Borrar",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Comments" : "Comentarios",

View File

@@ -30,6 +30,7 @@ OC.L10N.register(
"Delete" : "Borrar",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Comments" : "Comentarios",

View File

@@ -28,6 +28,7 @@
"Delete" : "Borrar",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Comments" : "Comentarios",

View File

@@ -33,6 +33,7 @@ OC.L10N.register(
"Delete" : "Borrar",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Comments" : "Comentarios",

View File

@@ -31,6 +31,7 @@
"Delete" : "Borrar",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Comments" : "Comentarios",

View File

@@ -29,6 +29,7 @@ OC.L10N.register(
"Delete" : "Borrar",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Comments" : "Comentarios",

View File

@@ -27,6 +27,7 @@
"Delete" : "Borrar",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Upload attachment" : "Cargar adjunto",
"Comments" : "Comentarios",

View File

@@ -17,6 +17,7 @@ OC.L10N.register(
"Can share" : "Can share",
"Delete" : "Kustuta",
"Edit" : "Redigeeri",
"Title" : "Pealkiri",
"Comments" : "Kommentaarid",
"Modified" : "Muudetud",
"Created" : "Loodud",

View File

@@ -15,6 +15,7 @@
"Can share" : "Can share",
"Delete" : "Kustuta",
"Edit" : "Redigeeri",
"Title" : "Pealkiri",
"Comments" : "Kommentaarid",
"Modified" : "Muudetud",
"Created" : "Loodud",

View File

@@ -165,7 +165,7 @@ OC.L10N.register(
"Edit" : "Editatu",
"Add a new tag" : "Gehitu etiketa berri bat",
"title and color value must be provided" : "izenburu eta kolore balioak hornitu behar dira",
"Board name" : "Mahaiaren izena",
"Title" : "Izenburua",
"Members" : "Partaideak",
"Upload attachment" : "Igo eranskina",
"Add this attachment" : "Gehitu eranskin hau",
@@ -216,6 +216,7 @@ OC.L10N.register(
"Show boards in calendar/tasks" : "Erakutsi taulak egutegi/zereginetan",
"Limit deck usage of groups" : "Mugatu taldeek Deck erabiltzeko aukera",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Deck mugatzeak taldeetako kide ez diren erabiltzaileei beren mahai propioak sortzea eragotziko die. Erabiltzaileek beraiekin partekatu diren mahaietan lan egin ahalko dute.",
"Board name" : "Mahaiaren izena",
"Board details" : "Mahaiaren xehetasunak",
"Edit board" : "Editatu mahaia",
"Board {0} deleted" : "{0} mahaia ezabatu da",

View File

@@ -163,7 +163,7 @@
"Edit" : "Editatu",
"Add a new tag" : "Gehitu etiketa berri bat",
"title and color value must be provided" : "izenburu eta kolore balioak hornitu behar dira",
"Board name" : "Mahaiaren izena",
"Title" : "Izenburua",
"Members" : "Partaideak",
"Upload attachment" : "Igo eranskina",
"Add this attachment" : "Gehitu eranskin hau",
@@ -214,6 +214,7 @@
"Show boards in calendar/tasks" : "Erakutsi taulak egutegi/zereginetan",
"Limit deck usage of groups" : "Mugatu taldeek Deck erabiltzeko aukera",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Deck mugatzeak taldeetako kide ez diren erabiltzaileei beren mahai propioak sortzea eragotziko die. Erabiltzaileek beraiekin partekatu diren mahaietan lan egin ahalko dute.",
"Board name" : "Mahaiaren izena",
"Board details" : "Mahaiaren xehetasunak",
"Edit board" : "Editatu mahaia",
"Board {0} deleted" : "{0} mahaia ezabatu da",

View File

@@ -91,6 +91,7 @@ OC.L10N.register(
"Edit" : "ویرایش",
"Add a new tag" : "افزودن یک برچسب جدید",
"title and color value must be provided" : "نام و رنگ باید مشخص شود",
"Title" : "عنوان",
"Members" : "اعضا",
"Upload attachment" : "بارگذاری پیوست",
"Add this attachment" : "افزودن این پیوست",

View File

@@ -89,6 +89,7 @@
"Edit" : "ویرایش",
"Add a new tag" : "افزودن یک برچسب جدید",
"title and color value must be provided" : "نام و رنگ باید مشخص شود",
"Title" : "عنوان",
"Members" : "اعضا",
"Upload attachment" : "بارگذاری پیوست",
"Add this attachment" : "افزودن این پیوست",

View File

@@ -149,7 +149,7 @@ OC.L10N.register(
"Edit" : "Muokkaa",
"Add a new tag" : "Lisää uusi tunniste",
"title and color value must be provided" : "tunnisteella on oltava nimi ja väri",
"Board name" : "Taulun nimi",
"Title" : "Otsikko",
"Members" : "Jäsenet",
"Upload attachment" : "Lähetä liite",
"Add this attachment" : "Lisää tämä liite",
@@ -190,6 +190,7 @@ OC.L10N.register(
"Archived boards" : "Arkistoidut taulut",
"Shared with you" : "Jaettu kanssasi",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Pakan käytön rajoittaminen estää merkittyjen ryhmien jäseniä luomasta omia taulujaan, mutta käyttäjät pystyvät silti käyttämään heidän kanssaan jaettuja tauluja.",
"Board name" : "Taulun nimi",
"Board details" : "Taulun tiedot",
"Edit board" : "Muokkaa taulua",
"Clone board" : "Monista taulu",

View File

@@ -147,7 +147,7 @@
"Edit" : "Muokkaa",
"Add a new tag" : "Lisää uusi tunniste",
"title and color value must be provided" : "tunnisteella on oltava nimi ja väri",
"Board name" : "Taulun nimi",
"Title" : "Otsikko",
"Members" : "Jäsenet",
"Upload attachment" : "Lähetä liite",
"Add this attachment" : "Lisää tämä liite",
@@ -188,6 +188,7 @@
"Archived boards" : "Arkistoidut taulut",
"Shared with you" : "Jaettu kanssasi",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Pakan käytön rajoittaminen estää merkittyjen ryhmien jäseniä luomasta omia taulujaan, mutta käyttäjät pystyvät silti käyttämään heidän kanssaan jaettuja tauluja.",
"Board name" : "Taulun nimi",
"Board details" : "Taulun tiedot",
"Edit board" : "Muokkaa taulua",
"Clone board" : "Monista taulu",

View File

@@ -167,7 +167,7 @@ OC.L10N.register(
"Edit" : "Modifier",
"Add a new tag" : "Ajouter une nouvelle étiquette",
"title and color value must be provided" : "le titre et la couleur doivent être renseignés",
"Board name" : "Nom du tableau",
"Title" : "Titre",
"Members" : "Membres",
"Upload attachment" : "Envoyer une pièce jointe",
"Add this attachment" : "Ajouter cette pièce jointe",
@@ -219,10 +219,11 @@ OC.L10N.register(
"All boards" : "Tous les tableaux",
"Archived boards" : "Tableaux archivés",
"Shared with you" : "Partagés avec vous",
"Use bigger card view" : "Utiliser la vue large des cartes",
"Use modal card view" : "Utiliser la vue modale",
"Show boards in calendar/tasks" : "Afficher les tableaux dans les agendas/tâches",
"Limit deck usage of groups" : "Limiter l'utilisation du tableau aux groupes",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Limiter Deck empêchera les utilisateurs ne faisant pas partie de ces groupes de créer leurs propres tableaux. Ces utilisateurs pourront toujours travailler sur les tableaux qui ont été partagés avec eux.",
"Board name" : "Nom du tableau",
"Board details" : "Détails du tableau",
"Edit board" : "Modifier le tableau",
"Clone board" : "Dupliquer le tableau",

View File

@@ -165,7 +165,7 @@
"Edit" : "Modifier",
"Add a new tag" : "Ajouter une nouvelle étiquette",
"title and color value must be provided" : "le titre et la couleur doivent être renseignés",
"Board name" : "Nom du tableau",
"Title" : "Titre",
"Members" : "Membres",
"Upload attachment" : "Envoyer une pièce jointe",
"Add this attachment" : "Ajouter cette pièce jointe",
@@ -217,10 +217,11 @@
"All boards" : "Tous les tableaux",
"Archived boards" : "Tableaux archivés",
"Shared with you" : "Partagés avec vous",
"Use bigger card view" : "Utiliser la vue large des cartes",
"Use modal card view" : "Utiliser la vue modale",
"Show boards in calendar/tasks" : "Afficher les tableaux dans les agendas/tâches",
"Limit deck usage of groups" : "Limiter l'utilisation du tableau aux groupes",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Limiter Deck empêchera les utilisateurs ne faisant pas partie de ces groupes de créer leurs propres tableaux. Ces utilisateurs pourront toujours travailler sur les tableaux qui ont été partagés avec eux.",
"Board name" : "Nom du tableau",
"Board details" : "Détails du tableau",
"Edit board" : "Modifier le tableau",
"Clone board" : "Dupliquer le tableau",

View File

@@ -167,7 +167,7 @@ OC.L10N.register(
"Edit" : "Editar",
"Add a new tag" : "Engadir unha nova etiqueta",
"title and color value must be provided" : "debe indicar o título e o valor da cor",
"Board name" : "Nome do taboleiro",
"Title" : "Título",
"Members" : "Membros",
"Upload attachment" : "Enviar anexos",
"Add this attachment" : "Engadir este anexo",
@@ -219,10 +219,11 @@ OC.L10N.register(
"All boards" : "Todos os taboleiros",
"Archived boards" : "Taboleiros arquivados",
"Shared with you" : "Compartido con vostede",
"Use bigger card view" : "Usa a vista de tarxeta máis grande",
"Use modal card view" : "Usar a vista de tarxeta modal",
"Show boards in calendar/tasks" : "Amosar taboleiros no calendario/tarefas",
"Limit deck usage of groups" : "Limitar o uso da plataforma a grupos",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Limitando Deck bloqueará os usuarios que non formen parte destes grupos, para crear os seus propios taboleiros. Os usuarios aínda así poderán traballar en taboleiros compartidos con eles.",
"Board name" : "Nome do taboleiro",
"Board details" : "Detalles do taboleiro",
"Edit board" : "Editar taboleiro",
"Clone board" : "Clonar taboleiro",
@@ -251,7 +252,6 @@ OC.L10N.register(
"Link to a board" : "Ligar a un taboleiro",
"Link to a card" : "Ligar a unha tarxeta",
"Something went wrong" : "Algo foi mal",
"Failed to upload {name}" : "Produciuse un fallo ao actualizar {name}",
"Maximum file size of {size} exceeded" : "Excedeuse o tamaño máximo de ficheiro de {size}"
},
"nplurals=2; plural=(n != 1);");

View File

@@ -165,7 +165,7 @@
"Edit" : "Editar",
"Add a new tag" : "Engadir unha nova etiqueta",
"title and color value must be provided" : "debe indicar o título e o valor da cor",
"Board name" : "Nome do taboleiro",
"Title" : "Título",
"Members" : "Membros",
"Upload attachment" : "Enviar anexos",
"Add this attachment" : "Engadir este anexo",
@@ -217,10 +217,11 @@
"All boards" : "Todos os taboleiros",
"Archived boards" : "Taboleiros arquivados",
"Shared with you" : "Compartido con vostede",
"Use bigger card view" : "Usa a vista de tarxeta máis grande",
"Use modal card view" : "Usar a vista de tarxeta modal",
"Show boards in calendar/tasks" : "Amosar taboleiros no calendario/tarefas",
"Limit deck usage of groups" : "Limitar o uso da plataforma a grupos",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Limitando Deck bloqueará os usuarios que non formen parte destes grupos, para crear os seus propios taboleiros. Os usuarios aínda así poderán traballar en taboleiros compartidos con eles.",
"Board name" : "Nome do taboleiro",
"Board details" : "Detalles do taboleiro",
"Edit board" : "Editar taboleiro",
"Clone board" : "Clonar taboleiro",
@@ -249,7 +250,6 @@
"Link to a board" : "Ligar a un taboleiro",
"Link to a card" : "Ligar a unha tarxeta",
"Something went wrong" : "Algo foi mal",
"Failed to upload {name}" : "Produciuse un fallo ao actualizar {name}",
"Maximum file size of {size} exceeded" : "Excedeuse o tamaño máximo de ficheiro de {size}"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@@ -167,7 +167,7 @@ OC.L10N.register(
"Edit" : "עריכה",
"Add a new tag" : "הוספת תגית חדשה",
"title and color value must be provided" : "יש לספק כותרת וערך צבע",
"Board name" : "שם הלוח",
"Title" : "תפקיד",
"Members" : "חברים",
"Upload attachment" : "העלאת קבצים מצורפים",
"Add this attachment" : "הוספת קובץ מצורף זה",
@@ -219,9 +219,11 @@ OC.L10N.register(
"All boards" : "כל הלוחות",
"Archived boards" : "לוחות שנשמרו בארכיון",
"Shared with you" : "משותף אתך",
"Use modal card view" : "השתמש בתצוגת כרטיס מודאלי",
"Show boards in calendar/tasks" : "הצג הלוחות בלוח השנה/המשימות",
"Limit deck usage of groups" : "הגבלת השימוש בחבילה לקבוצות",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "הגבלת חבילה תחסום משתמשים שאינם חלק מקבוצות אלו מיצירת לוחות משלהם. משתמשים עדיין יוכלו לעבור על לוחות ששותפו אתם.",
"Board name" : "שם הלוח",
"Board details" : "פרטי לוח",
"Edit board" : "עריכת לוח",
"Clone board" : "שכפל את הלוח",

View File

@@ -165,7 +165,7 @@
"Edit" : "עריכה",
"Add a new tag" : "הוספת תגית חדשה",
"title and color value must be provided" : "יש לספק כותרת וערך צבע",
"Board name" : "שם הלוח",
"Title" : "תפקיד",
"Members" : "חברים",
"Upload attachment" : "העלאת קבצים מצורפים",
"Add this attachment" : "הוספת קובץ מצורף זה",
@@ -217,9 +217,11 @@
"All boards" : "כל הלוחות",
"Archived boards" : "לוחות שנשמרו בארכיון",
"Shared with you" : "משותף אתך",
"Use modal card view" : "השתמש בתצוגת כרטיס מודאלי",
"Show boards in calendar/tasks" : "הצג הלוחות בלוח השנה/המשימות",
"Limit deck usage of groups" : "הגבלת השימוש בחבילה לקבוצות",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "הגבלת חבילה תחסום משתמשים שאינם חלק מקבוצות אלו מיצירת לוחות משלהם. משתמשים עדיין יוכלו לעבור על לוחות ששותפו אתם.",
"Board name" : "שם הלוח",
"Board details" : "פרטי לוח",
"Edit board" : "עריכת לוח",
"Clone board" : "שכפל את הלוח",

View File

@@ -166,7 +166,7 @@ OC.L10N.register(
"Edit" : "Uredi",
"Add a new tag" : "Dodaj novu oznaku",
"title and color value must be provided" : "potrebno je odabrati naziv i vrijednost boje",
"Board name" : "Naziv ploče",
"Title" : "Naslov",
"Members" : "Članovi",
"Upload attachment" : "Otpremi privitak",
"Add this attachment" : "Dodajte ovaj privitak",
@@ -217,9 +217,11 @@ OC.L10N.register(
"All boards" : "Sve ploče",
"Archived boards" : "Arhivirane ploče",
"Shared with you" : "Podijeljeno s vama",
"Use modal card view" : "Koristi modalni prikaz kartice",
"Show boards in calendar/tasks" : "Prikaži ploče u kalendaru/zadacima",
"Limit deck usage of groups" : "Ograniči uporabu decka grupama",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Ograničenjem Decka možete spriječiti korisnike koji ne sudjeluju u tim grupama da stvaraju vlastite ploče. Korisnici će i dalje moći raditi na pločama koje su dijeljene s njima.",
"Board name" : "Naziv ploče",
"Board details" : "Pojedinosti o ploči",
"Edit board" : "Uredi ploču",
"Board {0} deleted" : "Ploča {0} je izbrisana",

View File

@@ -164,7 +164,7 @@
"Edit" : "Uredi",
"Add a new tag" : "Dodaj novu oznaku",
"title and color value must be provided" : "potrebno je odabrati naziv i vrijednost boje",
"Board name" : "Naziv ploče",
"Title" : "Naslov",
"Members" : "Članovi",
"Upload attachment" : "Otpremi privitak",
"Add this attachment" : "Dodajte ovaj privitak",
@@ -215,9 +215,11 @@
"All boards" : "Sve ploče",
"Archived boards" : "Arhivirane ploče",
"Shared with you" : "Podijeljeno s vama",
"Use modal card view" : "Koristi modalni prikaz kartice",
"Show boards in calendar/tasks" : "Prikaži ploče u kalendaru/zadacima",
"Limit deck usage of groups" : "Ograniči uporabu decka grupama",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Ograničenjem Decka možete spriječiti korisnike koji ne sudjeluju u tim grupama da stvaraju vlastite ploče. Korisnici će i dalje moći raditi na pločama koje su dijeljene s njima.",
"Board name" : "Naziv ploče",
"Board details" : "Pojedinosti o ploči",
"Edit board" : "Uredi ploču",
"Board {0} deleted" : "Ploča {0} je izbrisana",

View File

@@ -132,6 +132,7 @@ OC.L10N.register(
"Edit" : "Szerkesztés",
"Add a new tag" : "Új címke hozzáadása",
"title and color value must be provided" : "a cím és szín értékét meg kell adni",
"Title" : "Cím",
"Members" : "Tagok",
"Upload attachment" : "Melléklet feltöltése",
"Add this attachment" : "E melléklet hozzáadása",

View File

@@ -130,6 +130,7 @@
"Edit" : "Szerkesztés",
"Add a new tag" : "Új címke hozzáadása",
"title and color value must be provided" : "a cím és szín értékét meg kell adni",
"Title" : "Cím",
"Members" : "Tagok",
"Upload attachment" : "Melléklet feltöltése",
"Add this attachment" : "E melléklet hozzáadása",

View File

@@ -9,6 +9,7 @@ OC.L10N.register(
"Can share" : "Can share",
"Delete" : "հեռացնել",
"Edit" : "մշակել",
"Title" : "Վերնագիր",
"Comments" : "Կարծիքներ",
"Modified" : "Փոփոխված",
"Save" : "Պահպանել",

View File

@@ -7,6 +7,7 @@
"Can share" : "Can share",
"Delete" : "հեռացնել",
"Edit" : "մշակել",
"Title" : "Վերնագիր",
"Comments" : "Կարծիքներ",
"Modified" : "Փոփոխված",
"Save" : "Պահպանել",

View File

@@ -19,6 +19,7 @@ OC.L10N.register(
"Can share" : "Can share",
"Delete" : "Deler",
"Edit" : "Modificar",
"Title" : "Titulo",
"Members" : "Membros",
"Attachments" : "Attachamentos",
"Comments" : "Commentarios",

View File

@@ -17,6 +17,7 @@
"Can share" : "Can share",
"Delete" : "Deler",
"Edit" : "Modificar",
"Title" : "Titulo",
"Members" : "Membros",
"Attachments" : "Attachamentos",
"Comments" : "Commentarios",

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