Compare commits

..

2 Commits

Author SHA1 Message Date
Julius Härtl
b5cffce27a fixup! Build nightly/apprelease with latest ubuntu 2021-04-17 17:15:03 +02:00
Julius Härtl
a2928a7bfa Build nightly/apprelease with latest ubuntu
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2021-04-17 17:13:14 +02:00
142 changed files with 17482 additions and 28680 deletions

View File

@@ -1,8 +1,8 @@
module.exports = { module.exports = {
extends: [ extends: [
'@nextcloud', '@nextcloud'
], ],
rules: { rules: {
'valid-jsdoc': ['off'], 'valid-jsdoc': ['off'],
}, }
} }

55
.github/workflows/app-code-check.yml vendored Normal file
View File

@@ -0,0 +1,55 @@
name: Nextcloud app code check
on:
pull_request:
push:
branches:
- master
- stable*
env:
APP_NAME: deck
jobs:
unit-tests:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: ['7.4']
server-versions: ['master']
name: AppCode check php${{ matrix.php-versions }}-${{ matrix.server-versions }}
steps:
- name: Checkout server
uses: actions/checkout@v2
with:
repository: nextcloud/server
ref: ${{ matrix.server-versions }}
- name: Checkout submodules
shell: bash
run: |
auth_header="$(git config --local --get http.https://github.com/.extraheader)"
git submodule sync --recursive
git -c "http.extraheader=$auth_header" -c protocol.version=2 submodule update --init --force --recursive --depth=1
- name: Checkout app
uses: actions/checkout@v2
with:
path: apps/${{ env.APP_NAME }}
- name: Set up php ${{ matrix.php-versions }}
uses: shivammathur/setup-php@v1
with:
php-version: ${{ matrix.php-versions }}
tools: phpunit
extensions: mbstring, iconv, fileinfo, intl, sqlite, pdo_sqlite
- name: Checkout app
uses: actions/checkout@v2
with:
path: apps/${{ env.APP_NAME }}
- name: App code check
run: php occ app:check-code ${{ env.APP_NAME }}

View File

@@ -5,11 +5,11 @@ on:
jobs: jobs:
build: build:
runs-on: ubuntu-18.04 runs-on: ubuntu-latest
strategy: strategy:
matrix: matrix:
node-version: [14.x] node-version: [12.x]
steps: steps:
- uses: actions/checkout@v1 - uses: actions/checkout@v1
@@ -17,17 +17,15 @@ jobs:
uses: actions/setup-node@v1 uses: actions/setup-node@v1
with: with:
node-version: ${{ matrix.node-version }} node-version: ${{ matrix.node-version }}
- name: Set up npm7
run: npm i -g npm@7
- name: Setup PHP - name: Setup PHP
uses: shivammathur/setup-php@v1 uses: shivammathur/setup-php@v2
with: with:
php-version: '7.4' php-version: '7.4'
tools: composer tools: composer
- name: install dependencies - name: install dependencies
run: | run: |
wget https://github.com/ChristophWurst/krankerl/releases/download/v0.12.2/krankerl_0.12.2_amd64.deb wget https://github.com/ChristophWurst/krankerl/releases/download/v0.13.0/krankerl_0.13.0_amd64.deb
sudo dpkg -i krankerl_0.12.2_amd64.deb sudo dpkg -i krankerl_0.13.0_amd64.deb
- name: package - name: package
run: | run: |
uname -a uname -a

View File

@@ -19,7 +19,7 @@ jobs:
matrix: matrix:
php-versions: ['7.4'] php-versions: ['7.4']
databases: ['sqlite', 'mysql', 'pgsql'] databases: ['sqlite', 'mysql', 'pgsql']
server-versions: ['stable22'] server-versions: ['master']
name: php${{ matrix.php-versions }}-${{ matrix.databases }}-${{ matrix.server-versions }} name: php${{ matrix.php-versions }}-${{ matrix.databases }}-${{ matrix.server-versions }}

View File

@@ -47,7 +47,7 @@ jobs:
strategy: strategy:
matrix: matrix:
node-version: [14.x] node-version: [12.x]
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
@@ -55,8 +55,6 @@ jobs:
uses: actions/setup-node@v1 uses: actions/setup-node@v1
with: with:
node-version: ${{ matrix.node-version }} node-version: ${{ matrix.node-version }}
- name: Set up npm7
run: npm i -g npm@7
- name: Install dependencies - name: Install dependencies
run: npm ci run: npm ci
- name: ESLint - name: ESLint
@@ -67,7 +65,7 @@ jobs:
strategy: strategy:
matrix: matrix:
node-versions: [14.x] node-versions: [12.x]
name: stylelint node${{ matrix.node-versions }} name: stylelint node${{ matrix.node-versions }}
steps: steps:
@@ -78,9 +76,6 @@ jobs:
with: with:
node-versions: ${{ matrix.node-versions }} node-versions: ${{ matrix.node-versions }}
- name: Set up npm7
run: npm i -g npm@7
- name: Install dependencies - name: Install dependencies
run: npm ci run: npm ci

View File

@@ -14,7 +14,7 @@ jobs:
strategy: strategy:
matrix: matrix:
node-version: [14.x] node-version: [12.x]
steps: steps:
- uses: actions/checkout@v1 - uses: actions/checkout@v1
@@ -22,17 +22,15 @@ jobs:
uses: actions/setup-node@v1 uses: actions/setup-node@v1
with: with:
node-version: ${{ matrix.node-version }} node-version: ${{ matrix.node-version }}
- name: Set up npm7
run: npm i -g npm@7
- name: Setup PHP - name: Setup PHP
uses: shivammathur/setup-php@v1 uses: shivammathur/setup-php@v2
with: with:
php-version: '7.4' php-version: '7.4'
tools: composer tools: composer
- name: install dependencies - name: install dependencies
run: | run: |
wget https://github.com/ChristophWurst/krankerl/releases/download/v0.12.2/krankerl_0.12.2_amd64.deb wget https://github.com/ChristophWurst/krankerl/releases/download/v0.13.0/krankerl_0.13.0_amd64.deb
sudo dpkg -i krankerl_0.12.2_amd64.deb sudo dpkg -i krankerl_0.13.0_amd64.deb
- name: package - name: package
run: | run: |
uname -a uname -a

View File

@@ -9,7 +9,7 @@ jobs:
strategy: strategy:
matrix: matrix:
node-version: [14.x] node-version: [12.x]
steps: steps:
- uses: actions/checkout@v1 - uses: actions/checkout@v1
@@ -17,8 +17,6 @@ jobs:
uses: actions/setup-node@v1 uses: actions/setup-node@v1
with: with:
node-version: ${{ matrix.node-version }} node-version: ${{ matrix.node-version }}
- name: Set up npm7
run: npm i -g npm@7
- name: install dependencies - name: install dependencies
run: | run: |
npm ci npm ci

View File

@@ -20,7 +20,7 @@ jobs:
matrix: matrix:
php-versions: ['7.3', '7.4'] php-versions: ['7.3', '7.4']
databases: ['sqlite', 'mysql', 'pgsql'] databases: ['sqlite', 'mysql', 'pgsql']
server-versions: ['stable22'] server-versions: ['master']
name: php${{ matrix.php-versions }}-${{ matrix.databases }}-${{ matrix.server-versions }} name: php${{ matrix.php-versions }}-${{ matrix.databases }}-${{ matrix.server-versions }}

View File

@@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy:
matrix: matrix:
ocp-version: [ 'dev-stable22' ] ocp-version: [ 'dev-master' ]
name: Nextcloud ${{ matrix.ocp-version }} name: Nextcloud ${{ matrix.ocp-version }}
steps: steps:
- name: Checkout - name: Checkout

View File

@@ -1,40 +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.5.0 - 2021-07-09
### Added
* Nextcloud 22 compatibility
* [#3105](https://github.com/nextcloud/deck/pull/3105) Compatibility with Cirlces changes in 22
* [#3147](https://github.com/nextcloud/deck/pull/3147) Add card button to the dashboard widget @jakobroehrl
* [#2854](https://github.com/nextcloud/deck/pull/2854) Add card button in card overview @jakobroehrl
* [#3078](https://github.com/nextcloud/deck/pull/3078) Show on shared boards unassigned cards to all users @jakobroehrl
### Fixed
* [#2935](https://github.com/nextcloud/deck/pull/2935) Rich object string parameters for notifications @nickvergessen
* [#2950](https://github.com/nextcloud/deck/pull/2950) Remove notification on unshare and add type hints
* [#2983](https://github.com/nextcloud/deck/pull/2983) Fix codemirror description width
* [#2989](https://github.com/nextcloud/deck/pull/2989) Fix unified comments search with postgres
* [#3005](https://github.com/nextcloud/deck/pull/3005) Do not query the lookupserver when looking for sharees
* [#3011](https://github.com/nextcloud/deck/pull/3011) L10n: Spelling unification @Valdnet
* [#3014](https://github.com/nextcloud/deck/pull/3014) Proper error handling when fetching comments fails
* [#3016](https://github.com/nextcloud/deck/pull/3016) Allow searching for filters without a query to match all that have a given filter set
* [#3021](https://github.com/nextcloud/deck/pull/3021) L10n: Add word "Card" @Valdnet
* [#3025](https://github.com/nextcloud/deck/pull/3025) Show comment counter and highlight if unread comments are available
* [#3036](https://github.com/nextcloud/deck/pull/3036) Add link to migration tool for Trello @maxammann
* [#3037](https://github.com/nextcloud/deck/pull/3037) Catch any error during circle detail fetching
* [#3038](https://github.com/nextcloud/deck/pull/3038) Get attachment from the user node instead of the share source
* [#3092](https://github.com/nextcloud/deck/pull/3092) Refactor update to have proper order of optional parameters
* [#3113](https://github.com/nextcloud/deck/pull/3113) Use new viewer syntax with destructuring object @azul
* [#3142](https://github.com/nextcloud/deck/pull/3142) Always pass user id in share provider
* [#3152](https://github.com/nextcloud/deck/pull/3152) Only offer stack creation in emptycontent with proper permissions
* [#3165](https://github.com/nextcloud/deck/pull/3165) Always log generic exceptions
* [#3168](https://github.com/nextcloud/deck/pull/3168) Reduce duplicate queries when fetching user boards an permissions
## 1.4.0 - 2021-04-13 ## 1.4.0 - 2021-04-13
### Added ### Added
@@ -69,15 +35,15 @@ All notable changes to this project will be documented in this file.
## 1.3.0-beta2 ## 1.3.0-beta2
### Fixed ### Fixed
* [#2700](https://github.com/nextcloud/deck/pull/2700) Attempt to copy file on dropping it to deck * [#2700](https://github.com/nextcloud/deck/pull/2700) Attempt to copy file on dropping it to deck @juliushaertl
* [#2701](https://github.com/nextcloud/deck/pull/2701) Fix uploading files by drag and drop * [#2701](https://github.com/nextcloud/deck/pull/2701) Fix uploading files by drag and drop @juliushaertl
* [#2707](https://github.com/nextcloud/deck/pull/2707) L10n: Change to a capital letter @Valdnet * [#2707](https://github.com/nextcloud/deck/pull/2707) L10n: Change to a capital letter @Valdnet
* [#2712](https://github.com/nextcloud/deck/pull/2712) Docs: Fix table in section "GET /api/v1.0/config" @das-g * [#2712](https://github.com/nextcloud/deck/pull/2712) Docs: Fix table in section "GET /api/v1.0/config" @das-g
* [#2716](https://github.com/nextcloud/deck/pull/2716) Remove repair step which is no longer needed as we cleanup properly * [#2716](https://github.com/nextcloud/deck/pull/2716) Remove repair step which is no longer needed as we cleanup properly @juliushaertl
* [#2723](https://github.com/nextcloud/deck/pull/2723) Pad random color with leading zeroes @PVince81 * [#2723](https://github.com/nextcloud/deck/pull/2723) Pad random color with leading zeroes @PVince81
* [#2729](https://github.com/nextcloud/deck/pull/2729) Remove invalid activity parameters @nickvergessen * [#2729](https://github.com/nextcloud/deck/pull/2729) Remove invalid activity parameters @nickvergessen
* [#2750](https://github.com/nextcloud/deck/pull/2750) Fix deck activity emails not being translated @nickvergessen * [#2750](https://github.com/nextcloud/deck/pull/2750) Fix deck activity emails not being translated @nickvergessen
* [#2751](https://github.com/nextcloud/deck/pull/2751) Properly set author for activity events that are triggered by cron * [#2751](https://github.com/nextcloud/deck/pull/2751) Properly set author for activity events that are triggered by cron @juliushaertl
## 1.2.2 - 2020-11-24 ## 1.2.2 - 2020-11-24
@@ -186,31 +152,31 @@ All notable changes to this project will be documented in this file.
### Fixed ### Fixed
* [#2116](https://github.com/nextcloud/deck/pull/2116) Fix navigation layout issues * [#2116](https://github.com/nextcloud/deck/pull/2116) Fix navigation layout issues @juliushaertl
* [#2118](https://github.com/nextcloud/deck/pull/2118) Use proper parameter when handling attachments * [#2118](https://github.com/nextcloud/deck/pull/2118) Use proper parameter when handling attachments @juliushaertl
## 1.0.4 - 2020-06-26 ## 1.0.4 - 2020-06-26
### Fixed ### Fixed
* [#2062](https://github.com/nextcloud/deck/pull/2062) Fix saving card description after toggling checkboxes * [#2062](https://github.com/nextcloud/deck/pull/2062) Fix saving card description after toggling checkboxes @juliushaertl
* [#2065](https://github.com/nextcloud/deck/pull/2065) Adding CSS rule for Markdown Blockquotes @reox * [#2065](https://github.com/nextcloud/deck/pull/2065) Adding CSS rule for Markdown Blockquotes @reox
* [#2059](https://github.com/nextcloud/deck/pull/2059) Fix fetching attachments on card change * [#2059](https://github.com/nextcloud/deck/pull/2059) Fix fetching attachments on card change @juliushaertl
* [#2060](https://github.com/nextcloud/deck/pull/2060) Use mixing for relative date in card sidebar * [#2060](https://github.com/nextcloud/deck/pull/2060) Use mixing for relative date in card sidebar @juliushaertl
## 1.0.3 - 2020-06-19 ## 1.0.3 - 2020-06-19
### Fixed ### Fixed
* [#2019](https://github.com/nextcloud/deck/pull/2019) Remove old global css rule * [#2019](https://github.com/nextcloud/deck/pull/2019) Remove old global css rule @juliushaertl
* [#2020](https://github.com/nextcloud/deck/pull/2020) Fix navigation issue with leftover nodes * [#2020](https://github.com/nextcloud/deck/pull/2020) Fix navigation issue with leftover nodes @juliushaertl
* [#2021](https://github.com/nextcloud/deck/pull/2021) Fix description issues * [#2021](https://github.com/nextcloud/deck/pull/2021) Fix description issues @juliushaertl
* [#2022](https://github.com/nextcloud/deck/pull/2022) Fix replyto issues with the comments API * [#2022](https://github.com/nextcloud/deck/pull/2022) Fix replyto issues with the comments API @juliushaertl
* [#2027](https://github.com/nextcloud/deck/pull/2027) Allow to unassign current user from card * [#2027](https://github.com/nextcloud/deck/pull/2027) Allow to unassign current user from card @juliushaertl
* [#2029](https://github.com/nextcloud/deck/pull/2029) Fix wording : stack -> list @cloud2018 * [#2029](https://github.com/nextcloud/deck/pull/2029) Fix wording : stack -> list @cloud2018
* [#2032](https://github.com/nextcloud/deck/pull/2032) Force order by id as second sorting key * [#2032](https://github.com/nextcloud/deck/pull/2032) Force order by id as second sorting key @juliushaertl
* [#2045](https://github.com/nextcloud/deck/pull/2045) Improve label styling * [#2045](https://github.com/nextcloud/deck/pull/2045) Improve label styling @juliushaertl
* [#2010](https://github.com/nextcloud/deck/pull/2010) User documentation fixes @Nyco * [#2010](https://github.com/nextcloud/deck/pull/2010) User documentation fixes @Nyco
* [#1998](https://github.com/nextcloud/deck/pull/1998) Add Checklist explaination to the doc @4rnoP * [#1998](https://github.com/nextcloud/deck/pull/1998) Add Checklist explaination to the doc @4rnoP

View File

@@ -15,16 +15,11 @@ Deck is a kanban style organization tool aimed at personal planning and project
- Keep track of changes in the activity stream - Keep track of changes in the activity stream
- Get your project organized - Get your project organized
![Deck - Manage cards on your board](http://download.bitgrid.net/nextcloud/deck/screenshots/1.0/Deck-2.png)
### Mobile apps ### Mobile apps
- [Nextcloud Deck app for Android](https://github.com/stefan-niedermann/nextcloud-deck) - It is available in [F-Droid](https://f-droid.org/de/packages/it.niedermann.nextcloud.deck/) and the [Google Play Store](https://play.google.com/store/apps/details?id=it.niedermann.nextcloud.deck.play) - The [Nextcloud Deck app for Android](https://github.com/stefan-niedermann/nextcloud-deck) is available in the [Google Play Store](https://play.google.com/store/apps/details?id=it.niedermann.nextcloud.deck.play)
### 3rd-Party Integrations ![Deck - Manage cards on your board](http://download.bitgrid.net/nextcloud/deck/screenshots/1.0/Deck-2.png)
- [trello-to-deck](https://github.com/maxammann/trello-to-deck) - Migrates cards from Trello
- [mail2deck](https://github.com/newroco/mail2deck) - Provides an "email in" solution
## Installation/Update ## Installation/Update

View File

@@ -17,7 +17,7 @@
- 🚀 Get your project organized - 🚀 Get your project organized
</description> </description>
<version>1.5.0</version> <version>2.0.0-alpha1</version>
<licence>agpl</licence> <licence>agpl</licence>
<author>Julius Härtl</author> <author>Julius Härtl</author>
<namespace>Deck</namespace> <namespace>Deck</namespace>

View File

@@ -1,3 +1,11 @@
const babelConfig = require('@nextcloud/babel-config') module.exports = {
plugins: ['@babel/plugin-syntax-dynamic-import'],
module.exports = babelConfig presets: [
[
'@babel/preset-env',
{
modules: false
}
]
]
}

View File

@@ -14,7 +14,7 @@
"require-dev": { "require-dev": {
"roave/security-advisories": "dev-master", "roave/security-advisories": "dev-master",
"christophwurst/nextcloud": "^21@dev", "christophwurst/nextcloud": "^21@dev",
"phpunit/phpunit": "^9", "phpunit/phpunit": "^8",
"nextcloud/coding-standard": "^0.5.0", "nextcloud/coding-standard": "^0.5.0",
"symfony/event-dispatcher": "^4.0", "symfony/event-dispatcher": "^4.0",
"vimeo/psalm": "^4.3", "vimeo/psalm": "^4.3",

985
composer.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -22,9 +22,7 @@
.icon-activity { .icon-activity {
@include icon-color('activity-dark', 'activity', $color-black); @include icon-color('activity-dark', 'activity', $color-black);
} }
.icon-comment--unread {
@include icon-color('comment', 'actions', $color-primary, 1, true);
}
.avatardiv.circles { .avatardiv.circles {
background: var(--color-primary); background: var(--color-primary);

View File

@@ -9,148 +9,66 @@ OC.L10N.register(
"{user} has restored the board {board}" : "{user} قام باسترجاع اللوح {board}", "{user} has restored the board {board}" : "{user} قام باسترجاع اللوح {board}",
"You have shared the board {board} with {acl}" : "قمت بمشاركة اللوح {board} مع {acl}", "You have shared the board {board} with {acl}" : "قمت بمشاركة اللوح {board} مع {acl}",
"{user} has shared the board {board} with {acl}" : "{user} قام بمشاركة اللوح {board} مع {acl}", "{user} has shared the board {board} with {acl}" : "{user} قام بمشاركة اللوح {board} مع {acl}",
"You have removed {acl} from the board {board}" : "قمت بإزالة {acl} من اللوح {board}", "You have removed {acl} from the board {board}" : "قمت بازالة {acl} من اللوح {board}",
"{user} has removed {acl} from the board {board}" : "{user} قام بازالة {acl} من اللوح {board}", "{user} has removed {acl} from the board {board}" : "{user} قام بازالة {acl} من اللوح {board}",
"You have renamed the board {before} to {board}" : "قمت بإعادة تسمية اللوح من {before} الى {board}", "You have renamed the board {before} to {board}" : "قمت باعادة تسمية اللوح من {before} الى {board}",
"{user} has renamed the board {before} to {board}" : "{user} قام بإعادة تسمية اللوح من {before} الى {board}", "{user} has renamed the board {before} to {board}" : "{user} قام باعادة تسمية اللوح من {before} الى {board}",
"You have archived the board {board}" : "لقد ارشفت اللوح {board}", "You have archived the board {board}" : "لقد ارشفت اللوح {board}",
"{user} has archived the board {before}" : "{user} قام بأرشفة اللوح {before}", "{user} has archived the board {before}" : "{user} قام بأرشفة اللوح {before}",
"You have unarchived the board {board}" : "قمت بالغاء ارشفة اللوح {board}", "You have unarchived the board {board}" : "قمت بالغاء ارشفة اللوح {board}",
"{user} has unarchived the board {before}" : "{user} قام بالغاء ارشفة اللوح {before}", "{user} has unarchived the board {before}" : "{user} قام بالغاء ارشفة اللوح {before}",
"You have created a new list {stack} on board {board}" : "لقد قمت بانشاء قائمة جديدة {stack} على اللوح {board}",
"{user} has created a new list {stack} on board {board}" : "{user} قام بانشاء قائمة جديدة {stack} على اللوح {board}",
"You have renamed list {before} to {stack} on board {board}" : "قمت باعادة تسمية القائمة من {before} إلى {stack} على اللوح {board}",
"{user} has renamed list {before} to {stack} on board {board}" : "{user} قام باعادة تسمية القائمة {before} إلى {stack} على اللوح {board}",
"You have deleted list {stack} on board {board}" : "قمت بمسح القائمة {stack} على اللوح {board}",
"{user} has deleted list {stack} on board {board}" : "{user} قام بمسح القائمة {stack} على اللوح {board}",
"You have created card {card} in list {stack} on board {board}" : "لقد قمت بانشاء بطاقة {card} في القائمة {stack} على اللوح {board}",
"{user} has created card {card} in list {stack} on board {board}" : "{user} قام بانشاء بطاقة {card} في القائمة {stack} على اللوح {board}",
"You have deleted card {card} in list {stack} on board {board}" : "قمت بمسح بطاقة {card} في القائمة {stack} على اللوح {board}",
"{user} has deleted card {card} in list {stack} on board {board}" : "{user} قام بحذف بطاقة {card} في القائمة {stack} على اللوح {board}",
"You have renamed the card {before} to {card}" : "قمت بإعادة تسمية اللوح من {before} إلى {card}",
"{user} has renamed the card {before} to {card}" : "{user} قام بإعادة تسمية اللوح من {before} إلى {card}",
"You have added a description to card {card} in list {stack} on board {board}" : "قمت بإضافة وصف إلى البطاقة {card} في القائمة {stack} على اللوح {board}",
"{user} has added a description to card {card} in list {stack} on board {board}" : "{user} قام بإضافة وصف إلى البطاقة {card} في القائمة {stack} على اللوح {board}",
"You have updated the description of card {card} in list {stack} on board {board}" : "قمت بتحديث الوصف إلى البطاقة {card} في القائمة {stack} على اللوح {board}",
"{user} has updated the description of the card {card} in list {stack} on board {board}" : "{user} قام بتحديث الوصف إلى البطاقة {card} في القائمة {stack} على اللوح {board}",
"You have archived card {card} in list {stack} on board {board}" : "لقد قمت بأرشفة بطاقة {card} في القائمة {stack} على اللوح {board}",
"{user} has archived card {card} in list {stack} on board {board}" : "{user} قام بأرشفة بطاقة {card} في القائمة {stack} على اللوح {board}",
"You have unarchived card {card} in list {stack} on board {board}" : "لديك بطاقة غير مؤرشفة {card} في القائمة {stack} على اللوح {board}",
"{user} has unarchived card {card} in list {stack} on board {board}" : "{user} لديه بطاقة غير مؤرشفة {card} في القائمة {stack} على اللوح {board}",
"You have removed the due date of card {card}" : "قمت بإزالة التاريخ المحدد من البطاقة {card}",
"{user} has removed the due date of card {card}" : "{user} قام بإزالة التاريخ المحدد من البطاقة {card}",
"You have set the due date of card {card} to {after}" : "قمت بتعيين التاريخ المحدد للبطاقة {card} إلى {after}",
"{user} has set the due date of card {card} to {after}" : "{user} قام بتعيين التاريخ المحدد للبطاقة {card} إلى {after}",
"You have updated the due date of card {card} to {after}" : "قمت بتحديث التاريخ المحدد للبطاقة {card} إلى {after}",
"{user} has updated the due date of card {card} to {after}" : "{user} قام بتحديث التاريخ المحدد للبطاقة {card} إلى {after}",
"You have added the tag {label} to card {card} in list {stack} on board {board}" : "قمت بإضافة وسم {label} إلى البطاقة {card} في القائمة {stack} على اللوح {board}",
"{user} has added the tag {label} to card {card} in list {stack} on board {board}" : "{user} قام بإضافة وسم {label} إلى البطاقة {card} في القائمة {stack} على اللوح {board}",
"You have removed the tag {label} from card {card} in list {stack} on board {board}" : "قمت بإزالة وسم {label} من البطاقة {card} في القائمة {stack} على اللوح {board}",
"{user} has removed the tag {label} from card {card} in list {stack} on board {board}" : "{user} قام بإزالة وسم {label} من البطاقة {card} في القائمة {stack} على اللوح {board}",
"You have assigned {assigneduser} to card {card} on board {board}" : "قمت بتكليف {assigneduser} في بطاقة {card} على اللوح {board}",
"{user} has assigned {assigneduser} to card {card} on board {board}" : "{user} قام بتكليف {assigneduser} في بطاقة {card} على اللوح {board}",
"You have unassigned {assigneduser} from card {card} on board {board}" : "لقد إلغيت تكليف {assigneduser} من البطاقة {card} على اللوح {board}",
"{user} has unassigned {assigneduser} from card {card} on board {board}" : "{user} الغى تكليف {assigneduser} من البطاقة {card} على اللوح {board}",
"You have moved the card {card} from list {stackBefore} to {stack}" : " قمت بنقل البطاقة {card} من القائمة {stackBefore} إلى {stack}",
"{user} has moved the card {card} from list {stackBefore} to {stack}" : "{user} قام بنقل البطاقة {card} من القائمة {stackBefore} إلى {stack}",
"You have added the attachment {attachment} to card {card}" : "قمت بإضافة المرفق {attachment} إلى البطاقة {card}",
"{user} has added the attachment {attachment} to card {card}" : "{user} قام بإضافة المرفق {attachment} إلى البطاقة {card}",
"You have updated the attachment {attachment} on card {card}" : "قمت بتحديث المرفق {attachment} على البطاقة {card}",
"{user} has updated the attachment {attachment} on card {card}" : "{user} قام بتحديث المرفق {attachment} على البطاقة {card}",
"You have deleted the attachment {attachment} from card {card}" : "قمت بحذف المرفق {attachment} من البطاقة {card}",
"{user} has deleted the attachment {attachment} from card {card}" : "{user} قام بحذف المرفق {attachment} من البطاقة {card}",
"You have restored the attachment {attachment} to card {card}" : "قمت باسترجاع المرفق {attachment} إلى البطاقة {card}",
"{user} has restored the attachment {attachment} to card {card}" : "{user} قام باسترجاع المرفق {attachment} إلى البطاقة {card}",
"You have commented on card {card}" : "لقد علقت على البطاقة {بطاقة}",
"{user} has commented on card {card}" : "{مستخدم} علق على بطاقة {بطاقة}",
"A <strong>card description</strong> inside the Deck app has been changed" : "<strong>وصف البطاقة</strong>داخل تطبيق Deck قد تغيرت.",
"Deck" : "Deck",
"Changes in the <strong>Deck app</strong>" : "تغييرات في <strong>تطبيق Deck</strong> ",
"A <strong>comment</strong> was created on a card" : "<strong>تعليق</strong> تم إنشاؤه على بطاقة",
"Upcoming cards" : "البطاقات القادمة",
"Personal" : "شخصي", "Personal" : "شخصي",
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "البطاقة \"%s\" على \"%s\" كُلفت بها من قبل %s.",
"{user} has assigned the card {deck-card} on {deck-board} to you." : "{user} قام بتكليف البطاقة {deck-board} على {deck-board} لك",
"The card \"%s\" on \"%s\" has reached its due date." : "وصلت بطاقة \"%s\" على %s\" الموعد المحدد ",
"The card {deck-card} on {deck-board} has reached its due date." : "تجاوزت البطاقة {deck-card} على {deck-board} التاريخ المحدد.",
"%s has mentioned you in a comment on \"%s\"." : "%s أشار إليك في تعليق على \"%s\".",
"{user} has mentioned you in a comment on {deck-card}." : "{user} أشار إليك في تعليق على {deck-card}",
"The board \"%s\" has been shared with you by %s." : "تمت مشاركة اللوح \"%s\" معك من قبل %s.",
"{user} has shared {deck-board} with you." : "{user} قام بمشاركة {deck-board} معك.",
"Card comments" : "تعليقات البطاقة ",
"%s on %s" : "%s على %s",
"No data was provided to create an attachment." : "لا بيانات تم تقديمها لانشاء مرفق", "No data was provided to create an attachment." : "لا بيانات تم تقديمها لانشاء مرفق",
"Finished" : "اكتمل", "Finished" : "إكتمل",
"To review" : إعادة المراجعة", "To review" : اعادة المراجعة",
"Action needed" : "يحتاج إلى إجراء", "Action needed" : "يحتاج الى اجراء",
"Later" : "لاحقا", "Later" : "لاحقا",
"copy" : "نسخ", "copy" : "أنسخ",
"To do" : "لفعله", "To do" : "لفعله",
"Doing" : "تحت العمل", "Doing" : "تحت العمل",
"Done" : "أُنجز", "Done" : "أُنجز",
"Example Task 3" : "مثال المهمة 3", "Example Task 3" : "مثال المهمة 3",
"Example Task 2" : "مثال المهمة 2", "Example Task 2" : "مثال المهمة 2",
"Example Task 1" : "مثال المهمة 1", "Example Task 1" : "مثال المهمة 1",
"The file was uploaded" : "تم رفع الملف", "The file was uploaded" : "الملف تم رفعه",
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "حجم الملف المرفوع قد تجاوز upload_max_filesize الموجودة في ملف php.ini ", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "حجم الملف الذي تريد ترفيعه أعلى مما MAX_FILE_SIZE يسمح به في واجهة ال HTML.",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "حجم الملف الذي تريد رفعه أعلى من الحد المسموح به في واجهة ال HTML.",
"The file was only partially uploaded" : "الملف قد رُفع جزءا منه فقط", "The file was only partially uploaded" : "الملف قد رُفع جزءا منه فقط",
"No file was uploaded" : "لم يتم رفع أي ملف", "No file was uploaded" : "لم يتم رفع أي ملف",
"Missing a temporary folder" : "المجلد المؤقت غير موجود", "Missing a temporary folder" : "المجلد المؤقت غير موجود",
"Could not write file to disk" : "لم يستطع كتابة ملف للقرص", "Could not write file to disk" : "لم يستطع كتابة ملف للقرص",
"A PHP extension stopped the file upload" : "إضافة البي اچ بي PHP أوقفت رفع الملف", "A PHP extension stopped the file upload" : "اضافة البي اچ بي PHP اوقفت رفع الملف",
"No file uploaded or file size exceeds maximum of %s" : "لم يتم تحميل أي ملف أو أن يتجاوز حجم الملف الحد الأقصى %s",
"Card not found" : "لم يتم العثور على البطاقة ",
"Path is already shared with this card" : "تم مشاركة المسار بالفعل مع هذه البطاقة ",
"Invalid date, date format must be YYYY-MM-DD" : "تاريخ غير صحيح, يجب أن يكون تنسيق التاريخ YYYY-MM-DD",
"Personal planning and team project organization" : "التخطيط الشخصي و تنظيم مشروع الفريق", "Personal planning and team project organization" : "التخطيط الشخصي و تنظيم مشروع الفريق",
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "دك (Deck) هو أداة تنظيم باسلوب كانبان (kanban) تهدف إلى التخطيط الشخصي وتنظيم المشروع للفرق مع نيكست كلاود (Nextcloud).\n- 📥 إضافة مهامك إلى البطاقات وترتيبها\n- 📄 كتابة ملاحظات إضافية باستخدام مارك داون (markdown)\n- 🔖 تعيين تسميات لتنظيم أفضل\n- 👥 شارك مع فريقك أو أصدقائك أو عائلتك\n- 📎 إرفاق الملفات وتضمينها بالوصف المستخدم فيه مارك داون (markdown)\n- 💬 ناقش مع فريقك باستخدام التعليقات\n- ⚡ تتبع التغييرات في تيار النشاط\n- 🚀 اجعل مشروعك منظماً", "Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "دك (Deck) هو أداة تنظيم باسلوب كانبان (kanban) تهدف إلى التخطيط الشخصي وتنظيم المشروع للفرق مع نيكست كلاود (Nextcloud).\n- 📥 إضافة مهامك إلى البطاقات وترتيبها\n- 📄 كتابة ملاحظات إضافية باستخدام مارك داون (markdown)\n- 🔖 تعيين تسميات لتنظيم أفضل\n- 👥 شارك مع فريقك أو أصدقائك أو عائلتك\n- 📎 إرفاق الملفات وتضمينها بالوصف المستخدم فيه مارك داون (markdown)\n- 💬 ناقش مع فريقك باستخدام التعليقات\n- ⚡ تتبع التغييرات في تيار النشاط\n- 🚀 اجعل مشروعك منظماً",
"Card details" : "تفاصيل البطاقة", "Card details" : "تفاصيل البطاقة",
"Add board" : "إضافة لوح",
"Select the board to link to a project" : "تحديد اللوح لربطه بمشروع", "Select the board to link to a project" : "تحديد اللوح لربطه بمشروع",
"Search by board title" : "بحث بواسطة عنوان اللوح", "Search by board title" : "بحث بواسطة عنوان اللوح",
"Select board" : "حدد لوح", "Select board" : "حدد لوح",
"Create a new card" : "أنشى بطاقة جديدة ",
"Select a board" : "حدد لوح", "Select a board" : "حدد لوح",
"Select a list" : "اختر قائمة ",
"Card title" : "عنوان البطاقة ",
"Cancel" : "إلغاء", "Cancel" : "إلغاء",
"Creating the new card …" : "أنشى البطاقة الجديدة ",
"Card \"{card}\" was added to \"{board}\"" : "\"{بطاقة}\" تمت إضافتها في \"{اللوح}\"",
"Open card" : "فتح البطاقة ",
"Close" : "إغلاق",
"Create card" : "أنشى بطاقة ",
"Select a card" : "حدد بطاقة", "Select a card" : "حدد بطاقة",
"Select the card to link to a project" : "حدد البطاقة لربطها بمشروع", "Select the card to link to a project" : "حدد البطاقة لربطها بمشروع",
"Link to card" : "اربط بطاقة", "Link to card" : "اربط بطاقة",
"File already exists" : "الملف موجود مسبقاً", "File already exists" : "الملف موجود مسبقاً",
"A file with the name {filename} already exists." : "ملف باسم {اسم الملف} موجود مسبقًا ",
"Do you want to overwrite it?" : "هل تريد تجاوزه؟", "Do you want to overwrite it?" : "هل تريد تجاوزه؟",
"Overwrite file" : "تجاوز ملف", "Overwrite file" : "تجاوز ملف",
"Keep existing file" : "ابقي الملف الموجود", "Keep existing file" : "ابقي الملف الموجود",
"This board is read only" : "هذا اللوح بوضع القراءة فقط", "This board is read only" : "هذا اللوح بوضع القراءة فقط",
"Drop your files to upload" : "افلت الملفات لرفعها", "Drop your files to upload" : "افلت الملفات لرفعها",
"Archived cards" : "البطاقات المؤرشفة", "Archived cards" : "البطاقات المؤرشفة",
"Add list" : "إضافة قائمة",
"List name" : "قامة اسماء", "List name" : "قامة اسماء",
"Apply filter" : "تطبيق التصفية", "Apply filter" : "تطبيق التصفية",
"Filter by tag" : "تصفية بواسطة الوسم", "Filter by tag" : "تصفية بواسطة الوسم",
"Filter by assigned user" : "تصفية بواسطة المستخدم الموكل اليه", "Filter by assigned user" : "تصفية بواسطة المستخدم الموكل اليه",
"Unassigned" : "غير معيين ", "Filter by due date" : "تصفية بواسطة تأريخ الانجاز",
"Filter by due date" : "تصفية بواسطة تاريخ الإنجاز",
"Overdue" : "تأخر", "Overdue" : "تأخر",
"Next 24 hours" : "ال 24 ساعة القادمة", "Next 24 hours" : "ال 24 ساعة القادمة",
"Next 7 days" : "ال 7 أيام القادمة", "Next 7 days" : "ال 7 ايام القادمة",
"Next 30 days" : "ال 30 يوم القادمة", "Next 30 days" : "ال 30 يوم القادمة",
"No due date" : "لا تاريخ إنجاز", "No due date" : "لا تأريخ انجاز",
"Clear filter" : "ازل التصفية", "Clear filter" : "ازل التصفية",
"Hide archived cards" : "إخفاء البطاقات المؤرشفة ",
"Show archived cards" : "اظهر البطاقات المؤرشفة", "Show archived cards" : "اظهر البطاقات المؤرشفة",
"Toggle compact mode" : "تبديل النمط المضغوط",
"Details" : "التفاصيل", "Details" : "التفاصيل",
"Loading board" : "جارِ تحميل اللوح..", "Loading board" : "اللوح يحمل..",
"No lists available" : "لا يوجد قائمة متاحه ",
"Create a new list to add cards to this board" : "إنشاء قائمة جديدة لإضافة البطاقات على هذا اللوح",
"Board not found" : "اللوح غير موجود", "Board not found" : "اللوح غير موجود",
"Sharing" : "المشاركة", "Sharing" : "المشاركة",
"Tags" : "الوسوم", "Tags" : "الوسوم",
@@ -159,48 +77,30 @@ OC.L10N.register(
"Deleted lists" : "القوائم المحذوفة", "Deleted lists" : "القوائم المحذوفة",
"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 …" : "ابحث عن أعضاء، مجموعات أو حلقات ...", "Searching for users, groups and circles …" : "ابحث عن اعضاء، مجموعات أو حلقات ...",
"No participants found" : "لم يتم العثور على مشاركين",
"Board owner" : "منشئ اللوح", "Board owner" : "منشئ اللوح",
"(Group)" : "(مجموعة)", "(Group)" : "(مجموعة)",
"(Circle)" : "(دائرة)", "(Circle)" : "(دائرة)",
"Can edit" : "يمكن تعديله", "Can edit" : "يمكن تعديله",
"Can share" : "يمكن مشاركته", "Can share" : "يمكن مشاركته",
"Can manage" : "يمكن إدارته", "Can manage" : "يمكن ادارته",
"Delete" : "حذف ", "Delete" : "حذف ",
"Failed to create share with {displayName}" : "فشل في إنشاء المشاركة مع {displayName}",
"Add a new list" : "اضف قائمة جديدة",
"Archive all cards" : "أرشفة جميع البطاقات ",
"Delete list" : "حذف القائمة", "Delete list" : "حذف القائمة",
"Add card" : "إضافة بطاقة", "Add card" : "إضافة بطاقة",
"Archive all cards in this list" : "أرشفة جميع البطاقات في القائمة ",
"Add a new card" : "إضافة بطاقة جديدة", "Add a new card" : "إضافة بطاقة جديدة",
"Card name" : "اسم البطاقة ",
"List deleted" : "القائمة حٌذفت ",
"Edit" : "تعديل", "Edit" : "تعديل",
"Add a new tag" : "إضافة وسم جديد", "Add a new tag" : "إضافة وسم جديد",
"title and color value must be provided" : "العنوان و قيمة اللون يجب تقديمها ", "title and color value must be provided" : "العنوان و قيمة اللون يجب تقديمها ",
"Board name" : "اسم اللوح",
"Members" : "الاعضاء", "Members" : "الاعضاء",
"Upload new files" : "رفع ملفات جديدة",
"Share from Files" : "مشاركة من الملفات",
"Add this attachment" : "إضافة هذا المرفق", "Add this attachment" : "إضافة هذا المرفق",
"Show in Files" : "عرض في الملفات ",
"Unshare file" : "عدم مشاركة الملف ",
"Delete Attachment" : "مسح المرفق", "Delete Attachment" : "مسح المرفق",
"Restore Attachment" : "إستعادة المرفق", "Restore Attachment" : "استعادة المرفق",
"File to share" : "ملف للمشاركة",
"Invalid path selected" : "تم تحديد مسار غير صحيح",
"Open in sidebar view" : "فتح في الشريط الجانبي ",
"Open in bigger view" : "فتح في نافذة أكبر ",
"Attachments" : "المرفقات", "Attachments" : "المرفقات",
"Comments" : "تعليقات", "Comments" : "تعليقات",
"Modified" : "عُدل", "Modified" : "عُدل",
"Created" : "أُنشئ", "Created" : "أُنشئ",
"The title cannot be empty." : "لا يمكن ترك العنوان فارغًا.",
"No comments yet. Begin the discussion!" : "لا يوجد تعليقات بعد, ابدأ النقاش الآن!", "No comments yet. Begin the discussion!" : "لا يوجد تعليقات بعد, ابدأ النقاش الآن!",
"Failed to load comments" : "فشل في تحميل التعليقات ",
"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" : "انسب الى المستخدمين،المجموعات،الدوائر",
@@ -208,78 +108,40 @@ OC.L10N.register(
"Due date" : "تاريخ الانجاز", "Due date" : "تاريخ الانجاز",
"Set a due date" : "تعيين تاريخ الانجاز", "Set a due date" : "تعيين تاريخ الانجاز",
"Remove due date" : "ازالة تاريخ الانجاز", "Remove due date" : "ازالة تاريخ الانجاز",
"Select Date" : "اختر التاريخ ",
"Save" : "حفظ", "Save" : "حفظ",
"The comment cannot be empty." : "التعليق لايمكن ان يكون فارغا.", "The comment cannot be empty." : "التعليق لايمكن ان يكون فارغا.",
"The comment cannot be longer than 1000 characters." : "التعليق لا يمكن ان يكون اطول من 1000 حرف.", "The comment cannot be longer than 1000 characters." : "التعليق لا يمكن ان يكون اطول من 1000 حرف.",
"In reply to" : "يقوم بالرد على", "In reply to" : "يقوم بالرد على",
"Cancel reply" : "إلغاء الرد",
"Reply" : "رد", "Reply" : "رد",
"Update" : "تحديث", "Update" : "تحديث",
"Description" : "الوصف", "Description" : "الوصف",
"(Unsaved)" : "(غير محفوظ)", "(Unsaved)" : "(غير محفوظ)",
"(Saving…)" : "(يُحفظ..)", "(Saving…)" : "(يُحفظ..)",
"Formatting help" : "مساعدة التنسيق",
"Edit description" : "تعديل الوصف", "Edit description" : "تعديل الوصف",
"View description" : "إظهار الوصف", "View description" : "إظهار الوصف",
"Add Attachment" : "أضف ملحق", "Add Attachment" : "أضف ملحق",
"Write a description …" : "كتابة وصف...",
"Choose attachment" : "اختيار مرفق", "Choose attachment" : "اختيار مرفق",
"(group)" : "(مجموعة)", "(group)" : "(مجموعة)",
"{count} comments, {unread} unread" : "{عدد} التعليقات، {غير مقروءة} غير مقروءة", "(circle)" : "(دائرة)",
"Assign to me" : "ينسب لي", "Assign to me" : "ينسب لي",
"Unassign myself" : "إلغاء تعييني ",
"Move card" : "حرك البطاقة", "Move card" : "حرك البطاقة",
"Unarchive card" : "إلغاء أرشفة البطاقة ",
"Archive card" : "أرشفة البطاقة",
"Delete card" : "حذف البطاقة", "Delete card" : "حذف البطاقة",
"Move card to another board" : "حرك البطاقة الى لوح اخر", "Move card to another board" : "حرك البطاقة الى لوح اخر",
"Card deleted" : "البطاقة حٌذفت ",
"seconds ago" : "ثوانٍ مضت", "seconds ago" : "ثوانٍ مضت",
"All boards" : "جميع الالواح", "All boards" : "جميع الالواح",
"Archived boards" : "الالواح المؤرشفة", "Archived boards" : "الالواح المؤرشفة",
"Shared with you" : "تم مشاركتها معك", "Shared with you" : "شورك معك",
"Use bigger card view" : "استخدام بطاقة عرض أكبر ", "Limit deck usage of groups" : "استخدام دك Deck محدود للمجاميع",
"Show boards in calendar/tasks" : "إظهار اللوح في التقويم/المهام",
"Limit deck usage of groups" : "تقييد استخدام 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" : "تفاصيل لوح", "Board details" : "تفاصيل لوح",
"Edit board" : "تعديل اللوح", "Edit board" : "تعديل اللوح",
"Clone board" : "استنسخ اللوح", "An error occurred" : "طرأ هناك خطأ",
"Unarchive board" : "إلغاء أرشفة اللوح",
"Archive board" : "أرشفة اللوح ",
"Turn on due date reminders" : "تفعيل التذكيرات للموعد المحدد ",
"Turn off due date reminders" : "إيقاف تشغيل التذكيرات للموعد المحددد",
"Due date reminders" : "تذكيرات الموعد المحدد ",
"All cards" : "جميع البطاقات ",
"Assigned cards" : "البطاقات المخصصة",
"No notifications" : "لا توجد إشعارات",
"Delete board" : "مسح اللوح",
"Board {0} deleted" : "اللوح {0} تم مسحه",
"Only assigned cards" : "البطاقات المخصصة فقط",
"No reminder" : "لا يوجد تذكير ",
"An error occurred" : "حدث خطأ",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "هل انت متأكد تريد مسح اللوح {title}؟ هذا سوف يمسح جميع بيانات هذا اللوح.", "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?" : "مسح اللوح؟",
"Loading filtered view" : "جارِ تحميل التصفية ",
"Today" : "اليوم", "Today" : "اليوم",
"Tomorrow" : "غدا", "Tomorrow" : "غدا",
"This week" : "هذا الأسبوع", "This week" : "هذا الأسبوع",
"No due" : "غير محدد",
"Search for {searchQuery} in all boards" : "البحث عن {searchQuery} في جميع اللوح",
"No results found" : "لا يتم العثور على أي نتائج ",
"No upcoming cards" : "لا يوجد بطاقات قادمة ",
"upcoming cards" : "البطاقات القادمة",
"Link to a board" : "ربط بلوح", "Link to a board" : "ربط بلوح",
"Link to a card" : "ربط ببطاقة", "Link to a card" : "ربط ببطاقة",
"Create a card" : "أنشى بطاقة ", "Something went wrong" : "شيئا ما خاطئ"
"Message from {author} in {conversationName}" : "رسالة من {author} في {conversationName}",
"Something went wrong" : "حدث خطأ ما",
"Failed to upload {name}" : "فشل في رفع {اسم}",
"Maximum file size of {size} exceeded" : " تجاوز الملف الحد الاقصى {size} بالحجم المسموح ",
"Error creating the share" : "خطأ في إنشاء المشاركة",
"Share with a Deck card" : "مشاركة مع بطاقة Deck",
"Share {file} with a Deck card" : "مشاركة الملف {file} مع بطاقة Deck",
"Share" : "مشاركة "
}, },
"nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;"); "nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;");

View File

@@ -7,148 +7,66 @@
"{user} has restored the board {board}" : "{user} قام باسترجاع اللوح {board}", "{user} has restored the board {board}" : "{user} قام باسترجاع اللوح {board}",
"You have shared the board {board} with {acl}" : "قمت بمشاركة اللوح {board} مع {acl}", "You have shared the board {board} with {acl}" : "قمت بمشاركة اللوح {board} مع {acl}",
"{user} has shared the board {board} with {acl}" : "{user} قام بمشاركة اللوح {board} مع {acl}", "{user} has shared the board {board} with {acl}" : "{user} قام بمشاركة اللوح {board} مع {acl}",
"You have removed {acl} from the board {board}" : "قمت بإزالة {acl} من اللوح {board}", "You have removed {acl} from the board {board}" : "قمت بازالة {acl} من اللوح {board}",
"{user} has removed {acl} from the board {board}" : "{user} قام بازالة {acl} من اللوح {board}", "{user} has removed {acl} from the board {board}" : "{user} قام بازالة {acl} من اللوح {board}",
"You have renamed the board {before} to {board}" : "قمت بإعادة تسمية اللوح من {before} الى {board}", "You have renamed the board {before} to {board}" : "قمت باعادة تسمية اللوح من {before} الى {board}",
"{user} has renamed the board {before} to {board}" : "{user} قام بإعادة تسمية اللوح من {before} الى {board}", "{user} has renamed the board {before} to {board}" : "{user} قام باعادة تسمية اللوح من {before} الى {board}",
"You have archived the board {board}" : "لقد ارشفت اللوح {board}", "You have archived the board {board}" : "لقد ارشفت اللوح {board}",
"{user} has archived the board {before}" : "{user} قام بأرشفة اللوح {before}", "{user} has archived the board {before}" : "{user} قام بأرشفة اللوح {before}",
"You have unarchived the board {board}" : "قمت بالغاء ارشفة اللوح {board}", "You have unarchived the board {board}" : "قمت بالغاء ارشفة اللوح {board}",
"{user} has unarchived the board {before}" : "{user} قام بالغاء ارشفة اللوح {before}", "{user} has unarchived the board {before}" : "{user} قام بالغاء ارشفة اللوح {before}",
"You have created a new list {stack} on board {board}" : "لقد قمت بانشاء قائمة جديدة {stack} على اللوح {board}",
"{user} has created a new list {stack} on board {board}" : "{user} قام بانشاء قائمة جديدة {stack} على اللوح {board}",
"You have renamed list {before} to {stack} on board {board}" : "قمت باعادة تسمية القائمة من {before} إلى {stack} على اللوح {board}",
"{user} has renamed list {before} to {stack} on board {board}" : "{user} قام باعادة تسمية القائمة {before} إلى {stack} على اللوح {board}",
"You have deleted list {stack} on board {board}" : "قمت بمسح القائمة {stack} على اللوح {board}",
"{user} has deleted list {stack} on board {board}" : "{user} قام بمسح القائمة {stack} على اللوح {board}",
"You have created card {card} in list {stack} on board {board}" : "لقد قمت بانشاء بطاقة {card} في القائمة {stack} على اللوح {board}",
"{user} has created card {card} in list {stack} on board {board}" : "{user} قام بانشاء بطاقة {card} في القائمة {stack} على اللوح {board}",
"You have deleted card {card} in list {stack} on board {board}" : "قمت بمسح بطاقة {card} في القائمة {stack} على اللوح {board}",
"{user} has deleted card {card} in list {stack} on board {board}" : "{user} قام بحذف بطاقة {card} في القائمة {stack} على اللوح {board}",
"You have renamed the card {before} to {card}" : "قمت بإعادة تسمية اللوح من {before} إلى {card}",
"{user} has renamed the card {before} to {card}" : "{user} قام بإعادة تسمية اللوح من {before} إلى {card}",
"You have added a description to card {card} in list {stack} on board {board}" : "قمت بإضافة وصف إلى البطاقة {card} في القائمة {stack} على اللوح {board}",
"{user} has added a description to card {card} in list {stack} on board {board}" : "{user} قام بإضافة وصف إلى البطاقة {card} في القائمة {stack} على اللوح {board}",
"You have updated the description of card {card} in list {stack} on board {board}" : "قمت بتحديث الوصف إلى البطاقة {card} في القائمة {stack} على اللوح {board}",
"{user} has updated the description of the card {card} in list {stack} on board {board}" : "{user} قام بتحديث الوصف إلى البطاقة {card} في القائمة {stack} على اللوح {board}",
"You have archived card {card} in list {stack} on board {board}" : "لقد قمت بأرشفة بطاقة {card} في القائمة {stack} على اللوح {board}",
"{user} has archived card {card} in list {stack} on board {board}" : "{user} قام بأرشفة بطاقة {card} في القائمة {stack} على اللوح {board}",
"You have unarchived card {card} in list {stack} on board {board}" : "لديك بطاقة غير مؤرشفة {card} في القائمة {stack} على اللوح {board}",
"{user} has unarchived card {card} in list {stack} on board {board}" : "{user} لديه بطاقة غير مؤرشفة {card} في القائمة {stack} على اللوح {board}",
"You have removed the due date of card {card}" : "قمت بإزالة التاريخ المحدد من البطاقة {card}",
"{user} has removed the due date of card {card}" : "{user} قام بإزالة التاريخ المحدد من البطاقة {card}",
"You have set the due date of card {card} to {after}" : "قمت بتعيين التاريخ المحدد للبطاقة {card} إلى {after}",
"{user} has set the due date of card {card} to {after}" : "{user} قام بتعيين التاريخ المحدد للبطاقة {card} إلى {after}",
"You have updated the due date of card {card} to {after}" : "قمت بتحديث التاريخ المحدد للبطاقة {card} إلى {after}",
"{user} has updated the due date of card {card} to {after}" : "{user} قام بتحديث التاريخ المحدد للبطاقة {card} إلى {after}",
"You have added the tag {label} to card {card} in list {stack} on board {board}" : "قمت بإضافة وسم {label} إلى البطاقة {card} في القائمة {stack} على اللوح {board}",
"{user} has added the tag {label} to card {card} in list {stack} on board {board}" : "{user} قام بإضافة وسم {label} إلى البطاقة {card} في القائمة {stack} على اللوح {board}",
"You have removed the tag {label} from card {card} in list {stack} on board {board}" : "قمت بإزالة وسم {label} من البطاقة {card} في القائمة {stack} على اللوح {board}",
"{user} has removed the tag {label} from card {card} in list {stack} on board {board}" : "{user} قام بإزالة وسم {label} من البطاقة {card} في القائمة {stack} على اللوح {board}",
"You have assigned {assigneduser} to card {card} on board {board}" : "قمت بتكليف {assigneduser} في بطاقة {card} على اللوح {board}",
"{user} has assigned {assigneduser} to card {card} on board {board}" : "{user} قام بتكليف {assigneduser} في بطاقة {card} على اللوح {board}",
"You have unassigned {assigneduser} from card {card} on board {board}" : "لقد إلغيت تكليف {assigneduser} من البطاقة {card} على اللوح {board}",
"{user} has unassigned {assigneduser} from card {card} on board {board}" : "{user} الغى تكليف {assigneduser} من البطاقة {card} على اللوح {board}",
"You have moved the card {card} from list {stackBefore} to {stack}" : " قمت بنقل البطاقة {card} من القائمة {stackBefore} إلى {stack}",
"{user} has moved the card {card} from list {stackBefore} to {stack}" : "{user} قام بنقل البطاقة {card} من القائمة {stackBefore} إلى {stack}",
"You have added the attachment {attachment} to card {card}" : "قمت بإضافة المرفق {attachment} إلى البطاقة {card}",
"{user} has added the attachment {attachment} to card {card}" : "{user} قام بإضافة المرفق {attachment} إلى البطاقة {card}",
"You have updated the attachment {attachment} on card {card}" : "قمت بتحديث المرفق {attachment} على البطاقة {card}",
"{user} has updated the attachment {attachment} on card {card}" : "{user} قام بتحديث المرفق {attachment} على البطاقة {card}",
"You have deleted the attachment {attachment} from card {card}" : "قمت بحذف المرفق {attachment} من البطاقة {card}",
"{user} has deleted the attachment {attachment} from card {card}" : "{user} قام بحذف المرفق {attachment} من البطاقة {card}",
"You have restored the attachment {attachment} to card {card}" : "قمت باسترجاع المرفق {attachment} إلى البطاقة {card}",
"{user} has restored the attachment {attachment} to card {card}" : "{user} قام باسترجاع المرفق {attachment} إلى البطاقة {card}",
"You have commented on card {card}" : "لقد علقت على البطاقة {بطاقة}",
"{user} has commented on card {card}" : "{مستخدم} علق على بطاقة {بطاقة}",
"A <strong>card description</strong> inside the Deck app has been changed" : "<strong>وصف البطاقة</strong>داخل تطبيق Deck قد تغيرت.",
"Deck" : "Deck",
"Changes in the <strong>Deck app</strong>" : "تغييرات في <strong>تطبيق Deck</strong> ",
"A <strong>comment</strong> was created on a card" : "<strong>تعليق</strong> تم إنشاؤه على بطاقة",
"Upcoming cards" : "البطاقات القادمة",
"Personal" : "شخصي", "Personal" : "شخصي",
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "البطاقة \"%s\" على \"%s\" كُلفت بها من قبل %s.",
"{user} has assigned the card {deck-card} on {deck-board} to you." : "{user} قام بتكليف البطاقة {deck-board} على {deck-board} لك",
"The card \"%s\" on \"%s\" has reached its due date." : "وصلت بطاقة \"%s\" على %s\" الموعد المحدد ",
"The card {deck-card} on {deck-board} has reached its due date." : "تجاوزت البطاقة {deck-card} على {deck-board} التاريخ المحدد.",
"%s has mentioned you in a comment on \"%s\"." : "%s أشار إليك في تعليق على \"%s\".",
"{user} has mentioned you in a comment on {deck-card}." : "{user} أشار إليك في تعليق على {deck-card}",
"The board \"%s\" has been shared with you by %s." : "تمت مشاركة اللوح \"%s\" معك من قبل %s.",
"{user} has shared {deck-board} with you." : "{user} قام بمشاركة {deck-board} معك.",
"Card comments" : "تعليقات البطاقة ",
"%s on %s" : "%s على %s",
"No data was provided to create an attachment." : "لا بيانات تم تقديمها لانشاء مرفق", "No data was provided to create an attachment." : "لا بيانات تم تقديمها لانشاء مرفق",
"Finished" : "اكتمل", "Finished" : "إكتمل",
"To review" : إعادة المراجعة", "To review" : اعادة المراجعة",
"Action needed" : "يحتاج إلى إجراء", "Action needed" : "يحتاج الى اجراء",
"Later" : "لاحقا", "Later" : "لاحقا",
"copy" : "نسخ", "copy" : "أنسخ",
"To do" : "لفعله", "To do" : "لفعله",
"Doing" : "تحت العمل", "Doing" : "تحت العمل",
"Done" : "أُنجز", "Done" : "أُنجز",
"Example Task 3" : "مثال المهمة 3", "Example Task 3" : "مثال المهمة 3",
"Example Task 2" : "مثال المهمة 2", "Example Task 2" : "مثال المهمة 2",
"Example Task 1" : "مثال المهمة 1", "Example Task 1" : "مثال المهمة 1",
"The file was uploaded" : "تم رفع الملف", "The file was uploaded" : "الملف تم رفعه",
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "حجم الملف المرفوع قد تجاوز upload_max_filesize الموجودة في ملف php.ini ", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "حجم الملف الذي تريد ترفيعه أعلى مما MAX_FILE_SIZE يسمح به في واجهة ال HTML.",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "حجم الملف الذي تريد رفعه أعلى من الحد المسموح به في واجهة ال HTML.",
"The file was only partially uploaded" : "الملف قد رُفع جزءا منه فقط", "The file was only partially uploaded" : "الملف قد رُفع جزءا منه فقط",
"No file was uploaded" : "لم يتم رفع أي ملف", "No file was uploaded" : "لم يتم رفع أي ملف",
"Missing a temporary folder" : "المجلد المؤقت غير موجود", "Missing a temporary folder" : "المجلد المؤقت غير موجود",
"Could not write file to disk" : "لم يستطع كتابة ملف للقرص", "Could not write file to disk" : "لم يستطع كتابة ملف للقرص",
"A PHP extension stopped the file upload" : "إضافة البي اچ بي PHP أوقفت رفع الملف", "A PHP extension stopped the file upload" : "اضافة البي اچ بي PHP اوقفت رفع الملف",
"No file uploaded or file size exceeds maximum of %s" : "لم يتم تحميل أي ملف أو أن يتجاوز حجم الملف الحد الأقصى %s",
"Card not found" : "لم يتم العثور على البطاقة ",
"Path is already shared with this card" : "تم مشاركة المسار بالفعل مع هذه البطاقة ",
"Invalid date, date format must be YYYY-MM-DD" : "تاريخ غير صحيح, يجب أن يكون تنسيق التاريخ YYYY-MM-DD",
"Personal planning and team project organization" : "التخطيط الشخصي و تنظيم مشروع الفريق", "Personal planning and team project organization" : "التخطيط الشخصي و تنظيم مشروع الفريق",
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "دك (Deck) هو أداة تنظيم باسلوب كانبان (kanban) تهدف إلى التخطيط الشخصي وتنظيم المشروع للفرق مع نيكست كلاود (Nextcloud).\n- 📥 إضافة مهامك إلى البطاقات وترتيبها\n- 📄 كتابة ملاحظات إضافية باستخدام مارك داون (markdown)\n- 🔖 تعيين تسميات لتنظيم أفضل\n- 👥 شارك مع فريقك أو أصدقائك أو عائلتك\n- 📎 إرفاق الملفات وتضمينها بالوصف المستخدم فيه مارك داون (markdown)\n- 💬 ناقش مع فريقك باستخدام التعليقات\n- ⚡ تتبع التغييرات في تيار النشاط\n- 🚀 اجعل مشروعك منظماً", "Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "دك (Deck) هو أداة تنظيم باسلوب كانبان (kanban) تهدف إلى التخطيط الشخصي وتنظيم المشروع للفرق مع نيكست كلاود (Nextcloud).\n- 📥 إضافة مهامك إلى البطاقات وترتيبها\n- 📄 كتابة ملاحظات إضافية باستخدام مارك داون (markdown)\n- 🔖 تعيين تسميات لتنظيم أفضل\n- 👥 شارك مع فريقك أو أصدقائك أو عائلتك\n- 📎 إرفاق الملفات وتضمينها بالوصف المستخدم فيه مارك داون (markdown)\n- 💬 ناقش مع فريقك باستخدام التعليقات\n- ⚡ تتبع التغييرات في تيار النشاط\n- 🚀 اجعل مشروعك منظماً",
"Card details" : "تفاصيل البطاقة", "Card details" : "تفاصيل البطاقة",
"Add board" : "إضافة لوح",
"Select the board to link to a project" : "تحديد اللوح لربطه بمشروع", "Select the board to link to a project" : "تحديد اللوح لربطه بمشروع",
"Search by board title" : "بحث بواسطة عنوان اللوح", "Search by board title" : "بحث بواسطة عنوان اللوح",
"Select board" : "حدد لوح", "Select board" : "حدد لوح",
"Create a new card" : "أنشى بطاقة جديدة ",
"Select a board" : "حدد لوح", "Select a board" : "حدد لوح",
"Select a list" : "اختر قائمة ",
"Card title" : "عنوان البطاقة ",
"Cancel" : "إلغاء", "Cancel" : "إلغاء",
"Creating the new card …" : "أنشى البطاقة الجديدة ",
"Card \"{card}\" was added to \"{board}\"" : "\"{بطاقة}\" تمت إضافتها في \"{اللوح}\"",
"Open card" : "فتح البطاقة ",
"Close" : "إغلاق",
"Create card" : "أنشى بطاقة ",
"Select a card" : "حدد بطاقة", "Select a card" : "حدد بطاقة",
"Select the card to link to a project" : "حدد البطاقة لربطها بمشروع", "Select the card to link to a project" : "حدد البطاقة لربطها بمشروع",
"Link to card" : "اربط بطاقة", "Link to card" : "اربط بطاقة",
"File already exists" : "الملف موجود مسبقاً", "File already exists" : "الملف موجود مسبقاً",
"A file with the name {filename} already exists." : "ملف باسم {اسم الملف} موجود مسبقًا ",
"Do you want to overwrite it?" : "هل تريد تجاوزه؟", "Do you want to overwrite it?" : "هل تريد تجاوزه؟",
"Overwrite file" : "تجاوز ملف", "Overwrite file" : "تجاوز ملف",
"Keep existing file" : "ابقي الملف الموجود", "Keep existing file" : "ابقي الملف الموجود",
"This board is read only" : "هذا اللوح بوضع القراءة فقط", "This board is read only" : "هذا اللوح بوضع القراءة فقط",
"Drop your files to upload" : "افلت الملفات لرفعها", "Drop your files to upload" : "افلت الملفات لرفعها",
"Archived cards" : "البطاقات المؤرشفة", "Archived cards" : "البطاقات المؤرشفة",
"Add list" : "إضافة قائمة",
"List name" : "قامة اسماء", "List name" : "قامة اسماء",
"Apply filter" : "تطبيق التصفية", "Apply filter" : "تطبيق التصفية",
"Filter by tag" : "تصفية بواسطة الوسم", "Filter by tag" : "تصفية بواسطة الوسم",
"Filter by assigned user" : "تصفية بواسطة المستخدم الموكل اليه", "Filter by assigned user" : "تصفية بواسطة المستخدم الموكل اليه",
"Unassigned" : "غير معيين ", "Filter by due date" : "تصفية بواسطة تأريخ الانجاز",
"Filter by due date" : "تصفية بواسطة تاريخ الإنجاز",
"Overdue" : "تأخر", "Overdue" : "تأخر",
"Next 24 hours" : "ال 24 ساعة القادمة", "Next 24 hours" : "ال 24 ساعة القادمة",
"Next 7 days" : "ال 7 أيام القادمة", "Next 7 days" : "ال 7 ايام القادمة",
"Next 30 days" : "ال 30 يوم القادمة", "Next 30 days" : "ال 30 يوم القادمة",
"No due date" : "لا تاريخ إنجاز", "No due date" : "لا تأريخ انجاز",
"Clear filter" : "ازل التصفية", "Clear filter" : "ازل التصفية",
"Hide archived cards" : "إخفاء البطاقات المؤرشفة ",
"Show archived cards" : "اظهر البطاقات المؤرشفة", "Show archived cards" : "اظهر البطاقات المؤرشفة",
"Toggle compact mode" : "تبديل النمط المضغوط",
"Details" : "التفاصيل", "Details" : "التفاصيل",
"Loading board" : "جارِ تحميل اللوح..", "Loading board" : "اللوح يحمل..",
"No lists available" : "لا يوجد قائمة متاحه ",
"Create a new list to add cards to this board" : "إنشاء قائمة جديدة لإضافة البطاقات على هذا اللوح",
"Board not found" : "اللوح غير موجود", "Board not found" : "اللوح غير موجود",
"Sharing" : "المشاركة", "Sharing" : "المشاركة",
"Tags" : "الوسوم", "Tags" : "الوسوم",
@@ -157,48 +75,30 @@
"Deleted lists" : "القوائم المحذوفة", "Deleted lists" : "القوائم المحذوفة",
"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 …" : "ابحث عن أعضاء، مجموعات أو حلقات ...", "Searching for users, groups and circles …" : "ابحث عن اعضاء، مجموعات أو حلقات ...",
"No participants found" : "لم يتم العثور على مشاركين",
"Board owner" : "منشئ اللوح", "Board owner" : "منشئ اللوح",
"(Group)" : "(مجموعة)", "(Group)" : "(مجموعة)",
"(Circle)" : "(دائرة)", "(Circle)" : "(دائرة)",
"Can edit" : "يمكن تعديله", "Can edit" : "يمكن تعديله",
"Can share" : "يمكن مشاركته", "Can share" : "يمكن مشاركته",
"Can manage" : "يمكن إدارته", "Can manage" : "يمكن ادارته",
"Delete" : "حذف ", "Delete" : "حذف ",
"Failed to create share with {displayName}" : "فشل في إنشاء المشاركة مع {displayName}",
"Add a new list" : "اضف قائمة جديدة",
"Archive all cards" : "أرشفة جميع البطاقات ",
"Delete list" : "حذف القائمة", "Delete list" : "حذف القائمة",
"Add card" : "إضافة بطاقة", "Add card" : "إضافة بطاقة",
"Archive all cards in this list" : "أرشفة جميع البطاقات في القائمة ",
"Add a new card" : "إضافة بطاقة جديدة", "Add a new card" : "إضافة بطاقة جديدة",
"Card name" : "اسم البطاقة ",
"List deleted" : "القائمة حٌذفت ",
"Edit" : "تعديل", "Edit" : "تعديل",
"Add a new tag" : "إضافة وسم جديد", "Add a new tag" : "إضافة وسم جديد",
"title and color value must be provided" : "العنوان و قيمة اللون يجب تقديمها ", "title and color value must be provided" : "العنوان و قيمة اللون يجب تقديمها ",
"Board name" : "اسم اللوح",
"Members" : "الاعضاء", "Members" : "الاعضاء",
"Upload new files" : "رفع ملفات جديدة",
"Share from Files" : "مشاركة من الملفات",
"Add this attachment" : "إضافة هذا المرفق", "Add this attachment" : "إضافة هذا المرفق",
"Show in Files" : "عرض في الملفات ",
"Unshare file" : "عدم مشاركة الملف ",
"Delete Attachment" : "مسح المرفق", "Delete Attachment" : "مسح المرفق",
"Restore Attachment" : "إستعادة المرفق", "Restore Attachment" : "استعادة المرفق",
"File to share" : "ملف للمشاركة",
"Invalid path selected" : "تم تحديد مسار غير صحيح",
"Open in sidebar view" : "فتح في الشريط الجانبي ",
"Open in bigger view" : "فتح في نافذة أكبر ",
"Attachments" : "المرفقات", "Attachments" : "المرفقات",
"Comments" : "تعليقات", "Comments" : "تعليقات",
"Modified" : "عُدل", "Modified" : "عُدل",
"Created" : "أُنشئ", "Created" : "أُنشئ",
"The title cannot be empty." : "لا يمكن ترك العنوان فارغًا.",
"No comments yet. Begin the discussion!" : "لا يوجد تعليقات بعد, ابدأ النقاش الآن!", "No comments yet. Begin the discussion!" : "لا يوجد تعليقات بعد, ابدأ النقاش الآن!",
"Failed to load comments" : "فشل في تحميل التعليقات ",
"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" : "انسب الى المستخدمين،المجموعات،الدوائر",
@@ -206,78 +106,40 @@
"Due date" : "تاريخ الانجاز", "Due date" : "تاريخ الانجاز",
"Set a due date" : "تعيين تاريخ الانجاز", "Set a due date" : "تعيين تاريخ الانجاز",
"Remove due date" : "ازالة تاريخ الانجاز", "Remove due date" : "ازالة تاريخ الانجاز",
"Select Date" : "اختر التاريخ ",
"Save" : "حفظ", "Save" : "حفظ",
"The comment cannot be empty." : "التعليق لايمكن ان يكون فارغا.", "The comment cannot be empty." : "التعليق لايمكن ان يكون فارغا.",
"The comment cannot be longer than 1000 characters." : "التعليق لا يمكن ان يكون اطول من 1000 حرف.", "The comment cannot be longer than 1000 characters." : "التعليق لا يمكن ان يكون اطول من 1000 حرف.",
"In reply to" : "يقوم بالرد على", "In reply to" : "يقوم بالرد على",
"Cancel reply" : "إلغاء الرد",
"Reply" : "رد", "Reply" : "رد",
"Update" : "تحديث", "Update" : "تحديث",
"Description" : "الوصف", "Description" : "الوصف",
"(Unsaved)" : "(غير محفوظ)", "(Unsaved)" : "(غير محفوظ)",
"(Saving…)" : "(يُحفظ..)", "(Saving…)" : "(يُحفظ..)",
"Formatting help" : "مساعدة التنسيق",
"Edit description" : "تعديل الوصف", "Edit description" : "تعديل الوصف",
"View description" : "إظهار الوصف", "View description" : "إظهار الوصف",
"Add Attachment" : "أضف ملحق", "Add Attachment" : "أضف ملحق",
"Write a description …" : "كتابة وصف...",
"Choose attachment" : "اختيار مرفق", "Choose attachment" : "اختيار مرفق",
"(group)" : "(مجموعة)", "(group)" : "(مجموعة)",
"{count} comments, {unread} unread" : "{عدد} التعليقات، {غير مقروءة} غير مقروءة", "(circle)" : "(دائرة)",
"Assign to me" : "ينسب لي", "Assign to me" : "ينسب لي",
"Unassign myself" : "إلغاء تعييني ",
"Move card" : "حرك البطاقة", "Move card" : "حرك البطاقة",
"Unarchive card" : "إلغاء أرشفة البطاقة ",
"Archive card" : "أرشفة البطاقة",
"Delete card" : "حذف البطاقة", "Delete card" : "حذف البطاقة",
"Move card to another board" : "حرك البطاقة الى لوح اخر", "Move card to another board" : "حرك البطاقة الى لوح اخر",
"Card deleted" : "البطاقة حٌذفت ",
"seconds ago" : "ثوانٍ مضت", "seconds ago" : "ثوانٍ مضت",
"All boards" : "جميع الالواح", "All boards" : "جميع الالواح",
"Archived boards" : "الالواح المؤرشفة", "Archived boards" : "الالواح المؤرشفة",
"Shared with you" : "تم مشاركتها معك", "Shared with you" : "شورك معك",
"Use bigger card view" : "استخدام بطاقة عرض أكبر ", "Limit deck usage of groups" : "استخدام دك Deck محدود للمجاميع",
"Show boards in calendar/tasks" : "إظهار اللوح في التقويم/المهام",
"Limit deck usage of groups" : "تقييد استخدام 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" : "تفاصيل لوح", "Board details" : "تفاصيل لوح",
"Edit board" : "تعديل اللوح", "Edit board" : "تعديل اللوح",
"Clone board" : "استنسخ اللوح", "An error occurred" : "طرأ هناك خطأ",
"Unarchive board" : "إلغاء أرشفة اللوح",
"Archive board" : "أرشفة اللوح ",
"Turn on due date reminders" : "تفعيل التذكيرات للموعد المحدد ",
"Turn off due date reminders" : "إيقاف تشغيل التذكيرات للموعد المحددد",
"Due date reminders" : "تذكيرات الموعد المحدد ",
"All cards" : "جميع البطاقات ",
"Assigned cards" : "البطاقات المخصصة",
"No notifications" : "لا توجد إشعارات",
"Delete board" : "مسح اللوح",
"Board {0} deleted" : "اللوح {0} تم مسحه",
"Only assigned cards" : "البطاقات المخصصة فقط",
"No reminder" : "لا يوجد تذكير ",
"An error occurred" : "حدث خطأ",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "هل انت متأكد تريد مسح اللوح {title}؟ هذا سوف يمسح جميع بيانات هذا اللوح.", "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?" : "مسح اللوح؟",
"Loading filtered view" : "جارِ تحميل التصفية ",
"Today" : "اليوم", "Today" : "اليوم",
"Tomorrow" : "غدا", "Tomorrow" : "غدا",
"This week" : "هذا الأسبوع", "This week" : "هذا الأسبوع",
"No due" : "غير محدد",
"Search for {searchQuery} in all boards" : "البحث عن {searchQuery} في جميع اللوح",
"No results found" : "لا يتم العثور على أي نتائج ",
"No upcoming cards" : "لا يوجد بطاقات قادمة ",
"upcoming cards" : "البطاقات القادمة",
"Link to a board" : "ربط بلوح", "Link to a board" : "ربط بلوح",
"Link to a card" : "ربط ببطاقة", "Link to a card" : "ربط ببطاقة",
"Create a card" : "أنشى بطاقة ", "Something went wrong" : "شيئا ما خاطئ"
"Message from {author} in {conversationName}" : "رسالة من {author} في {conversationName}",
"Something went wrong" : "حدث خطأ ما",
"Failed to upload {name}" : "فشل في رفع {اسم}",
"Maximum file size of {size} exceeded" : " تجاوز الملف الحد الاقصى {size} بالحجم المسموح ",
"Error creating the share" : "خطأ في إنشاء المشاركة",
"Share with a Deck card" : "مشاركة مع بطاقة Deck",
"Share {file} with a Deck card" : "مشاركة الملف {file} مع بطاقة Deck",
"Share" : "مشاركة "
},"pluralForm" :"nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;" },"pluralForm" :"nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;"
} }

View File

@@ -211,6 +211,7 @@ OC.L10N.register(
"Write a description …" : "Напишете описание ...", "Write a description …" : "Напишете описание ...",
"Choose attachment" : "Избор на прикачен файл", "Choose attachment" : "Избор на прикачен файл",
"(group)" : "(група)", "(group)" : "(група)",
"(circle)" : "(кръг)",
"Assign to me" : "Зачисляване към мен", "Assign to me" : "Зачисляване към мен",
"Unassign myself" : "Отмяна на зачисляването към мен", "Unassign myself" : "Отмяна на зачисляването към мен",
"Move card" : "Преместване на карта", "Move card" : "Преместване на карта",

View File

@@ -209,6 +209,7 @@
"Write a description …" : "Напишете описание ...", "Write a description …" : "Напишете описание ...",
"Choose attachment" : "Избор на прикачен файл", "Choose attachment" : "Избор на прикачен файл",
"(group)" : "(група)", "(group)" : "(група)",
"(circle)" : "(кръг)",
"Assign to me" : "Зачисляване към мен", "Assign to me" : "Зачисляване към мен",
"Unassign myself" : "Отмяна на зачисляването към мен", "Unassign myself" : "Отмяна на зачисляването към мен",
"Move card" : "Преместване на карта", "Move card" : "Преместване на карта",

View File

@@ -202,6 +202,7 @@ OC.L10N.register(
"Write a description …" : "Escriviu una descripció...", "Write a description …" : "Escriviu una descripció...",
"Choose attachment" : "Triar adjunt", "Choose attachment" : "Triar adjunt",
"(group)" : "(grup)", "(group)" : "(grup)",
"(circle)" : "(cercle)",
"Assign to me" : "Assigna'm a mi", "Assign to me" : "Assigna'm a mi",
"Unassign myself" : "Desasignar a mi mateix", "Unassign myself" : "Desasignar a mi mateix",
"Move card" : "Mou la targeta", "Move card" : "Mou la targeta",

View File

@@ -200,6 +200,7 @@
"Write a description …" : "Escriviu una descripció...", "Write a description …" : "Escriviu una descripció...",
"Choose attachment" : "Triar adjunt", "Choose attachment" : "Triar adjunt",
"(group)" : "(grup)", "(group)" : "(grup)",
"(circle)" : "(cercle)",
"Assign to me" : "Assigna'm a mi", "Assign to me" : "Assigna'm a mi",
"Unassign myself" : "Desasignar a mi mateix", "Unassign myself" : "Desasignar a mi mateix",
"Move card" : "Mou la targeta", "Move card" : "Mou la targeta",

View File

@@ -70,15 +70,9 @@ OC.L10N.register(
"Upcoming cards" : "Nadcházející karty", "Upcoming cards" : "Nadcházející karty",
"Personal" : "Osobní", "Personal" : "Osobní",
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Kartu „%s“ na „%s“ vám přiřadil(a) %s.", "The card \"%s\" on \"%s\" has been assigned to you by %s." : "Kartu „%s“ na „%s“ vám přiřadil(a) %s.",
"{user} has assigned the card {deck-card} on {deck-board} to you." : "{user} vám přiřadil(a) kartu {deck-card} na tabuli {deck-board}.",
"The card \"%s\" on \"%s\" has reached its due date." : "U karty „%s“ z tabule „%s“ nastalo plánované datum dokončení.", "The card \"%s\" on \"%s\" has reached its due date." : "U karty „%s“ z tabule „%s“ nastalo plánované datum dokončení.",
"The card {deck-card} on {deck-board} has reached its due date." : "Karta {deck-card} na tabuli {deck-board} dosáhla data plánovaného dokončení.",
"%s has mentioned you in a comment on \"%s\"." : "%s vás zmínil(a) v komentáři k „%s“.", "%s has mentioned you in a comment on \"%s\"." : "%s vás zmínil(a) v komentáři k „%s“.",
"{user} has mentioned you in a comment on {deck-card}." : "{user} vás zmínil(a) v komentáři na kartě {deck-card}.",
"The board \"%s\" has been shared with you by %s." : "Uživatel %s vám nasdílel(a) tabuli „%s“.", "The board \"%s\" has been shared with you by %s." : "Uživatel %s vám nasdílel(a) tabuli „%s“.",
"{user} has shared {deck-board} with you." : "{user} s vámi sdílel(a) tabuli {deck-board}.",
"Card comments" : "Komentáře v kartách",
"%s on %s" : "%s na %s",
"No data was provided to create an attachment." : "Nebyla poskytnuta žádná data pro vytvoření přílohy.", "No data was provided to create an attachment." : "Nebyla poskytnuta žádná data pro vytvoření přílohy.",
"Finished" : "Dokončeno", "Finished" : "Dokončeno",
"To review" : "K revizi", "To review" : "K revizi",
@@ -102,7 +96,7 @@ OC.L10N.register(
"No file uploaded or file size exceeds maximum of %s" : "Nebyl nahrán žádný soubor nebo jeho velikost přesáhla %s", "No file uploaded or file size exceeds maximum of %s" : "Nebyl nahrán žádný soubor nebo jeho velikost přesáhla %s",
"Card not found" : "Karta nebyla nalezena", "Card not found" : "Karta nebyla nalezena",
"Path is already shared with this card" : "Cesta je již s touto kartou sdílena", "Path is already shared with this card" : "Cesta je již s touto kartou sdílena",
"Invalid date, date format must be YYYY-MM-DD" : "Neplatné datum je třeba, aby formát data byl RRRR-MM-DD", "Invalid date, date format must be YYYY-MM-DD" : "Neplatné datum, formát data musí být RRRR-MM-DD",
"Personal planning and team project organization" : "Osobní plánování a organizování týmového projektu", "Personal planning and team project organization" : "Osobní plánování a organizování týmového projektu",
"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 je nástroj cílený na osobní nebo projektové plánování týmů v Kanban stylu, vestavěný v Nextcloud.\n\n\n- 📥 Zadávejte a uspořádávejte své úkoly do karet\n- 📄 Zapisujte si dodatečné poznámky \n- 🔖 Přiřazujte štítky pro ještě lepší organizaci\n- 👥 Sdílejte se svým týmem, přáteli nebo rodinou\n- 🚀 Dostaňte svůj projekt pod kontrolu", "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 je nástroj cílený na osobní nebo projektové plánování týmů v Kanban stylu, vestavěný v Nextcloud.\n\n\n- 📥 Zadávejte a uspořádávejte své úkoly do karet\n- 📄 Zapisujte si dodatečné poznámky \n- 🔖 Přiřazujte štítky pro ještě lepší organizaci\n- 👥 Sdílejte se svým týmem, přáteli nebo rodinou\n- 🚀 Dostaňte svůj projekt pod kontrolu",
"Card details" : "Podrobnosti o kartě", "Card details" : "Podrobnosti o kartě",
@@ -115,8 +109,8 @@ OC.L10N.register(
"Select a list" : "Vyberte sloupec", "Select a list" : "Vyberte sloupec",
"Card title" : "Název karty", "Card title" : "Název karty",
"Cancel" : "Storno", "Cancel" : "Storno",
"Creating the new card …" : "Vytváření nové karty…", "Creating the new card…" : "Vytváření nové karty…",
"Card \"{card}\" was added to \"{board}\"" : "Karta „{card}“ byla přidána na „{board}“", "\"{card}\" was added to \"{board}\"" : "„{card}“ bylo přidáno do „{board}“",
"Open card" : "Otevřít kartu", "Open card" : "Otevřít kartu",
"Close" : "Zavřít", "Close" : "Zavřít",
"Create card" : "Vytvořit kartu", "Create card" : "Vytvořit kartu",
@@ -191,7 +185,7 @@ OC.L10N.register(
"Delete Attachment" : "Smazat přílohu", "Delete Attachment" : "Smazat přílohu",
"Restore Attachment" : "Obnovit přílohu", "Restore Attachment" : "Obnovit přílohu",
"File to share" : "Soubor ke sdílení", "File to share" : "Soubor ke sdílení",
"Invalid path selected" : "Je vybrán neplatný popis umístění", "Invalid path selected" : "Je vybrána neplatná cesta",
"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", "Attachments" : "Přílohy",
@@ -200,7 +194,6 @@ OC.L10N.register(
"Created" : "Vytvořeno", "Created" : "Vytvořeno",
"The title cannot be empty." : "Nadpis je třeba vyplnit.", "The title cannot be empty." : "Nadpis je třeba vyplnit.",
"No comments yet. Begin the discussion!" : "Zatím bez komentářů. Zahajte diskuzi!", "No comments yet. Begin the discussion!" : "Zatím bez komentářů. Zahajte diskuzi!",
"Failed to load comments" : "Načtení komentářů se nezdařilo",
"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",
@@ -213,7 +206,6 @@ OC.L10N.register(
"The comment cannot be empty." : "Komentář je třeba vyplnit.", "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ů.", "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", "In reply to" : "V odpověď na",
"Cancel reply" : "Zrušit odpověď",
"Reply" : "Odpovědět", "Reply" : "Odpovědět",
"Update" : "Aktualizovat", "Update" : "Aktualizovat",
"Description" : "Popis", "Description" : "Popis",
@@ -226,7 +218,7 @@ OC.L10N.register(
"Write a description …" : "Zadejte popis…", "Write a description …" : "Zadejte popis…",
"Choose attachment" : "Zvolte přílohu", "Choose attachment" : "Zvolte přílohu",
"(group)" : "(skupina)", "(group)" : "(skupina)",
"{count} comments, {unread} unread" : "{count} komentářů, {unread} nepřečtených", "(circle)" : "(okruh)",
"Assign to me" : "Přiřadit mě", "Assign to me" : "Přiřadit mě",
"Unassign myself" : "Zrušit přiřazení sobě", "Unassign myself" : "Zrušit přiřazení sobě",
"Move card" : "Přesunout kartu", "Move card" : "Přesunout kartu",
@@ -266,8 +258,6 @@ OC.L10N.register(
"Tomorrow" : "Zítra", "Tomorrow" : "Zítra",
"This week" : "Tento týden", "This week" : "Tento týden",
"No due" : "Žádný termín", "No due" : "Žádný termín",
"Search for {searchQuery} in all boards" : "Hledat {searchQuery} na všech tabulích",
"No results found" : "Nenalezeny žádné výsledky",
"No upcoming cards" : "Žádné nadcházející karty", "No upcoming cards" : "Žádné nadcházející karty",
"upcoming cards" : "nadcházející karty", "upcoming cards" : "nadcházející karty",
"Link to a board" : "Propojit s tabulí", "Link to a board" : "Propojit s tabulí",

View File

@@ -68,15 +68,9 @@
"Upcoming cards" : "Nadcházející karty", "Upcoming cards" : "Nadcházející karty",
"Personal" : "Osobní", "Personal" : "Osobní",
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Kartu „%s“ na „%s“ vám přiřadil(a) %s.", "The card \"%s\" on \"%s\" has been assigned to you by %s." : "Kartu „%s“ na „%s“ vám přiřadil(a) %s.",
"{user} has assigned the card {deck-card} on {deck-board} to you." : "{user} vám přiřadil(a) kartu {deck-card} na tabuli {deck-board}.",
"The card \"%s\" on \"%s\" has reached its due date." : "U karty „%s“ z tabule „%s“ nastalo plánované datum dokončení.", "The card \"%s\" on \"%s\" has reached its due date." : "U karty „%s“ z tabule „%s“ nastalo plánované datum dokončení.",
"The card {deck-card} on {deck-board} has reached its due date." : "Karta {deck-card} na tabuli {deck-board} dosáhla data plánovaného dokončení.",
"%s has mentioned you in a comment on \"%s\"." : "%s vás zmínil(a) v komentáři k „%s“.", "%s has mentioned you in a comment on \"%s\"." : "%s vás zmínil(a) v komentáři k „%s“.",
"{user} has mentioned you in a comment on {deck-card}." : "{user} vás zmínil(a) v komentáři na kartě {deck-card}.",
"The board \"%s\" has been shared with you by %s." : "Uživatel %s vám nasdílel(a) tabuli „%s“.", "The board \"%s\" has been shared with you by %s." : "Uživatel %s vám nasdílel(a) tabuli „%s“.",
"{user} has shared {deck-board} with you." : "{user} s vámi sdílel(a) tabuli {deck-board}.",
"Card comments" : "Komentáře v kartách",
"%s on %s" : "%s na %s",
"No data was provided to create an attachment." : "Nebyla poskytnuta žádná data pro vytvoření přílohy.", "No data was provided to create an attachment." : "Nebyla poskytnuta žádná data pro vytvoření přílohy.",
"Finished" : "Dokončeno", "Finished" : "Dokončeno",
"To review" : "K revizi", "To review" : "K revizi",
@@ -100,7 +94,7 @@
"No file uploaded or file size exceeds maximum of %s" : "Nebyl nahrán žádný soubor nebo jeho velikost přesáhla %s", "No file uploaded or file size exceeds maximum of %s" : "Nebyl nahrán žádný soubor nebo jeho velikost přesáhla %s",
"Card not found" : "Karta nebyla nalezena", "Card not found" : "Karta nebyla nalezena",
"Path is already shared with this card" : "Cesta je již s touto kartou sdílena", "Path is already shared with this card" : "Cesta je již s touto kartou sdílena",
"Invalid date, date format must be YYYY-MM-DD" : "Neplatné datum je třeba, aby formát data byl RRRR-MM-DD", "Invalid date, date format must be YYYY-MM-DD" : "Neplatné datum, formát data musí být RRRR-MM-DD",
"Personal planning and team project organization" : "Osobní plánování a organizování týmového projektu", "Personal planning and team project organization" : "Osobní plánování a organizování týmového projektu",
"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 je nástroj cílený na osobní nebo projektové plánování týmů v Kanban stylu, vestavěný v Nextcloud.\n\n\n- 📥 Zadávejte a uspořádávejte své úkoly do karet\n- 📄 Zapisujte si dodatečné poznámky \n- 🔖 Přiřazujte štítky pro ještě lepší organizaci\n- 👥 Sdílejte se svým týmem, přáteli nebo rodinou\n- 🚀 Dostaňte svůj projekt pod kontrolu", "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 je nástroj cílený na osobní nebo projektové plánování týmů v Kanban stylu, vestavěný v Nextcloud.\n\n\n- 📥 Zadávejte a uspořádávejte své úkoly do karet\n- 📄 Zapisujte si dodatečné poznámky \n- 🔖 Přiřazujte štítky pro ještě lepší organizaci\n- 👥 Sdílejte se svým týmem, přáteli nebo rodinou\n- 🚀 Dostaňte svůj projekt pod kontrolu",
"Card details" : "Podrobnosti o kartě", "Card details" : "Podrobnosti o kartě",
@@ -113,8 +107,8 @@
"Select a list" : "Vyberte sloupec", "Select a list" : "Vyberte sloupec",
"Card title" : "Název karty", "Card title" : "Název karty",
"Cancel" : "Storno", "Cancel" : "Storno",
"Creating the new card …" : "Vytváření nové karty…", "Creating the new card…" : "Vytváření nové karty…",
"Card \"{card}\" was added to \"{board}\"" : "Karta „{card}“ byla přidána na „{board}“", "\"{card}\" was added to \"{board}\"" : "„{card}“ bylo přidáno do „{board}“",
"Open card" : "Otevřít kartu", "Open card" : "Otevřít kartu",
"Close" : "Zavřít", "Close" : "Zavřít",
"Create card" : "Vytvořit kartu", "Create card" : "Vytvořit kartu",
@@ -189,7 +183,7 @@
"Delete Attachment" : "Smazat přílohu", "Delete Attachment" : "Smazat přílohu",
"Restore Attachment" : "Obnovit přílohu", "Restore Attachment" : "Obnovit přílohu",
"File to share" : "Soubor ke sdílení", "File to share" : "Soubor ke sdílení",
"Invalid path selected" : "Je vybrán neplatný popis umístění", "Invalid path selected" : "Je vybrána neplatná cesta",
"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", "Attachments" : "Přílohy",
@@ -198,7 +192,6 @@
"Created" : "Vytvořeno", "Created" : "Vytvořeno",
"The title cannot be empty." : "Nadpis je třeba vyplnit.", "The title cannot be empty." : "Nadpis je třeba vyplnit.",
"No comments yet. Begin the discussion!" : "Zatím bez komentářů. Zahajte diskuzi!", "No comments yet. Begin the discussion!" : "Zatím bez komentářů. Zahajte diskuzi!",
"Failed to load comments" : "Načtení komentářů se nezdařilo",
"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",
@@ -211,7 +204,6 @@
"The comment cannot be empty." : "Komentář je třeba vyplnit.", "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ů.", "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", "In reply to" : "V odpověď na",
"Cancel reply" : "Zrušit odpověď",
"Reply" : "Odpovědět", "Reply" : "Odpovědět",
"Update" : "Aktualizovat", "Update" : "Aktualizovat",
"Description" : "Popis", "Description" : "Popis",
@@ -224,7 +216,7 @@
"Write a description …" : "Zadejte popis…", "Write a description …" : "Zadejte popis…",
"Choose attachment" : "Zvolte přílohu", "Choose attachment" : "Zvolte přílohu",
"(group)" : "(skupina)", "(group)" : "(skupina)",
"{count} comments, {unread} unread" : "{count} komentářů, {unread} nepřečtených", "(circle)" : "(okruh)",
"Assign to me" : "Přiřadit mě", "Assign to me" : "Přiřadit mě",
"Unassign myself" : "Zrušit přiřazení sobě", "Unassign myself" : "Zrušit přiřazení sobě",
"Move card" : "Přesunout kartu", "Move card" : "Přesunout kartu",
@@ -264,8 +256,6 @@
"Tomorrow" : "Zítra", "Tomorrow" : "Zítra",
"This week" : "Tento týden", "This week" : "Tento týden",
"No due" : "Žádný termín", "No due" : "Žádný termín",
"Search for {searchQuery} in all boards" : "Hledat {searchQuery} na všech tabulích",
"No results found" : "Nenalezeny žádné výsledky",
"No upcoming cards" : "Žádné nadcházející karty", "No upcoming cards" : "Žádné nadcházející karty",
"upcoming cards" : "nadcházející karty", "upcoming cards" : "nadcházející karty",
"Link to a board" : "Propojit s tabulí", "Link to a board" : "Propojit s tabulí",

View File

@@ -174,6 +174,7 @@ OC.L10N.register(
"Write a description …" : "Tilføj en beskrivelse...", "Write a description …" : "Tilføj en beskrivelse...",
"Choose attachment" : "Vælg en vedhæftning", "Choose attachment" : "Vælg en vedhæftning",
"(group)" : "(gruppe)", "(group)" : "(gruppe)",
"(circle)" : "(cirkel)",
"Assign to me" : "Tildel til mig", "Assign to me" : "Tildel til mig",
"Unassign myself" : "Fjern mig selv", "Unassign myself" : "Fjern mig selv",
"Move card" : "Flyt kort", "Move card" : "Flyt kort",

View File

@@ -172,6 +172,7 @@
"Write a description …" : "Tilføj en beskrivelse...", "Write a description …" : "Tilføj en beskrivelse...",
"Choose attachment" : "Vælg en vedhæftning", "Choose attachment" : "Vælg en vedhæftning",
"(group)" : "(gruppe)", "(group)" : "(gruppe)",
"(circle)" : "(cirkel)",
"Assign to me" : "Tildel til mig", "Assign to me" : "Tildel til mig",
"Unassign myself" : "Fjern mig selv", "Unassign myself" : "Fjern mig selv",
"Move card" : "Flyt kort", "Move card" : "Flyt kort",

View File

@@ -70,15 +70,9 @@ OC.L10N.register(
"Upcoming cards" : "Anstehende Karten", "Upcoming cards" : "Anstehende 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 {deck-card} on {deck-board} to you." : "{user} hat Dir die Karte {deck-card} auf {deck-board} zugewiesen.",
"The card \"%s\" on \"%s\" has reached its due date." : "Die Karte \"%s\" in \"%s\" ist überfällig.", "The card \"%s\" on \"%s\" has reached its due date." : "Die Karte \"%s\" in \"%s\" ist überfällig.",
"The card {deck-card} on {deck-board} has reached its due date." : "Die Karte {deck-card} in {deck-board} ist überfällig.",
"%s has mentioned you in a comment on \"%s\"." : "%s hat Dich in einem Kommentar zu \"%s\" erwähnt.", "%s has mentioned you in a comment on \"%s\"." : "%s hat Dich in einem Kommentar zu \"%s\" erwähnt.",
"{user} has mentioned you in a comment on {deck-card}." : "{user} hat Dich in einem Kommentar zu {deck-card} erwähnt.",
"The board \"%s\" has been shared with you by %s." : "Das Board \"%s\" wurde von %s mit Dir geteilt.", "The board \"%s\" has been shared with you by %s." : "Das Board \"%s\" wurde von %s mit Dir geteilt.",
"{user} has shared {deck-board} with you." : "{user} hat das Board {deck-board} mit Dir geteilt.",
"Card comments" : "Kommentare zur Karte",
"%s on %s" : "%s von %s",
"No data was provided to create an attachment." : "Es wurden keine Daten zum Erstellen eines Anhangs bereitgestellt.", "No data was provided to create an attachment." : "Es wurden keine Daten zum Erstellen eines Anhangs bereitgestellt.",
"Finished" : "Abgeschlossen", "Finished" : "Abgeschlossen",
"To review" : "Zu überprüfen", "To review" : "Zu überprüfen",
@@ -115,8 +109,8 @@ OC.L10N.register(
"Select a list" : "Eine Liste auswählen", "Select a list" : "Eine Liste auswählen",
"Card title" : "Titel der Karte", "Card title" : "Titel der Karte",
"Cancel" : "Abbrechen", "Cancel" : "Abbrechen",
"Creating the new card …" : "Neue Karte wird erstellt …", "Creating the new card…" : "Neue Karte wird erstellt …",
"Card \"{card}\" was added to \"{board}\"" : "Karte \"{card}\" wurde \"{board}\" hinzugefügt", "\"{card}\" was added to \"{board}\"" : "\"{card}\" wurde \"{board}\" hinzugefügt",
"Open card" : "Karte öffnen", "Open card" : "Karte öffnen",
"Close" : "Schließen", "Close" : "Schließen",
"Create card" : "Karte erstellen", "Create card" : "Karte erstellen",
@@ -200,7 +194,6 @@ OC.L10N.register(
"Created" : "Erstellt", "Created" : "Erstellt",
"The title cannot be empty." : "Der Titel darf nicht leer sein.", "The title cannot be empty." : "Der Titel darf nicht leer sein.",
"No comments yet. Begin the discussion!" : "Bislang keine Kommentare. Beginne die Diskussion!", "No comments yet. Begin the discussion!" : "Bislang keine Kommentare. Beginne die Diskussion!",
"Failed to load comments" : "Das Laden der Kommentare ist fehlgeschlagen",
"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",
@@ -213,7 +206,6 @@ OC.L10N.register(
"The comment cannot be empty." : "Der Kommentar darf nicht leer sein.", "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.", "The comment cannot be longer than 1000 characters." : "Der Kommentar darf nicht länger als 1000 Zeichen sein.",
"In reply to" : "Als Antwort auf", "In reply to" : "Als Antwort auf",
"Cancel reply" : "Antwort abbrechen",
"Reply" : "Antworten", "Reply" : "Antworten",
"Update" : "Aktualisieren", "Update" : "Aktualisieren",
"Description" : "Beschreibung", "Description" : "Beschreibung",
@@ -226,7 +218,7 @@ OC.L10N.register(
"Write a description …" : "Beschreibung schreiben …", "Write a description …" : "Beschreibung schreiben …",
"Choose attachment" : "Anhang auswählen", "Choose attachment" : "Anhang auswählen",
"(group)" : "(Gruppe)", "(group)" : "(Gruppe)",
"{count} comments, {unread} unread" : "{count} Kommentare, {unread} ungelesen", "(circle)" : "(Kreis)",
"Assign to me" : "Mir zuweisen", "Assign to me" : "Mir zuweisen",
"Unassign myself" : "Nicht mehr mir zuweisen", "Unassign myself" : "Nicht mehr mir zuweisen",
"Move card" : "Karte verschieben", "Move card" : "Karte verschieben",
@@ -241,7 +233,7 @@ OC.L10N.register(
"Shared with you" : "Mit Dir geteilt", "Shared with you" : "Mit Dir geteilt",
"Use bigger card view" : "Größere Kartenansicht verwenden", "Use bigger card view" : "Größere 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 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 Du Deck einschränkst, 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." : "Wenn Du Deck einschränkst, 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 details" : "Board-Details", "Board details" : "Board-Details",
"Edit board" : "Board bearbeiten", "Edit board" : "Board bearbeiten",
@@ -266,8 +258,6 @@ 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",
"Search for {searchQuery} in all boards" : "Suche nach {searchQuery} in allen Boards",
"No results found" : "Keine Ergebnisse gefunden",
"No upcoming cards" : "Keine anstehenden Karten", "No upcoming cards" : "Keine anstehenden Karten",
"upcoming cards" : "Anstehende Karten", "upcoming cards" : "Anstehende Karten",
"Link to a board" : "Mit einem Board verknüpfen", "Link to a board" : "Mit einem Board verknüpfen",

View File

@@ -68,15 +68,9 @@
"Upcoming cards" : "Anstehende Karten", "Upcoming cards" : "Anstehende 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 {deck-card} on {deck-board} to you." : "{user} hat Dir die Karte {deck-card} auf {deck-board} zugewiesen.",
"The card \"%s\" on \"%s\" has reached its due date." : "Die Karte \"%s\" in \"%s\" ist überfällig.", "The card \"%s\" on \"%s\" has reached its due date." : "Die Karte \"%s\" in \"%s\" ist überfällig.",
"The card {deck-card} on {deck-board} has reached its due date." : "Die Karte {deck-card} in {deck-board} ist überfällig.",
"%s has mentioned you in a comment on \"%s\"." : "%s hat Dich in einem Kommentar zu \"%s\" erwähnt.", "%s has mentioned you in a comment on \"%s\"." : "%s hat Dich in einem Kommentar zu \"%s\" erwähnt.",
"{user} has mentioned you in a comment on {deck-card}." : "{user} hat Dich in einem Kommentar zu {deck-card} erwähnt.",
"The board \"%s\" has been shared with you by %s." : "Das Board \"%s\" wurde von %s mit Dir geteilt.", "The board \"%s\" has been shared with you by %s." : "Das Board \"%s\" wurde von %s mit Dir geteilt.",
"{user} has shared {deck-board} with you." : "{user} hat das Board {deck-board} mit Dir geteilt.",
"Card comments" : "Kommentare zur Karte",
"%s on %s" : "%s von %s",
"No data was provided to create an attachment." : "Es wurden keine Daten zum Erstellen eines Anhangs bereitgestellt.", "No data was provided to create an attachment." : "Es wurden keine Daten zum Erstellen eines Anhangs bereitgestellt.",
"Finished" : "Abgeschlossen", "Finished" : "Abgeschlossen",
"To review" : "Zu überprüfen", "To review" : "Zu überprüfen",
@@ -113,8 +107,8 @@
"Select a list" : "Eine Liste auswählen", "Select a list" : "Eine Liste auswählen",
"Card title" : "Titel der Karte", "Card title" : "Titel der Karte",
"Cancel" : "Abbrechen", "Cancel" : "Abbrechen",
"Creating the new card …" : "Neue Karte wird erstellt …", "Creating the new card…" : "Neue Karte wird erstellt …",
"Card \"{card}\" was added to \"{board}\"" : "Karte \"{card}\" wurde \"{board}\" hinzugefügt", "\"{card}\" was added to \"{board}\"" : "\"{card}\" wurde \"{board}\" hinzugefügt",
"Open card" : "Karte öffnen", "Open card" : "Karte öffnen",
"Close" : "Schließen", "Close" : "Schließen",
"Create card" : "Karte erstellen", "Create card" : "Karte erstellen",
@@ -198,7 +192,6 @@
"Created" : "Erstellt", "Created" : "Erstellt",
"The title cannot be empty." : "Der Titel darf nicht leer sein.", "The title cannot be empty." : "Der Titel darf nicht leer sein.",
"No comments yet. Begin the discussion!" : "Bislang keine Kommentare. Beginne die Diskussion!", "No comments yet. Begin the discussion!" : "Bislang keine Kommentare. Beginne die Diskussion!",
"Failed to load comments" : "Das Laden der Kommentare ist fehlgeschlagen",
"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",
@@ -211,7 +204,6 @@
"The comment cannot be empty." : "Der Kommentar darf nicht leer sein.", "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.", "The comment cannot be longer than 1000 characters." : "Der Kommentar darf nicht länger als 1000 Zeichen sein.",
"In reply to" : "Als Antwort auf", "In reply to" : "Als Antwort auf",
"Cancel reply" : "Antwort abbrechen",
"Reply" : "Antworten", "Reply" : "Antworten",
"Update" : "Aktualisieren", "Update" : "Aktualisieren",
"Description" : "Beschreibung", "Description" : "Beschreibung",
@@ -224,7 +216,7 @@
"Write a description …" : "Beschreibung schreiben …", "Write a description …" : "Beschreibung schreiben …",
"Choose attachment" : "Anhang auswählen", "Choose attachment" : "Anhang auswählen",
"(group)" : "(Gruppe)", "(group)" : "(Gruppe)",
"{count} comments, {unread} unread" : "{count} Kommentare, {unread} ungelesen", "(circle)" : "(Kreis)",
"Assign to me" : "Mir zuweisen", "Assign to me" : "Mir zuweisen",
"Unassign myself" : "Nicht mehr mir zuweisen", "Unassign myself" : "Nicht mehr mir zuweisen",
"Move card" : "Karte verschieben", "Move card" : "Karte verschieben",
@@ -239,7 +231,7 @@
"Shared with you" : "Mit Dir geteilt", "Shared with you" : "Mit Dir geteilt",
"Use bigger card view" : "Größere Kartenansicht verwenden", "Use bigger card view" : "Größere 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 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 Du Deck einschränkst, 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." : "Wenn Du Deck einschränkst, 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 details" : "Board-Details", "Board details" : "Board-Details",
"Edit board" : "Board bearbeiten", "Edit board" : "Board bearbeiten",
@@ -264,8 +256,6 @@
"Tomorrow" : "Morgen", "Tomorrow" : "Morgen",
"This week" : "Diese Woche", "This week" : "Diese Woche",
"No due" : "Kein Fälligkeitsdatum", "No due" : "Kein Fälligkeitsdatum",
"Search for {searchQuery} in all boards" : "Suche nach {searchQuery} in allen Boards",
"No results found" : "Keine Ergebnisse gefunden",
"No upcoming cards" : "Keine anstehenden Karten", "No upcoming cards" : "Keine anstehenden Karten",
"upcoming cards" : "Anstehende Karten", "upcoming cards" : "Anstehende Karten",
"Link to a board" : "Mit einem Board verknüpfen", "Link to a board" : "Mit einem Board verknüpfen",

View File

@@ -63,20 +63,16 @@ OC.L10N.register(
"{user} has restored the attachment {attachment} to card {card}" : "{user} hat den Anhang {attachment} der Karte {card} wiederhergestellt", "{user} has restored the attachment {attachment} to card {card}" : "{user} hat den Anhang {attachment} der Karte {card} wiederhergestellt",
"You have commented on card {card}" : "Sie haben die Karte {card} kommentiert", "You have commented on card {card}" : "Sie haben die Karte {card} kommentiert",
"{user} has commented on card {card}" : "{user} hat die Karte {card} kommentiert", "{user} has commented on card {card}" : "{user} hat die Karte {card} kommentiert",
"A <strong>card description</strong> inside the Deck app has been changed" : "Eine <strong>Kartenbeschreibung</strong> wurde innerhalb der Deck-App geändert", "A <strong>card description</strong> inside the Deck app has been changed" : "Eine <strong>Kartenbeschreibung</strong> innerhalb der Deck-App wurde geändert",
"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" : "Anstehende 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 {deck-card} on {deck-board} to you." : "{user} hat Ihnen die Karte {deck-card} auf {deck-board} zugewiesen.",
"The card \"%s\" on \"%s\" has reached its due date." : "Die Karte \"%s\" in \"%s\" ist überfällig.", "The card \"%s\" on \"%s\" has reached its due date." : "Die Karte \"%s\" in \"%s\" ist überfällig.",
"The card {deck-card} on {deck-board} has reached its due date." : "Die Karte {deck-card} in {deck-board} ist überfällig.",
"%s has mentioned you in a comment on \"%s\"." : "%s hat Sie in einem Kommentar zu \"%s\" erwähnt.", "%s has mentioned you in a comment on \"%s\"." : "%s hat Sie in einem Kommentar zu \"%s\" erwähnt.",
"{user} has mentioned you in a comment on {deck-card}." : "{user} hat Sie in einem Kommentar zu {deck-card} erwähnt.",
"The board \"%s\" has been shared with you by %s." : "Das Board \"%s\" wurde von %s mit Ihnen geteilt.", "The board \"%s\" has been shared with you by %s." : "Das Board \"%s\" wurde von %s mit Ihnen geteilt.",
"{user} has shared {deck-board} with you." : "{user} hat das Board {deck-board} mit Ihnen geteilt.",
"Card comments" : "Kartenkommentare", "Card comments" : "Kartenkommentare",
"%s on %s" : "%s von %s", "%s on %s" : "%s von %s",
"No data was provided to create an attachment." : "Es wurden keine Daten zum Erstellen eines Anhangs bereitgestellt.", "No data was provided to create an attachment." : "Es wurden keine Daten zum Erstellen eines Anhangs bereitgestellt.",
@@ -115,8 +111,8 @@ OC.L10N.register(
"Select a list" : "Eine Liste auswählen", "Select a list" : "Eine Liste auswählen",
"Card title" : "Titel der Karte", "Card title" : "Titel der Karte",
"Cancel" : "Abbrechen", "Cancel" : "Abbrechen",
"Creating the new card …" : "Neue Karte wird erstellt …", "Creating the new card…" : "Neue Karte wird erstellt …",
"Card \"{card}\" was added to \"{board}\"" : "Karte \"{card}\" wurde \"{board}\" hinzugefügt", "\"{card}\" was added to \"{board}\"" : "\"{card}\" wurde \"{board}\" hinzugefügt",
"Open card" : "Karte öffnen", "Open card" : "Karte öffnen",
"Close" : "Schließen", "Close" : "Schließen",
"Create card" : "Karte erstellen", "Create card" : "Karte erstellen",
@@ -200,7 +196,6 @@ OC.L10N.register(
"Created" : "Erstellt", "Created" : "Erstellt",
"The title cannot be empty." : "Der Titel darf nicht leer sein.", "The title cannot be empty." : "Der Titel darf nicht leer sein.",
"No comments yet. Begin the discussion!" : "Bislang keine Kommentare. Beginnen Sie die Diskussion!", "No comments yet. Begin the discussion!" : "Bislang keine Kommentare. Beginnen Sie die Diskussion!",
"Failed to load comments" : "Das Laden der Kommentare ist fehlgeschlagen",
"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",
@@ -213,7 +208,6 @@ OC.L10N.register(
"The comment cannot be empty." : "Der Kommentar darf nicht leer sein.", "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.", "The comment cannot be longer than 1000 characters." : "Der Kommentar darf nicht länger als 1000 Zeichen sein.",
"In reply to" : "Als Antwort auf", "In reply to" : "Als Antwort auf",
"Cancel reply" : "Antwort abbrechen",
"Reply" : "Antworten", "Reply" : "Antworten",
"Update" : "Aktualisieren", "Update" : "Aktualisieren",
"Description" : "Beschreibung", "Description" : "Beschreibung",
@@ -226,7 +220,7 @@ OC.L10N.register(
"Write a description …" : "Beschreibung schreiben …", "Write a description …" : "Beschreibung schreiben …",
"Choose attachment" : "Anhang auswählen", "Choose attachment" : "Anhang auswählen",
"(group)" : "(Gruppe)", "(group)" : "(Gruppe)",
"{count} comments, {unread} unread" : "{count} Kommentare, {unread} ungelesen", "(circle)" : "(Kreis)",
"Assign to me" : "Mir zuweisen", "Assign to me" : "Mir zuweisen",
"Unassign myself" : "Nicht mehr mir zuweisen", "Unassign myself" : "Nicht mehr mir zuweisen",
"Move card" : "Karte verschieben", "Move card" : "Karte verschieben",
@@ -241,7 +235,7 @@ OC.L10N.register(
"Shared with you" : "Mit Ihnen geteilt", "Shared with you" : "Mit Ihnen geteilt",
"Use bigger card view" : "Größere Kartenansicht verwenden", "Use bigger card view" : "Größere 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 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." : "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 details" : "Board-Details", "Board details" : "Board-Details",
"Edit board" : "Board bearbeiten", "Edit board" : "Board bearbeiten",

View File

@@ -61,20 +61,16 @@
"{user} has restored the attachment {attachment} to card {card}" : "{user} hat den Anhang {attachment} der Karte {card} wiederhergestellt", "{user} has restored the attachment {attachment} to card {card}" : "{user} hat den Anhang {attachment} der Karte {card} wiederhergestellt",
"You have commented on card {card}" : "Sie haben die Karte {card} kommentiert", "You have commented on card {card}" : "Sie haben die Karte {card} kommentiert",
"{user} has commented on card {card}" : "{user} hat die Karte {card} kommentiert", "{user} has commented on card {card}" : "{user} hat die Karte {card} kommentiert",
"A <strong>card description</strong> inside the Deck app has been changed" : "Eine <strong>Kartenbeschreibung</strong> wurde innerhalb der Deck-App geändert", "A <strong>card description</strong> inside the Deck app has been changed" : "Eine <strong>Kartenbeschreibung</strong> innerhalb der Deck-App wurde geändert",
"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" : "Anstehende 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 {deck-card} on {deck-board} to you." : "{user} hat Ihnen die Karte {deck-card} auf {deck-board} zugewiesen.",
"The card \"%s\" on \"%s\" has reached its due date." : "Die Karte \"%s\" in \"%s\" ist überfällig.", "The card \"%s\" on \"%s\" has reached its due date." : "Die Karte \"%s\" in \"%s\" ist überfällig.",
"The card {deck-card} on {deck-board} has reached its due date." : "Die Karte {deck-card} in {deck-board} ist überfällig.",
"%s has mentioned you in a comment on \"%s\"." : "%s hat Sie in einem Kommentar zu \"%s\" erwähnt.", "%s has mentioned you in a comment on \"%s\"." : "%s hat Sie in einem Kommentar zu \"%s\" erwähnt.",
"{user} has mentioned you in a comment on {deck-card}." : "{user} hat Sie in einem Kommentar zu {deck-card} erwähnt.",
"The board \"%s\" has been shared with you by %s." : "Das Board \"%s\" wurde von %s mit Ihnen geteilt.", "The board \"%s\" has been shared with you by %s." : "Das Board \"%s\" wurde von %s mit Ihnen geteilt.",
"{user} has shared {deck-board} with you." : "{user} hat das Board {deck-board} mit Ihnen geteilt.",
"Card comments" : "Kartenkommentare", "Card comments" : "Kartenkommentare",
"%s on %s" : "%s von %s", "%s on %s" : "%s von %s",
"No data was provided to create an attachment." : "Es wurden keine Daten zum Erstellen eines Anhangs bereitgestellt.", "No data was provided to create an attachment." : "Es wurden keine Daten zum Erstellen eines Anhangs bereitgestellt.",
@@ -113,8 +109,8 @@
"Select a list" : "Eine Liste auswählen", "Select a list" : "Eine Liste auswählen",
"Card title" : "Titel der Karte", "Card title" : "Titel der Karte",
"Cancel" : "Abbrechen", "Cancel" : "Abbrechen",
"Creating the new card …" : "Neue Karte wird erstellt …", "Creating the new card…" : "Neue Karte wird erstellt …",
"Card \"{card}\" was added to \"{board}\"" : "Karte \"{card}\" wurde \"{board}\" hinzugefügt", "\"{card}\" was added to \"{board}\"" : "\"{card}\" wurde \"{board}\" hinzugefügt",
"Open card" : "Karte öffnen", "Open card" : "Karte öffnen",
"Close" : "Schließen", "Close" : "Schließen",
"Create card" : "Karte erstellen", "Create card" : "Karte erstellen",
@@ -198,7 +194,6 @@
"Created" : "Erstellt", "Created" : "Erstellt",
"The title cannot be empty." : "Der Titel darf nicht leer sein.", "The title cannot be empty." : "Der Titel darf nicht leer sein.",
"No comments yet. Begin the discussion!" : "Bislang keine Kommentare. Beginnen Sie die Diskussion!", "No comments yet. Begin the discussion!" : "Bislang keine Kommentare. Beginnen Sie die Diskussion!",
"Failed to load comments" : "Das Laden der Kommentare ist fehlgeschlagen",
"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",
@@ -211,7 +206,6 @@
"The comment cannot be empty." : "Der Kommentar darf nicht leer sein.", "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.", "The comment cannot be longer than 1000 characters." : "Der Kommentar darf nicht länger als 1000 Zeichen sein.",
"In reply to" : "Als Antwort auf", "In reply to" : "Als Antwort auf",
"Cancel reply" : "Antwort abbrechen",
"Reply" : "Antworten", "Reply" : "Antworten",
"Update" : "Aktualisieren", "Update" : "Aktualisieren",
"Description" : "Beschreibung", "Description" : "Beschreibung",
@@ -224,7 +218,7 @@
"Write a description …" : "Beschreibung schreiben …", "Write a description …" : "Beschreibung schreiben …",
"Choose attachment" : "Anhang auswählen", "Choose attachment" : "Anhang auswählen",
"(group)" : "(Gruppe)", "(group)" : "(Gruppe)",
"{count} comments, {unread} unread" : "{count} Kommentare, {unread} ungelesen", "(circle)" : "(Kreis)",
"Assign to me" : "Mir zuweisen", "Assign to me" : "Mir zuweisen",
"Unassign myself" : "Nicht mehr mir zuweisen", "Unassign myself" : "Nicht mehr mir zuweisen",
"Move card" : "Karte verschieben", "Move card" : "Karte verschieben",
@@ -239,7 +233,7 @@
"Shared with you" : "Mit Ihnen geteilt", "Shared with you" : "Mit Ihnen geteilt",
"Use bigger card view" : "Größere Kartenansicht verwenden", "Use bigger card view" : "Größere 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 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." : "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 details" : "Board-Details", "Board details" : "Board-Details",
"Edit board" : "Board bearbeiten", "Edit board" : "Board bearbeiten",

View File

@@ -211,6 +211,7 @@ OC.L10N.register(
"Write a description …" : "Γράψτε μια περιγραφή…", "Write a description …" : "Γράψτε μια περιγραφή…",
"Choose attachment" : "Επιλογή συνημμένου", "Choose attachment" : "Επιλογή συνημμένου",
"(group)" : "(ομάδα)", "(group)" : "(ομάδα)",
"(circle)" : "(κύκλος)",
"Assign to me" : "Ανάθεση σε εμένα", "Assign to me" : "Ανάθεση σε εμένα",
"Unassign myself" : "Αποδέσμευσή μου", "Unassign myself" : "Αποδέσμευσή μου",
"Move card" : "Μετακίνηση κάρτας", "Move card" : "Μετακίνηση κάρτας",

View File

@@ -209,6 +209,7 @@
"Write a description …" : "Γράψτε μια περιγραφή…", "Write a description …" : "Γράψτε μια περιγραφή…",
"Choose attachment" : "Επιλογή συνημμένου", "Choose attachment" : "Επιλογή συνημμένου",
"(group)" : "(ομάδα)", "(group)" : "(ομάδα)",
"(circle)" : "(κύκλος)",
"Assign to me" : "Ανάθεση σε εμένα", "Assign to me" : "Ανάθεση σε εμένα",
"Unassign myself" : "Αποδέσμευσή μου", "Unassign myself" : "Αποδέσμευσή μου",
"Move card" : "Μετακίνηση κάρτας", "Move card" : "Μετακίνηση κάρτας",

View File

@@ -70,15 +70,9 @@ OC.L10N.register(
"Upcoming cards" : "Próximas tarjetas", "Upcoming cards" : "Próximas tarjetas",
"Personal" : "Personal", "Personal" : "Personal",
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "La tarjeta \"%s\" en \"%s\" te ha sido asignada por %s.", "The card \"%s\" on \"%s\" has been assigned to you by %s." : "La tarjeta \"%s\" en \"%s\" te ha sido asignada por %s.",
"{user} has assigned the card {deck-card} on {deck-board} to you." : "{user} te ha asigando la tarjeta {deck-card} de {deck-board} a ti.",
"The card \"%s\" on \"%s\" has reached its due date." : "La tarjeta \"%s\" en \"%s\" ha alcanzado su fecha límite.", "The card \"%s\" on \"%s\" has reached its due date." : "La tarjeta \"%s\" en \"%s\" ha alcanzado su fecha límite.",
"The card {deck-card} on {deck-board} has reached its due date." : "La tarjeta {deck-card} en {deck-board} ha alcanzado su fecha de caducidad.",
"%s has mentioned you in a comment on \"%s\"." : "%s te ha mencionado en un comentario en \"%s\".", "%s has mentioned you in a comment on \"%s\"." : "%s te ha mencionado en un comentario en \"%s\".",
"{user} has mentioned you in a comment on {deck-card}." : "{user} te ha mencionado en un comentario de {deck-card}.",
"The board \"%s\" has been shared with you by %s." : "El tablero \"%s\" ha sido compartido contigo por %s.", "The board \"%s\" has been shared with you by %s." : "El tablero \"%s\" ha sido compartido contigo por %s.",
"{user} has shared {deck-board} with you." : "{user} ha compartido {deck-board} contigo.",
"Card comments" : "Comentarios en tarjetas",
"%s on %s" : "%s en %s",
"No data was provided to create an attachment." : "No se proporcionaron datos para crear un adjunto", "No data was provided to create an attachment." : "No se proporcionaron datos para crear un adjunto",
"Finished" : "Finalizado", "Finished" : "Finalizado",
"To review" : "Para revisar", "To review" : "Para revisar",
@@ -115,8 +109,8 @@ OC.L10N.register(
"Select a list" : "Seleccionar una lista", "Select a list" : "Seleccionar una lista",
"Card title" : "Título de la tarjeta", "Card title" : "Título de la tarjeta",
"Cancel" : "Cancelar", "Cancel" : "Cancelar",
"Creating the new card …" : "Creando una nueva tarjeta", "Creating the new card…" : "Creando una nueva tarjeta...",
"Card \"{card}\" was added to \"{board}\"" : "La tarjeta \"{card}\" fue añadida a \"{board}\"", "\"{card}\" was added to \"{board}\"" : "\"{card}\" ha sido añadida en \"{board}\"",
"Open card" : "Abrir tarjeta", "Open card" : "Abrir tarjeta",
"Close" : "Cerrar", "Close" : "Cerrar",
"Create card" : "Crear tarjeta", "Create card" : "Crear tarjeta",
@@ -200,7 +194,6 @@ OC.L10N.register(
"Created" : "Creado", "Created" : "Creado",
"The title cannot be empty." : "El título no puede estar vacío.", "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!", "No comments yet. Begin the discussion!" : "Todavía no hay comentarios. ¡Comienza la discusión!",
"Failed to load comments" : "Fallo al cargar los comentarios",
"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",
@@ -213,7 +206,6 @@ OC.L10N.register(
"The comment cannot be empty." : "El comentario no puede estar vacío.", "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.", "The comment cannot be longer than 1000 characters." : "El comentario no puede tener más de 1000 caracteres.",
"In reply to" : "En respuesta a", "In reply to" : "En respuesta a",
"Cancel reply" : "Cancelar respuesta",
"Reply" : "Responder", "Reply" : "Responder",
"Update" : "Actualizar", "Update" : "Actualizar",
"Description" : "Descripción", "Description" : "Descripción",
@@ -226,7 +218,7 @@ OC.L10N.register(
"Write a description …" : "Escribe una descripción...", "Write a description …" : "Escribe una descripción...",
"Choose attachment" : "Escoger adjunto", "Choose attachment" : "Escoger adjunto",
"(group)" : "(grupo)", "(group)" : "(grupo)",
"{count} comments, {unread} unread" : "{count} comentarios, {unread} sin leer", "(circle)" : "(circle)",
"Assign to me" : "Asignarme a mí", "Assign to me" : "Asignarme a mí",
"Unassign myself" : "Desasignarme a mí mismo", "Unassign myself" : "Desasignarme a mí mismo",
"Move card" : "Mover tarjeta", "Move card" : "Mover tarjeta",
@@ -266,8 +258,6 @@ OC.L10N.register(
"Tomorrow" : "Mañana", "Tomorrow" : "Mañana",
"This week" : "Esta semana", "This week" : "Esta semana",
"No due" : "Sin finalizar", "No due" : "Sin finalizar",
"Search for {searchQuery} in all boards" : "Buscar {searchQuery} en todos los tableros",
"No results found" : "No se encontraron resultados",
"No upcoming cards" : "No hay tarjetas próximas", "No upcoming cards" : "No hay tarjetas próximas",
"upcoming cards" : "próximas tarjetas", "upcoming cards" : "próximas tarjetas",
"Link to a board" : "Enlace a un tablero", "Link to a board" : "Enlace a un tablero",

View File

@@ -68,15 +68,9 @@
"Upcoming cards" : "Próximas tarjetas", "Upcoming cards" : "Próximas tarjetas",
"Personal" : "Personal", "Personal" : "Personal",
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "La tarjeta \"%s\" en \"%s\" te ha sido asignada por %s.", "The card \"%s\" on \"%s\" has been assigned to you by %s." : "La tarjeta \"%s\" en \"%s\" te ha sido asignada por %s.",
"{user} has assigned the card {deck-card} on {deck-board} to you." : "{user} te ha asigando la tarjeta {deck-card} de {deck-board} a ti.",
"The card \"%s\" on \"%s\" has reached its due date." : "La tarjeta \"%s\" en \"%s\" ha alcanzado su fecha límite.", "The card \"%s\" on \"%s\" has reached its due date." : "La tarjeta \"%s\" en \"%s\" ha alcanzado su fecha límite.",
"The card {deck-card} on {deck-board} has reached its due date." : "La tarjeta {deck-card} en {deck-board} ha alcanzado su fecha de caducidad.",
"%s has mentioned you in a comment on \"%s\"." : "%s te ha mencionado en un comentario en \"%s\".", "%s has mentioned you in a comment on \"%s\"." : "%s te ha mencionado en un comentario en \"%s\".",
"{user} has mentioned you in a comment on {deck-card}." : "{user} te ha mencionado en un comentario de {deck-card}.",
"The board \"%s\" has been shared with you by %s." : "El tablero \"%s\" ha sido compartido contigo por %s.", "The board \"%s\" has been shared with you by %s." : "El tablero \"%s\" ha sido compartido contigo por %s.",
"{user} has shared {deck-board} with you." : "{user} ha compartido {deck-board} contigo.",
"Card comments" : "Comentarios en tarjetas",
"%s on %s" : "%s en %s",
"No data was provided to create an attachment." : "No se proporcionaron datos para crear un adjunto", "No data was provided to create an attachment." : "No se proporcionaron datos para crear un adjunto",
"Finished" : "Finalizado", "Finished" : "Finalizado",
"To review" : "Para revisar", "To review" : "Para revisar",
@@ -113,8 +107,8 @@
"Select a list" : "Seleccionar una lista", "Select a list" : "Seleccionar una lista",
"Card title" : "Título de la tarjeta", "Card title" : "Título de la tarjeta",
"Cancel" : "Cancelar", "Cancel" : "Cancelar",
"Creating the new card …" : "Creando una nueva tarjeta", "Creating the new card…" : "Creando una nueva tarjeta...",
"Card \"{card}\" was added to \"{board}\"" : "La tarjeta \"{card}\" fue añadida a \"{board}\"", "\"{card}\" was added to \"{board}\"" : "\"{card}\" ha sido añadida en \"{board}\"",
"Open card" : "Abrir tarjeta", "Open card" : "Abrir tarjeta",
"Close" : "Cerrar", "Close" : "Cerrar",
"Create card" : "Crear tarjeta", "Create card" : "Crear tarjeta",
@@ -198,7 +192,6 @@
"Created" : "Creado", "Created" : "Creado",
"The title cannot be empty." : "El título no puede estar vacío.", "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!", "No comments yet. Begin the discussion!" : "Todavía no hay comentarios. ¡Comienza la discusión!",
"Failed to load comments" : "Fallo al cargar los comentarios",
"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",
@@ -211,7 +204,6 @@
"The comment cannot be empty." : "El comentario no puede estar vacío.", "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.", "The comment cannot be longer than 1000 characters." : "El comentario no puede tener más de 1000 caracteres.",
"In reply to" : "En respuesta a", "In reply to" : "En respuesta a",
"Cancel reply" : "Cancelar respuesta",
"Reply" : "Responder", "Reply" : "Responder",
"Update" : "Actualizar", "Update" : "Actualizar",
"Description" : "Descripción", "Description" : "Descripción",
@@ -224,7 +216,7 @@
"Write a description …" : "Escribe una descripción...", "Write a description …" : "Escribe una descripción...",
"Choose attachment" : "Escoger adjunto", "Choose attachment" : "Escoger adjunto",
"(group)" : "(grupo)", "(group)" : "(grupo)",
"{count} comments, {unread} unread" : "{count} comentarios, {unread} sin leer", "(circle)" : "(circle)",
"Assign to me" : "Asignarme a mí", "Assign to me" : "Asignarme a mí",
"Unassign myself" : "Desasignarme a mí mismo", "Unassign myself" : "Desasignarme a mí mismo",
"Move card" : "Mover tarjeta", "Move card" : "Mover tarjeta",
@@ -264,8 +256,6 @@
"Tomorrow" : "Mañana", "Tomorrow" : "Mañana",
"This week" : "Esta semana", "This week" : "Esta semana",
"No due" : "Sin finalizar", "No due" : "Sin finalizar",
"Search for {searchQuery} in all boards" : "Buscar {searchQuery} en todos los tableros",
"No results found" : "No se encontraron resultados",
"No upcoming cards" : "No hay tarjetas próximas", "No upcoming cards" : "No hay tarjetas próximas",
"upcoming cards" : "próximas tarjetas", "upcoming cards" : "próximas tarjetas",
"Link to a board" : "Enlace a un tablero", "Link to a board" : "Enlace a un tablero",

View File

@@ -1,42 +1,42 @@
OC.L10N.register( OC.L10N.register(
"deck", "deck",
{ {
"You have created a new board {board}" : "{board} taula berria sortu duzu", "You have created a new board {board}" : "{board} mahai berri bat sortu duzu",
"{user} has created a new board {board}" : "{user} erabiltzaileak {board} taula berria sortu du", "{user} has created a new board {board}" : "{user} erabiltzaileak {board} mahai berri bat sortu du",
"You have deleted the board {board}" : "{board} taula ezabatu duzu", "You have deleted the board {board}" : "{board} mahaia ezabatu duzu",
"{user} has deleted the board {board}" : "{user} erabiltzaileak {board} taula ezabatu du", "{user} has deleted the board {board}" : "{user} erabiltzaileak {board} mahaia ezabatu du",
"You have restored the board {board}" : "{board} taula leheneratu duzu", "You have restored the board {board}" : "{board} mahaia leheneratu duzu",
"{user} has restored the board {board}" : "{user} erabiltzaileak {board} taula leheneratu du", "{user} has restored the board {board}" : "{user} erabiltzaileak {board} mahaia leheneratu du",
"You have shared the board {board} with {acl}" : "{board} taula {acl} erabiltzailearekin partekatu duzu", "You have shared the board {board} with {acl}" : "{board} mahaia {acl} erabiltzailearekin partekatu duzu",
"{user} has shared the board {board} with {acl}" : "{user} erabiltzaileak {board} taula {acl} erabiltzailearekin partekatu du", "{user} has shared the board {board} with {acl}" : "{user} erabiltzaileak {board} mahaia {acl} erabiltzailearekin partekatu du",
"You have removed {acl} from the board {board}" : "{acl} erabiltzailea kendu duzu {board} taulatik", "You have removed {acl} from the board {board}" : "{acl} erabiltzailea kendu duzu {board} mahaitik",
"{user} has removed {acl} from the board {board}" : "{user} erabiltzaileak {acl} erabiltzailea kendu du {board} taulatik", "{user} has removed {acl} from the board {board}" : "{user} erabiltzaileak {acl} erabiltzailea kendu du {board} mahaitik",
"You have renamed the board {before} to {board}" : "{before} taula zena {board} bezala berrizendatu duzu", "You have renamed the board {before} to {board}" : "{before} mahaia zena {board} bezala berrizendatu duzu",
"{user} has renamed the board {before} to {board}" : "{user} erabiltzaileak {before} taula zena {board} bezala berrizendatu du", "{user} has renamed the board {before} to {board}" : "{user} erabiltzaileak {before} mahaia zena {board} bezala berrizendatu du",
"You have archived the board {board}" : "{board} taula artxibatu duzu", "You have archived the board {board}" : "{board} mahaia artxibatu duzu",
"{user} has archived the board {before}" : "{user} erabiltzaileak {before} taula artxibatu du", "{user} has archived the board {before}" : "{user} erabiltzaileak {before} mahaia artxibatu du",
"You have unarchived the board {board}" : "{board} taula artxibotik berreskuratu duzu", "You have unarchived the board {board}" : "{board} mahaia artxibotik berreskuratu duzu",
"{user} has unarchived the board {before}" : "{user} erabiltzaileak {before} taula artxibotik kendu du", "{user} has unarchived the board {before}" : "{user} erabiltzaileak {before} mahaia artxibotik berreskuratu du",
"You have created a new list {stack} on board {board}" : "{stack} zerrenda berria sortu duzu {board} taulan", "You have created a new list {stack} on board {board}" : "{stack} zerrenda berria sortu duzu {board} mahaian",
"{user} has created a new list {stack} on board {board}" : "{user} erabiltzaileak {stack} zerrenda berria sortu du {board} taulan", "{user} has created a new list {stack} on board {board}" : "{user} erabiltzaileak {stack} zerrenda berria sortu du {board} mahaian",
"You have renamed list {before} to {stack} on board {board}" : "{before} zerrenda zena {stack} bezala berrizendatu duzu {board} taulan", "You have renamed list {before} to {stack} on board {board}" : "{before} zerrenda zena {stack} bezala berrizendatu duzu {board} mahaian",
"{user} has renamed list {before} to {stack} on board {board}" : "{user} erabiltzaileak {before} zerrenda zena {stack} bezala berrizendatu du {board} taulan", "{user} has renamed list {before} to {stack} on board {board}" : "{user} erabiltzaileak {before} zerrenda zena {stack} bezala berrizendatu du {board} mahaian",
"You have deleted list {stack} on board {board}" : "{stack} zerrenda ezabatu duzu {board} taulan", "You have deleted list {stack} on board {board}" : "{stack} zerrenda ezabatu duzu {board} mahaian",
"{user} has deleted list {stack} on board {board}" : "{user} erabiltzaileak {stack} zerrenda ezabatu du {board} taulan", "{user} has deleted list {stack} on board {board}" : "{user} erabiltzaileak {stack} zerrenda ezabatu du {board} mahaian",
"You have created card {card} in list {stack} on board {board}" : "{card} txartela sortu duzu {board} taulako {stack} zerrendan", "You have created card {card} in list {stack} on board {board}" : "{card} txartela sortu duzu {board} mahaiko {stack} zerrendan",
"{user} has created card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {card} txartela sortu du {board} taulako {stack} zerrendan", "{user} has created card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {card} txartela sortu du {board} mahaiko {stack} zerrendan",
"You have deleted card {card} in list {stack} on board {board}" : "{card} txartela ezabatu duzu {board} taulako {stack} zerrendan", "You have deleted card {card} in list {stack} on board {board}" : "{card} txartela ezabatu duzu {board} mahaiko {stack} zerrendan",
"{user} has deleted card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {card} txartela ezabatu du {board} taulako {stack} zerrendan", "{user} has deleted card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {card} txartela ezabatu du {board} mahaiko {stack} zerrendan",
"You have renamed the card {before} to {card}" : "{before} taula zena {card} bezala berrizendatu duzu", "You have renamed the card {before} to {card}" : "{before} taula zena {card} bezala berrizendatu duzu",
"{user} has renamed the card {before} to {card}" : "{user} erabiltzaileak {before} taula zena {card} bezala berrizendatu du", "{user} has renamed the card {before} to {card}" : "{user} erabiltzaileak {before} taula zena {card} bezala berrizendatu du",
"You have added a description to card {card} in list {stack} on board {board}" : "{board} taulako {stack} zerrendako {card} txartelari deskripzioa gehitu diozu", "You have added a description to card {card} in list {stack} on board {board}" : "{board} mahaiko {stack} zerrendako {card} txartelari deskripzioa gehitu diozu",
"{user} has added a description to card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {board} taulako {stack} zerrendako {card} txartelari deskripzioa gehitu dio", "{user} has added a description to card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {board} mahaiko {stack} zerrendako {card} txartelari deskripzioa gehitu dio",
"You have updated the description of card {card} in list {stack} on board {board}" : "{board} taulako {stack} zerrendako {card} txartelaren deskripzioa eguneratu duzu", "You have updated the description of card {card} in list {stack} on board {board}" : "{board} mahaiko {stack} zerrendako {card} txartelaren deskripzioa eguneratu duzu",
"{user} has updated the description of the card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {board} taulako {stack} zerrendako {card} txartelaren deskripzioa eguneratu du", "{user} has updated the description of the card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {board} mahaiko {stack} zerrendako {card} txartelaren deskripzioa eguneratu du",
"You have archived card {card} in list {stack} on board {board}" : "{board} taulako {stack} zerrendako {card} txartela artxibatu duzu", "You have archived card {card} in list {stack} on board {board}" : "{board} mahaiko {stack} zerrendako {card} txartela artxibatu duzu",
"{user} has archived card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {board} taulako {stack} zerrendako {card} txartela artxibatu du", "{user} has archived card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {board} mahaiko {stack} zerrendako {card} txartela artxibatu du",
"You have unarchived card {card} in list {stack} on board {board}" : "{board} taulako {stack} zerrendako {card} txartela berreskuratu duzu artxibotik", "You have unarchived card {card} in list {stack} on board {board}" : "{board} mahaiko {stack} zerrendako {card} txartela berreskuratu duzu artxibotik",
"{user} has unarchived card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {board} taulako {stack} zerrendako {card} txartela berreskuratu du artxibotik", "{user} has unarchived card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {board} mahaiko {stack} zerrendako {card} txartela berreskuratu du artxibotik",
"You have removed the due date of card {card}" : "{card} txartelari epemuga kendu diozu", "You have removed the due date of card {card}" : "{card} txartelari epemuga kendu diozu",
"{user} has removed the due date of card {card}" : "{user} erabiltzaileak {card} txartelari epemuga kendu dio", "{user} has removed the due date of card {card}" : "{user} erabiltzaileak {card} txartelari epemuga kendu dio",
"You have set the due date of card {card} to {after}" : "{card} txartelari {after} epemuga ezarri diozu", "You have set the due date of card {card} to {after}" : "{card} txartelari {after} epemuga ezarri diozu",
@@ -44,13 +44,13 @@ OC.L10N.register(
"You have updated the due date of card {card} to {after}" : "{card} txartelari epemuga eguneratu diozu: {after}", "You have updated the due date of card {card} to {after}" : "{card} txartelari epemuga eguneratu diozu: {after}",
"{user} has updated the due date of card {card} to {after}" : "{user} erabiltzaileak {card} txartelari epemuga eguneratu dio: {after}", "{user} has updated the due date of card {card} to {after}" : "{user} erabiltzaileak {card} txartelari epemuga eguneratu dio: {after}",
"You have added the tag {label} to card {card} in list {stack} on board {board}" : "{board} mahaiko {stack} zerrendako {card} txartelari {label} etiketa gehitu diozu", "You have added the tag {label} to card {card} in list {stack} on board {board}" : "{board} mahaiko {stack} zerrendako {card} txartelari {label} etiketa gehitu diozu",
"{user} has added the tag {label} to card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {board} taulako {stack} zerrendako {card} txartelari {label} etiketa gehitu dio", "{user} has added the tag {label} to card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {board} mahaiko {stack} zerrendako {card} txartelari {label} etiketa gehitu dio",
"You have removed the tag {label} from card {card} in list {stack} on board {board}" : "{board} taulako {stack} zerrendako {card} txartelari {label} etiketa kendu diozu", "You have removed the tag {label} from card {card} in list {stack} on board {board}" : "{board} mahaiko {stack} zerrendako {card} txartelari {label} etiketa kendu diozu",
"{user} has removed the tag {label} from card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {board} taulako {stack} zerrendako {card} txartelari {label} etiketa kendu dio", "{user} has removed the tag {label} from card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {board} mahaiko {stack} zerrendako {card} txartelari {label} etiketa kendu dio",
"You have assigned {assigneduser} to card {card} on board {board}" : "{board} taulako {card} txartela {assigneduser} erabiltzaileari esleitu diozu", "You have assigned {assigneduser} to card {card} on board {board}" : "{board} mahaiko {card} txartela {assigneduser} erabiltzaileari esleitu diozu",
"{user} has assigned {assigneduser} to card {card} on board {board}" : "{user} erabiltzaileak {board} taulako {card} txartela {assigneduser} erabiltzaileari esleitu dio", "{user} has assigned {assigneduser} to card {card} on board {board}" : "{user} erabiltzaileak {board} mahaiko {card} txartela {assigneduser} erabiltzaileari esleitu dio",
"You have unassigned {assigneduser} from card {card} on board {board}" : "{board} taulako {card} txartela {assigneduser} erabiltzaileari esleitzea ezeztatu duzu", "You have unassigned {assigneduser} from card {card} on board {board}" : "{board} mahaiko {card} txartela {assigneduser} erabiltzaileari esleitzea ezeztatu duzu",
"{user} has unassigned {assigneduser} from card {card} on board {board}" : "{user} erabiltzaileak {board} taulako {card} txartela {assigneduser} erabiltzaileari esleitzea ezeztatu du", "{user} has unassigned {assigneduser} from card {card} on board {board}" : "{user} erabiltzaileak {board} mahaiko {card} txartela {assigneduser} erabiltzaileari esleitzea ezeztatu du",
"You have moved the card {card} from list {stackBefore} to {stack}" : "{card} txartela {stackBefore} zerrendatik {stack} zerrendara aldatu duzu", "You have moved the card {card} from list {stackBefore} to {stack}" : "{card} txartela {stackBefore} zerrendatik {stack} zerrendara aldatu duzu",
"{user} has moved the card {card} from list {stackBefore} to {stack}" : "{user} erabiltzaileak {card} txartela {stackBefore} zerrendatik {stack} zerrendara aldatu du", "{user} has moved the card {card} from list {stackBefore} to {stack}" : "{user} erabiltzaileak {card} txartela {stackBefore} zerrendatik {stack} zerrendara aldatu du",
"You have added the attachment {attachment} to card {card}" : "{attachment} eranskina gehitu diozu {card} txartelari", "You have added the attachment {attachment} to card {card}" : "{attachment} eranskina gehitu diozu {card} txartelari",
@@ -70,15 +70,9 @@ OC.L10N.register(
"Upcoming cards" : "Hurrengo txartelak", "Upcoming cards" : "Hurrengo txartelak",
"Personal" : "Pertsonala", "Personal" : "Pertsonala",
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "\"%s\" txartela \"%s\"-n %sk esleitu zaizu.", "The card \"%s\" on \"%s\" has been assigned to you by %s." : "\"%s\" txartela \"%s\"-n %sk esleitu zaizu.",
"{user} has assigned the card {deck-card} on {deck-board} to you." : "{user}-k {deck-board}-ko {deck-card} txartela esleitu dizu.",
"The card \"%s\" on \"%s\" has reached its due date." : " \"%s\" txartela, \"%s\" -n dagoena, epe-mugara ailegatu da.", "The card \"%s\" on \"%s\" has reached its due date." : " \"%s\" txartela, \"%s\" -n dagoena, epe-mugara ailegatu da.",
"The card {deck-card} on {deck-board} has reached its due date." : " {deck-board}-ko {deck-card} txartela epe-mugara ailegatu da.",
"%s has mentioned you in a comment on \"%s\"." : "%sk aipatu dizu \"%s\"-ri buruzko iruzkin batean.", "%s has mentioned you in a comment on \"%s\"." : "%sk aipatu dizu \"%s\"-ri buruzko iruzkin batean.",
"{user} has mentioned you in a comment on {deck-card}." : "{user}-k zure izena aipatu du {deck-card}-ko iruzkin batean.",
"The board \"%s\" has been shared with you by %s." : "\"%s\" mahaia zurekin partekatu du %s-k", "The board \"%s\" has been shared with you by %s." : "\"%s\" mahaia zurekin partekatu du %s-k",
"{user} has shared {deck-board} with you." : "{user} erabiltzaileak {deck-board} partekatu du zurekin.",
"Card comments" : "Txartelaren iruzkinak",
"%s on %s" : "%s hemen: %s",
"No data was provided to create an attachment." : "Ez da daturik eman eranskina sortzeko.", "No data was provided to create an attachment." : "Ez da daturik eman eranskina sortzeko.",
"Finished" : "Bukatuta", "Finished" : "Bukatuta",
"To review" : "Errebisatzeko", "To review" : "Errebisatzeko",
@@ -101,25 +95,18 @@ OC.L10N.register(
"A PHP extension stopped the file upload" : "PHP hedapen batek fitxategiaren karga gelditu du", "A PHP extension stopped the file upload" : "PHP hedapen batek fitxategiaren karga gelditu du",
"No file uploaded or file size exceeds maximum of %s" : "Ez da fitxategirik kargatu edo fitxategi-tamainak gehienezko %s muga gainditzen du", "No file uploaded or file size exceeds maximum of %s" : "Ez da fitxategirik kargatu edo fitxategi-tamainak gehienezko %s muga gainditzen du",
"Card not found" : "Txartela ez da aurkitu", "Card not found" : "Txartela ez da aurkitu",
"Path is already shared with this card" : "Bidea dagoeneko partekatu da txartel honekin",
"Invalid date, date format must be YYYY-MM-DD" : "Data baliogabea, dataren formatuak UUUU-HH-EE izan behar du", "Invalid date, date format must be YYYY-MM-DD" : "Data baliogabea, dataren formatuak UUUU-HH-EE izan behar du",
"Personal planning and team project organization" : "Plangintza pertsonala eta talde proiektuen kudeaketa", "Personal planning and team project organization" : "Plangintza pertsonala eta talde proiektuen kudeaketa",
"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 aplikazioa plangintza pertsonalera eta proiektuen antolaketara zuzenduta dagoen Nextcloudekin integratutako kanban moduko tresna bat da.\n\n\n- 📥 Gehitu atazak txarteletan eta ordenatu\n- 📄 Idatzi ohar gehigarriak markdown erabiliz\n- 🔖 Esleitu etiketak antolaketa are gehiago hobetzeko\n- 👥 Partekatu zure talde, lagun edo familiarekin\n- 📎 Erantsi fitxategiak eta kapsulatu zure markdown deskribapenean\n- 💬 Eztabaidatu zure taldearekin iruzkinak erabiliz\n- ⚡ Egin aldaketen jarraipena jarduera jarioa erabiliz\n- 🚀 Antolatu zure proiektua", "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 aplikazioa plangintza pertsonalera eta proiektuen antolaketara zuzenduta dagoen Nextcloudekin integratutako kanban moduko tresna bat da.\n\n\n- 📥 Gehitu atazak txarteletan eta ordenatu\n- 📄 Idatzi ohar gehigarriak markdown erabiliz\n- 🔖 Esleitu etiketak antolaketa are gehiago hobetzeko\n- 👥 Partekatu zure talde, lagun edo familiarekin\n- 📎 Erantsi fitxategiak eta kapsulatu zure markdown deskribapenean\n- 💬 Eztabaidatu zure taldearekin iruzkinak erabiliz\n- ⚡ Egin aldaketen jarraipena jarduera jarioa erabiliz\n- 🚀 Antolatu zure proiektua",
"Card details" : "Txartelaren xehetasunak", "Card details" : "Txartelaren xehetasunak",
"Add board" : "Gehitu mahaia", "Add board" : "Gehitu mahaia",
"Select the board to link to a project" : "Hautatu taula proiektu bati estekatzeko", "Select the board to link to a project" : "Hautatu mahaia proiektu bati estekatzeko",
"Search by board title" : "Bilatu taula izenez", "Search by board title" : "Bilatu mahai izenez",
"Select board" : "Hautatu taula", "Select board" : "Hautatu mahaia",
"Create a new card" : "Sortu txartel berri bat", "Select a board" : "Hautatu mahai bat",
"Select a board" : "Hautatu taula bat",
"Select a list" : "Hautatu zerrenda bat", "Select a list" : "Hautatu zerrenda bat",
"Card title" : "Txartelaren izenburua",
"Cancel" : "Utzi", "Cancel" : "Utzi",
"Creating the new card …" : "Txartel berria sortzen...",
"Card \"{card}\" was added to \"{board}\"" : "\"{card}\" txartela \"{board}\"-ra gehitu da",
"Open card" : "Ireki txartela",
"Close" : "Itxi", "Close" : "Itxi",
"Create card" : "Sortu txartela",
"Select a card" : "Hautatu txartel bat", "Select a card" : "Hautatu txartel bat",
"Select the card to link to a project" : "Hautatu proiektu bati estekatzeko txartela", "Select the card to link to a project" : "Hautatu proiektu bati estekatzeko txartela",
"Link to card" : "Estekatu txartelera", "Link to card" : "Estekatu txartelera",
@@ -148,10 +135,10 @@ OC.L10N.register(
"Show archived cards" : "Erakutsi artxibatutako txartelak", "Show archived cards" : "Erakutsi artxibatutako txartelak",
"Toggle compact mode" : "Txandakatu modu trinkoa", "Toggle compact mode" : "Txandakatu modu trinkoa",
"Details" : "Xehetasunak", "Details" : "Xehetasunak",
"Loading board" : "Taula kargatzen", "Loading board" : "Mahaia kargatzen",
"No lists available" : "Ez dago zerrendarik eskuragarri", "No lists available" : "Ez dago zerrendarik eskuragarri",
"Create a new list to add cards to this board" : "Sortu zerrenda berria, taula honetan txartelak gehitzeko", "Create a new list to add cards to this board" : "Sortu zerrenda berria, mahai honetan txartelak gehitzeko",
"Board not found" : "Ez da taula aurkitu", "Board not found" : "Ez da mahaia aurkitu",
"Sharing" : "Partekatzea", "Sharing" : "Partekatzea",
"Tags" : "Etiketak", "Tags" : "Etiketak",
"Deleted items" : "Ezabatutako elementuak", "Deleted items" : "Ezabatutako elementuak",
@@ -159,10 +146,10 @@ OC.L10N.register(
"Deleted lists" : "Ezabatutako zerrendak", "Deleted lists" : "Ezabatutako zerrendak",
"Undo" : "Desegin", "Undo" : "Desegin",
"Deleted cards" : "Ezabatutako txartelak", "Deleted cards" : "Ezabatutako txartelak",
"Share board with a user, group or circle …" : "Partekatu taula 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", "Searching for users, groups and circles …" : "Erabiltzaileak, taldeak, zirkuluak... bilatzen",
"No participants found" : "Ez da parte-hartzailerik aurkitu", "No participants found" : "Ez da parte-hartzailerik aurkitu",
"Board owner" : "Taularen jabea", "Board owner" : "Mahaiaren jabea",
"(Group)" : "(Taldea)", "(Group)" : "(Taldea)",
"(Circle)" : "(Zirkulua)", "(Circle)" : "(Zirkulua)",
"Can edit" : "Editatu dezake", "Can edit" : "Editatu dezake",
@@ -181,26 +168,21 @@ OC.L10N.register(
"Edit" : "Editatu", "Edit" : "Editatu",
"Add a new tag" : "Gehitu etiketa berri bat", "Add a new tag" : "Gehitu etiketa berri bat",
"title and color value must be provided" : "izenburu eta kolore balioak hornitu behar dira", "title and color value must be provided" : "izenburu eta kolore balioak hornitu behar dira",
"Board name" : "Taularen izena", "Board name" : "Mahaiaren izena",
"Members" : "Partaideak", "Members" : "Partaideak",
"Upload new files" : "Kargatu fitxategi berriak", "Upload new files" : "Kargatu fitxategi berriak",
"Share from Files" : "Partekatu Fitxategiak-etik", "Share from Files" : "Partekatu Fitxategiak-etik",
"Add this attachment" : "Gehitu eranskin hau", "Add this attachment" : "Gehitu eranskin hau",
"Show in Files" : "Erakutsi fitxategietan",
"Unshare file" : "Utzi fitxategia partekatzen",
"Delete Attachment" : "Ezabatu eranskina", "Delete Attachment" : "Ezabatu eranskina",
"Restore Attachment" : "Berezarri eranskina", "Restore Attachment" : "Berezarri eranskina",
"File to share" : "Partekatzeko fitxategia", "File to share" : "Partekatzeko fitxategia",
"Invalid path selected" : "Bide baliogabea hautatuta", "Invalid path selected" : "Bide baliogabea hautatuta",
"Open in sidebar view" : "Ireki alboko barraren ikuspegian",
"Open in bigger view" : "Ireki ikuspegi handiago batean",
"Attachments" : "Eranskinak", "Attachments" : "Eranskinak",
"Comments" : "Iruzkinak", "Comments" : "Iruzkinak",
"Modified" : "Aldatua", "Modified" : "Aldatua",
"Created" : "Sortua", "Created" : "Sortua",
"The title cannot be empty." : "Izenburua ezin da hutsik egon.", "The title cannot be empty." : "Izenburua ezin da hutsik egon.",
"No comments yet. Begin the discussion!" : "Ez dago iruzkinik oraindik. Hasi eztabaidatzen!", "No comments yet. Begin the discussion!" : "Ez dago iruzkinik oraindik. Hasi eztabaidatzen!",
"Failed to load comments" : "Iruzkinen kargatzeak huts egin du.",
"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",
@@ -213,7 +195,6 @@ OC.L10N.register(
"The comment cannot be empty." : "Iruzkina ezin da hutsik egon.", "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.", "The comment cannot be longer than 1000 characters." : "Iruzkina ezin da 1000 karaktere baino luzeagoa izan.",
"In reply to" : "Honi erantzunez", "In reply to" : "Honi erantzunez",
"Cancel reply" : "Utzi erantzuna bertan behera",
"Reply" : "Erantzun", "Reply" : "Erantzun",
"Update" : "Eguneratu", "Update" : "Eguneratu",
"Description" : "Deskribapena", "Description" : "Deskribapena",
@@ -226,60 +207,44 @@ OC.L10N.register(
"Write a description …" : "Idatzi deskribapen bat ...", "Write a description …" : "Idatzi deskribapen bat ...",
"Choose attachment" : "Aukeratu eranskina", "Choose attachment" : "Aukeratu eranskina",
"(group)" : "(taldea)", "(group)" : "(taldea)",
"{count} comments, {unread} unread" : "{count} iruzkin, {unread} irakurri gabe", "(circle)" : "(zirkulua)",
"Assign to me" : "Esleitu niri", "Assign to me" : "Esleitu niri",
"Unassign myself" : "Niri esleitzeari utzi", "Unassign myself" : "Niri esleitzeari utzi",
"Move card" : "Mugitu txartela", "Move card" : "Mugitu txartela",
"Unarchive card" : "Berreskuratu txartela artxibotik", "Unarchive card" : "Berreskuratu txartela artxibotik",
"Archive card" : "Artxibatu txartela", "Archive card" : "Artxibatu txartela",
"Delete card" : "Ezabatu txartela", "Delete card" : "Ezabatu txartela",
"Move card to another board" : "Mugitu txartela beste taula batera", "Move card to another board" : "Mugitu txartela beste mahai batera",
"Card deleted" : "Txartela ezabatuta",
"seconds ago" : "segundo lehenago", "seconds ago" : "segundo lehenago",
"All boards" : "Taula guztiak", "All boards" : "Mahai guztiak",
"Archived boards" : "Artxibatutako taulak", "Archived boards" : "Artxibatutako mahaiak",
"Shared with you" : "Zurekin partekatua", "Shared with you" : "Zurekin partekatua",
"Use bigger card view" : "Erabili txartel ikuspegi handiagoa",
"Show boards in calendar/tasks" : "Erakutsi taulak egutegi/zereginetan", "Show boards in calendar/tasks" : "Erakutsi taulak egutegi/zereginetan",
"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 taula propioak sortzea eragotziko die. Erabiltzaileek beraiekin partekatu diren tauletan 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 details" : "Taularen xehetasunak", "Board details" : "Mahaiaren xehetasunak",
"Edit board" : "Editatu mahaia", "Edit board" : "Editatu mahaia",
"Clone board" : "Klonatu taula", "Clone board" : "Klonatu taula",
"Unarchive board" : "Atera taula artxibotik",
"Archive board" : "Artxibatu taula", "Archive board" : "Artxibatu taula",
"Turn on due date reminders" : "Aktibatu epemugako abisuak",
"Turn off due date reminders" : "Desaktibatu epemugako abisuak",
"Due date reminders" : "Epemugako abisuak",
"All cards" : "Txartel guztiak",
"Assigned cards" : "Esleitutako txartelak",
"No notifications" : "Jakinarazpenik ez", "No notifications" : "Jakinarazpenik ez",
"Delete board" : "Ezabatu taula", "Delete board" : "Ezabatu taula",
"Board {0} deleted" : "{0} taula ezabatu da", "Board {0} deleted" : "{0} mahaia ezabatu da",
"Only assigned cards" : "Bakarrik esleitutako txartelak",
"No reminder" : "Abisurik ez", "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}» taula ezabatu nahi duzula? Honek taula 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?" : "Taula ezabatu?", "Delete the board?" : "Mahaia ezabatu?",
"Loading filtered view" : "Kargatzen iragazitako ikuspegia", "Loading filtered view" : "Kargatzen iragazitako ikuspegia",
"Today" : "Gaur", "Today" : "Gaur",
"Tomorrow" : "Bihar", "Tomorrow" : "Bihar",
"This week" : "Aste honetan", "This week" : "Aste honetan",
"No due" : "Epemugarik ez", "No due" : "Epemugarik ez",
"Search for {searchQuery} in all boards" : "Bilatu {searchQuery} taula guztietan",
"No results found" : "Ez da emaitzarik aurkitu",
"No upcoming cards" : "Ez dago hurrengo txartelik", "No upcoming cards" : "Ez dago hurrengo txartelik",
"upcoming cards" : "hurrengo txartelak", "upcoming cards" : "hurrengo txartelak",
"Link to a board" : "Estekatu taula batera", "Link to a board" : "Estekatu mahai batera",
"Link to a card" : "Estekatu txartel batera", "Link to a card" : "Estekatu txartel batera",
"Create a card" : "Sortu txartela",
"Message from {author} in {conversationName}" : "{author} erabiltzailearen mezua {conversationName}-an",
"Something went wrong" : "Zerbait gaizki joan da", "Something went wrong" : "Zerbait gaizki joan da",
"Failed to upload {name}" : "{name} kargatzeak huts egin du",
"Maximum file size of {size} exceeded" : "Fitxategiaren gehienezko {size} tamaina gainditu da", "Maximum file size of {size} exceeded" : "Fitxategiaren gehienezko {size} tamaina gainditu da",
"Error creating the share" : "Errorea partekatzea sortzean", "Error creating the share" : "Errorea partekatzea sortzean",
"Share with a Deck card" : "Partekatu Deck txartel baten bidez",
"Share {file} with a Deck card" : "Partekatu {file} Deck txartel baten bidez",
"Share" : "Partekatu" "Share" : "Partekatu"
}, },
"nplurals=2; plural=(n != 1);"); "nplurals=2; plural=(n != 1);");

View File

@@ -1,40 +1,40 @@
{ "translations": { { "translations": {
"You have created a new board {board}" : "{board} taula berria sortu duzu", "You have created a new board {board}" : "{board} mahai berri bat sortu duzu",
"{user} has created a new board {board}" : "{user} erabiltzaileak {board} taula berria sortu du", "{user} has created a new board {board}" : "{user} erabiltzaileak {board} mahai berri bat sortu du",
"You have deleted the board {board}" : "{board} taula ezabatu duzu", "You have deleted the board {board}" : "{board} mahaia ezabatu duzu",
"{user} has deleted the board {board}" : "{user} erabiltzaileak {board} taula ezabatu du", "{user} has deleted the board {board}" : "{user} erabiltzaileak {board} mahaia ezabatu du",
"You have restored the board {board}" : "{board} taula leheneratu duzu", "You have restored the board {board}" : "{board} mahaia leheneratu duzu",
"{user} has restored the board {board}" : "{user} erabiltzaileak {board} taula leheneratu du", "{user} has restored the board {board}" : "{user} erabiltzaileak {board} mahaia leheneratu du",
"You have shared the board {board} with {acl}" : "{board} taula {acl} erabiltzailearekin partekatu duzu", "You have shared the board {board} with {acl}" : "{board} mahaia {acl} erabiltzailearekin partekatu duzu",
"{user} has shared the board {board} with {acl}" : "{user} erabiltzaileak {board} taula {acl} erabiltzailearekin partekatu du", "{user} has shared the board {board} with {acl}" : "{user} erabiltzaileak {board} mahaia {acl} erabiltzailearekin partekatu du",
"You have removed {acl} from the board {board}" : "{acl} erabiltzailea kendu duzu {board} taulatik", "You have removed {acl} from the board {board}" : "{acl} erabiltzailea kendu duzu {board} mahaitik",
"{user} has removed {acl} from the board {board}" : "{user} erabiltzaileak {acl} erabiltzailea kendu du {board} taulatik", "{user} has removed {acl} from the board {board}" : "{user} erabiltzaileak {acl} erabiltzailea kendu du {board} mahaitik",
"You have renamed the board {before} to {board}" : "{before} taula zena {board} bezala berrizendatu duzu", "You have renamed the board {before} to {board}" : "{before} mahaia zena {board} bezala berrizendatu duzu",
"{user} has renamed the board {before} to {board}" : "{user} erabiltzaileak {before} taula zena {board} bezala berrizendatu du", "{user} has renamed the board {before} to {board}" : "{user} erabiltzaileak {before} mahaia zena {board} bezala berrizendatu du",
"You have archived the board {board}" : "{board} taula artxibatu duzu", "You have archived the board {board}" : "{board} mahaia artxibatu duzu",
"{user} has archived the board {before}" : "{user} erabiltzaileak {before} taula artxibatu du", "{user} has archived the board {before}" : "{user} erabiltzaileak {before} mahaia artxibatu du",
"You have unarchived the board {board}" : "{board} taula artxibotik berreskuratu duzu", "You have unarchived the board {board}" : "{board} mahaia artxibotik berreskuratu duzu",
"{user} has unarchived the board {before}" : "{user} erabiltzaileak {before} taula artxibotik kendu du", "{user} has unarchived the board {before}" : "{user} erabiltzaileak {before} mahaia artxibotik berreskuratu du",
"You have created a new list {stack} on board {board}" : "{stack} zerrenda berria sortu duzu {board} taulan", "You have created a new list {stack} on board {board}" : "{stack} zerrenda berria sortu duzu {board} mahaian",
"{user} has created a new list {stack} on board {board}" : "{user} erabiltzaileak {stack} zerrenda berria sortu du {board} taulan", "{user} has created a new list {stack} on board {board}" : "{user} erabiltzaileak {stack} zerrenda berria sortu du {board} mahaian",
"You have renamed list {before} to {stack} on board {board}" : "{before} zerrenda zena {stack} bezala berrizendatu duzu {board} taulan", "You have renamed list {before} to {stack} on board {board}" : "{before} zerrenda zena {stack} bezala berrizendatu duzu {board} mahaian",
"{user} has renamed list {before} to {stack} on board {board}" : "{user} erabiltzaileak {before} zerrenda zena {stack} bezala berrizendatu du {board} taulan", "{user} has renamed list {before} to {stack} on board {board}" : "{user} erabiltzaileak {before} zerrenda zena {stack} bezala berrizendatu du {board} mahaian",
"You have deleted list {stack} on board {board}" : "{stack} zerrenda ezabatu duzu {board} taulan", "You have deleted list {stack} on board {board}" : "{stack} zerrenda ezabatu duzu {board} mahaian",
"{user} has deleted list {stack} on board {board}" : "{user} erabiltzaileak {stack} zerrenda ezabatu du {board} taulan", "{user} has deleted list {stack} on board {board}" : "{user} erabiltzaileak {stack} zerrenda ezabatu du {board} mahaian",
"You have created card {card} in list {stack} on board {board}" : "{card} txartela sortu duzu {board} taulako {stack} zerrendan", "You have created card {card} in list {stack} on board {board}" : "{card} txartela sortu duzu {board} mahaiko {stack} zerrendan",
"{user} has created card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {card} txartela sortu du {board} taulako {stack} zerrendan", "{user} has created card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {card} txartela sortu du {board} mahaiko {stack} zerrendan",
"You have deleted card {card} in list {stack} on board {board}" : "{card} txartela ezabatu duzu {board} taulako {stack} zerrendan", "You have deleted card {card} in list {stack} on board {board}" : "{card} txartela ezabatu duzu {board} mahaiko {stack} zerrendan",
"{user} has deleted card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {card} txartela ezabatu du {board} taulako {stack} zerrendan", "{user} has deleted card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {card} txartela ezabatu du {board} mahaiko {stack} zerrendan",
"You have renamed the card {before} to {card}" : "{before} taula zena {card} bezala berrizendatu duzu", "You have renamed the card {before} to {card}" : "{before} taula zena {card} bezala berrizendatu duzu",
"{user} has renamed the card {before} to {card}" : "{user} erabiltzaileak {before} taula zena {card} bezala berrizendatu du", "{user} has renamed the card {before} to {card}" : "{user} erabiltzaileak {before} taula zena {card} bezala berrizendatu du",
"You have added a description to card {card} in list {stack} on board {board}" : "{board} taulako {stack} zerrendako {card} txartelari deskripzioa gehitu diozu", "You have added a description to card {card} in list {stack} on board {board}" : "{board} mahaiko {stack} zerrendako {card} txartelari deskripzioa gehitu diozu",
"{user} has added a description to card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {board} taulako {stack} zerrendako {card} txartelari deskripzioa gehitu dio", "{user} has added a description to card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {board} mahaiko {stack} zerrendako {card} txartelari deskripzioa gehitu dio",
"You have updated the description of card {card} in list {stack} on board {board}" : "{board} taulako {stack} zerrendako {card} txartelaren deskripzioa eguneratu duzu", "You have updated the description of card {card} in list {stack} on board {board}" : "{board} mahaiko {stack} zerrendako {card} txartelaren deskripzioa eguneratu duzu",
"{user} has updated the description of the card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {board} taulako {stack} zerrendako {card} txartelaren deskripzioa eguneratu du", "{user} has updated the description of the card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {board} mahaiko {stack} zerrendako {card} txartelaren deskripzioa eguneratu du",
"You have archived card {card} in list {stack} on board {board}" : "{board} taulako {stack} zerrendako {card} txartela artxibatu duzu", "You have archived card {card} in list {stack} on board {board}" : "{board} mahaiko {stack} zerrendako {card} txartela artxibatu duzu",
"{user} has archived card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {board} taulako {stack} zerrendako {card} txartela artxibatu du", "{user} has archived card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {board} mahaiko {stack} zerrendako {card} txartela artxibatu du",
"You have unarchived card {card} in list {stack} on board {board}" : "{board} taulako {stack} zerrendako {card} txartela berreskuratu duzu artxibotik", "You have unarchived card {card} in list {stack} on board {board}" : "{board} mahaiko {stack} zerrendako {card} txartela berreskuratu duzu artxibotik",
"{user} has unarchived card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {board} taulako {stack} zerrendako {card} txartela berreskuratu du artxibotik", "{user} has unarchived card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {board} mahaiko {stack} zerrendako {card} txartela berreskuratu du artxibotik",
"You have removed the due date of card {card}" : "{card} txartelari epemuga kendu diozu", "You have removed the due date of card {card}" : "{card} txartelari epemuga kendu diozu",
"{user} has removed the due date of card {card}" : "{user} erabiltzaileak {card} txartelari epemuga kendu dio", "{user} has removed the due date of card {card}" : "{user} erabiltzaileak {card} txartelari epemuga kendu dio",
"You have set the due date of card {card} to {after}" : "{card} txartelari {after} epemuga ezarri diozu", "You have set the due date of card {card} to {after}" : "{card} txartelari {after} epemuga ezarri diozu",
@@ -42,13 +42,13 @@
"You have updated the due date of card {card} to {after}" : "{card} txartelari epemuga eguneratu diozu: {after}", "You have updated the due date of card {card} to {after}" : "{card} txartelari epemuga eguneratu diozu: {after}",
"{user} has updated the due date of card {card} to {after}" : "{user} erabiltzaileak {card} txartelari epemuga eguneratu dio: {after}", "{user} has updated the due date of card {card} to {after}" : "{user} erabiltzaileak {card} txartelari epemuga eguneratu dio: {after}",
"You have added the tag {label} to card {card} in list {stack} on board {board}" : "{board} mahaiko {stack} zerrendako {card} txartelari {label} etiketa gehitu diozu", "You have added the tag {label} to card {card} in list {stack} on board {board}" : "{board} mahaiko {stack} zerrendako {card} txartelari {label} etiketa gehitu diozu",
"{user} has added the tag {label} to card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {board} taulako {stack} zerrendako {card} txartelari {label} etiketa gehitu dio", "{user} has added the tag {label} to card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {board} mahaiko {stack} zerrendako {card} txartelari {label} etiketa gehitu dio",
"You have removed the tag {label} from card {card} in list {stack} on board {board}" : "{board} taulako {stack} zerrendako {card} txartelari {label} etiketa kendu diozu", "You have removed the tag {label} from card {card} in list {stack} on board {board}" : "{board} mahaiko {stack} zerrendako {card} txartelari {label} etiketa kendu diozu",
"{user} has removed the tag {label} from card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {board} taulako {stack} zerrendako {card} txartelari {label} etiketa kendu dio", "{user} has removed the tag {label} from card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {board} mahaiko {stack} zerrendako {card} txartelari {label} etiketa kendu dio",
"You have assigned {assigneduser} to card {card} on board {board}" : "{board} taulako {card} txartela {assigneduser} erabiltzaileari esleitu diozu", "You have assigned {assigneduser} to card {card} on board {board}" : "{board} mahaiko {card} txartela {assigneduser} erabiltzaileari esleitu diozu",
"{user} has assigned {assigneduser} to card {card} on board {board}" : "{user} erabiltzaileak {board} taulako {card} txartela {assigneduser} erabiltzaileari esleitu dio", "{user} has assigned {assigneduser} to card {card} on board {board}" : "{user} erabiltzaileak {board} mahaiko {card} txartela {assigneduser} erabiltzaileari esleitu dio",
"You have unassigned {assigneduser} from card {card} on board {board}" : "{board} taulako {card} txartela {assigneduser} erabiltzaileari esleitzea ezeztatu duzu", "You have unassigned {assigneduser} from card {card} on board {board}" : "{board} mahaiko {card} txartela {assigneduser} erabiltzaileari esleitzea ezeztatu duzu",
"{user} has unassigned {assigneduser} from card {card} on board {board}" : "{user} erabiltzaileak {board} taulako {card} txartela {assigneduser} erabiltzaileari esleitzea ezeztatu du", "{user} has unassigned {assigneduser} from card {card} on board {board}" : "{user} erabiltzaileak {board} mahaiko {card} txartela {assigneduser} erabiltzaileari esleitzea ezeztatu du",
"You have moved the card {card} from list {stackBefore} to {stack}" : "{card} txartela {stackBefore} zerrendatik {stack} zerrendara aldatu duzu", "You have moved the card {card} from list {stackBefore} to {stack}" : "{card} txartela {stackBefore} zerrendatik {stack} zerrendara aldatu duzu",
"{user} has moved the card {card} from list {stackBefore} to {stack}" : "{user} erabiltzaileak {card} txartela {stackBefore} zerrendatik {stack} zerrendara aldatu du", "{user} has moved the card {card} from list {stackBefore} to {stack}" : "{user} erabiltzaileak {card} txartela {stackBefore} zerrendatik {stack} zerrendara aldatu du",
"You have added the attachment {attachment} to card {card}" : "{attachment} eranskina gehitu diozu {card} txartelari", "You have added the attachment {attachment} to card {card}" : "{attachment} eranskina gehitu diozu {card} txartelari",
@@ -68,15 +68,9 @@
"Upcoming cards" : "Hurrengo txartelak", "Upcoming cards" : "Hurrengo txartelak",
"Personal" : "Pertsonala", "Personal" : "Pertsonala",
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "\"%s\" txartela \"%s\"-n %sk esleitu zaizu.", "The card \"%s\" on \"%s\" has been assigned to you by %s." : "\"%s\" txartela \"%s\"-n %sk esleitu zaizu.",
"{user} has assigned the card {deck-card} on {deck-board} to you." : "{user}-k {deck-board}-ko {deck-card} txartela esleitu dizu.",
"The card \"%s\" on \"%s\" has reached its due date." : " \"%s\" txartela, \"%s\" -n dagoena, epe-mugara ailegatu da.", "The card \"%s\" on \"%s\" has reached its due date." : " \"%s\" txartela, \"%s\" -n dagoena, epe-mugara ailegatu da.",
"The card {deck-card} on {deck-board} has reached its due date." : " {deck-board}-ko {deck-card} txartela epe-mugara ailegatu da.",
"%s has mentioned you in a comment on \"%s\"." : "%sk aipatu dizu \"%s\"-ri buruzko iruzkin batean.", "%s has mentioned you in a comment on \"%s\"." : "%sk aipatu dizu \"%s\"-ri buruzko iruzkin batean.",
"{user} has mentioned you in a comment on {deck-card}." : "{user}-k zure izena aipatu du {deck-card}-ko iruzkin batean.",
"The board \"%s\" has been shared with you by %s." : "\"%s\" mahaia zurekin partekatu du %s-k", "The board \"%s\" has been shared with you by %s." : "\"%s\" mahaia zurekin partekatu du %s-k",
"{user} has shared {deck-board} with you." : "{user} erabiltzaileak {deck-board} partekatu du zurekin.",
"Card comments" : "Txartelaren iruzkinak",
"%s on %s" : "%s hemen: %s",
"No data was provided to create an attachment." : "Ez da daturik eman eranskina sortzeko.", "No data was provided to create an attachment." : "Ez da daturik eman eranskina sortzeko.",
"Finished" : "Bukatuta", "Finished" : "Bukatuta",
"To review" : "Errebisatzeko", "To review" : "Errebisatzeko",
@@ -99,25 +93,18 @@
"A PHP extension stopped the file upload" : "PHP hedapen batek fitxategiaren karga gelditu du", "A PHP extension stopped the file upload" : "PHP hedapen batek fitxategiaren karga gelditu du",
"No file uploaded or file size exceeds maximum of %s" : "Ez da fitxategirik kargatu edo fitxategi-tamainak gehienezko %s muga gainditzen du", "No file uploaded or file size exceeds maximum of %s" : "Ez da fitxategirik kargatu edo fitxategi-tamainak gehienezko %s muga gainditzen du",
"Card not found" : "Txartela ez da aurkitu", "Card not found" : "Txartela ez da aurkitu",
"Path is already shared with this card" : "Bidea dagoeneko partekatu da txartel honekin",
"Invalid date, date format must be YYYY-MM-DD" : "Data baliogabea, dataren formatuak UUUU-HH-EE izan behar du", "Invalid date, date format must be YYYY-MM-DD" : "Data baliogabea, dataren formatuak UUUU-HH-EE izan behar du",
"Personal planning and team project organization" : "Plangintza pertsonala eta talde proiektuen kudeaketa", "Personal planning and team project organization" : "Plangintza pertsonala eta talde proiektuen kudeaketa",
"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 aplikazioa plangintza pertsonalera eta proiektuen antolaketara zuzenduta dagoen Nextcloudekin integratutako kanban moduko tresna bat da.\n\n\n- 📥 Gehitu atazak txarteletan eta ordenatu\n- 📄 Idatzi ohar gehigarriak markdown erabiliz\n- 🔖 Esleitu etiketak antolaketa are gehiago hobetzeko\n- 👥 Partekatu zure talde, lagun edo familiarekin\n- 📎 Erantsi fitxategiak eta kapsulatu zure markdown deskribapenean\n- 💬 Eztabaidatu zure taldearekin iruzkinak erabiliz\n- ⚡ Egin aldaketen jarraipena jarduera jarioa erabiliz\n- 🚀 Antolatu zure proiektua", "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 aplikazioa plangintza pertsonalera eta proiektuen antolaketara zuzenduta dagoen Nextcloudekin integratutako kanban moduko tresna bat da.\n\n\n- 📥 Gehitu atazak txarteletan eta ordenatu\n- 📄 Idatzi ohar gehigarriak markdown erabiliz\n- 🔖 Esleitu etiketak antolaketa are gehiago hobetzeko\n- 👥 Partekatu zure talde, lagun edo familiarekin\n- 📎 Erantsi fitxategiak eta kapsulatu zure markdown deskribapenean\n- 💬 Eztabaidatu zure taldearekin iruzkinak erabiliz\n- ⚡ Egin aldaketen jarraipena jarduera jarioa erabiliz\n- 🚀 Antolatu zure proiektua",
"Card details" : "Txartelaren xehetasunak", "Card details" : "Txartelaren xehetasunak",
"Add board" : "Gehitu mahaia", "Add board" : "Gehitu mahaia",
"Select the board to link to a project" : "Hautatu taula proiektu bati estekatzeko", "Select the board to link to a project" : "Hautatu mahaia proiektu bati estekatzeko",
"Search by board title" : "Bilatu taula izenez", "Search by board title" : "Bilatu mahai izenez",
"Select board" : "Hautatu taula", "Select board" : "Hautatu mahaia",
"Create a new card" : "Sortu txartel berri bat", "Select a board" : "Hautatu mahai bat",
"Select a board" : "Hautatu taula bat",
"Select a list" : "Hautatu zerrenda bat", "Select a list" : "Hautatu zerrenda bat",
"Card title" : "Txartelaren izenburua",
"Cancel" : "Utzi", "Cancel" : "Utzi",
"Creating the new card …" : "Txartel berria sortzen...",
"Card \"{card}\" was added to \"{board}\"" : "\"{card}\" txartela \"{board}\"-ra gehitu da",
"Open card" : "Ireki txartela",
"Close" : "Itxi", "Close" : "Itxi",
"Create card" : "Sortu txartela",
"Select a card" : "Hautatu txartel bat", "Select a card" : "Hautatu txartel bat",
"Select the card to link to a project" : "Hautatu proiektu bati estekatzeko txartela", "Select the card to link to a project" : "Hautatu proiektu bati estekatzeko txartela",
"Link to card" : "Estekatu txartelera", "Link to card" : "Estekatu txartelera",
@@ -146,10 +133,10 @@
"Show archived cards" : "Erakutsi artxibatutako txartelak", "Show archived cards" : "Erakutsi artxibatutako txartelak",
"Toggle compact mode" : "Txandakatu modu trinkoa", "Toggle compact mode" : "Txandakatu modu trinkoa",
"Details" : "Xehetasunak", "Details" : "Xehetasunak",
"Loading board" : "Taula kargatzen", "Loading board" : "Mahaia kargatzen",
"No lists available" : "Ez dago zerrendarik eskuragarri", "No lists available" : "Ez dago zerrendarik eskuragarri",
"Create a new list to add cards to this board" : "Sortu zerrenda berria, taula honetan txartelak gehitzeko", "Create a new list to add cards to this board" : "Sortu zerrenda berria, mahai honetan txartelak gehitzeko",
"Board not found" : "Ez da taula aurkitu", "Board not found" : "Ez da mahaia aurkitu",
"Sharing" : "Partekatzea", "Sharing" : "Partekatzea",
"Tags" : "Etiketak", "Tags" : "Etiketak",
"Deleted items" : "Ezabatutako elementuak", "Deleted items" : "Ezabatutako elementuak",
@@ -157,10 +144,10 @@
"Deleted lists" : "Ezabatutako zerrendak", "Deleted lists" : "Ezabatutako zerrendak",
"Undo" : "Desegin", "Undo" : "Desegin",
"Deleted cards" : "Ezabatutako txartelak", "Deleted cards" : "Ezabatutako txartelak",
"Share board with a user, group or circle …" : "Partekatu taula 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", "Searching for users, groups and circles …" : "Erabiltzaileak, taldeak, zirkuluak... bilatzen",
"No participants found" : "Ez da parte-hartzailerik aurkitu", "No participants found" : "Ez da parte-hartzailerik aurkitu",
"Board owner" : "Taularen jabea", "Board owner" : "Mahaiaren jabea",
"(Group)" : "(Taldea)", "(Group)" : "(Taldea)",
"(Circle)" : "(Zirkulua)", "(Circle)" : "(Zirkulua)",
"Can edit" : "Editatu dezake", "Can edit" : "Editatu dezake",
@@ -179,26 +166,21 @@
"Edit" : "Editatu", "Edit" : "Editatu",
"Add a new tag" : "Gehitu etiketa berri bat", "Add a new tag" : "Gehitu etiketa berri bat",
"title and color value must be provided" : "izenburu eta kolore balioak hornitu behar dira", "title and color value must be provided" : "izenburu eta kolore balioak hornitu behar dira",
"Board name" : "Taularen izena", "Board name" : "Mahaiaren izena",
"Members" : "Partaideak", "Members" : "Partaideak",
"Upload new files" : "Kargatu fitxategi berriak", "Upload new files" : "Kargatu fitxategi berriak",
"Share from Files" : "Partekatu Fitxategiak-etik", "Share from Files" : "Partekatu Fitxategiak-etik",
"Add this attachment" : "Gehitu eranskin hau", "Add this attachment" : "Gehitu eranskin hau",
"Show in Files" : "Erakutsi fitxategietan",
"Unshare file" : "Utzi fitxategia partekatzen",
"Delete Attachment" : "Ezabatu eranskina", "Delete Attachment" : "Ezabatu eranskina",
"Restore Attachment" : "Berezarri eranskina", "Restore Attachment" : "Berezarri eranskina",
"File to share" : "Partekatzeko fitxategia", "File to share" : "Partekatzeko fitxategia",
"Invalid path selected" : "Bide baliogabea hautatuta", "Invalid path selected" : "Bide baliogabea hautatuta",
"Open in sidebar view" : "Ireki alboko barraren ikuspegian",
"Open in bigger view" : "Ireki ikuspegi handiago batean",
"Attachments" : "Eranskinak", "Attachments" : "Eranskinak",
"Comments" : "Iruzkinak", "Comments" : "Iruzkinak",
"Modified" : "Aldatua", "Modified" : "Aldatua",
"Created" : "Sortua", "Created" : "Sortua",
"The title cannot be empty." : "Izenburua ezin da hutsik egon.", "The title cannot be empty." : "Izenburua ezin da hutsik egon.",
"No comments yet. Begin the discussion!" : "Ez dago iruzkinik oraindik. Hasi eztabaidatzen!", "No comments yet. Begin the discussion!" : "Ez dago iruzkinik oraindik. Hasi eztabaidatzen!",
"Failed to load comments" : "Iruzkinen kargatzeak huts egin du.",
"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",
@@ -211,7 +193,6 @@
"The comment cannot be empty." : "Iruzkina ezin da hutsik egon.", "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.", "The comment cannot be longer than 1000 characters." : "Iruzkina ezin da 1000 karaktere baino luzeagoa izan.",
"In reply to" : "Honi erantzunez", "In reply to" : "Honi erantzunez",
"Cancel reply" : "Utzi erantzuna bertan behera",
"Reply" : "Erantzun", "Reply" : "Erantzun",
"Update" : "Eguneratu", "Update" : "Eguneratu",
"Description" : "Deskribapena", "Description" : "Deskribapena",
@@ -224,60 +205,44 @@
"Write a description …" : "Idatzi deskribapen bat ...", "Write a description …" : "Idatzi deskribapen bat ...",
"Choose attachment" : "Aukeratu eranskina", "Choose attachment" : "Aukeratu eranskina",
"(group)" : "(taldea)", "(group)" : "(taldea)",
"{count} comments, {unread} unread" : "{count} iruzkin, {unread} irakurri gabe", "(circle)" : "(zirkulua)",
"Assign to me" : "Esleitu niri", "Assign to me" : "Esleitu niri",
"Unassign myself" : "Niri esleitzeari utzi", "Unassign myself" : "Niri esleitzeari utzi",
"Move card" : "Mugitu txartela", "Move card" : "Mugitu txartela",
"Unarchive card" : "Berreskuratu txartela artxibotik", "Unarchive card" : "Berreskuratu txartela artxibotik",
"Archive card" : "Artxibatu txartela", "Archive card" : "Artxibatu txartela",
"Delete card" : "Ezabatu txartela", "Delete card" : "Ezabatu txartela",
"Move card to another board" : "Mugitu txartela beste taula batera", "Move card to another board" : "Mugitu txartela beste mahai batera",
"Card deleted" : "Txartela ezabatuta",
"seconds ago" : "segundo lehenago", "seconds ago" : "segundo lehenago",
"All boards" : "Taula guztiak", "All boards" : "Mahai guztiak",
"Archived boards" : "Artxibatutako taulak", "Archived boards" : "Artxibatutako mahaiak",
"Shared with you" : "Zurekin partekatua", "Shared with you" : "Zurekin partekatua",
"Use bigger card view" : "Erabili txartel ikuspegi handiagoa",
"Show boards in calendar/tasks" : "Erakutsi taulak egutegi/zereginetan", "Show boards in calendar/tasks" : "Erakutsi taulak egutegi/zereginetan",
"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 taula propioak sortzea eragotziko die. Erabiltzaileek beraiekin partekatu diren tauletan 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 details" : "Taularen xehetasunak", "Board details" : "Mahaiaren xehetasunak",
"Edit board" : "Editatu mahaia", "Edit board" : "Editatu mahaia",
"Clone board" : "Klonatu taula", "Clone board" : "Klonatu taula",
"Unarchive board" : "Atera taula artxibotik",
"Archive board" : "Artxibatu taula", "Archive board" : "Artxibatu taula",
"Turn on due date reminders" : "Aktibatu epemugako abisuak",
"Turn off due date reminders" : "Desaktibatu epemugako abisuak",
"Due date reminders" : "Epemugako abisuak",
"All cards" : "Txartel guztiak",
"Assigned cards" : "Esleitutako txartelak",
"No notifications" : "Jakinarazpenik ez", "No notifications" : "Jakinarazpenik ez",
"Delete board" : "Ezabatu taula", "Delete board" : "Ezabatu taula",
"Board {0} deleted" : "{0} taula ezabatu da", "Board {0} deleted" : "{0} mahaia ezabatu da",
"Only assigned cards" : "Bakarrik esleitutako txartelak",
"No reminder" : "Abisurik ez", "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}» taula ezabatu nahi duzula? Honek taula 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?" : "Taula ezabatu?", "Delete the board?" : "Mahaia ezabatu?",
"Loading filtered view" : "Kargatzen iragazitako ikuspegia", "Loading filtered view" : "Kargatzen iragazitako ikuspegia",
"Today" : "Gaur", "Today" : "Gaur",
"Tomorrow" : "Bihar", "Tomorrow" : "Bihar",
"This week" : "Aste honetan", "This week" : "Aste honetan",
"No due" : "Epemugarik ez", "No due" : "Epemugarik ez",
"Search for {searchQuery} in all boards" : "Bilatu {searchQuery} taula guztietan",
"No results found" : "Ez da emaitzarik aurkitu",
"No upcoming cards" : "Ez dago hurrengo txartelik", "No upcoming cards" : "Ez dago hurrengo txartelik",
"upcoming cards" : "hurrengo txartelak", "upcoming cards" : "hurrengo txartelak",
"Link to a board" : "Estekatu taula batera", "Link to a board" : "Estekatu mahai batera",
"Link to a card" : "Estekatu txartel batera", "Link to a card" : "Estekatu txartel batera",
"Create a card" : "Sortu txartela",
"Message from {author} in {conversationName}" : "{author} erabiltzailearen mezua {conversationName}-an",
"Something went wrong" : "Zerbait gaizki joan da", "Something went wrong" : "Zerbait gaizki joan da",
"Failed to upload {name}" : "{name} kargatzeak huts egin du",
"Maximum file size of {size} exceeded" : "Fitxategiaren gehienezko {size} tamaina gainditu da", "Maximum file size of {size} exceeded" : "Fitxategiaren gehienezko {size} tamaina gainditu da",
"Error creating the share" : "Errorea partekatzea sortzean", "Error creating the share" : "Errorea partekatzea sortzean",
"Share with a Deck card" : "Partekatu Deck txartel baten bidez",
"Share {file} with a Deck card" : "Partekatu {file} Deck txartel baten bidez",
"Share" : "Partekatu" "Share" : "Partekatu"
},"pluralForm" :"nplurals=2; plural=(n != 1);" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@@ -117,6 +117,7 @@ OC.L10N.register(
"Add Attachment" : "افزودن پیوست", "Add Attachment" : "افزودن پیوست",
"Choose attachment" : "انتخاب پیوست", "Choose attachment" : "انتخاب پیوست",
"(group)" : "(گروه)", "(group)" : "(گروه)",
"(circle)" : "(حلقه)",
"Move card" : "انتقال کارت", "Move card" : "انتقال کارت",
"Archive card" : "کارت بایگانی", "Archive card" : "کارت بایگانی",
"Delete card" : "حذف کارت", "Delete card" : "حذف کارت",

View File

@@ -115,6 +115,7 @@
"Add Attachment" : "افزودن پیوست", "Add Attachment" : "افزودن پیوست",
"Choose attachment" : "انتخاب پیوست", "Choose attachment" : "انتخاب پیوست",
"(group)" : "(گروه)", "(group)" : "(گروه)",
"(circle)" : "(حلقه)",
"Move card" : "انتقال کارت", "Move card" : "انتقال کارت",
"Archive card" : "کارت بایگانی", "Archive card" : "کارت بایگانی",
"Delete card" : "حذف کارت", "Delete card" : "حذف کارت",

View File

@@ -70,14 +70,9 @@ OC.L10N.register(
"Upcoming cards" : "Cartes à venir", "Upcoming cards" : "Cartes à venir",
"Personal" : "Personnel", "Personal" : "Personnel",
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "La carte \"%s\" de \"%s\" vous a été assignée par %s.", "The card \"%s\" on \"%s\" has been assigned to you by %s." : "La carte \"%s\" de \"%s\" vous a été assignée par %s.",
"{user} has assigned the card {deck-card} on {deck-board} to you." : "{user} vous a attribué la carte {deck-card} du tableau {deck-board}.",
"The card \"%s\" on \"%s\" has reached its due date." : "La date d'échéance de la carte \"%s\" de \"%s\" a été atteinte.", "The card \"%s\" on \"%s\" has reached its due date." : "La date d'échéance de la carte \"%s\" de \"%s\" a été atteinte.",
"The card {deck-card} on {deck-board} has reached its due date." : "La carte {deck-card} sur {deck-board} a atteint sa date d'échéance.",
"%s has mentioned you in a comment on \"%s\"." : "%s vous a mentionné dans un commentaire sur \"%s\".", "%s has mentioned you in a comment on \"%s\"." : "%s vous a mentionné dans un commentaire sur \"%s\".",
"{user} has mentioned you in a comment on {deck-card}." : "{user} vous a cité dans un commentaire sur {deck-card}.",
"The board \"%s\" has been shared with you by %s." : "Le tableau \"%s\" a été partagé avec vous par %s.", "The board \"%s\" has been shared with you by %s." : "Le tableau \"%s\" a été partagé avec vous par %s.",
"{user} has shared {deck-board} with you." : "{user} vous a partagé le tableau {deck-board}.",
"Card comments" : "Commentaires de la carte",
"No data was provided to create an attachment." : "Aucune donnée n'a été fournie pour créer une pièce jointe.", "No data was provided to create an attachment." : "Aucune donnée n'a été fournie pour créer une pièce jointe.",
"Finished" : "Terminé", "Finished" : "Terminé",
"To review" : "A réviser", "To review" : "A réviser",
@@ -109,16 +104,9 @@ OC.L10N.register(
"Select the board to link to a project" : "Sélection le tableau pour faire le lien avec un projet.", "Select the board to link to a project" : "Sélection le tableau pour faire le lien avec un projet.",
"Search by board title" : "Rechercher par titre du tableau", "Search by board title" : "Rechercher par titre du tableau",
"Select board" : "Sélectionner le tableau", "Select board" : "Sélectionner le tableau",
"Create a new card" : "Créer une nouvelle carte",
"Select a board" : "Sélectionner un tableau", "Select a board" : "Sélectionner un tableau",
"Select a list" : "Sélectionner une liste", "Select a list" : "Sélectionner une liste",
"Card title" : "Titre de la carte",
"Cancel" : "Annuler", "Cancel" : "Annuler",
"Creating the new card …" : "Création de la nouvelle carte…",
"Card \"{card}\" was added to \"{board}\"" : "La carte \"{card}\" a été ajoutée au tableau \"{board}\"",
"Open card" : "Ouvrir la carte",
"Close" : "Fermer",
"Create card" : "Créer une carte",
"Select a card" : "Sélectionnez une carte", "Select a card" : "Sélectionnez une carte",
"Select the card to link to a project" : "Sélectionner la carte à relier à un projet", "Select the card to link to a project" : "Sélectionner la carte à relier à un projet",
"Link to card" : "Relier à une carte", "Link to card" : "Relier à une carte",
@@ -198,7 +186,6 @@ OC.L10N.register(
"Created" : "Créé", "Created" : "Créé",
"The title cannot be empty." : "Le titre ne peut pas être vide.", "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 !", "No comments yet. Begin the discussion!" : "Aucun commentaire pour l'instant, démarrez la discussion !",
"Failed to load comments" : "Échec du chargement des commentaires",
"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",
@@ -223,7 +210,7 @@ OC.L10N.register(
"Write a description …" : "Écrire une description ...", "Write a description …" : "Écrire une description ...",
"Choose attachment" : "Choisir une pièce jointe", "Choose attachment" : "Choisir une pièce jointe",
"(group)" : "(groupe)", "(group)" : "(groupe)",
"{count} comments, {unread} unread" : "{count} commentaires, {unread} non lus", "(circle)" : "(cercle)",
"Assign to me" : "Me l'assigner", "Assign to me" : "Me l'assigner",
"Unassign myself" : "Me le désassigner", "Unassign myself" : "Me le désassigner",
"Move card" : "Déplacer la carte", "Move card" : "Déplacer la carte",
@@ -263,20 +250,14 @@ OC.L10N.register(
"Tomorrow" : "Demain", "Tomorrow" : "Demain",
"This week" : "Cette semaine", "This week" : "Cette semaine",
"No due" : "Sans échéance", "No due" : "Sans échéance",
"Search for {searchQuery} in all boards" : "Rechercher {searchQuery} dans tous les tableaux",
"No results found" : "Aucun résultat",
"No upcoming cards" : "Pas de cartes à venir", "No upcoming cards" : "Pas de cartes à venir",
"upcoming cards" : "cartes à venir", "upcoming cards" : "cartes à venir",
"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",
"Create a card" : "Créer une carte",
"Message from {author} in {conversationName}" : "Message de {author} dans {conversationName}",
"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}", "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",
"Error creating the share" : "Erreur lors de la création du partage", "Error creating the share" : "Erreur lors de la création du partage",
"Share with a Deck card" : "Partager avec Deck en tant que carte",
"Share {file} with a Deck card" : "Partager {file} avec Deck en tant que carte",
"Share" : "Partager" "Share" : "Partager"
}, },
"nplurals=2; plural=(n > 1);"); "nplurals=2; plural=(n > 1);");

View File

@@ -68,14 +68,9 @@
"Upcoming cards" : "Cartes à venir", "Upcoming cards" : "Cartes à venir",
"Personal" : "Personnel", "Personal" : "Personnel",
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "La carte \"%s\" de \"%s\" vous a été assignée par %s.", "The card \"%s\" on \"%s\" has been assigned to you by %s." : "La carte \"%s\" de \"%s\" vous a été assignée par %s.",
"{user} has assigned the card {deck-card} on {deck-board} to you." : "{user} vous a attribué la carte {deck-card} du tableau {deck-board}.",
"The card \"%s\" on \"%s\" has reached its due date." : "La date d'échéance de la carte \"%s\" de \"%s\" a été atteinte.", "The card \"%s\" on \"%s\" has reached its due date." : "La date d'échéance de la carte \"%s\" de \"%s\" a été atteinte.",
"The card {deck-card} on {deck-board} has reached its due date." : "La carte {deck-card} sur {deck-board} a atteint sa date d'échéance.",
"%s has mentioned you in a comment on \"%s\"." : "%s vous a mentionné dans un commentaire sur \"%s\".", "%s has mentioned you in a comment on \"%s\"." : "%s vous a mentionné dans un commentaire sur \"%s\".",
"{user} has mentioned you in a comment on {deck-card}." : "{user} vous a cité dans un commentaire sur {deck-card}.",
"The board \"%s\" has been shared with you by %s." : "Le tableau \"%s\" a été partagé avec vous par %s.", "The board \"%s\" has been shared with you by %s." : "Le tableau \"%s\" a été partagé avec vous par %s.",
"{user} has shared {deck-board} with you." : "{user} vous a partagé le tableau {deck-board}.",
"Card comments" : "Commentaires de la carte",
"No data was provided to create an attachment." : "Aucune donnée n'a été fournie pour créer une pièce jointe.", "No data was provided to create an attachment." : "Aucune donnée n'a été fournie pour créer une pièce jointe.",
"Finished" : "Terminé", "Finished" : "Terminé",
"To review" : "A réviser", "To review" : "A réviser",
@@ -107,16 +102,9 @@
"Select the board to link to a project" : "Sélection le tableau pour faire le lien avec un projet.", "Select the board to link to a project" : "Sélection le tableau pour faire le lien avec un projet.",
"Search by board title" : "Rechercher par titre du tableau", "Search by board title" : "Rechercher par titre du tableau",
"Select board" : "Sélectionner le tableau", "Select board" : "Sélectionner le tableau",
"Create a new card" : "Créer une nouvelle carte",
"Select a board" : "Sélectionner un tableau", "Select a board" : "Sélectionner un tableau",
"Select a list" : "Sélectionner une liste", "Select a list" : "Sélectionner une liste",
"Card title" : "Titre de la carte",
"Cancel" : "Annuler", "Cancel" : "Annuler",
"Creating the new card …" : "Création de la nouvelle carte…",
"Card \"{card}\" was added to \"{board}\"" : "La carte \"{card}\" a été ajoutée au tableau \"{board}\"",
"Open card" : "Ouvrir la carte",
"Close" : "Fermer",
"Create card" : "Créer une carte",
"Select a card" : "Sélectionnez une carte", "Select a card" : "Sélectionnez une carte",
"Select the card to link to a project" : "Sélectionner la carte à relier à un projet", "Select the card to link to a project" : "Sélectionner la carte à relier à un projet",
"Link to card" : "Relier à une carte", "Link to card" : "Relier à une carte",
@@ -196,7 +184,6 @@
"Created" : "Créé", "Created" : "Créé",
"The title cannot be empty." : "Le titre ne peut pas être vide.", "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 !", "No comments yet. Begin the discussion!" : "Aucun commentaire pour l'instant, démarrez la discussion !",
"Failed to load comments" : "Échec du chargement des commentaires",
"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",
@@ -221,7 +208,7 @@
"Write a description …" : "Écrire une description ...", "Write a description …" : "Écrire une description ...",
"Choose attachment" : "Choisir une pièce jointe", "Choose attachment" : "Choisir une pièce jointe",
"(group)" : "(groupe)", "(group)" : "(groupe)",
"{count} comments, {unread} unread" : "{count} commentaires, {unread} non lus", "(circle)" : "(cercle)",
"Assign to me" : "Me l'assigner", "Assign to me" : "Me l'assigner",
"Unassign myself" : "Me le désassigner", "Unassign myself" : "Me le désassigner",
"Move card" : "Déplacer la carte", "Move card" : "Déplacer la carte",
@@ -261,20 +248,14 @@
"Tomorrow" : "Demain", "Tomorrow" : "Demain",
"This week" : "Cette semaine", "This week" : "Cette semaine",
"No due" : "Sans échéance", "No due" : "Sans échéance",
"Search for {searchQuery} in all boards" : "Rechercher {searchQuery} dans tous les tableaux",
"No results found" : "Aucun résultat",
"No upcoming cards" : "Pas de cartes à venir", "No upcoming cards" : "Pas de cartes à venir",
"upcoming cards" : "cartes à venir", "upcoming cards" : "cartes à venir",
"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",
"Create a card" : "Créer une carte",
"Message from {author} in {conversationName}" : "Message de {author} dans {conversationName}",
"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}", "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",
"Error creating the share" : "Erreur lors de la création du partage", "Error creating the share" : "Erreur lors de la création du partage",
"Share with a Deck card" : "Partager avec Deck en tant que carte",
"Share {file} with a Deck card" : "Partager {file} avec Deck en tant que carte",
"Share" : "Partager" "Share" : "Partager"
},"pluralForm" :"nplurals=2; plural=(n > 1);" },"pluralForm" :"nplurals=2; plural=(n > 1);"
} }

View File

@@ -111,6 +111,8 @@ OC.L10N.register(
"Select a list" : "Seleccionar unha lista", "Select a list" : "Seleccionar unha lista",
"Card title" : "Título da tarxeta", "Card title" : "Título da tarxeta",
"Cancel" : "Cancelar", "Cancel" : "Cancelar",
"Creating the new card…" : "Creando unha nova tarxeta…",
"\"{card}\" was added to \"{board}\"" : "«{card}» foi engdida a «{board}»",
"Open card" : "Abrir a tarxeta", "Open card" : "Abrir a tarxeta",
"Close" : "Pechar", "Close" : "Pechar",
"Create card" : "Crear tarxeta", "Create card" : "Crear tarxeta",
@@ -218,6 +220,7 @@ OC.L10N.register(
"Write a description …" : "Escriba unha descrición…", "Write a description …" : "Escriba unha descrición…",
"Choose attachment" : "Escoller o anexo", "Choose attachment" : "Escoller o anexo",
"(group)" : "(grupo)", "(group)" : "(grupo)",
"(circle)" : "(círculo)",
"Assign to me" : "Asignarme", "Assign to me" : "Asignarme",
"Unassign myself" : "Desasignarme", "Unassign myself" : "Desasignarme",
"Move card" : "Mover a tarxeta", "Move card" : "Mover a tarxeta",

View File

@@ -109,6 +109,8 @@
"Select a list" : "Seleccionar unha lista", "Select a list" : "Seleccionar unha lista",
"Card title" : "Título da tarxeta", "Card title" : "Título da tarxeta",
"Cancel" : "Cancelar", "Cancel" : "Cancelar",
"Creating the new card…" : "Creando unha nova tarxeta…",
"\"{card}\" was added to \"{board}\"" : "«{card}» foi engdida a «{board}»",
"Open card" : "Abrir a tarxeta", "Open card" : "Abrir a tarxeta",
"Close" : "Pechar", "Close" : "Pechar",
"Create card" : "Crear tarxeta", "Create card" : "Crear tarxeta",
@@ -216,6 +218,7 @@
"Write a description …" : "Escriba unha descrición…", "Write a description …" : "Escriba unha descrición…",
"Choose attachment" : "Escoller o anexo", "Choose attachment" : "Escoller o anexo",
"(group)" : "(grupo)", "(group)" : "(grupo)",
"(circle)" : "(círculo)",
"Assign to me" : "Asignarme", "Assign to me" : "Asignarme",
"Unassign myself" : "Desasignarme", "Unassign myself" : "Desasignarme",
"Move card" : "Mover a tarxeta", "Move card" : "Mover a tarxeta",

View File

@@ -211,6 +211,7 @@ OC.L10N.register(
"Write a description …" : "כתוב תיאור ...", "Write a description …" : "כתוב תיאור ...",
"Choose attachment" : "בחירת קובץ מצורף", "Choose attachment" : "בחירת קובץ מצורף",
"(group)" : "(קבוצה)", "(group)" : "(קבוצה)",
"(circle)" : "(מעגל)",
"Assign to me" : "הקצאה אלי", "Assign to me" : "הקצאה אלי",
"Unassign myself" : "לבטל את הקצאת עצמי", "Unassign myself" : "לבטל את הקצאת עצמי",
"Move card" : "העברת כרטיס", "Move card" : "העברת כרטיס",

View File

@@ -209,6 +209,7 @@
"Write a description …" : "כתוב תיאור ...", "Write a description …" : "כתוב תיאור ...",
"Choose attachment" : "בחירת קובץ מצורף", "Choose attachment" : "בחירת קובץ מצורף",
"(group)" : "(קבוצה)", "(group)" : "(קבוצה)",
"(circle)" : "(מעגל)",
"Assign to me" : "הקצאה אלי", "Assign to me" : "הקצאה אלי",
"Unassign myself" : "לבטל את הקצאת עצמי", "Unassign myself" : "לבטל את הקצאת עצמי",
"Move card" : "העברת כרטיס", "Move card" : "העברת כרטיס",

View File

@@ -109,6 +109,8 @@ OC.L10N.register(
"Select a list" : "Odaberi popis", "Select a list" : "Odaberi popis",
"Card title" : "Naslov kartice", "Card title" : "Naslov kartice",
"Cancel" : "Odustani", "Cancel" : "Odustani",
"Creating the new card…" : "Stvaranje nove kartice…",
"\"{card}\" was added to \"{board}\"" : "„{card}” je dodano na „{board}”",
"Open card" : "Otvori karticu", "Open card" : "Otvori karticu",
"Close" : "Zatvori", "Close" : "Zatvori",
"Create card" : "Stvori karticu", "Create card" : "Stvori karticu",
@@ -216,6 +218,7 @@ OC.L10N.register(
"Write a description …" : "Napišite opis...", "Write a description …" : "Napišite opis...",
"Choose attachment" : "Odaberi privitak", "Choose attachment" : "Odaberi privitak",
"(group)" : "(grupa)", "(group)" : "(grupa)",
"(circle)" : "(krug)",
"Assign to me" : "Dodijeli meni", "Assign to me" : "Dodijeli meni",
"Unassign myself" : "Ukloni sebe", "Unassign myself" : "Ukloni sebe",
"Move card" : "Premjesti karticu", "Move card" : "Premjesti karticu",

View File

@@ -107,6 +107,8 @@
"Select a list" : "Odaberi popis", "Select a list" : "Odaberi popis",
"Card title" : "Naslov kartice", "Card title" : "Naslov kartice",
"Cancel" : "Odustani", "Cancel" : "Odustani",
"Creating the new card…" : "Stvaranje nove kartice…",
"\"{card}\" was added to \"{board}\"" : "„{card}” je dodano na „{board}”",
"Open card" : "Otvori karticu", "Open card" : "Otvori karticu",
"Close" : "Zatvori", "Close" : "Zatvori",
"Create card" : "Stvori karticu", "Create card" : "Stvori karticu",
@@ -214,6 +216,7 @@
"Write a description …" : "Napišite opis...", "Write a description …" : "Napišite opis...",
"Choose attachment" : "Odaberi privitak", "Choose attachment" : "Odaberi privitak",
"(group)" : "(grupa)", "(group)" : "(grupa)",
"(circle)" : "(krug)",
"Assign to me" : "Dodijeli meni", "Assign to me" : "Dodijeli meni",
"Unassign myself" : "Ukloni sebe", "Unassign myself" : "Ukloni sebe",
"Move card" : "Premjesti karticu", "Move card" : "Premjesti karticu",

View File

@@ -17,42 +17,42 @@ OC.L10N.register(
"{user} has archived the board {before}" : "{user} archiválta a(z) {before} táblát", "{user} has archived the board {before}" : "{user} archiválta a(z) {before} táblát",
"You have unarchived the board {board}" : "Visszavonta a(z) {board} tábla archiválását", "You have unarchived the board {board}" : "Visszavonta a(z) {board} tábla archiválását",
"{user} has unarchived the board {before}" : "{user} visszavonta a(z) {board} tábla archiválását", "{user} has unarchived the board {before}" : "{user} visszavonta a(z) {board} tábla archiválását",
"You have created a new list {stack} on board {board}" : "Létrehozta az új {stack} listát a(z) {board} táblán", "You have created a new list {stack} on board {board}" : "Létrehozta az új {stack} rakást a(z) {board} táblán",
"{user} has created a new list {stack} on board {board}" : "{user} létrehozta az új {stack} listát a(z) {board} táblán", "{user} has created a new list {stack} on board {board}" : "{user} létrehozta az új {stack} rakást a(z) {board} táblán",
"You have renamed list {before} to {stack} on board {board}" : "Átnevezte a(z) {board} tábla {before} listát erre: {stack}", "You have renamed list {before} to {stack} on board {board}" : "Átnevezte a(z) {board} tábla {before} rakását erre: {stack}",
"{user} has renamed list {before} to {stack} on board {board}" : "{user} átnevezte a(z) {board} tábla {before} listáját erre: {stack}", "{user} has renamed list {before} to {stack} on board {board}" : "{user} átnevezte a(z) {board} táblá {before} rakását erre: {stack}",
"You have deleted list {stack} on board {board}" : "Törölte a(z) {stack} listát a(z) {board} tábláról", "You have deleted list {stack} on board {board}" : "Törölte a(z) {stack} rakást a(z) {board} tábláról",
"{user} has deleted list {stack} on board {board}" : "{user} törölte a(z) {stack} listát a(z) {board} tábláról", "{user} has deleted list {stack} on board {board}" : "{user} törölte a(z) {stack} rakást a(z) {board} tábláról",
"You have created card {card} in list {stack} on board {board}" : "Létrehozta a(z) {card} kártyát a(z) {stack} listában, a(z) {board} táblán", "You have created card {card} in list {stack} on board {board}" : "Létrehozta a(z) {card} kártyát a(z) {stack} rakásban, a(z) {board} táblán",
"{user} has created card {card} in list {stack} on board {board}" : "{user} létrehozta a(z) {card} kártyát a(z) {stack} listában, a(z) {board} táblán", "{user} has created card {card} in list {stack} on board {board}" : "{user} létrehozta a(z) {card} kártyát a(z) {stack} rakásban, a(z) {board} táblán",
"You have deleted card {card} in list {stack} on board {board}" : "Törölte a(z) {card} kártyát a(z) {stack} listából, a(z) {board} táblán", "You have deleted card {card} in list {stack} on board {board}" : "Törölte a(z) {card} kártyát a(z) {stack} rakásból, a(z) {board} táblán",
"{user} has deleted card {card} in list {stack} on board {board}" : "{user} törölte a(z) {card} kártyát a(z) {stack} listában, a(z) {board} táblán", "{user} has deleted card {card} in list {stack} on board {board}" : "{user} törölte a(z) {card} kártyát a(z) {stack} rakásban, a(z) {board} táblán",
"You have renamed the card {before} to {card}" : "Átnevezte a(z) {before} kártyát erre: {card}", "You have renamed the card {before} to {card}" : "Átnevezte a(z) {before} kártyát erre: {card}",
"{user} has renamed the card {before} to {card}" : "{user} átnevezte a(z) {before} kártyát erre: {card}", "{user} has renamed the card {before} to {card}" : "{user} átnevezte a(z) {before} kártyát erre: {card}",
"You have added a description to card {card} in list {stack} on board {board}" : "Leírást adott hozzá a(z) {card} kártyához a(z) {stack} listában, a(z) {board} táblán", "You have added a description to card {card} in list {stack} on board {board}" : "Leírást adott hozzá a(z) {card} kártyához a(z) {stack} rakásban, a(z) {board} táblán",
"{user} has added a description to card {card} in list {stack} on board {board}" : "{user} leírást adott hozzá a(z) {card} kártyához a(z) {stack} listában, a(z) {board} táblán", "{user} has added a description to card {card} in list {stack} on board {board}" : "{user} leírást adott hozzá a(z) {card} kártyához a(z) {stack} rakásban, a(z) {board} táblán",
"You have updated the description of card {card} in list {stack} on board {board}" : "Frissítette a(z) {card} kártya leírását a(z) {stack} listában, a(z) {board} táblán", "You have updated the description of card {card} in list {stack} on board {board}" : "Frissítette a(z) {card} kártya leírását a(z) {stack} rakásban, a(z) {board} táblán",
"{user} has updated the description of the card {card} in list {stack} on board {board}" : "{user} frissítette a(z) {card} kártya leírását a(z) {stack} listában, a(z) {board} táblán", "{user} has updated the description of the card {card} in list {stack} on board {board}" : "{user} frissítette a(z) {card} kártya leírását a(z) {stack} rakásban, a(z) {board} táblán",
"You have archived card {card} in list {stack} on board {board}" : "Archiválta a(z) {card} kártyát a(z) {stack} listában, a(z) {board} táblán", "You have archived card {card} in list {stack} on board {board}" : "Archiválta a(z) {card} kártyát a(z) {stack} rakásban, a(z) {board} táblán",
"{user} has archived card {card} in list {stack} on board {board}" : "{user} archiválta a(z) {card} kártyát a(z) {stack} listában, a(z) {board} táblán", "{user} has archived card {card} in list {stack} on board {board}" : "{user} archiválta a(z) {card} kártyát a(z) {stack} rakásban, a(z) {board} táblán",
"You have unarchived card {card} in list {stack} on board {board}" : "Visszavonta a(z) {card} kártya archiválását a(z) {stack} listában, a(z) {board} táblán", "You have unarchived card {card} in list {stack} on board {board}" : "Visszavonta a(z) {card} kártya archiválását a(z) {stack} rakásban, a(z) {board} táblán",
"{user} has unarchived card {card} in list {stack} on board {board}" : "{user} visszavonta a(z) {card} kártya archiválását a(z) {stack} listában, a(z) {board} táblán", "{user} has unarchived card {card} in list {stack} on board {board}" : "{user} visszavonta a(z) {card} kártya archiválását a(z) {stack} rakásban, a(z) {board} táblán",
"You have removed the due date of card {card}" : "Eltávolította a(z) {card} kártya esedékességét", "You have removed the due date of card {card}" : "Eltávolította a(z) {card} kártya esedékességét",
"{user} has removed the due date of card {card}" : "{user} eltávolította a(z) {card} kártya esedékességét", "{user} has removed the due date of card {card}" : "{user} eltávolította a(z) {card} kártya esedékességét",
"You have set the due date of card {card} to {after}" : "Beállította a(z) {card} kártya esedékességét", "You have set the due date of card {card} to {after}" : "Beállította a(z) {card} kártya esedékességét",
"{user} has set the due date of card {card} to {after}" : "{user} beállította a(z) {card} kártya esedékességét", "{user} has set the due date of card {card} to {after}" : "{user} beállította a(z) {card} kártya esedékességét",
"You have updated the due date of card {card} to {after}" : "Frissítette a(z) {card} kártya esedékességét erre: {after}", "You have updated the due date of card {card} to {after}" : "Frissítette a(z) {card} kártya esedékességét erre: {after}",
"{user} has updated the due date of card {card} to {after}" : "{user} frissítette a(z) {card} kártya esedékességét erre: {after}", "{user} has updated the due date of card {card} to {after}" : "{user} frissítette a(z) {card} kártya esedékességét erre: {after}",
"You have added the tag {label} to card {card} in list {stack} on board {board}" : "Hozzáadta a(z) {label} címkét a(z) {card} kártyához, a(z) {stack} listában, a(z) {board} táblán", "You have added the tag {label} to card {card} in list {stack} on board {board}" : "Hozzáadta a(z) {label} címkét a(z) {card} kártyához, a(z) {stack} rakásban, a(z) {board} táblán",
"{user} has added the tag {label} to card {card} in list {stack} on board {board}" : "{user} hozzáadta a(z) {label} címkét a(z) {card} kártyához, a(z) {stack} listában, a(z) {board} táblán", "{user} has added the tag {label} to card {card} in list {stack} on board {board}" : "{user} hozzáadta a(z) {label} címkét a(z) {card} kártyához, a(z) {stack} rakásban, a(z) {board} táblán",
"You have removed the tag {label} from card {card} in list {stack} on board {board}" : "Eltávolította a(z) {label} címkét a(z) {card} kártyáról, a(z) {stack} listában, a(z) {board} táblán", "You have removed the tag {label} from card {card} in list {stack} on board {board}" : "Eltávolította a(z) {label} címkét a(z) {card} kártyáról, a(z) {stack} rakásban, a(z) {board} táblán",
"{user} has removed the tag {label} from card {card} in list {stack} on board {board}" : "{user} eltávolította a(z) {label} címkét a(z) {card} kártyáról, a(z) {stack} listában, a(z) {board} táblán", "{user} has removed the tag {label} from card {card} in list {stack} on board {board}" : "{user} eltávolította a(z) {label} címkét a(z) {card} kártyáról, a(z) {stack} rakásban, a(z) {board} táblán",
"You have assigned {assigneduser} to card {card} on board {board}" : "Hozzárendelte a(z) {card} kártyát a(z) {board} táblán a következőhöz: {assigneduser}", "You have assigned {assigneduser} to card {card} on board {board}" : "Hozzárendelte a(z) {card} kártyát a(z) {board} táblán a következőhöz: {assigneduser}",
"{user} has assigned {assigneduser} to card {card} on board {board}" : "{user} hozzárendelte a(z) {card} kártyát a(z) {board} táblán a következőhöz: {assigneduser}", "{user} has assigned {assigneduser} to card {card} on board {board}" : "{user} hozzárendelte a(z) {card} kártyát a(z) {board} táblán a következőhöz: {assigneduser}",
"You have unassigned {assigneduser} from card {card} on board {board}" : "Eltávolította a(z) {card} kártyát a(z) {board} táblán a következőtől: {assigneduser}", "You have unassigned {assigneduser} from card {card} on board {board}" : "Eltávolította a(z) {card} kártyát a(z) {board} táblán a következőtől: {assigneduser}",
"{user} has unassigned {assigneduser} from card {card} on board {board}" : "{user} eltávolította a(z) {card} kártyát a(z) {board} táblán a következőtől: {assigneduser}", "{user} has unassigned {assigneduser} from card {card} on board {board}" : "{user} eltávolította a(z) {card} kártyát a(z) {board} táblán a következőtől: {assigneduser}",
"You have moved the card {card} from list {stackBefore} to {stack}" : "Áthelyezte a(z) {card} kártyát a(z) {stackBefore} listából a(z) {stack} listába", "You have moved the card {card} from list {stackBefore} to {stack}" : "Áthelyezte a(z) {card} kártyát a(z) {stackBefore} rakásból a(z) {stack} rakásba",
"{user} has moved the card {card} from list {stackBefore} to {stack}" : "{user} áthelyezte a(z) {card} kártyát a(z) {stackBefore} listából a(z) {stack} listába", "{user} has moved the card {card} from list {stackBefore} to {stack}" : "{user} áthelyezte a(z) {card} kártyát a(z) {stackBefore} rakásból a(z) {stack} rakásba",
"You have added the attachment {attachment} to card {card}" : "Hozzáadta a(z) {attachment} mellékletet a(z) {card} kártyához", "You have added the attachment {attachment} to card {card}" : "Hozzáadta a(z) {attachment} mellékletet a(z) {card} kártyához",
"{user} has added the attachment {attachment} to card {card}" : "{user} hozzáadta a(z) {attachment} mellékletet a(z) {card} kártyához", "{user} has added the attachment {attachment} to card {card}" : "{user} hozzáadta a(z) {attachment} mellékletet a(z) {card} kártyához",
"You have updated the attachment {attachment} on card {card}" : "Frissítette a(z) {attachment} mellékletet a(z) {card} kártyánál", "You have updated the attachment {attachment} on card {card}" : "Frissítette a(z) {attachment} mellékletet a(z) {card} kártyánál",
@@ -73,7 +73,7 @@ OC.L10N.register(
"The card \"%s\" on \"%s\" has reached its due date." : "A(z) „%s” kártya a(z) „%s” táblán elérte a határidejét.", "The card \"%s\" on \"%s\" has reached its due date." : "A(z) „%s” kártya a(z) „%s” táblán elérte a határidejét.",
"%s has mentioned you in a comment on \"%s\"." : "%s megemlítette egy hozzászólásban ennél: „%s”.", "%s has mentioned you in a comment on \"%s\"." : "%s megemlítette egy hozzászólásban ennél: „%s”.",
"The board \"%s\" has been shared with you by %s." : "A(z) „%s” táblát %s osztotta meg Önnel.", "The board \"%s\" has been shared with you by %s." : "A(z) „%s” táblát %s osztotta meg Önnel.",
"Card comments" : "Kártya hozzászólásai", "Card comments" : "Kártyák hozzászólások",
"%s on %s" : "%s ezen: %s", "%s on %s" : "%s ezen: %s",
"No data was provided to create an attachment." : "Nincsenek megadva adatok a melléklet létrehozásához.", "No data was provided to create an attachment." : "Nincsenek megadva adatok a melléklet létrehozásához.",
"Finished" : "Kész", "Finished" : "Kész",
@@ -111,6 +111,8 @@ OC.L10N.register(
"Select a list" : "Válasszon listát", "Select a list" : "Válasszon listát",
"Card title" : "Kártya címe", "Card title" : "Kártya címe",
"Cancel" : "Mégse", "Cancel" : "Mégse",
"Creating the new card…" : "Új kártya létrehozása",
"\"{card}\" was added to \"{board}\"" : "\"{card}\" hozzáadva ehhez: \"{board}\"",
"Open card" : "Kártya megnyitása", "Open card" : "Kártya megnyitása",
"Close" : "Bezárás", "Close" : "Bezárás",
"Create card" : "Kártya létrehozása", "Create card" : "Kártya létrehozása",
@@ -143,8 +145,8 @@ OC.L10N.register(
"Toggle compact mode" : "Kompakt mód be/ki", "Toggle compact mode" : "Kompakt mód be/ki",
"Details" : "Részletek", "Details" : "Részletek",
"Loading board" : "Tábla betöltése", "Loading board" : "Tábla betöltése",
"No lists available" : "Nincs elérhető lista", "No lists available" : "Nincs elérhető rakás",
"Create a new list to add cards to this board" : "Hozzon létre egy új listát a kártyák ehhez a táblához való hozzáadásához", "Create a new list to add cards to this board" : "Hozzon létre egy új rakást kártyák ehhez a táblához való hozzáadásához",
"Board not found" : "A tábla nem található", "Board not found" : "A tábla nem található",
"Sharing" : "Megosztás", "Sharing" : "Megosztás",
"Tags" : "Címkék", "Tags" : "Címkék",
@@ -154,7 +156,7 @@ OC.L10N.register(
"Undo" : "Visszavonás", "Undo" : "Visszavonás",
"Deleted cards" : "Törölt kártyák", "Deleted cards" : "Törölt kártyák",
"Share board with a user, group or circle …" : "Tábla megosztása felhasználóval, csoporttal vagy körrel…", "Share board with a user, group or circle …" : "Tábla megosztása felhasználóval, csoporttal vagy körrel…",
"Searching for users, groups and circles …" : "Felhasználók, csoportok és körök keresése", "Searching for users, groups and circles …" : "Felhasználókkal, csoportok és körök keresése",
"No participants found" : "Nem találhatók résztvevők", "No participants found" : "Nem találhatók résztvevők",
"Board owner" : "Tábla tulajdonosa", "Board owner" : "Tábla tulajdonosa",
"(Group)" : "(Csoport)", "(Group)" : "(Csoport)",
@@ -168,7 +170,7 @@ OC.L10N.register(
"Archive all cards" : "Az összes kártya archiválása", "Archive all cards" : "Az összes kártya archiválása",
"Delete list" : "Lista törlése", "Delete list" : "Lista törlése",
"Add card" : "Kártya hozzáadása", "Add card" : "Kártya hozzáadása",
"Archive all cards in this list" : "Az összes kártya archiválása ebben a listában", "Archive all cards in this list" : "Archív kártyák ebben a listában",
"Add a new card" : "Új kártya hozzáadása", "Add a new card" : "Új kártya hozzáadása",
"Card name" : "Kártya neve", "Card name" : "Kártya neve",
"List deleted" : "Lista törölve", "List deleted" : "Lista törölve",
@@ -218,6 +220,7 @@ OC.L10N.register(
"Write a description …" : "Leírás megadása", "Write a description …" : "Leírás megadása",
"Choose attachment" : "Válasszon mellékletet", "Choose attachment" : "Válasszon mellékletet",
"(group)" : "(csoport)", "(group)" : "(csoport)",
"(circle)" : "(kör)",
"Assign to me" : "Hozzám rendelés", "Assign to me" : "Hozzám rendelés",
"Unassign myself" : "Saját magam hozzárendelésének eltávolítása", "Unassign myself" : "Saját magam hozzárendelésének eltávolítása",
"Move card" : "Kártya áthelyezése", "Move card" : "Kártya áthelyezése",

View File

@@ -15,42 +15,42 @@
"{user} has archived the board {before}" : "{user} archiválta a(z) {before} táblát", "{user} has archived the board {before}" : "{user} archiválta a(z) {before} táblát",
"You have unarchived the board {board}" : "Visszavonta a(z) {board} tábla archiválását", "You have unarchived the board {board}" : "Visszavonta a(z) {board} tábla archiválását",
"{user} has unarchived the board {before}" : "{user} visszavonta a(z) {board} tábla archiválását", "{user} has unarchived the board {before}" : "{user} visszavonta a(z) {board} tábla archiválását",
"You have created a new list {stack} on board {board}" : "Létrehozta az új {stack} listát a(z) {board} táblán", "You have created a new list {stack} on board {board}" : "Létrehozta az új {stack} rakást a(z) {board} táblán",
"{user} has created a new list {stack} on board {board}" : "{user} létrehozta az új {stack} listát a(z) {board} táblán", "{user} has created a new list {stack} on board {board}" : "{user} létrehozta az új {stack} rakást a(z) {board} táblán",
"You have renamed list {before} to {stack} on board {board}" : "Átnevezte a(z) {board} tábla {before} listát erre: {stack}", "You have renamed list {before} to {stack} on board {board}" : "Átnevezte a(z) {board} tábla {before} rakását erre: {stack}",
"{user} has renamed list {before} to {stack} on board {board}" : "{user} átnevezte a(z) {board} tábla {before} listáját erre: {stack}", "{user} has renamed list {before} to {stack} on board {board}" : "{user} átnevezte a(z) {board} táblá {before} rakását erre: {stack}",
"You have deleted list {stack} on board {board}" : "Törölte a(z) {stack} listát a(z) {board} tábláról", "You have deleted list {stack} on board {board}" : "Törölte a(z) {stack} rakást a(z) {board} tábláról",
"{user} has deleted list {stack} on board {board}" : "{user} törölte a(z) {stack} listát a(z) {board} tábláról", "{user} has deleted list {stack} on board {board}" : "{user} törölte a(z) {stack} rakást a(z) {board} tábláról",
"You have created card {card} in list {stack} on board {board}" : "Létrehozta a(z) {card} kártyát a(z) {stack} listában, a(z) {board} táblán", "You have created card {card} in list {stack} on board {board}" : "Létrehozta a(z) {card} kártyát a(z) {stack} rakásban, a(z) {board} táblán",
"{user} has created card {card} in list {stack} on board {board}" : "{user} létrehozta a(z) {card} kártyát a(z) {stack} listában, a(z) {board} táblán", "{user} has created card {card} in list {stack} on board {board}" : "{user} létrehozta a(z) {card} kártyát a(z) {stack} rakásban, a(z) {board} táblán",
"You have deleted card {card} in list {stack} on board {board}" : "Törölte a(z) {card} kártyát a(z) {stack} listából, a(z) {board} táblán", "You have deleted card {card} in list {stack} on board {board}" : "Törölte a(z) {card} kártyát a(z) {stack} rakásból, a(z) {board} táblán",
"{user} has deleted card {card} in list {stack} on board {board}" : "{user} törölte a(z) {card} kártyát a(z) {stack} listában, a(z) {board} táblán", "{user} has deleted card {card} in list {stack} on board {board}" : "{user} törölte a(z) {card} kártyát a(z) {stack} rakásban, a(z) {board} táblán",
"You have renamed the card {before} to {card}" : "Átnevezte a(z) {before} kártyát erre: {card}", "You have renamed the card {before} to {card}" : "Átnevezte a(z) {before} kártyát erre: {card}",
"{user} has renamed the card {before} to {card}" : "{user} átnevezte a(z) {before} kártyát erre: {card}", "{user} has renamed the card {before} to {card}" : "{user} átnevezte a(z) {before} kártyát erre: {card}",
"You have added a description to card {card} in list {stack} on board {board}" : "Leírást adott hozzá a(z) {card} kártyához a(z) {stack} listában, a(z) {board} táblán", "You have added a description to card {card} in list {stack} on board {board}" : "Leírást adott hozzá a(z) {card} kártyához a(z) {stack} rakásban, a(z) {board} táblán",
"{user} has added a description to card {card} in list {stack} on board {board}" : "{user} leírást adott hozzá a(z) {card} kártyához a(z) {stack} listában, a(z) {board} táblán", "{user} has added a description to card {card} in list {stack} on board {board}" : "{user} leírást adott hozzá a(z) {card} kártyához a(z) {stack} rakásban, a(z) {board} táblán",
"You have updated the description of card {card} in list {stack} on board {board}" : "Frissítette a(z) {card} kártya leírását a(z) {stack} listában, a(z) {board} táblán", "You have updated the description of card {card} in list {stack} on board {board}" : "Frissítette a(z) {card} kártya leírását a(z) {stack} rakásban, a(z) {board} táblán",
"{user} has updated the description of the card {card} in list {stack} on board {board}" : "{user} frissítette a(z) {card} kártya leírását a(z) {stack} listában, a(z) {board} táblán", "{user} has updated the description of the card {card} in list {stack} on board {board}" : "{user} frissítette a(z) {card} kártya leírását a(z) {stack} rakásban, a(z) {board} táblán",
"You have archived card {card} in list {stack} on board {board}" : "Archiválta a(z) {card} kártyát a(z) {stack} listában, a(z) {board} táblán", "You have archived card {card} in list {stack} on board {board}" : "Archiválta a(z) {card} kártyát a(z) {stack} rakásban, a(z) {board} táblán",
"{user} has archived card {card} in list {stack} on board {board}" : "{user} archiválta a(z) {card} kártyát a(z) {stack} listában, a(z) {board} táblán", "{user} has archived card {card} in list {stack} on board {board}" : "{user} archiválta a(z) {card} kártyát a(z) {stack} rakásban, a(z) {board} táblán",
"You have unarchived card {card} in list {stack} on board {board}" : "Visszavonta a(z) {card} kártya archiválását a(z) {stack} listában, a(z) {board} táblán", "You have unarchived card {card} in list {stack} on board {board}" : "Visszavonta a(z) {card} kártya archiválását a(z) {stack} rakásban, a(z) {board} táblán",
"{user} has unarchived card {card} in list {stack} on board {board}" : "{user} visszavonta a(z) {card} kártya archiválását a(z) {stack} listában, a(z) {board} táblán", "{user} has unarchived card {card} in list {stack} on board {board}" : "{user} visszavonta a(z) {card} kártya archiválását a(z) {stack} rakásban, a(z) {board} táblán",
"You have removed the due date of card {card}" : "Eltávolította a(z) {card} kártya esedékességét", "You have removed the due date of card {card}" : "Eltávolította a(z) {card} kártya esedékességét",
"{user} has removed the due date of card {card}" : "{user} eltávolította a(z) {card} kártya esedékességét", "{user} has removed the due date of card {card}" : "{user} eltávolította a(z) {card} kártya esedékességét",
"You have set the due date of card {card} to {after}" : "Beállította a(z) {card} kártya esedékességét", "You have set the due date of card {card} to {after}" : "Beállította a(z) {card} kártya esedékességét",
"{user} has set the due date of card {card} to {after}" : "{user} beállította a(z) {card} kártya esedékességét", "{user} has set the due date of card {card} to {after}" : "{user} beállította a(z) {card} kártya esedékességét",
"You have updated the due date of card {card} to {after}" : "Frissítette a(z) {card} kártya esedékességét erre: {after}", "You have updated the due date of card {card} to {after}" : "Frissítette a(z) {card} kártya esedékességét erre: {after}",
"{user} has updated the due date of card {card} to {after}" : "{user} frissítette a(z) {card} kártya esedékességét erre: {after}", "{user} has updated the due date of card {card} to {after}" : "{user} frissítette a(z) {card} kártya esedékességét erre: {after}",
"You have added the tag {label} to card {card} in list {stack} on board {board}" : "Hozzáadta a(z) {label} címkét a(z) {card} kártyához, a(z) {stack} listában, a(z) {board} táblán", "You have added the tag {label} to card {card} in list {stack} on board {board}" : "Hozzáadta a(z) {label} címkét a(z) {card} kártyához, a(z) {stack} rakásban, a(z) {board} táblán",
"{user} has added the tag {label} to card {card} in list {stack} on board {board}" : "{user} hozzáadta a(z) {label} címkét a(z) {card} kártyához, a(z) {stack} listában, a(z) {board} táblán", "{user} has added the tag {label} to card {card} in list {stack} on board {board}" : "{user} hozzáadta a(z) {label} címkét a(z) {card} kártyához, a(z) {stack} rakásban, a(z) {board} táblán",
"You have removed the tag {label} from card {card} in list {stack} on board {board}" : "Eltávolította a(z) {label} címkét a(z) {card} kártyáról, a(z) {stack} listában, a(z) {board} táblán", "You have removed the tag {label} from card {card} in list {stack} on board {board}" : "Eltávolította a(z) {label} címkét a(z) {card} kártyáról, a(z) {stack} rakásban, a(z) {board} táblán",
"{user} has removed the tag {label} from card {card} in list {stack} on board {board}" : "{user} eltávolította a(z) {label} címkét a(z) {card} kártyáról, a(z) {stack} listában, a(z) {board} táblán", "{user} has removed the tag {label} from card {card} in list {stack} on board {board}" : "{user} eltávolította a(z) {label} címkét a(z) {card} kártyáról, a(z) {stack} rakásban, a(z) {board} táblán",
"You have assigned {assigneduser} to card {card} on board {board}" : "Hozzárendelte a(z) {card} kártyát a(z) {board} táblán a következőhöz: {assigneduser}", "You have assigned {assigneduser} to card {card} on board {board}" : "Hozzárendelte a(z) {card} kártyát a(z) {board} táblán a következőhöz: {assigneduser}",
"{user} has assigned {assigneduser} to card {card} on board {board}" : "{user} hozzárendelte a(z) {card} kártyát a(z) {board} táblán a következőhöz: {assigneduser}", "{user} has assigned {assigneduser} to card {card} on board {board}" : "{user} hozzárendelte a(z) {card} kártyát a(z) {board} táblán a következőhöz: {assigneduser}",
"You have unassigned {assigneduser} from card {card} on board {board}" : "Eltávolította a(z) {card} kártyát a(z) {board} táblán a következőtől: {assigneduser}", "You have unassigned {assigneduser} from card {card} on board {board}" : "Eltávolította a(z) {card} kártyát a(z) {board} táblán a következőtől: {assigneduser}",
"{user} has unassigned {assigneduser} from card {card} on board {board}" : "{user} eltávolította a(z) {card} kártyát a(z) {board} táblán a következőtől: {assigneduser}", "{user} has unassigned {assigneduser} from card {card} on board {board}" : "{user} eltávolította a(z) {card} kártyát a(z) {board} táblán a következőtől: {assigneduser}",
"You have moved the card {card} from list {stackBefore} to {stack}" : "Áthelyezte a(z) {card} kártyát a(z) {stackBefore} listából a(z) {stack} listába", "You have moved the card {card} from list {stackBefore} to {stack}" : "Áthelyezte a(z) {card} kártyát a(z) {stackBefore} rakásból a(z) {stack} rakásba",
"{user} has moved the card {card} from list {stackBefore} to {stack}" : "{user} áthelyezte a(z) {card} kártyát a(z) {stackBefore} listából a(z) {stack} listába", "{user} has moved the card {card} from list {stackBefore} to {stack}" : "{user} áthelyezte a(z) {card} kártyát a(z) {stackBefore} rakásból a(z) {stack} rakásba",
"You have added the attachment {attachment} to card {card}" : "Hozzáadta a(z) {attachment} mellékletet a(z) {card} kártyához", "You have added the attachment {attachment} to card {card}" : "Hozzáadta a(z) {attachment} mellékletet a(z) {card} kártyához",
"{user} has added the attachment {attachment} to card {card}" : "{user} hozzáadta a(z) {attachment} mellékletet a(z) {card} kártyához", "{user} has added the attachment {attachment} to card {card}" : "{user} hozzáadta a(z) {attachment} mellékletet a(z) {card} kártyához",
"You have updated the attachment {attachment} on card {card}" : "Frissítette a(z) {attachment} mellékletet a(z) {card} kártyánál", "You have updated the attachment {attachment} on card {card}" : "Frissítette a(z) {attachment} mellékletet a(z) {card} kártyánál",
@@ -71,7 +71,7 @@
"The card \"%s\" on \"%s\" has reached its due date." : "A(z) „%s” kártya a(z) „%s” táblán elérte a határidejét.", "The card \"%s\" on \"%s\" has reached its due date." : "A(z) „%s” kártya a(z) „%s” táblán elérte a határidejét.",
"%s has mentioned you in a comment on \"%s\"." : "%s megemlítette egy hozzászólásban ennél: „%s”.", "%s has mentioned you in a comment on \"%s\"." : "%s megemlítette egy hozzászólásban ennél: „%s”.",
"The board \"%s\" has been shared with you by %s." : "A(z) „%s” táblát %s osztotta meg Önnel.", "The board \"%s\" has been shared with you by %s." : "A(z) „%s” táblát %s osztotta meg Önnel.",
"Card comments" : "Kártya hozzászólásai", "Card comments" : "Kártyák hozzászólások",
"%s on %s" : "%s ezen: %s", "%s on %s" : "%s ezen: %s",
"No data was provided to create an attachment." : "Nincsenek megadva adatok a melléklet létrehozásához.", "No data was provided to create an attachment." : "Nincsenek megadva adatok a melléklet létrehozásához.",
"Finished" : "Kész", "Finished" : "Kész",
@@ -109,6 +109,8 @@
"Select a list" : "Válasszon listát", "Select a list" : "Válasszon listát",
"Card title" : "Kártya címe", "Card title" : "Kártya címe",
"Cancel" : "Mégse", "Cancel" : "Mégse",
"Creating the new card…" : "Új kártya létrehozása",
"\"{card}\" was added to \"{board}\"" : "\"{card}\" hozzáadva ehhez: \"{board}\"",
"Open card" : "Kártya megnyitása", "Open card" : "Kártya megnyitása",
"Close" : "Bezárás", "Close" : "Bezárás",
"Create card" : "Kártya létrehozása", "Create card" : "Kártya létrehozása",
@@ -141,8 +143,8 @@
"Toggle compact mode" : "Kompakt mód be/ki", "Toggle compact mode" : "Kompakt mód be/ki",
"Details" : "Részletek", "Details" : "Részletek",
"Loading board" : "Tábla betöltése", "Loading board" : "Tábla betöltése",
"No lists available" : "Nincs elérhető lista", "No lists available" : "Nincs elérhető rakás",
"Create a new list to add cards to this board" : "Hozzon létre egy új listát a kártyák ehhez a táblához való hozzáadásához", "Create a new list to add cards to this board" : "Hozzon létre egy új rakást kártyák ehhez a táblához való hozzáadásához",
"Board not found" : "A tábla nem található", "Board not found" : "A tábla nem található",
"Sharing" : "Megosztás", "Sharing" : "Megosztás",
"Tags" : "Címkék", "Tags" : "Címkék",
@@ -152,7 +154,7 @@
"Undo" : "Visszavonás", "Undo" : "Visszavonás",
"Deleted cards" : "Törölt kártyák", "Deleted cards" : "Törölt kártyák",
"Share board with a user, group or circle …" : "Tábla megosztása felhasználóval, csoporttal vagy körrel…", "Share board with a user, group or circle …" : "Tábla megosztása felhasználóval, csoporttal vagy körrel…",
"Searching for users, groups and circles …" : "Felhasználók, csoportok és körök keresése", "Searching for users, groups and circles …" : "Felhasználókkal, csoportok és körök keresése",
"No participants found" : "Nem találhatók résztvevők", "No participants found" : "Nem találhatók résztvevők",
"Board owner" : "Tábla tulajdonosa", "Board owner" : "Tábla tulajdonosa",
"(Group)" : "(Csoport)", "(Group)" : "(Csoport)",
@@ -166,7 +168,7 @@
"Archive all cards" : "Az összes kártya archiválása", "Archive all cards" : "Az összes kártya archiválása",
"Delete list" : "Lista törlése", "Delete list" : "Lista törlése",
"Add card" : "Kártya hozzáadása", "Add card" : "Kártya hozzáadása",
"Archive all cards in this list" : "Az összes kártya archiválása ebben a listában", "Archive all cards in this list" : "Archív kártyák ebben a listában",
"Add a new card" : "Új kártya hozzáadása", "Add a new card" : "Új kártya hozzáadása",
"Card name" : "Kártya neve", "Card name" : "Kártya neve",
"List deleted" : "Lista törölve", "List deleted" : "Lista törölve",
@@ -216,6 +218,7 @@
"Write a description …" : "Leírás megadása", "Write a description …" : "Leírás megadása",
"Choose attachment" : "Válasszon mellékletet", "Choose attachment" : "Válasszon mellékletet",
"(group)" : "(csoport)", "(group)" : "(csoport)",
"(circle)" : "(kör)",
"Assign to me" : "Hozzám rendelés", "Assign to me" : "Hozzám rendelés",
"Unassign myself" : "Saját magam hozzárendelésének eltávolítása", "Unassign myself" : "Saját magam hozzárendelésének eltávolítása",
"Move card" : "Kártya áthelyezése", "Move card" : "Kártya áthelyezése",

View File

@@ -182,6 +182,7 @@ OC.L10N.register(
"Add Attachment" : "Tambah Lampiran", "Add Attachment" : "Tambah Lampiran",
"Choose attachment" : "Pilih lampiran", "Choose attachment" : "Pilih lampiran",
"(group)" : "(grup)", "(group)" : "(grup)",
"(circle)" : "(lingkaran)",
"Assign to me" : "Tugaskan saya", "Assign to me" : "Tugaskan saya",
"Move card" : "Pindahkan kartu", "Move card" : "Pindahkan kartu",
"Unarchive card" : "Memulihkan kartu", "Unarchive card" : "Memulihkan kartu",

View File

@@ -180,6 +180,7 @@
"Add Attachment" : "Tambah Lampiran", "Add Attachment" : "Tambah Lampiran",
"Choose attachment" : "Pilih lampiran", "Choose attachment" : "Pilih lampiran",
"(group)" : "(grup)", "(group)" : "(grup)",
"(circle)" : "(lingkaran)",
"Assign to me" : "Tugaskan saya", "Assign to me" : "Tugaskan saya",
"Move card" : "Pindahkan kartu", "Move card" : "Pindahkan kartu",
"Unarchive card" : "Memulihkan kartu", "Unarchive card" : "Memulihkan kartu",

View File

@@ -70,13 +70,9 @@ OC.L10N.register(
"Upcoming cards" : "Prossime schede", "Upcoming cards" : "Prossime schede",
"Personal" : "Personale", "Personal" : "Personale",
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "La scheda \"%s\" in \"%s\" ti è stata assegnata da %s.", "The card \"%s\" on \"%s\" has been assigned to you by %s." : "La scheda \"%s\" in \"%s\" ti è stata assegnata da %s.",
"{user} has assigned the card {deck-card} on {deck-board} to you." : "{user} ti ha assegnato la scheda {deck-card} in {deck-board}.",
"The card \"%s\" on \"%s\" has reached its due date." : "La scheda \"%s\" in \"%s\" ha raggiunto la sua data di scadenza.", "The card \"%s\" on \"%s\" has reached its due date." : "La scheda \"%s\" in \"%s\" ha raggiunto la sua data di scadenza.",
"The card {deck-card} on {deck-board} has reached its due date." : "La scheda {deck-card} in {deck-board} ha raggiunto la sua data di scadenza.",
"%s has mentioned you in a comment on \"%s\"." : "%s ti ha menzionato in un commento su \"%s\".", "%s has mentioned you in a comment on \"%s\"." : "%s ti ha menzionato in un commento su \"%s\".",
"{user} has mentioned you in a comment on {deck-card}." : "{user} ti ha menzionato in un commento su {deck-card}.",
"The board \"%s\" has been shared with you by %s." : "La lavagna \"%s\" è stata condivisa con te da %s.", "The board \"%s\" has been shared with you by %s." : "La lavagna \"%s\" è stata condivisa con te da %s.",
"{user} has shared {deck-board} with you." : "{user} ha condiviso {deck-board} con te.",
"Card comments" : "Commenti", "Card comments" : "Commenti",
"%s on %s" : "%s su %s", "%s on %s" : "%s su %s",
"No data was provided to create an attachment." : "Non è stato fornito alcun dato per creare un allegato.", "No data was provided to create an attachment." : "Non è stato fornito alcun dato per creare un allegato.",
@@ -115,8 +111,8 @@ OC.L10N.register(
"Select a list" : "Seleziona un elenco", "Select a list" : "Seleziona un elenco",
"Card title" : "Titolo scheda", "Card title" : "Titolo scheda",
"Cancel" : "Annulla", "Cancel" : "Annulla",
"Creating the new card …" : "Creazione della nuova scheda...", "Creating the new card…" : "Creazione della nuova scheda...",
"Card \"{card}\" was added to \"{board}\"" : "La scheda \"{card}\" è stata aggiunta a \"{board}\"", "\"{card}\" was added to \"{board}\"" : "\"{card}\" è stata aggiunta a \"{board}\"",
"Open card" : "Apri scheda", "Open card" : "Apri scheda",
"Close" : "Chiudi", "Close" : "Chiudi",
"Create card" : "Crea scheda", "Create card" : "Crea scheda",
@@ -200,7 +196,6 @@ OC.L10N.register(
"Created" : "Creato il", "Created" : "Creato il",
"The title cannot be empty." : "Il titolo non può essere vuoto.", "The title cannot be empty." : "Il titolo non può essere vuoto.",
"No comments yet. Begin the discussion!" : "Ancora nessun commento. Inizia la discussione.", "No comments yet. Begin the discussion!" : "Ancora nessun commento. Inizia la discussione.",
"Failed to load comments" : "Caricamento commenti non riuscito",
"Assign a tag to this card…" : "Assegna un'etichetta a questa scheda…", "Assign a tag to this card…" : "Assegna un'etichetta a questa scheda…",
"Assign to users" : "Assegna a utenti", "Assign to users" : "Assegna a utenti",
"Assign to users/groups/circles" : "Assegna a utenti/gruppi/cerchie", "Assign to users/groups/circles" : "Assegna a utenti/gruppi/cerchie",
@@ -213,7 +208,6 @@ OC.L10N.register(
"The comment cannot be empty." : "Il commento non può essere vuoto.", "The comment cannot be empty." : "Il commento non può essere vuoto.",
"The comment cannot be longer than 1000 characters." : "Il commento non può essere più lungo di 1000 caratteri.", "The comment cannot be longer than 1000 characters." : "Il commento non può essere più lungo di 1000 caratteri.",
"In reply to" : "In risposta a", "In reply to" : "In risposta a",
"Cancel reply" : "Annulla risposta",
"Reply" : "Rispondi", "Reply" : "Rispondi",
"Update" : "Aggiorna", "Update" : "Aggiorna",
"Description" : "Descrizione", "Description" : "Descrizione",
@@ -226,7 +220,7 @@ OC.L10N.register(
"Write a description …" : "Scrivi una descrizione…", "Write a description …" : "Scrivi una descrizione…",
"Choose attachment" : "Scegli allegato", "Choose attachment" : "Scegli allegato",
"(group)" : "(gruppo)", "(group)" : "(gruppo)",
"{count} comments, {unread} unread" : "{count} commenti, {unread} non letti", "(circle)" : "(cerchia)",
"Assign to me" : "Assegna a me", "Assign to me" : "Assegna a me",
"Unassign myself" : "Rimuovi assegnazione da me", "Unassign myself" : "Rimuovi assegnazione da me",
"Move card" : "Sposta scheda", "Move card" : "Sposta scheda",

View File

@@ -68,13 +68,9 @@
"Upcoming cards" : "Prossime schede", "Upcoming cards" : "Prossime schede",
"Personal" : "Personale", "Personal" : "Personale",
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "La scheda \"%s\" in \"%s\" ti è stata assegnata da %s.", "The card \"%s\" on \"%s\" has been assigned to you by %s." : "La scheda \"%s\" in \"%s\" ti è stata assegnata da %s.",
"{user} has assigned the card {deck-card} on {deck-board} to you." : "{user} ti ha assegnato la scheda {deck-card} in {deck-board}.",
"The card \"%s\" on \"%s\" has reached its due date." : "La scheda \"%s\" in \"%s\" ha raggiunto la sua data di scadenza.", "The card \"%s\" on \"%s\" has reached its due date." : "La scheda \"%s\" in \"%s\" ha raggiunto la sua data di scadenza.",
"The card {deck-card} on {deck-board} has reached its due date." : "La scheda {deck-card} in {deck-board} ha raggiunto la sua data di scadenza.",
"%s has mentioned you in a comment on \"%s\"." : "%s ti ha menzionato in un commento su \"%s\".", "%s has mentioned you in a comment on \"%s\"." : "%s ti ha menzionato in un commento su \"%s\".",
"{user} has mentioned you in a comment on {deck-card}." : "{user} ti ha menzionato in un commento su {deck-card}.",
"The board \"%s\" has been shared with you by %s." : "La lavagna \"%s\" è stata condivisa con te da %s.", "The board \"%s\" has been shared with you by %s." : "La lavagna \"%s\" è stata condivisa con te da %s.",
"{user} has shared {deck-board} with you." : "{user} ha condiviso {deck-board} con te.",
"Card comments" : "Commenti", "Card comments" : "Commenti",
"%s on %s" : "%s su %s", "%s on %s" : "%s su %s",
"No data was provided to create an attachment." : "Non è stato fornito alcun dato per creare un allegato.", "No data was provided to create an attachment." : "Non è stato fornito alcun dato per creare un allegato.",
@@ -113,8 +109,8 @@
"Select a list" : "Seleziona un elenco", "Select a list" : "Seleziona un elenco",
"Card title" : "Titolo scheda", "Card title" : "Titolo scheda",
"Cancel" : "Annulla", "Cancel" : "Annulla",
"Creating the new card …" : "Creazione della nuova scheda...", "Creating the new card…" : "Creazione della nuova scheda...",
"Card \"{card}\" was added to \"{board}\"" : "La scheda \"{card}\" è stata aggiunta a \"{board}\"", "\"{card}\" was added to \"{board}\"" : "\"{card}\" è stata aggiunta a \"{board}\"",
"Open card" : "Apri scheda", "Open card" : "Apri scheda",
"Close" : "Chiudi", "Close" : "Chiudi",
"Create card" : "Crea scheda", "Create card" : "Crea scheda",
@@ -198,7 +194,6 @@
"Created" : "Creato il", "Created" : "Creato il",
"The title cannot be empty." : "Il titolo non può essere vuoto.", "The title cannot be empty." : "Il titolo non può essere vuoto.",
"No comments yet. Begin the discussion!" : "Ancora nessun commento. Inizia la discussione.", "No comments yet. Begin the discussion!" : "Ancora nessun commento. Inizia la discussione.",
"Failed to load comments" : "Caricamento commenti non riuscito",
"Assign a tag to this card…" : "Assegna un'etichetta a questa scheda…", "Assign a tag to this card…" : "Assegna un'etichetta a questa scheda…",
"Assign to users" : "Assegna a utenti", "Assign to users" : "Assegna a utenti",
"Assign to users/groups/circles" : "Assegna a utenti/gruppi/cerchie", "Assign to users/groups/circles" : "Assegna a utenti/gruppi/cerchie",
@@ -211,7 +206,6 @@
"The comment cannot be empty." : "Il commento non può essere vuoto.", "The comment cannot be empty." : "Il commento non può essere vuoto.",
"The comment cannot be longer than 1000 characters." : "Il commento non può essere più lungo di 1000 caratteri.", "The comment cannot be longer than 1000 characters." : "Il commento non può essere più lungo di 1000 caratteri.",
"In reply to" : "In risposta a", "In reply to" : "In risposta a",
"Cancel reply" : "Annulla risposta",
"Reply" : "Rispondi", "Reply" : "Rispondi",
"Update" : "Aggiorna", "Update" : "Aggiorna",
"Description" : "Descrizione", "Description" : "Descrizione",
@@ -224,7 +218,7 @@
"Write a description …" : "Scrivi una descrizione…", "Write a description …" : "Scrivi una descrizione…",
"Choose attachment" : "Scegli allegato", "Choose attachment" : "Scegli allegato",
"(group)" : "(gruppo)", "(group)" : "(gruppo)",
"{count} comments, {unread} unread" : "{count} commenti, {unread} non letti", "(circle)" : "(cerchia)",
"Assign to me" : "Assegna a me", "Assign to me" : "Assegna a me",
"Unassign myself" : "Rimuovi assegnazione da me", "Unassign myself" : "Rimuovi assegnazione da me",
"Move card" : "Sposta scheda", "Move card" : "Sposta scheda",

View File

@@ -63,9 +63,9 @@ OC.L10N.register(
"{user} has restored the attachment {attachment} to card {card}" : "{user}が添付ファイル{attachment}をカード{card}に復元しました", "{user} has restored the attachment {attachment} to card {card}" : "{user}が添付ファイル{attachment}をカード{card}に復元しました",
"You have commented on card {card}" : "カード{card}にコメントしました", "You have commented on card {card}" : "カード{card}にコメントしました",
"{user} has commented on card {card}" : "{user}がカード{card}にコメントしました", "{user} has commented on card {card}" : "{user}がカード{card}にコメントしました",
"A <strong>card description</strong> inside the Deck app has been changed" : "デッキアプリ内の<strong>カードの説明</strong>が変更されたとき", "A <strong>card description</strong> inside the Deck app has been changed" : "デッキアプリ内の<strong>カードの説明</strong>が変更されました",
"Deck" : "デッキ", "Deck" : "デッキ",
"Changes in the <strong>Deck app</strong>" : "<strong>デッキアプリ</strong>変更があったとき", "Changes in the <strong>Deck app</strong>" : "<strong>デッキアプリ</strong>変更",
"A <strong>comment</strong> was created on a card" : "カードに<strong>コメント</strong>が作成されたとき", "A <strong>comment</strong> was created on a card" : "カードに<strong>コメント</strong>が作成されたとき",
"Upcoming cards" : "今後のカード", "Upcoming cards" : "今後のカード",
"Personal" : "個人", "Personal" : "個人",
@@ -111,6 +111,8 @@ OC.L10N.register(
"Select a list" : "リストを選択", "Select a list" : "リストを選択",
"Card title" : "カードのタイトル", "Card title" : "カードのタイトル",
"Cancel" : "キャンセル", "Cancel" : "キャンセル",
"Creating the new card…" : "新しいカードを作成しています…",
"\"{card}\" was added to \"{board}\"" : "\"{board}\"に\"{card}\"を追加しました",
"Open card" : "カードを開く", "Open card" : "カードを開く",
"Close" : "閉じる", "Close" : "閉じる",
"Create card" : "カードを作成", "Create card" : "カードを作成",
@@ -197,7 +199,7 @@ OC.L10N.register(
"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" : "ユーザー/グループ/サークルに割り当てる",
"Assign a user to this card…" : "このカードユーザーに割り当てる…", "Assign a user to this card…" : "このカードユーザーに割り当てる…",
"Due date" : "期限", "Due date" : "期限",
"Set a due date" : "期限を設定", "Set a due date" : "期限を設定",
"Remove due date" : "期限を削除", "Remove due date" : "期限を削除",
@@ -218,6 +220,7 @@ OC.L10N.register(
"Write a description …" : "説明を書く…", "Write a description …" : "説明を書く…",
"Choose attachment" : "添付ファイルを選択", "Choose attachment" : "添付ファイルを選択",
"(group)" : "(グループ)", "(group)" : "(グループ)",
"(circle)" : "(サークル)",
"Assign to me" : "自分に割り当てる", "Assign to me" : "自分に割り当てる",
"Unassign myself" : "自分への割り当てを解除", "Unassign myself" : "自分への割り当てを解除",
"Move card" : "カードの移動", "Move card" : "カードの移動",

View File

@@ -61,9 +61,9 @@
"{user} has restored the attachment {attachment} to card {card}" : "{user}が添付ファイル{attachment}をカード{card}に復元しました", "{user} has restored the attachment {attachment} to card {card}" : "{user}が添付ファイル{attachment}をカード{card}に復元しました",
"You have commented on card {card}" : "カード{card}にコメントしました", "You have commented on card {card}" : "カード{card}にコメントしました",
"{user} has commented on card {card}" : "{user}がカード{card}にコメントしました", "{user} has commented on card {card}" : "{user}がカード{card}にコメントしました",
"A <strong>card description</strong> inside the Deck app has been changed" : "デッキアプリ内の<strong>カードの説明</strong>が変更されたとき", "A <strong>card description</strong> inside the Deck app has been changed" : "デッキアプリ内の<strong>カードの説明</strong>が変更されました",
"Deck" : "デッキ", "Deck" : "デッキ",
"Changes in the <strong>Deck app</strong>" : "<strong>デッキアプリ</strong>変更があったとき", "Changes in the <strong>Deck app</strong>" : "<strong>デッキアプリ</strong>変更",
"A <strong>comment</strong> was created on a card" : "カードに<strong>コメント</strong>が作成されたとき", "A <strong>comment</strong> was created on a card" : "カードに<strong>コメント</strong>が作成されたとき",
"Upcoming cards" : "今後のカード", "Upcoming cards" : "今後のカード",
"Personal" : "個人", "Personal" : "個人",
@@ -109,6 +109,8 @@
"Select a list" : "リストを選択", "Select a list" : "リストを選択",
"Card title" : "カードのタイトル", "Card title" : "カードのタイトル",
"Cancel" : "キャンセル", "Cancel" : "キャンセル",
"Creating the new card…" : "新しいカードを作成しています…",
"\"{card}\" was added to \"{board}\"" : "\"{board}\"に\"{card}\"を追加しました",
"Open card" : "カードを開く", "Open card" : "カードを開く",
"Close" : "閉じる", "Close" : "閉じる",
"Create card" : "カードを作成", "Create card" : "カードを作成",
@@ -195,7 +197,7 @@
"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" : "ユーザー/グループ/サークルに割り当てる",
"Assign a user to this card…" : "このカードユーザーに割り当てる…", "Assign a user to this card…" : "このカードユーザーに割り当てる…",
"Due date" : "期限", "Due date" : "期限",
"Set a due date" : "期限を設定", "Set a due date" : "期限を設定",
"Remove due date" : "期限を削除", "Remove due date" : "期限を削除",
@@ -216,6 +218,7 @@
"Write a description …" : "説明を書く…", "Write a description …" : "説明を書く…",
"Choose attachment" : "添付ファイルを選択", "Choose attachment" : "添付ファイルを選択",
"(group)" : "(グループ)", "(group)" : "(グループ)",
"(circle)" : "(サークル)",
"Assign to me" : "自分に割り当てる", "Assign to me" : "自分に割り当てる",
"Unassign myself" : "自分への割り当てを解除", "Unassign myself" : "自分への割り当てを解除",
"Move card" : "カードの移動", "Move card" : "カードの移動",

View File

@@ -197,6 +197,7 @@ OC.L10N.register(
"Add Attachment" : "Pridėti priedą", "Add Attachment" : "Pridėti priedą",
"Choose attachment" : "Pasirinkite priedą", "Choose attachment" : "Pasirinkite priedą",
"(group)" : "(grupė)", "(group)" : "(grupė)",
"(circle)" : "(ratas)",
"Assign to me" : "Priskirti sau", "Assign to me" : "Priskirti sau",
"Move card" : "Perkelti kortelę", "Move card" : "Perkelti kortelę",
"Unarchive card" : "Išarchyvuoti kortelę", "Unarchive card" : "Išarchyvuoti kortelę",

View File

@@ -195,6 +195,7 @@
"Add Attachment" : "Pridėti priedą", "Add Attachment" : "Pridėti priedą",
"Choose attachment" : "Pasirinkite priedą", "Choose attachment" : "Pasirinkite priedą",
"(group)" : "(grupė)", "(group)" : "(grupė)",
"(circle)" : "(ratas)",
"Assign to me" : "Priskirti sau", "Assign to me" : "Priskirti sau",
"Move card" : "Perkelti kortelę", "Move card" : "Perkelti kortelę",
"Unarchive card" : "Išarchyvuoti kortelę", "Unarchive card" : "Išarchyvuoti kortelę",

View File

@@ -109,6 +109,8 @@ OC.L10N.register(
"Select a list" : "Избери листа", "Select a list" : "Избери листа",
"Card title" : "Наслов на картицата", "Card title" : "Наслов на картицата",
"Cancel" : "Откажи", "Cancel" : "Откажи",
"Creating the new card…" : "Креирање нова картица...",
"\"{card}\" was added to \"{board}\"" : "\"{card}\" е додадена на \"{board}\"",
"Open card" : "Отвори картица", "Open card" : "Отвори картица",
"Close" : "Затвори", "Close" : "Затвори",
"Create card" : "Креирајте картица", "Create card" : "Креирајте картица",
@@ -216,6 +218,7 @@ OC.L10N.register(
"Write a description …" : "Напиши опис ...", "Write a description …" : "Напиши опис ...",
"Choose attachment" : "Избери прилог", "Choose attachment" : "Избери прилог",
"(group)" : "(group)", "(group)" : "(group)",
"(circle)" : "(круг)",
"Assign to me" : "Доделени мене", "Assign to me" : "Доделени мене",
"Unassign myself" : "Откажи се", "Unassign myself" : "Откажи се",
"Move card" : "Премести картица", "Move card" : "Премести картица",

View File

@@ -107,6 +107,8 @@
"Select a list" : "Избери листа", "Select a list" : "Избери листа",
"Card title" : "Наслов на картицата", "Card title" : "Наслов на картицата",
"Cancel" : "Откажи", "Cancel" : "Откажи",
"Creating the new card…" : "Креирање нова картица...",
"\"{card}\" was added to \"{board}\"" : "\"{card}\" е додадена на \"{board}\"",
"Open card" : "Отвори картица", "Open card" : "Отвори картица",
"Close" : "Затвори", "Close" : "Затвори",
"Create card" : "Креирајте картица", "Create card" : "Креирајте картица",
@@ -214,6 +216,7 @@
"Write a description …" : "Напиши опис ...", "Write a description …" : "Напиши опис ...",
"Choose attachment" : "Избери прилог", "Choose attachment" : "Избери прилог",
"(group)" : "(group)", "(group)" : "(group)",
"(circle)" : "(круг)",
"Assign to me" : "Доделени мене", "Assign to me" : "Доделени мене",
"Unassign myself" : "Откажи се", "Unassign myself" : "Откажи се",
"Move card" : "Премести картица", "Move card" : "Премести картица",

View File

@@ -70,15 +70,9 @@ OC.L10N.register(
"Upcoming cards" : "Aanstaande kaarten", "Upcoming cards" : "Aanstaande kaarten",
"Personal" : "Persoonlijk", "Personal" : "Persoonlijk",
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "De kaart \"%s\" op \"%s\" is aan jou toegewezen door %s.", "The card \"%s\" on \"%s\" has been assigned to you by %s." : "De kaart \"%s\" op \"%s\" is aan jou toegewezen door %s.",
"{user} has assigned the card {deck-card} on {deck-board} to you." : "{user} heeft kaart {deck-card} op {deck-board} aan jou toegewezen.",
"The card \"%s\" on \"%s\" has reached its due date." : "De kaart \"%s\" in \"%s\" heeft zijn vervaldatum bereikt.", "The card \"%s\" on \"%s\" has reached its due date." : "De kaart \"%s\" in \"%s\" heeft zijn vervaldatum bereikt.",
"The card {deck-card} on {deck-board} has reached its due date." : "De kaart {deck-card} in {deck-board} heeft de vervaldatum bereikt.",
"%s has mentioned you in a comment on \"%s\"." : "%s vermeldde je in een reactie op \"%s\".", "%s has mentioned you in a comment on \"%s\"." : "%s vermeldde je in een reactie op \"%s\".",
"{user} has mentioned you in a comment on {deck-card}." : "{user} vermeldde je in een reactie op {deck-card}.",
"The board \"%s\" has been shared with you by %s." : "Het bord \"%s\" is door %s met je gedeeld.", "The board \"%s\" has been shared with you by %s." : "Het bord \"%s\" is door %s met je gedeeld.",
"{user} has shared {deck-board} with you." : "{user} heeft het bord {deck-board} met je gedeeld.",
"Card comments" : "Kaart opmerkingen",
"%s on %s" : "%s op %s",
"No data was provided to create an attachment." : "Geen gegevens opgegeven voor het maken van een bijlage.", "No data was provided to create an attachment." : "Geen gegevens opgegeven voor het maken van een bijlage.",
"Finished" : "Afgerond", "Finished" : "Afgerond",
"To review" : "Beoordelen", "To review" : "Beoordelen",
@@ -115,8 +109,8 @@ OC.L10N.register(
"Select a list" : "Selecteer een lijst", "Select a list" : "Selecteer een lijst",
"Card title" : "Kaarttitel", "Card title" : "Kaarttitel",
"Cancel" : "Annuleren", "Cancel" : "Annuleren",
"Creating the new card …" : "Aanmaken nieuwe kaart...", "Creating the new card…" : "Aanmaken nieuwe kaart...",
"Card \"{card}\" was added to \"{board}\"" : "Kaart \"{card}\" is toegevoegd aan \"{board}\"", "\"{card}\" was added to \"{board}\"" : "\"{card}\" is toegevoegd aan \"{board}\"",
"Open card" : "Open kaard", "Open card" : "Open kaard",
"Close" : "Sluiten", "Close" : "Sluiten",
"Create card" : "Aanmaken kaart", "Create card" : "Aanmaken kaart",
@@ -200,7 +194,6 @@ OC.L10N.register(
"Created" : "Gemaakt", "Created" : "Gemaakt",
"The title cannot be empty." : "De titel kan niet leeg zijn.", "The title cannot be empty." : "De titel kan niet leeg zijn.",
"No comments yet. Begin the discussion!" : "Nog geen reacties. Begin de discussie!", "No comments yet. Begin the discussion!" : "Nog geen reacties. Begin de discussie!",
"Failed to load comments" : "Kon reacties niet laden.",
"Assign a tag to this card…" : "Wijs een label toe aan deze kaart...", "Assign a tag to this card…" : "Wijs een label toe aan deze kaart...",
"Assign to users" : "Toewijzen aan gebruikers", "Assign to users" : "Toewijzen aan gebruikers",
"Assign to users/groups/circles" : "Toewijzen aan gebruikers/groepen/kringen", "Assign to users/groups/circles" : "Toewijzen aan gebruikers/groepen/kringen",
@@ -213,7 +206,6 @@ OC.L10N.register(
"The comment cannot be empty." : "De reactie kan niet leeg zijn.", "The comment cannot be empty." : "De reactie kan niet leeg zijn.",
"The comment cannot be longer than 1000 characters." : "De reactie kan niet langer dan 1000 tekens zijn.", "The comment cannot be longer than 1000 characters." : "De reactie kan niet langer dan 1000 tekens zijn.",
"In reply to" : "Als antwoord op", "In reply to" : "Als antwoord op",
"Cancel reply" : "Antwoord annuleren",
"Reply" : "Antwoord", "Reply" : "Antwoord",
"Update" : "Bijwerken", "Update" : "Bijwerken",
"Description" : "Beschrijving", "Description" : "Beschrijving",
@@ -226,7 +218,7 @@ OC.L10N.register(
"Write a description …" : "Voeg een beschrijving toe ...", "Write a description …" : "Voeg een beschrijving toe ...",
"Choose attachment" : "Kies bijlage", "Choose attachment" : "Kies bijlage",
"(group)" : "(groep)", "(group)" : "(groep)",
"{count} comments, {unread} unread" : "{count} reacties, {unread} ongelezen", "(circle)" : "(kring)",
"Assign to me" : "Aan mij toewijzen", "Assign to me" : "Aan mij toewijzen",
"Unassign myself" : "Eigen toewijzing opheffen", "Unassign myself" : "Eigen toewijzing opheffen",
"Move card" : "Verplaats kaart", "Move card" : "Verplaats kaart",
@@ -266,8 +258,6 @@ OC.L10N.register(
"Tomorrow" : "Morgen", "Tomorrow" : "Morgen",
"This week" : "Deze week", "This week" : "Deze week",
"No due" : "Geen vervallen", "No due" : "Geen vervallen",
"Search for {searchQuery} in all boards" : "Zoek naar {searchQuery} in alle borden",
"No results found" : "Geen resultaten gevonden",
"No upcoming cards" : "Geen aanstaande kaarten", "No upcoming cards" : "Geen aanstaande kaarten",
"upcoming cards" : "Aanstaande kaarten", "upcoming cards" : "Aanstaande kaarten",
"Link to a board" : "Verbind met een bord", "Link to a board" : "Verbind met een bord",

View File

@@ -68,15 +68,9 @@
"Upcoming cards" : "Aanstaande kaarten", "Upcoming cards" : "Aanstaande kaarten",
"Personal" : "Persoonlijk", "Personal" : "Persoonlijk",
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "De kaart \"%s\" op \"%s\" is aan jou toegewezen door %s.", "The card \"%s\" on \"%s\" has been assigned to you by %s." : "De kaart \"%s\" op \"%s\" is aan jou toegewezen door %s.",
"{user} has assigned the card {deck-card} on {deck-board} to you." : "{user} heeft kaart {deck-card} op {deck-board} aan jou toegewezen.",
"The card \"%s\" on \"%s\" has reached its due date." : "De kaart \"%s\" in \"%s\" heeft zijn vervaldatum bereikt.", "The card \"%s\" on \"%s\" has reached its due date." : "De kaart \"%s\" in \"%s\" heeft zijn vervaldatum bereikt.",
"The card {deck-card} on {deck-board} has reached its due date." : "De kaart {deck-card} in {deck-board} heeft de vervaldatum bereikt.",
"%s has mentioned you in a comment on \"%s\"." : "%s vermeldde je in een reactie op \"%s\".", "%s has mentioned you in a comment on \"%s\"." : "%s vermeldde je in een reactie op \"%s\".",
"{user} has mentioned you in a comment on {deck-card}." : "{user} vermeldde je in een reactie op {deck-card}.",
"The board \"%s\" has been shared with you by %s." : "Het bord \"%s\" is door %s met je gedeeld.", "The board \"%s\" has been shared with you by %s." : "Het bord \"%s\" is door %s met je gedeeld.",
"{user} has shared {deck-board} with you." : "{user} heeft het bord {deck-board} met je gedeeld.",
"Card comments" : "Kaart opmerkingen",
"%s on %s" : "%s op %s",
"No data was provided to create an attachment." : "Geen gegevens opgegeven voor het maken van een bijlage.", "No data was provided to create an attachment." : "Geen gegevens opgegeven voor het maken van een bijlage.",
"Finished" : "Afgerond", "Finished" : "Afgerond",
"To review" : "Beoordelen", "To review" : "Beoordelen",
@@ -113,8 +107,8 @@
"Select a list" : "Selecteer een lijst", "Select a list" : "Selecteer een lijst",
"Card title" : "Kaarttitel", "Card title" : "Kaarttitel",
"Cancel" : "Annuleren", "Cancel" : "Annuleren",
"Creating the new card …" : "Aanmaken nieuwe kaart...", "Creating the new card…" : "Aanmaken nieuwe kaart...",
"Card \"{card}\" was added to \"{board}\"" : "Kaart \"{card}\" is toegevoegd aan \"{board}\"", "\"{card}\" was added to \"{board}\"" : "\"{card}\" is toegevoegd aan \"{board}\"",
"Open card" : "Open kaard", "Open card" : "Open kaard",
"Close" : "Sluiten", "Close" : "Sluiten",
"Create card" : "Aanmaken kaart", "Create card" : "Aanmaken kaart",
@@ -198,7 +192,6 @@
"Created" : "Gemaakt", "Created" : "Gemaakt",
"The title cannot be empty." : "De titel kan niet leeg zijn.", "The title cannot be empty." : "De titel kan niet leeg zijn.",
"No comments yet. Begin the discussion!" : "Nog geen reacties. Begin de discussie!", "No comments yet. Begin the discussion!" : "Nog geen reacties. Begin de discussie!",
"Failed to load comments" : "Kon reacties niet laden.",
"Assign a tag to this card…" : "Wijs een label toe aan deze kaart...", "Assign a tag to this card…" : "Wijs een label toe aan deze kaart...",
"Assign to users" : "Toewijzen aan gebruikers", "Assign to users" : "Toewijzen aan gebruikers",
"Assign to users/groups/circles" : "Toewijzen aan gebruikers/groepen/kringen", "Assign to users/groups/circles" : "Toewijzen aan gebruikers/groepen/kringen",
@@ -211,7 +204,6 @@
"The comment cannot be empty." : "De reactie kan niet leeg zijn.", "The comment cannot be empty." : "De reactie kan niet leeg zijn.",
"The comment cannot be longer than 1000 characters." : "De reactie kan niet langer dan 1000 tekens zijn.", "The comment cannot be longer than 1000 characters." : "De reactie kan niet langer dan 1000 tekens zijn.",
"In reply to" : "Als antwoord op", "In reply to" : "Als antwoord op",
"Cancel reply" : "Antwoord annuleren",
"Reply" : "Antwoord", "Reply" : "Antwoord",
"Update" : "Bijwerken", "Update" : "Bijwerken",
"Description" : "Beschrijving", "Description" : "Beschrijving",
@@ -224,7 +216,7 @@
"Write a description …" : "Voeg een beschrijving toe ...", "Write a description …" : "Voeg een beschrijving toe ...",
"Choose attachment" : "Kies bijlage", "Choose attachment" : "Kies bijlage",
"(group)" : "(groep)", "(group)" : "(groep)",
"{count} comments, {unread} unread" : "{count} reacties, {unread} ongelezen", "(circle)" : "(kring)",
"Assign to me" : "Aan mij toewijzen", "Assign to me" : "Aan mij toewijzen",
"Unassign myself" : "Eigen toewijzing opheffen", "Unassign myself" : "Eigen toewijzing opheffen",
"Move card" : "Verplaats kaart", "Move card" : "Verplaats kaart",
@@ -264,8 +256,6 @@
"Tomorrow" : "Morgen", "Tomorrow" : "Morgen",
"This week" : "Deze week", "This week" : "Deze week",
"No due" : "Geen vervallen", "No due" : "Geen vervallen",
"Search for {searchQuery} in all boards" : "Zoek naar {searchQuery} in alle borden",
"No results found" : "Geen resultaten gevonden",
"No upcoming cards" : "Geen aanstaande kaarten", "No upcoming cards" : "Geen aanstaande kaarten",
"upcoming cards" : "Aanstaande kaarten", "upcoming cards" : "Aanstaande kaarten",
"Link to a board" : "Verbind met een bord", "Link to a board" : "Verbind met een bord",

View File

@@ -6,17 +6,12 @@ OC.L10N.register(
"Cancel" : "Anullar", "Cancel" : "Anullar",
"Details" : "Detalhs", "Details" : "Detalhs",
"Sharing" : "Partiment", "Sharing" : "Partiment",
"Tags" : "Etiquetas",
"Deleted items" : "Elements suprimits",
"Deleted lists" : "Listas suprimidas",
"(Group)" : "(Grop)",
"Can edit" : "Can edit", "Can edit" : "Can edit",
"Can share" : "Can share", "Can share" : "Can share",
"Delete" : "Suprimir", "Delete" : "Suprimir",
"Edit" : "Modificar", "Edit" : "Modificar",
"Upload new files" : "Enviar fichièrs novèls", "Upload new files" : "Enviar fichièrs novèls",
"Save" : "Salvar", "Save" : "Salvar",
"Cancel reply" : "Anullar la responsa",
"Reply" : "Respondre", "Reply" : "Respondre",
"Update" : "Metre a jorn", "Update" : "Metre a jorn",
"Description" : "Descripcion", "Description" : "Descripcion",

View File

@@ -4,17 +4,12 @@
"Cancel" : "Anullar", "Cancel" : "Anullar",
"Details" : "Detalhs", "Details" : "Detalhs",
"Sharing" : "Partiment", "Sharing" : "Partiment",
"Tags" : "Etiquetas",
"Deleted items" : "Elements suprimits",
"Deleted lists" : "Listas suprimidas",
"(Group)" : "(Grop)",
"Can edit" : "Can edit", "Can edit" : "Can edit",
"Can share" : "Can share", "Can share" : "Can share",
"Delete" : "Suprimir", "Delete" : "Suprimir",
"Edit" : "Modificar", "Edit" : "Modificar",
"Upload new files" : "Enviar fichièrs novèls", "Upload new files" : "Enviar fichièrs novèls",
"Save" : "Salvar", "Save" : "Salvar",
"Cancel reply" : "Anullar la responsa",
"Reply" : "Respondre", "Reply" : "Respondre",
"Update" : "Metre a jorn", "Update" : "Metre a jorn",
"Description" : "Descripcion", "Description" : "Descripcion",

View File

@@ -70,13 +70,9 @@ OC.L10N.register(
"Upcoming cards" : "Nadchodzące karty", "Upcoming cards" : "Nadchodzące karty",
"Personal" : "Osobiste", "Personal" : "Osobiste",
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Karta \"%s\" na \"%s\" została przydzielona Tobie przez %s.", "The card \"%s\" on \"%s\" has been assigned to you by %s." : "Karta \"%s\" na \"%s\" została przydzielona Tobie przez %s.",
"{user} has assigned the card {deck-card} on {deck-board} to you." : "{user} przydzielił Tobie kartę {deck-card} na {deck-board}.",
"The card \"%s\" on \"%s\" has reached its due date." : "Karta \"%s\" na \"%s\" wygasła.", "The card \"%s\" on \"%s\" has reached its due date." : "Karta \"%s\" na \"%s\" wygasła.",
"The card {deck-card} on {deck-board} has reached its due date." : "Karta {deck-card} na {deck-board} uzyskała swój termin.",
"%s has mentioned you in a comment on \"%s\"." : "%s wspomniał o Tobie w komentarzu do \"%s\".", "%s has mentioned you in a comment on \"%s\"." : "%s wspomniał o Tobie w komentarzu do \"%s\".",
"{user} has mentioned you in a comment on {deck-card}." : "{user} wspomniał o Tobie w komentarzu w {deck-card}.",
"The board \"%s\" has been shared with you by %s." : "Tablica \"%s\" została Tobie udostępniona przez %s.", "The board \"%s\" has been shared with you by %s." : "Tablica \"%s\" została Tobie udostępniona przez %s.",
"{user} has shared {deck-board} with you." : "{user} udostępnił Tobie {deck-board}.",
"Card comments" : "Komentarze karty", "Card comments" : "Komentarze karty",
"%s on %s" : "%s na %s", "%s on %s" : "%s na %s",
"No data was provided to create an attachment." : "Nie podano żadnych danych do utworzenia załącznika.", "No data was provided to create an attachment." : "Nie podano żadnych danych do utworzenia załącznika.",
@@ -115,8 +111,8 @@ OC.L10N.register(
"Select a list" : "Wybierz listę", "Select a list" : "Wybierz listę",
"Card title" : "Tytuł karty", "Card title" : "Tytuł karty",
"Cancel" : "Anuluj", "Cancel" : "Anuluj",
"Creating the new card …" : "Tworzenie nowej karty", "Creating the new card…" : "Tworzenie nowej karty...",
"Card \"{card}\" was added to \"{board}\"" : "Karta \"{card}\" została dodana do \"{board}\"", "\"{card}\" was added to \"{board}\"" : "\"{card}\" została dodana do \"{board}\"",
"Open card" : "Otwórz kartę", "Open card" : "Otwórz kartę",
"Close" : "Zakończ", "Close" : "Zakończ",
"Create card" : "Utwórz kartę", "Create card" : "Utwórz kartę",
@@ -200,7 +196,6 @@ OC.L10N.register(
"Created" : "Utworzono", "Created" : "Utworzono",
"The title cannot be empty." : "Tytuł nie może być pusty.", "The title cannot be empty." : "Tytuł nie może być pusty.",
"No comments yet. Begin the discussion!" : "Brak komentarzy. Rozpocznij dyskusję!", "No comments yet. Begin the discussion!" : "Brak komentarzy. Rozpocznij dyskusję!",
"Failed to load comments" : "Nie udało się wczytać komentarzy",
"Assign a tag to this card…" : "Przypisz etykietę do tej karty…", "Assign a tag to this card…" : "Przypisz etykietę do tej karty…",
"Assign to users" : "Przypisz do użytkowników", "Assign to users" : "Przypisz do użytkowników",
"Assign to users/groups/circles" : "Przypisz do użytkowników/grup/kręgów", "Assign to users/groups/circles" : "Przypisz do użytkowników/grup/kręgów",
@@ -213,7 +208,6 @@ OC.L10N.register(
"The comment cannot be empty." : "Komentarz nie może być pusty.", "The comment cannot be empty." : "Komentarz nie może być pusty.",
"The comment cannot be longer than 1000 characters." : "Komentarz nie może być dłuższy niż 1000 znaków.", "The comment cannot be longer than 1000 characters." : "Komentarz nie może być dłuższy niż 1000 znaków.",
"In reply to" : "Odpowiedź na", "In reply to" : "Odpowiedź na",
"Cancel reply" : "Anuluj odpowiedź",
"Reply" : "Odpowiedz", "Reply" : "Odpowiedz",
"Update" : "Aktualizuj", "Update" : "Aktualizuj",
"Description" : "Opis", "Description" : "Opis",
@@ -226,7 +220,7 @@ OC.L10N.register(
"Write a description …" : "Napisz opis…", "Write a description …" : "Napisz opis…",
"Choose attachment" : "Wybierz załącznik", "Choose attachment" : "Wybierz załącznik",
"(group)" : "(grupa)", "(group)" : "(grupa)",
"{count} comments, {unread} unread" : "Komentarze: {count}, nieprzeczytane: {unread}", "(circle)" : "(krąg)",
"Assign to me" : "Przydziel do mnie", "Assign to me" : "Przydziel do mnie",
"Unassign myself" : "Cofnij moje przypisanie", "Unassign myself" : "Cofnij moje przypisanie",
"Move card" : "Przenieś kartę", "Move card" : "Przenieś kartę",

View File

@@ -68,13 +68,9 @@
"Upcoming cards" : "Nadchodzące karty", "Upcoming cards" : "Nadchodzące karty",
"Personal" : "Osobiste", "Personal" : "Osobiste",
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Karta \"%s\" na \"%s\" została przydzielona Tobie przez %s.", "The card \"%s\" on \"%s\" has been assigned to you by %s." : "Karta \"%s\" na \"%s\" została przydzielona Tobie przez %s.",
"{user} has assigned the card {deck-card} on {deck-board} to you." : "{user} przydzielił Tobie kartę {deck-card} na {deck-board}.",
"The card \"%s\" on \"%s\" has reached its due date." : "Karta \"%s\" na \"%s\" wygasła.", "The card \"%s\" on \"%s\" has reached its due date." : "Karta \"%s\" na \"%s\" wygasła.",
"The card {deck-card} on {deck-board} has reached its due date." : "Karta {deck-card} na {deck-board} uzyskała swój termin.",
"%s has mentioned you in a comment on \"%s\"." : "%s wspomniał o Tobie w komentarzu do \"%s\".", "%s has mentioned you in a comment on \"%s\"." : "%s wspomniał o Tobie w komentarzu do \"%s\".",
"{user} has mentioned you in a comment on {deck-card}." : "{user} wspomniał o Tobie w komentarzu w {deck-card}.",
"The board \"%s\" has been shared with you by %s." : "Tablica \"%s\" została Tobie udostępniona przez %s.", "The board \"%s\" has been shared with you by %s." : "Tablica \"%s\" została Tobie udostępniona przez %s.",
"{user} has shared {deck-board} with you." : "{user} udostępnił Tobie {deck-board}.",
"Card comments" : "Komentarze karty", "Card comments" : "Komentarze karty",
"%s on %s" : "%s na %s", "%s on %s" : "%s na %s",
"No data was provided to create an attachment." : "Nie podano żadnych danych do utworzenia załącznika.", "No data was provided to create an attachment." : "Nie podano żadnych danych do utworzenia załącznika.",
@@ -113,8 +109,8 @@
"Select a list" : "Wybierz listę", "Select a list" : "Wybierz listę",
"Card title" : "Tytuł karty", "Card title" : "Tytuł karty",
"Cancel" : "Anuluj", "Cancel" : "Anuluj",
"Creating the new card …" : "Tworzenie nowej karty", "Creating the new card…" : "Tworzenie nowej karty...",
"Card \"{card}\" was added to \"{board}\"" : "Karta \"{card}\" została dodana do \"{board}\"", "\"{card}\" was added to \"{board}\"" : "\"{card}\" została dodana do \"{board}\"",
"Open card" : "Otwórz kartę", "Open card" : "Otwórz kartę",
"Close" : "Zakończ", "Close" : "Zakończ",
"Create card" : "Utwórz kartę", "Create card" : "Utwórz kartę",
@@ -198,7 +194,6 @@
"Created" : "Utworzono", "Created" : "Utworzono",
"The title cannot be empty." : "Tytuł nie może być pusty.", "The title cannot be empty." : "Tytuł nie może być pusty.",
"No comments yet. Begin the discussion!" : "Brak komentarzy. Rozpocznij dyskusję!", "No comments yet. Begin the discussion!" : "Brak komentarzy. Rozpocznij dyskusję!",
"Failed to load comments" : "Nie udało się wczytać komentarzy",
"Assign a tag to this card…" : "Przypisz etykietę do tej karty…", "Assign a tag to this card…" : "Przypisz etykietę do tej karty…",
"Assign to users" : "Przypisz do użytkowników", "Assign to users" : "Przypisz do użytkowników",
"Assign to users/groups/circles" : "Przypisz do użytkowników/grup/kręgów", "Assign to users/groups/circles" : "Przypisz do użytkowników/grup/kręgów",
@@ -211,7 +206,6 @@
"The comment cannot be empty." : "Komentarz nie może być pusty.", "The comment cannot be empty." : "Komentarz nie może być pusty.",
"The comment cannot be longer than 1000 characters." : "Komentarz nie może być dłuższy niż 1000 znaków.", "The comment cannot be longer than 1000 characters." : "Komentarz nie może być dłuższy niż 1000 znaków.",
"In reply to" : "Odpowiedź na", "In reply to" : "Odpowiedź na",
"Cancel reply" : "Anuluj odpowiedź",
"Reply" : "Odpowiedz", "Reply" : "Odpowiedz",
"Update" : "Aktualizuj", "Update" : "Aktualizuj",
"Description" : "Opis", "Description" : "Opis",
@@ -224,7 +218,7 @@
"Write a description …" : "Napisz opis…", "Write a description …" : "Napisz opis…",
"Choose attachment" : "Wybierz załącznik", "Choose attachment" : "Wybierz załącznik",
"(group)" : "(grupa)", "(group)" : "(grupa)",
"{count} comments, {unread} unread" : "Komentarze: {count}, nieprzeczytane: {unread}", "(circle)" : "(krąg)",
"Assign to me" : "Przydziel do mnie", "Assign to me" : "Przydziel do mnie",
"Unassign myself" : "Cofnij moje przypisanie", "Unassign myself" : "Cofnij moje przypisanie",
"Move card" : "Przenieś kartę", "Move card" : "Przenieś kartę",

View File

@@ -70,13 +70,9 @@ OC.L10N.register(
"Upcoming cards" : "Próximos cartões", "Upcoming cards" : "Próximos cartões",
"Personal" : "Pessoal", "Personal" : "Pessoal",
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "O cartão \"%s\" em \"%s\" foi vinculado com você por %s.", "The card \"%s\" on \"%s\" has been assigned to you by %s." : "O cartão \"%s\" em \"%s\" foi vinculado com você por %s.",
"{user} has assigned the card {deck-card} on {deck-board} to you." : "{usuário} atribuiu a carta {deck-card} no {deck-board} para você.",
"The card \"%s\" on \"%s\" has reached its due date." : "O cartão \"%s\" em \"%s\" atingiu sua data de vencimento.", "The card \"%s\" on \"%s\" has reached its due date." : "O cartão \"%s\" em \"%s\" atingiu sua data de vencimento.",
"The card {deck-card} on {deck-board} has reached its due date." : "A carta {deck-card} em {deck-board} atingiu sua data de vencimento.",
"%s has mentioned you in a comment on \"%s\"." : "%s citou você num comentário em \"%s\".", "%s has mentioned you in a comment on \"%s\"." : "%s citou você num comentário em \"%s\".",
"{user} has mentioned you in a comment on {deck-card}." : "{user} mencionou você em um comentário em {deck-card}.",
"The board \"%s\" has been shared with you by %s." : "O painel \"%s\" foi compartilhado com você por %s.", "The board \"%s\" has been shared with you by %s." : "O painel \"%s\" foi compartilhado com você por %s.",
"{user} has shared {deck-board} with you." : "{user} compartilhou {deck-board} com você.",
"Card comments" : "Comentários nos Cards", "Card comments" : "Comentários nos Cards",
"%s on %s" : "%s em %s", "%s on %s" : "%s em %s",
"No data was provided to create an attachment." : "Nenhum dado foi fornecido para criar um anexo.", "No data was provided to create an attachment." : "Nenhum dado foi fornecido para criar um anexo.",
@@ -115,8 +111,8 @@ OC.L10N.register(
"Select a list" : "Selecione uma lista", "Select a list" : "Selecione uma lista",
"Card title" : "Título do cartão", "Card title" : "Título do cartão",
"Cancel" : "Cancelar", "Cancel" : "Cancelar",
"Creating the new card …" : "Criando o novo cartão", "Creating the new card…" : "Criando um novo cartão...",
"Card \"{card}\" was added to \"{board}\"" : "O cartão \"{card}\" foi adicionado a \"{board}\" ", "\"{card}\" was added to \"{board}\"" : "\"{card}\" foi adicionado à \"{board}\"",
"Open card" : "Abrir o cartão", "Open card" : "Abrir o cartão",
"Close" : "Fechar", "Close" : "Fechar",
"Create card" : "Criar cartão", "Create card" : "Criar cartão",
@@ -200,7 +196,6 @@ OC.L10N.register(
"Created" : "Criado", "Created" : "Criado",
"The title cannot be empty." : "O título não pode ficar em branco.", "The title cannot be empty." : "O título não pode ficar em branco.",
"No comments yet. Begin the discussion!" : "Nenhum comentário ainda. Inicie a conversa!", "No comments yet. Begin the discussion!" : "Nenhum comentário ainda. Inicie a conversa!",
"Failed to load comments" : "Falha ao carregar comentários",
"Assign a tag to this card…" : "Atribuir uma etiqueta a este cartão...", "Assign a tag to this card…" : "Atribuir uma etiqueta a este cartão...",
"Assign to users" : "Atribuir a usuários", "Assign to users" : "Atribuir a usuários",
"Assign to users/groups/circles" : "Atribuir a usuários/grupos/círculos", "Assign to users/groups/circles" : "Atribuir a usuários/grupos/círculos",
@@ -213,7 +208,6 @@ OC.L10N.register(
"The comment cannot be empty." : "O comentário não pode zer vazio.", "The comment cannot be empty." : "O comentário não pode zer vazio.",
"The comment cannot be longer than 1000 characters." : "O comentário não pode ter mais que 1000 caracteres.", "The comment cannot be longer than 1000 characters." : "O comentário não pode ter mais que 1000 caracteres.",
"In reply to" : "Em resposta para", "In reply to" : "Em resposta para",
"Cancel reply" : "Cancelar resposta",
"Reply" : "Responder", "Reply" : "Responder",
"Update" : "Atualizar", "Update" : "Atualizar",
"Description" : "Descrição", "Description" : "Descrição",
@@ -226,7 +220,7 @@ OC.L10N.register(
"Write a description …" : "Escreva uma descrição...", "Write a description …" : "Escreva uma descrição...",
"Choose attachment" : "Escolher anexo", "Choose attachment" : "Escolher anexo",
"(group)" : "(grupo)", "(group)" : "(grupo)",
"{count} comments, {unread} unread" : "{count} comentários, {unread} não lidos", "(circle)" : "(círculo)",
"Assign to me" : "Atribuir a mim", "Assign to me" : "Atribuir a mim",
"Unassign myself" : "Desatribuir-me", "Unassign myself" : "Desatribuir-me",
"Move card" : "Mover cartão", "Move card" : "Mover cartão",

View File

@@ -68,13 +68,9 @@
"Upcoming cards" : "Próximos cartões", "Upcoming cards" : "Próximos cartões",
"Personal" : "Pessoal", "Personal" : "Pessoal",
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "O cartão \"%s\" em \"%s\" foi vinculado com você por %s.", "The card \"%s\" on \"%s\" has been assigned to you by %s." : "O cartão \"%s\" em \"%s\" foi vinculado com você por %s.",
"{user} has assigned the card {deck-card} on {deck-board} to you." : "{usuário} atribuiu a carta {deck-card} no {deck-board} para você.",
"The card \"%s\" on \"%s\" has reached its due date." : "O cartão \"%s\" em \"%s\" atingiu sua data de vencimento.", "The card \"%s\" on \"%s\" has reached its due date." : "O cartão \"%s\" em \"%s\" atingiu sua data de vencimento.",
"The card {deck-card} on {deck-board} has reached its due date." : "A carta {deck-card} em {deck-board} atingiu sua data de vencimento.",
"%s has mentioned you in a comment on \"%s\"." : "%s citou você num comentário em \"%s\".", "%s has mentioned you in a comment on \"%s\"." : "%s citou você num comentário em \"%s\".",
"{user} has mentioned you in a comment on {deck-card}." : "{user} mencionou você em um comentário em {deck-card}.",
"The board \"%s\" has been shared with you by %s." : "O painel \"%s\" foi compartilhado com você por %s.", "The board \"%s\" has been shared with you by %s." : "O painel \"%s\" foi compartilhado com você por %s.",
"{user} has shared {deck-board} with you." : "{user} compartilhou {deck-board} com você.",
"Card comments" : "Comentários nos Cards", "Card comments" : "Comentários nos Cards",
"%s on %s" : "%s em %s", "%s on %s" : "%s em %s",
"No data was provided to create an attachment." : "Nenhum dado foi fornecido para criar um anexo.", "No data was provided to create an attachment." : "Nenhum dado foi fornecido para criar um anexo.",
@@ -113,8 +109,8 @@
"Select a list" : "Selecione uma lista", "Select a list" : "Selecione uma lista",
"Card title" : "Título do cartão", "Card title" : "Título do cartão",
"Cancel" : "Cancelar", "Cancel" : "Cancelar",
"Creating the new card …" : "Criando o novo cartão", "Creating the new card…" : "Criando um novo cartão...",
"Card \"{card}\" was added to \"{board}\"" : "O cartão \"{card}\" foi adicionado a \"{board}\" ", "\"{card}\" was added to \"{board}\"" : "\"{card}\" foi adicionado à \"{board}\"",
"Open card" : "Abrir o cartão", "Open card" : "Abrir o cartão",
"Close" : "Fechar", "Close" : "Fechar",
"Create card" : "Criar cartão", "Create card" : "Criar cartão",
@@ -198,7 +194,6 @@
"Created" : "Criado", "Created" : "Criado",
"The title cannot be empty." : "O título não pode ficar em branco.", "The title cannot be empty." : "O título não pode ficar em branco.",
"No comments yet. Begin the discussion!" : "Nenhum comentário ainda. Inicie a conversa!", "No comments yet. Begin the discussion!" : "Nenhum comentário ainda. Inicie a conversa!",
"Failed to load comments" : "Falha ao carregar comentários",
"Assign a tag to this card…" : "Atribuir uma etiqueta a este cartão...", "Assign a tag to this card…" : "Atribuir uma etiqueta a este cartão...",
"Assign to users" : "Atribuir a usuários", "Assign to users" : "Atribuir a usuários",
"Assign to users/groups/circles" : "Atribuir a usuários/grupos/círculos", "Assign to users/groups/circles" : "Atribuir a usuários/grupos/círculos",
@@ -211,7 +206,6 @@
"The comment cannot be empty." : "O comentário não pode zer vazio.", "The comment cannot be empty." : "O comentário não pode zer vazio.",
"The comment cannot be longer than 1000 characters." : "O comentário não pode ter mais que 1000 caracteres.", "The comment cannot be longer than 1000 characters." : "O comentário não pode ter mais que 1000 caracteres.",
"In reply to" : "Em resposta para", "In reply to" : "Em resposta para",
"Cancel reply" : "Cancelar resposta",
"Reply" : "Responder", "Reply" : "Responder",
"Update" : "Atualizar", "Update" : "Atualizar",
"Description" : "Descrição", "Description" : "Descrição",
@@ -224,7 +218,7 @@
"Write a description …" : "Escreva uma descrição...", "Write a description …" : "Escreva uma descrição...",
"Choose attachment" : "Escolher anexo", "Choose attachment" : "Escolher anexo",
"(group)" : "(grupo)", "(group)" : "(grupo)",
"{count} comments, {unread} unread" : "{count} comentários, {unread} não lidos", "(circle)" : "(círculo)",
"Assign to me" : "Atribuir a mim", "Assign to me" : "Atribuir a mim",
"Unassign myself" : "Desatribuir-me", "Unassign myself" : "Desatribuir-me",
"Move card" : "Mover cartão", "Move card" : "Mover cartão",

View File

@@ -70,15 +70,9 @@ OC.L10N.register(
"Upcoming cards" : "Ожидающие выполнения", "Upcoming cards" : "Ожидающие выполнения",
"Personal" : "Личное", "Personal" : "Личное",
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Вам назначена карточка «%s» с рабочей доски «%s» пользователем %s.", "The card \"%s\" on \"%s\" has been assigned to you by %s." : "Вам назначена карточка «%s» с рабочей доски «%s» пользователем %s.",
"{user} has assigned the card {deck-card} on {deck-board} to you." : "{user} назначил Вам карточку {deck-card} из {deck-board}.",
"The card \"%s\" on \"%s\" has reached its due date." : "Сегодня дата исполнения по карточке «%s» в «%s» .", "The card \"%s\" on \"%s\" has reached its due date." : "Сегодня дата исполнения по карточке «%s» в «%s» .",
"The card {deck-card} on {deck-board} has reached its due date." : "Сегодня дата исполнения по карточке {deck-card} в {deck-board}.",
"%s has mentioned you in a comment on \"%s\"." : "Вы были упомянуты пользователем %s в комментарии «%s».", "%s has mentioned you in a comment on \"%s\"." : "Вы были упомянуты пользователем %s в комментарии «%s».",
"{user} has mentioned you in a comment on {deck-card}." : "Вы были упомянуты пользователем {user} в комментарии {deck-card}.",
"The board \"%s\" has been shared with you by %s." : "Вам предоставлен доступ к рабочей доске «%s» пользователем %s.", "The board \"%s\" has been shared with you by %s." : "Вам предоставлен доступ к рабочей доске «%s» пользователем %s.",
"{user} has shared {deck-board} with you." : "{user} предоставил(а) вам доступ к {deck-board}.",
"Card comments" : "Комментарии карточки",
"%s on %s" : "%s на %s",
"No data was provided to create an attachment." : "Отсутствуют данные для создания вложения.", "No data was provided to create an attachment." : "Отсутствуют данные для создания вложения.",
"Finished" : "Завершено", "Finished" : "Завершено",
"To review" : "Проверить", "To review" : "Проверить",
@@ -115,6 +109,8 @@ OC.L10N.register(
"Select a list" : "Выберите список", "Select a list" : "Выберите список",
"Card title" : "Заголовок карточки", "Card title" : "Заголовок карточки",
"Cancel" : "Отменить", "Cancel" : "Отменить",
"Creating the new card…" : "Создание карточки…",
"\"{card}\" was added to \"{board}\"" : "«{card}» добавлена на доску «{board}»",
"Open card" : "Открыть карточку", "Open card" : "Открыть карточку",
"Close" : "Закрыть", "Close" : "Закрыть",
"Create card" : "Создать карточку", "Create card" : "Создать карточку",
@@ -222,6 +218,7 @@ OC.L10N.register(
"Write a description …" : "Добавьте описание...", "Write a description …" : "Добавьте описание...",
"Choose attachment" : "Выберите вложение", "Choose attachment" : "Выберите вложение",
"(group)" : "(группа)", "(group)" : "(группа)",
"(circle)" : "(круг)",
"Assign to me" : "Назначить себе", "Assign to me" : "Назначить себе",
"Unassign myself" : "Отказаться от назначения", "Unassign myself" : "Отказаться от назначения",
"Move card" : "Переместить карточку", "Move card" : "Переместить карточку",
@@ -261,8 +258,6 @@ OC.L10N.register(
"Tomorrow" : "Завтра", "Tomorrow" : "Завтра",
"This week" : "Эта неделя", "This week" : "Эта неделя",
"No due" : "Без назначенной даты", "No due" : "Без назначенной даты",
"Search for {searchQuery} in all boards" : "Искать {searchQuery} на всех досках",
"No results found" : "Результаты отсутствуют",
"No upcoming cards" : "Отсутствуют карточки, ожидающие выполнения", "No upcoming cards" : "Отсутствуют карточки, ожидающие выполнения",
"upcoming cards" : "карточки, ожидающие выполнения", "upcoming cards" : "карточки, ожидающие выполнения",
"Link to a board" : "Ссылка на доску", "Link to a board" : "Ссылка на доску",

View File

@@ -68,15 +68,9 @@
"Upcoming cards" : "Ожидающие выполнения", "Upcoming cards" : "Ожидающие выполнения",
"Personal" : "Личное", "Personal" : "Личное",
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Вам назначена карточка «%s» с рабочей доски «%s» пользователем %s.", "The card \"%s\" on \"%s\" has been assigned to you by %s." : "Вам назначена карточка «%s» с рабочей доски «%s» пользователем %s.",
"{user} has assigned the card {deck-card} on {deck-board} to you." : "{user} назначил Вам карточку {deck-card} из {deck-board}.",
"The card \"%s\" on \"%s\" has reached its due date." : "Сегодня дата исполнения по карточке «%s» в «%s» .", "The card \"%s\" on \"%s\" has reached its due date." : "Сегодня дата исполнения по карточке «%s» в «%s» .",
"The card {deck-card} on {deck-board} has reached its due date." : "Сегодня дата исполнения по карточке {deck-card} в {deck-board}.",
"%s has mentioned you in a comment on \"%s\"." : "Вы были упомянуты пользователем %s в комментарии «%s».", "%s has mentioned you in a comment on \"%s\"." : "Вы были упомянуты пользователем %s в комментарии «%s».",
"{user} has mentioned you in a comment on {deck-card}." : "Вы были упомянуты пользователем {user} в комментарии {deck-card}.",
"The board \"%s\" has been shared with you by %s." : "Вам предоставлен доступ к рабочей доске «%s» пользователем %s.", "The board \"%s\" has been shared with you by %s." : "Вам предоставлен доступ к рабочей доске «%s» пользователем %s.",
"{user} has shared {deck-board} with you." : "{user} предоставил(а) вам доступ к {deck-board}.",
"Card comments" : "Комментарии карточки",
"%s on %s" : "%s на %s",
"No data was provided to create an attachment." : "Отсутствуют данные для создания вложения.", "No data was provided to create an attachment." : "Отсутствуют данные для создания вложения.",
"Finished" : "Завершено", "Finished" : "Завершено",
"To review" : "Проверить", "To review" : "Проверить",
@@ -113,6 +107,8 @@
"Select a list" : "Выберите список", "Select a list" : "Выберите список",
"Card title" : "Заголовок карточки", "Card title" : "Заголовок карточки",
"Cancel" : "Отменить", "Cancel" : "Отменить",
"Creating the new card…" : "Создание карточки…",
"\"{card}\" was added to \"{board}\"" : "«{card}» добавлена на доску «{board}»",
"Open card" : "Открыть карточку", "Open card" : "Открыть карточку",
"Close" : "Закрыть", "Close" : "Закрыть",
"Create card" : "Создать карточку", "Create card" : "Создать карточку",
@@ -220,6 +216,7 @@
"Write a description …" : "Добавьте описание...", "Write a description …" : "Добавьте описание...",
"Choose attachment" : "Выберите вложение", "Choose attachment" : "Выберите вложение",
"(group)" : "(группа)", "(group)" : "(группа)",
"(circle)" : "(круг)",
"Assign to me" : "Назначить себе", "Assign to me" : "Назначить себе",
"Unassign myself" : "Отказаться от назначения", "Unassign myself" : "Отказаться от назначения",
"Move card" : "Переместить карточку", "Move card" : "Переместить карточку",
@@ -259,8 +256,6 @@
"Tomorrow" : "Завтра", "Tomorrow" : "Завтра",
"This week" : "Эта неделя", "This week" : "Эта неделя",
"No due" : "Без назначенной даты", "No due" : "Без назначенной даты",
"Search for {searchQuery} in all boards" : "Искать {searchQuery} на всех досках",
"No results found" : "Результаты отсутствуют",
"No upcoming cards" : "Отсутствуют карточки, ожидающие выполнения", "No upcoming cards" : "Отсутствуют карточки, ожидающие выполнения",
"upcoming cards" : "карточки, ожидающие выполнения", "upcoming cards" : "карточки, ожидающие выполнения",
"Link to a board" : "Ссылка на доску", "Link to a board" : "Ссылка на доску",

View File

@@ -109,6 +109,8 @@ OC.L10N.register(
"Select a list" : "Seletziona un'elencu", "Select a list" : "Seletziona un'elencu",
"Card title" : "Tìtulu ischeda", "Card title" : "Tìtulu ischeda",
"Cancel" : "Annulla", "Cancel" : "Annulla",
"Creating the new card…" : "Creende un'ischeda noa...",
"\"{card}\" was added to \"{board}\"" : "\"{card}\" est istada agiunta a \"{board}\"",
"Open card" : "Aberi ischeda", "Open card" : "Aberi ischeda",
"Close" : "Serra", "Close" : "Serra",
"Create card" : "Crea ischeda", "Create card" : "Crea ischeda",
@@ -116,7 +118,7 @@ OC.L10N.register(
"Select the card to link to a project" : "Seletzioan s'ischeda de collegare a unu progetu", "Select the card to link to a project" : "Seletzioan s'ischeda de collegare a unu progetu",
"Link to card" : "Collega a un'ischeda", "Link to card" : "Collega a un'ischeda",
"File already exists" : "Cust'archìviu ddoe est giai", "File already exists" : "Cust'archìviu ddoe est giai",
"A file with the name {filename} already exists." : "B'at giai un'archìviu cun su nùmene de {filename}.", "A file with the name {filename} already exists." : "Un'archìviu cun su nùmene de {filename} ddoe est giai.",
"Do you want to overwrite it?" : "Ddu cheres subraiscrìere? ", "Do you want to overwrite it?" : "Ddu cheres subraiscrìere? ",
"Overwrite file" : "Subraiscrie archìviu", "Overwrite file" : "Subraiscrie archìviu",
"Keep existing file" : "Mantene s'archìviu chi ddoe est", "Keep existing file" : "Mantene s'archìviu chi ddoe est",
@@ -156,7 +158,7 @@ OC.L10N.register(
"No participants found" : "Perunu partetzipante agatadu", "No participants found" : "Perunu partetzipante agatadu",
"Board owner" : "Mere lavagna", "Board owner" : "Mere lavagna",
"(Group)" : "(Grupu)", "(Group)" : "(Grupu)",
"(Circle)" : "(Giru)", "(Circle)" : "(Tropa)",
"Can edit" : "Faghet a modificare", "Can edit" : "Faghet a modificare",
"Can share" : "Faghet a cumpartzire", "Can share" : "Faghet a cumpartzire",
"Can manage" : "Faghet a gestire", "Can manage" : "Faghet a gestire",
@@ -183,7 +185,7 @@ OC.L10N.register(
"Delete Attachment" : "Cantzella alligongiadu", "Delete Attachment" : "Cantzella alligongiadu",
"Restore Attachment" : "Riprìstina alligongiadu", "Restore Attachment" : "Riprìstina alligongiadu",
"File to share" : "Archìviu de cumpartzire", "File to share" : "Archìviu de cumpartzire",
"Invalid path selected" : "Percursu seletzionadu non bàlidu", "Invalid path selected" : "Caminu seletzionadu non bàlidu",
"Open in sidebar view" : "Aberi in s'istanca laterale", "Open in sidebar view" : "Aberi in s'istanca laterale",
"Open in bigger view" : "Aberi in una bista prus ampra", "Open in bigger view" : "Aberi in una bista prus ampra",
"Attachments" : "Alligongiados", "Attachments" : "Alligongiados",
@@ -216,6 +218,7 @@ OC.L10N.register(
"Write a description …" : "Iscrie una descritzione ...", "Write a description …" : "Iscrie una descritzione ...",
"Choose attachment" : "Sèbera un'alligongiadu", "Choose attachment" : "Sèbera un'alligongiadu",
"(group)" : "(grupu)", "(group)" : "(grupu)",
"(circle)" : "(tropa)",
"Assign to me" : "Assigna a mie", "Assign to me" : "Assigna a mie",
"Unassign myself" : "Annulla s'assignatzione a mie", "Unassign myself" : "Annulla s'assignatzione a mie",
"Move card" : "Tràmuda ischeda", "Move card" : "Tràmuda ischeda",
@@ -247,7 +250,7 @@ OC.L10N.register(
"Board {0} deleted" : "Lavagna {0} cantzellada", "Board {0} deleted" : "Lavagna {0} cantzellada",
"Only assigned cards" : "Isceti ischedas assignadas", "Only assigned cards" : "Isceti ischedas assignadas",
"No reminder" : "Perunu apuntu", "No reminder" : "Perunu apuntu",
"An error occurred" : "B'at àpidu un'errore", "An error occurred" : "Ddoe at àpidu un'errore",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Ses seguru chi cheres cantzellare sa lavagna {title}? Custa operatzione at a cantzellare totu is datos de custa lavagna.", "Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Ses seguru chi cheres cantzellare sa lavagna {title}? Custa operatzione at a cantzellare totu is datos de custa lavagna.",
"Delete the board?" : "Cheres cantzellare sa lavagna?", "Delete the board?" : "Cheres cantzellare sa lavagna?",
"Loading filtered view" : "Carrigamentu de sa bista cun su filtru", "Loading filtered view" : "Carrigamentu de sa bista cun su filtru",

View File

@@ -107,6 +107,8 @@
"Select a list" : "Seletziona un'elencu", "Select a list" : "Seletziona un'elencu",
"Card title" : "Tìtulu ischeda", "Card title" : "Tìtulu ischeda",
"Cancel" : "Annulla", "Cancel" : "Annulla",
"Creating the new card…" : "Creende un'ischeda noa...",
"\"{card}\" was added to \"{board}\"" : "\"{card}\" est istada agiunta a \"{board}\"",
"Open card" : "Aberi ischeda", "Open card" : "Aberi ischeda",
"Close" : "Serra", "Close" : "Serra",
"Create card" : "Crea ischeda", "Create card" : "Crea ischeda",
@@ -114,7 +116,7 @@
"Select the card to link to a project" : "Seletzioan s'ischeda de collegare a unu progetu", "Select the card to link to a project" : "Seletzioan s'ischeda de collegare a unu progetu",
"Link to card" : "Collega a un'ischeda", "Link to card" : "Collega a un'ischeda",
"File already exists" : "Cust'archìviu ddoe est giai", "File already exists" : "Cust'archìviu ddoe est giai",
"A file with the name {filename} already exists." : "B'at giai un'archìviu cun su nùmene de {filename}.", "A file with the name {filename} already exists." : "Un'archìviu cun su nùmene de {filename} ddoe est giai.",
"Do you want to overwrite it?" : "Ddu cheres subraiscrìere? ", "Do you want to overwrite it?" : "Ddu cheres subraiscrìere? ",
"Overwrite file" : "Subraiscrie archìviu", "Overwrite file" : "Subraiscrie archìviu",
"Keep existing file" : "Mantene s'archìviu chi ddoe est", "Keep existing file" : "Mantene s'archìviu chi ddoe est",
@@ -154,7 +156,7 @@
"No participants found" : "Perunu partetzipante agatadu", "No participants found" : "Perunu partetzipante agatadu",
"Board owner" : "Mere lavagna", "Board owner" : "Mere lavagna",
"(Group)" : "(Grupu)", "(Group)" : "(Grupu)",
"(Circle)" : "(Giru)", "(Circle)" : "(Tropa)",
"Can edit" : "Faghet a modificare", "Can edit" : "Faghet a modificare",
"Can share" : "Faghet a cumpartzire", "Can share" : "Faghet a cumpartzire",
"Can manage" : "Faghet a gestire", "Can manage" : "Faghet a gestire",
@@ -181,7 +183,7 @@
"Delete Attachment" : "Cantzella alligongiadu", "Delete Attachment" : "Cantzella alligongiadu",
"Restore Attachment" : "Riprìstina alligongiadu", "Restore Attachment" : "Riprìstina alligongiadu",
"File to share" : "Archìviu de cumpartzire", "File to share" : "Archìviu de cumpartzire",
"Invalid path selected" : "Percursu seletzionadu non bàlidu", "Invalid path selected" : "Caminu seletzionadu non bàlidu",
"Open in sidebar view" : "Aberi in s'istanca laterale", "Open in sidebar view" : "Aberi in s'istanca laterale",
"Open in bigger view" : "Aberi in una bista prus ampra", "Open in bigger view" : "Aberi in una bista prus ampra",
"Attachments" : "Alligongiados", "Attachments" : "Alligongiados",
@@ -214,6 +216,7 @@
"Write a description …" : "Iscrie una descritzione ...", "Write a description …" : "Iscrie una descritzione ...",
"Choose attachment" : "Sèbera un'alligongiadu", "Choose attachment" : "Sèbera un'alligongiadu",
"(group)" : "(grupu)", "(group)" : "(grupu)",
"(circle)" : "(tropa)",
"Assign to me" : "Assigna a mie", "Assign to me" : "Assigna a mie",
"Unassign myself" : "Annulla s'assignatzione a mie", "Unassign myself" : "Annulla s'assignatzione a mie",
"Move card" : "Tràmuda ischeda", "Move card" : "Tràmuda ischeda",
@@ -245,7 +248,7 @@
"Board {0} deleted" : "Lavagna {0} cantzellada", "Board {0} deleted" : "Lavagna {0} cantzellada",
"Only assigned cards" : "Isceti ischedas assignadas", "Only assigned cards" : "Isceti ischedas assignadas",
"No reminder" : "Perunu apuntu", "No reminder" : "Perunu apuntu",
"An error occurred" : "B'at àpidu un'errore", "An error occurred" : "Ddoe at àpidu un'errore",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Ses seguru chi cheres cantzellare sa lavagna {title}? Custa operatzione at a cantzellare totu is datos de custa lavagna.", "Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Ses seguru chi cheres cantzellare sa lavagna {title}? Custa operatzione at a cantzellare totu is datos de custa lavagna.",
"Delete the board?" : "Cheres cantzellare sa lavagna?", "Delete the board?" : "Cheres cantzellare sa lavagna?",
"Loading filtered view" : "Carrigamentu de sa bista cun su filtru", "Loading filtered view" : "Carrigamentu de sa bista cun su filtru",

View File

@@ -202,6 +202,7 @@ OC.L10N.register(
"Write a description …" : "Napíšte popis...", "Write a description …" : "Napíšte popis...",
"Choose attachment" : "Vybrať prílohu", "Choose attachment" : "Vybrať prílohu",
"(group)" : "(skupina)", "(group)" : "(skupina)",
"(circle)" : "(okruh)",
"Assign to me" : "Priradiť mne", "Assign to me" : "Priradiť mne",
"Unassign myself" : "Zrušiť priradenie mne", "Unassign myself" : "Zrušiť priradenie mne",
"Move card" : "Presunúť kartu", "Move card" : "Presunúť kartu",

View File

@@ -200,6 +200,7 @@
"Write a description …" : "Napíšte popis...", "Write a description …" : "Napíšte popis...",
"Choose attachment" : "Vybrať prílohu", "Choose attachment" : "Vybrať prílohu",
"(group)" : "(skupina)", "(group)" : "(skupina)",
"(circle)" : "(okruh)",
"Assign to me" : "Priradiť mne", "Assign to me" : "Priradiť mne",
"Unassign myself" : "Zrušiť priradenie mne", "Unassign myself" : "Zrušiť priradenie mne",
"Move card" : "Presunúť kartu", "Move card" : "Presunúť kartu",

View File

@@ -70,13 +70,9 @@ OC.L10N.register(
"Upcoming cards" : "Prihajajoče naloge", "Upcoming cards" : "Prihajajoče naloge",
"Personal" : "Osebno", "Personal" : "Osebno",
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Nalogo »%s« na »%s« vam dodeli %s.", "The card \"%s\" on \"%s\" has been assigned to you by %s." : "Nalogo »%s« na »%s« vam dodeli %s.",
"{user} has assigned the card {deck-card} on {deck-board} to you." : "{user} vam dodeli nalogo »{deck-card}« na »{deck-board}«.",
"The card \"%s\" on \"%s\" has reached its due date." : "Naloga »%s« na »%s« je dosegla datum preteka.", "The card \"%s\" on \"%s\" has reached its due date." : "Naloga »%s« na »%s« je dosegla datum preteka.",
"The card {deck-card} on {deck-board} has reached its due date." : "Naloga »{deck-card} « na »{deck-board}« je dosegla datum preteka.",
"%s has mentioned you in a comment on \"%s\"." : "%s vas omeni v opombi na »%s«.", "%s has mentioned you in a comment on \"%s\"." : "%s vas omeni v opombi na »%s«.",
"{user} has mentioned you in a comment on {deck-card}." : "{user} vas omeni v opombi na »{deck-card}«.",
"The board \"%s\" has been shared with you by %s." : "Zbirko »%s« vam dodeli %s.", "The board \"%s\" has been shared with you by %s." : "Zbirko »%s« vam dodeli %s.",
"{user} has shared {deck-board} with you." : "{user} vam omogoča souporabo zbirke {deck-board}.",
"Card comments" : "Opombe k nalogi", "Card comments" : "Opombe k nalogi",
"%s on %s" : "%s v nalogi %s", "%s on %s" : "%s v nalogi %s",
"No data was provided to create an attachment." : "Ni podanih podatkov za ustvarjanje priloge.", "No data was provided to create an attachment." : "Ni podanih podatkov za ustvarjanje priloge.",
@@ -115,8 +111,8 @@ OC.L10N.register(
"Select a list" : "Izbor seznama", "Select a list" : "Izbor seznama",
"Card title" : "Naslov naloge", "Card title" : "Naslov naloge",
"Cancel" : "Prekliči", "Cancel" : "Prekliči",
"Creating the new card …" : "Poteka ustvarjanje nove naloge ...", "Creating the new card…" : "Poteka ustvarjanje nove naloge ...",
"Card \"{card}\" was added to \"{board}\"" : "Naloga »{card}« je dodana v zbirko »{board}«.", "\"{card}\" was added to \"{board}\"" : "Naloga »{card}« je dodana v zbirko »{board}«.",
"Open card" : "Odpri nalogo", "Open card" : "Odpri nalogo",
"Close" : "Zapri", "Close" : "Zapri",
"Create card" : "Ustvari nalogo", "Create card" : "Ustvari nalogo",
@@ -200,7 +196,6 @@ OC.L10N.register(
"Created" : "Ustvarjeno", "Created" : "Ustvarjeno",
"The title cannot be empty." : "Polje naslova ne sme biti prazno.", "The title cannot be empty." : "Polje naslova ne sme biti prazno.",
"No comments yet. Begin the discussion!" : "Ni še odzivov, bodite prvi!", "No comments yet. Begin the discussion!" : "Ni še odzivov, bodite prvi!",
"Failed to load comments" : "Nalaganje opomb je spodletelo.",
"Assign a tag to this card…" : "Dodeli oznako nalogi ...", "Assign a tag to this card…" : "Dodeli oznako nalogi ...",
"Assign to users" : "Dodeli uporabnikom", "Assign to users" : "Dodeli uporabnikom",
"Assign to users/groups/circles" : "Dodeli uporabnikom/skupinam/krogom", "Assign to users/groups/circles" : "Dodeli uporabnikom/skupinam/krogom",
@@ -213,7 +208,6 @@ OC.L10N.register(
"The comment cannot be empty." : "Polje opombe ne sme biti prazno.", "The comment cannot be empty." : "Polje opombe ne sme biti prazno.",
"The comment cannot be longer than 1000 characters." : "Opomba ne sme biti daljša od 1000 znakov.", "The comment cannot be longer than 1000 characters." : "Opomba ne sme biti daljša od 1000 znakov.",
"In reply to" : "V odgovor", "In reply to" : "V odgovor",
"Cancel reply" : "Prekliči odgovor",
"Reply" : "Odgovori", "Reply" : "Odgovori",
"Update" : "Posodobi", "Update" : "Posodobi",
"Description" : "Opis", "Description" : "Opis",
@@ -226,7 +220,7 @@ OC.L10N.register(
"Write a description …" : "Vpišite opis ...", "Write a description …" : "Vpišite opis ...",
"Choose attachment" : "Izbor priloge", "Choose attachment" : "Izbor priloge",
"(group)" : "(skupina)", "(group)" : "(skupina)",
"{count} comments, {unread} unread" : "{count} sporočil, {unread} neprebranih", "(circle)" : "(krog)",
"Assign to me" : "Nalogo dodeli meni", "Assign to me" : "Nalogo dodeli meni",
"Unassign myself" : "Odstrani me z naloge", "Unassign myself" : "Odstrani me z naloge",
"Move card" : "Premakni nalogo", "Move card" : "Premakni nalogo",
@@ -273,7 +267,6 @@ OC.L10N.register(
"Link to a board" : "Povezava do zbirke", "Link to a board" : "Povezava do zbirke",
"Link to a card" : "Povezava do naloge", "Link to a card" : "Povezava do naloge",
"Create a card" : "Ustvari nalogo", "Create a card" : "Ustvari nalogo",
"Message from {author} in {conversationName}" : "{author} objavi sporočilo v pogovoru {conversationName}",
"Something went wrong" : "Prišlo je do napake ...", "Something went wrong" : "Prišlo je do napake ...",
"Failed to upload {name}" : "Pošiljanje {name} je spodletelo", "Failed to upload {name}" : "Pošiljanje {name} je spodletelo",
"Maximum file size of {size} exceeded" : "Omejitev velikosti datoteke {size} je prekoračena.", "Maximum file size of {size} exceeded" : "Omejitev velikosti datoteke {size} je prekoračena.",

View File

@@ -68,13 +68,9 @@
"Upcoming cards" : "Prihajajoče naloge", "Upcoming cards" : "Prihajajoče naloge",
"Personal" : "Osebno", "Personal" : "Osebno",
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Nalogo »%s« na »%s« vam dodeli %s.", "The card \"%s\" on \"%s\" has been assigned to you by %s." : "Nalogo »%s« na »%s« vam dodeli %s.",
"{user} has assigned the card {deck-card} on {deck-board} to you." : "{user} vam dodeli nalogo »{deck-card}« na »{deck-board}«.",
"The card \"%s\" on \"%s\" has reached its due date." : "Naloga »%s« na »%s« je dosegla datum preteka.", "The card \"%s\" on \"%s\" has reached its due date." : "Naloga »%s« na »%s« je dosegla datum preteka.",
"The card {deck-card} on {deck-board} has reached its due date." : "Naloga »{deck-card} « na »{deck-board}« je dosegla datum preteka.",
"%s has mentioned you in a comment on \"%s\"." : "%s vas omeni v opombi na »%s«.", "%s has mentioned you in a comment on \"%s\"." : "%s vas omeni v opombi na »%s«.",
"{user} has mentioned you in a comment on {deck-card}." : "{user} vas omeni v opombi na »{deck-card}«.",
"The board \"%s\" has been shared with you by %s." : "Zbirko »%s« vam dodeli %s.", "The board \"%s\" has been shared with you by %s." : "Zbirko »%s« vam dodeli %s.",
"{user} has shared {deck-board} with you." : "{user} vam omogoča souporabo zbirke {deck-board}.",
"Card comments" : "Opombe k nalogi", "Card comments" : "Opombe k nalogi",
"%s on %s" : "%s v nalogi %s", "%s on %s" : "%s v nalogi %s",
"No data was provided to create an attachment." : "Ni podanih podatkov za ustvarjanje priloge.", "No data was provided to create an attachment." : "Ni podanih podatkov za ustvarjanje priloge.",
@@ -113,8 +109,8 @@
"Select a list" : "Izbor seznama", "Select a list" : "Izbor seznama",
"Card title" : "Naslov naloge", "Card title" : "Naslov naloge",
"Cancel" : "Prekliči", "Cancel" : "Prekliči",
"Creating the new card …" : "Poteka ustvarjanje nove naloge ...", "Creating the new card…" : "Poteka ustvarjanje nove naloge ...",
"Card \"{card}\" was added to \"{board}\"" : "Naloga »{card}« je dodana v zbirko »{board}«.", "\"{card}\" was added to \"{board}\"" : "Naloga »{card}« je dodana v zbirko »{board}«.",
"Open card" : "Odpri nalogo", "Open card" : "Odpri nalogo",
"Close" : "Zapri", "Close" : "Zapri",
"Create card" : "Ustvari nalogo", "Create card" : "Ustvari nalogo",
@@ -198,7 +194,6 @@
"Created" : "Ustvarjeno", "Created" : "Ustvarjeno",
"The title cannot be empty." : "Polje naslova ne sme biti prazno.", "The title cannot be empty." : "Polje naslova ne sme biti prazno.",
"No comments yet. Begin the discussion!" : "Ni še odzivov, bodite prvi!", "No comments yet. Begin the discussion!" : "Ni še odzivov, bodite prvi!",
"Failed to load comments" : "Nalaganje opomb je spodletelo.",
"Assign a tag to this card…" : "Dodeli oznako nalogi ...", "Assign a tag to this card…" : "Dodeli oznako nalogi ...",
"Assign to users" : "Dodeli uporabnikom", "Assign to users" : "Dodeli uporabnikom",
"Assign to users/groups/circles" : "Dodeli uporabnikom/skupinam/krogom", "Assign to users/groups/circles" : "Dodeli uporabnikom/skupinam/krogom",
@@ -211,7 +206,6 @@
"The comment cannot be empty." : "Polje opombe ne sme biti prazno.", "The comment cannot be empty." : "Polje opombe ne sme biti prazno.",
"The comment cannot be longer than 1000 characters." : "Opomba ne sme biti daljša od 1000 znakov.", "The comment cannot be longer than 1000 characters." : "Opomba ne sme biti daljša od 1000 znakov.",
"In reply to" : "V odgovor", "In reply to" : "V odgovor",
"Cancel reply" : "Prekliči odgovor",
"Reply" : "Odgovori", "Reply" : "Odgovori",
"Update" : "Posodobi", "Update" : "Posodobi",
"Description" : "Opis", "Description" : "Opis",
@@ -224,7 +218,7 @@
"Write a description …" : "Vpišite opis ...", "Write a description …" : "Vpišite opis ...",
"Choose attachment" : "Izbor priloge", "Choose attachment" : "Izbor priloge",
"(group)" : "(skupina)", "(group)" : "(skupina)",
"{count} comments, {unread} unread" : "{count} sporočil, {unread} neprebranih", "(circle)" : "(krog)",
"Assign to me" : "Nalogo dodeli meni", "Assign to me" : "Nalogo dodeli meni",
"Unassign myself" : "Odstrani me z naloge", "Unassign myself" : "Odstrani me z naloge",
"Move card" : "Premakni nalogo", "Move card" : "Premakni nalogo",
@@ -271,7 +265,6 @@
"Link to a board" : "Povezava do zbirke", "Link to a board" : "Povezava do zbirke",
"Link to a card" : "Povezava do naloge", "Link to a card" : "Povezava do naloge",
"Create a card" : "Ustvari nalogo", "Create a card" : "Ustvari nalogo",
"Message from {author} in {conversationName}" : "{author} objavi sporočilo v pogovoru {conversationName}",
"Something went wrong" : "Prišlo je do napake ...", "Something went wrong" : "Prišlo je do napake ...",
"Failed to upload {name}" : "Pošiljanje {name} je spodletelo", "Failed to upload {name}" : "Pošiljanje {name} je spodletelo",
"Maximum file size of {size} exceeded" : "Omejitev velikosti datoteke {size} je prekoračena.", "Maximum file size of {size} exceeded" : "Omejitev velikosti datoteke {size} je prekoračena.",

View File

@@ -200,6 +200,7 @@ OC.L10N.register(
"Add Attachment" : "Додај прилог", "Add Attachment" : "Додај прилог",
"Choose attachment" : "Одабери прилог", "Choose attachment" : "Одабери прилог",
"(group)" : "(група)", "(group)" : "(група)",
"(circle)" : "(круг)",
"Assign to me" : "Додели мени", "Assign to me" : "Додели мени",
"Unassign myself" : "Склони са мене", "Unassign myself" : "Склони са мене",
"Move card" : "Премести картицу", "Move card" : "Премести картицу",

View File

@@ -198,6 +198,7 @@
"Add Attachment" : "Додај прилог", "Add Attachment" : "Додај прилог",
"Choose attachment" : "Одабери прилог", "Choose attachment" : "Одабери прилог",
"(group)" : "(група)", "(group)" : "(група)",
"(circle)" : "(круг)",
"Assign to me" : "Додели мени", "Assign to me" : "Додели мени",
"Unassign myself" : "Склони са мене", "Unassign myself" : "Склони са мене",
"Move card" : "Премести картицу", "Move card" : "Премести картицу",

View File

@@ -63,22 +63,16 @@ OC.L10N.register(
"{user} has restored the attachment {attachment} to card {card}" : "{user} har återställt bilagan {attachment} till kortet {card}", "{user} has restored the attachment {attachment} to card {card}" : "{user} har återställt bilagan {attachment} till kortet {card}",
"You have commented on card {card}" : "Du har kommenterat på kortet {card}", "You have commented on card {card}" : "Du har kommenterat på kortet {card}",
"{user} has commented on card {card}" : "{user} har kommenterat på kortet {card}", "{user} has commented on card {card}" : "{user} har kommenterat på kortet {card}",
"A <strong>card description</strong> inside the Deck app has been changed" : "En <strong>kortbeskrivning</strong> i Kortlek-appen har ändrats", "A <strong>card description</strong> inside the Deck app has been changed" : "En <strong>kortbeskrivning</strong> i Deck-appen har ändrats",
"Deck" : "Kortlek", "Deck" : "Deck",
"Changes in the <strong>Deck app</strong>" : "Ändringar i <strong>Kortlek-appen</strong>", "Changes in the <strong>Deck app</strong>" : "Ändringar i <strong>Deck-appen</strong>",
"A <strong>comment</strong> was created on a card" : "En <strong>kommentar</strong> skapades på ett kort", "A <strong>comment</strong> was created on a card" : "En <strong>kommentar</strong> skapades på ett kort",
"Upcoming cards" : "Kommande kort", "Upcoming cards" : "Kommande kort",
"Personal" : "Personlig", "Personal" : "Personlig",
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Kortet \"%s\" på \"%s\" har tilldelats dig av %s.", "The card \"%s\" on \"%s\" has been assigned to you by %s." : "Kortet \"%s\" på \"%s\" har tilldelats dig av %s.",
"{user} has assigned the card {deck-card} on {deck-board} to you." : "{user} har tilldelat kortet {deck-card} från {deck-board} till dig.", "The card \"%s\" on \"%s\" has reached its due date." : "Kortet \"%s\" på \"%s\" har nått sitt utgångsdatum.",
"The card \"%s\" on \"%s\" has reached its due date." : "Kortet \"%s\" på \"%s\" har nått sitt slutdatum.",
"The card {deck-card} on {deck-board} has reached its due date." : "Kortet {deck-card} från {deck-board} har nått sitt slutdatum.",
"%s has mentioned you in a comment on \"%s\"." : "%s har nämnt dig i en kommentar på \"%s\".", "%s has mentioned you in a comment on \"%s\"." : "%s har nämnt dig i en kommentar på \"%s\".",
"{user} has mentioned you in a comment on {deck-card}." : "{user} har nämnt dig i en kommentar i {deck-card}.",
"The board \"%s\" has been shared with you by %s." : "Tavlan \"%s\" har delats med dig av %s.", "The board \"%s\" has been shared with you by %s." : "Tavlan \"%s\" har delats med dig av %s.",
"{user} has shared {deck-board} with you." : "{user} har delat {deck-board} med dig.",
"Card comments" : "Kort kommentarer",
"%s on %s" : "%s på %s",
"No data was provided to create an attachment." : "Inga data lämnades för att skapa en bilaga.", "No data was provided to create an attachment." : "Inga data lämnades för att skapa en bilaga.",
"Finished" : "Slutförd", "Finished" : "Slutförd",
"To review" : "Att granska", "To review" : "Att granska",
@@ -100,26 +94,16 @@ OC.L10N.register(
"Could not write file to disk" : "Kunde inte skriva fil till disk", "Could not write file to disk" : "Kunde inte skriva fil till disk",
"A PHP extension stopped the file upload" : "Ett PHP-tillägg stoppade filuppladdningen", "A PHP extension stopped the file upload" : "Ett PHP-tillägg stoppade filuppladdningen",
"No file uploaded or file size exceeds maximum of %s" : "Ingen fil uppladdad eller filstorleken överstiger max %s", "No file uploaded or file size exceeds maximum of %s" : "Ingen fil uppladdad eller filstorleken överstiger max %s",
"Card not found" : "Kortet hittades inte",
"Path is already shared with this card" : "Sökvägen är redan delad med detta kort",
"Invalid date, date format must be YYYY-MM-DD" : "Ogiltigt datum, måste anges: ÅÅÅÅ-MM-DD",
"Personal planning and team project organization" : "Personlig planering och projekthantering för teams", "Personal planning and team project organization" : "Personlig planering och projekthantering för teams",
"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" : "Kortlek är en kanban-liknande projekt- och organiseringsapp för arbetsgrupper i Nextcloud.\n\n\n- 📥 Lägg till uppgifter på kort och ordna dem\n- 📄 Skriv anteckningar i markdown\n- 🔖 Tilldela etiketter för organisering\n- 👥 Dela med arbetsgruppen, vänner eller familj\n- 📎 Bifoga filer och bädda in dem i markdown-anteckningarna\n- 💬 Diskutera i arbetsgruppen genom kommentarer\n- ⚡ Håll koll på ändringar i aktivitetsflödet\n- 🚀 Börja organisera din arbetsgrupp nu!", "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" : "Korthögar är en kanban-liknande projekt- och organiseringsapp för arbetsgrupper i Nextcloud.\n\n\n- 📥 Lägg till uppgifter på kort och ordna dem\n- 📄 Skriv anteckningar i markdown\n- 🔖 Tilldela etiketter för organisering\n- 👥 Dela med arbetsgruppen, vänner eller familj\n- 📎 Bifoga filer och bädda in dem i markdown-anteckningarna\n- 💬 Diskutera i arbetsgruppen genom kommentarer\n- ⚡ Håll koll på ändringar i aktivitetsflödet\n- 🚀 Börja organisera din arbetsgrupp nu!",
"Card details" : "Kortdetaljer", "Card details" : "Kortdetaljer",
"Add board" : "Lägg till tavla", "Add board" : "Lägg till tavla",
"Select the board to link to a project" : "Välj tavla att länka till ett projekt", "Select the board to link to a project" : "Välj tavla att länka till ett projekt",
"Search by board title" : "Sök efter namn på tavla", "Search by board title" : "Sök efter namn på tavla",
"Select board" : "Välj tavla", "Select board" : "Välj tavla",
"Create a new card" : "Skapa ett nytt kort",
"Select a board" : "Välj en tavla", "Select a board" : "Välj en tavla",
"Select a list" : "Välj en lista", "Select a list" : "Välj en lista",
"Card title" : "Kort-titel",
"Cancel" : "Avbryt", "Cancel" : "Avbryt",
"Creating the new card …" : "Skapar det nya kortet ...",
"Card \"{card}\" was added to \"{board}\"" : "kortet \"{card}\" lades till i \"{board}\"",
"Open card" : "Öppna kort",
"Close" : "Stäng",
"Create card" : "Skapa kort",
"Select a card" : "Välj ett kort", "Select a card" : "Välj ett kort",
"Select the card to link to a project" : "Välj kort att länka till ett projekt", "Select the card to link to a project" : "Välj kort att länka till ett projekt",
"Link to card" : "Länka till kort", "Link to card" : "Länka till kort",
@@ -183,15 +167,9 @@ OC.L10N.register(
"title and color value must be provided" : "titel och färg måste anges", "title and color value must be provided" : "titel och färg måste anges",
"Board name" : "Tavlans namn", "Board name" : "Tavlans namn",
"Members" : "Medlemmar", "Members" : "Medlemmar",
"Upload new files" : "Ladda upp nya filer",
"Share from Files" : "Dela från Filer",
"Add this attachment" : "Lägg till denna bilaga", "Add this attachment" : "Lägg till denna bilaga",
"Show in Files" : "Visa i Filer",
"Unshare file" : "Sluta dela fil",
"Delete Attachment" : "Ta bort bilaga", "Delete Attachment" : "Ta bort bilaga",
"Restore Attachment" : "Återställ bilaga", "Restore Attachment" : "Återställ bilaga",
"File to share" : "Fil att dela",
"Invalid path selected" : "Ogiltig sökväg vald",
"Open in sidebar view" : "Öppna i sidofältet", "Open in sidebar view" : "Öppna i sidofältet",
"Open in bigger view" : "Öppna i större vy", "Open in bigger view" : "Öppna i större vy",
"Attachments" : "Bilagor", "Attachments" : "Bilagor",
@@ -200,7 +178,6 @@ OC.L10N.register(
"Created" : "Skapat", "Created" : "Skapat",
"The title cannot be empty." : "Titeln får inte lämnas tom.", "The title cannot be empty." : "Titeln får inte lämnas tom.",
"No comments yet. Begin the discussion!" : "Inga kommentarer än. Börja diskussionen!", "No comments yet. Begin the discussion!" : "Inga kommentarer än. Börja diskussionen!",
"Failed to load comments" : "Kunde inte ladda kommentarerna.",
"Assign a tag to this card…" : "Tilldela en tagg till det här kortet ...", "Assign a tag to this card…" : "Tilldela en tagg till det här kortet ...",
"Assign to users" : "Tilldela till användare", "Assign to users" : "Tilldela till användare",
"Assign to users/groups/circles" : "Tilldela till användare/grupper/cirklar", "Assign to users/groups/circles" : "Tilldela till användare/grupper/cirklar",
@@ -213,7 +190,6 @@ OC.L10N.register(
"The comment cannot be empty." : "Kommentaren kan inte vara tom.", "The comment cannot be empty." : "Kommentaren kan inte vara tom.",
"The comment cannot be longer than 1000 characters." : "Kommentaren kan inte vara längre än 1000 tecken.", "The comment cannot be longer than 1000 characters." : "Kommentaren kan inte vara längre än 1000 tecken.",
"In reply to" : "Som svar på", "In reply to" : "Som svar på",
"Cancel reply" : "Avbryt svar",
"Reply" : "Svara", "Reply" : "Svara",
"Update" : "Uppdatera", "Update" : "Uppdatera",
"Description" : "Beskrivning", "Description" : "Beskrivning",
@@ -226,7 +202,7 @@ OC.L10N.register(
"Write a description …" : "Ange en beskrivning ...", "Write a description …" : "Ange en beskrivning ...",
"Choose attachment" : "Välj bilaga", "Choose attachment" : "Välj bilaga",
"(group)" : " (grupp)", "(group)" : " (grupp)",
"{count} comments, {unread} unread" : "{count} kommentarer, {unread} olästa", "(circle)" : "(cirkel)",
"Assign to me" : "Tilldela till mig", "Assign to me" : "Tilldela till mig",
"Unassign myself" : "Ta bort från mig själv", "Unassign myself" : "Ta bort från mig själv",
"Move card" : "Flytta kort", "Move card" : "Flytta kort",
@@ -239,10 +215,9 @@ OC.L10N.register(
"All boards" : "Alla tavlor", "All boards" : "Alla tavlor",
"Archived boards" : "Arkiverade tavlor", "Archived boards" : "Arkiverade tavlor",
"Shared with you" : "Delad med dig", "Shared with you" : "Delad med dig",
"Use bigger card view" : "Visa större kort",
"Show boards in calendar/tasks" : "Visa tavlor i kalender / uppgifter", "Show boards in calendar/tasks" : "Visa tavlor i kalender / uppgifter",
"Limit deck usage of groups" : "Begränsa användningen av grupper", "Limit deck usage of groups" : "Begränsa användningen av grupper",
"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." : "Begränsning av Kortlek blockerar användare som inte ingår i dessa grupper från att skapa egna tavlor. Användare kan dock fortfarande integrera med tavlor som har delats med dem.", "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." : "Begränsa Deck blockerar användare som inte ingår i dessa grupper från att skapa egna tavlor. Användare kan fortfarande arbeta med tavlor som har delats med dem.",
"Board details" : "Taveldetaljer", "Board details" : "Taveldetaljer",
"Edit board" : "Ändra tavla", "Edit board" : "Ändra tavla",
"Clone board" : "Kopiera tavla", "Clone board" : "Kopiera tavla",
@@ -266,20 +241,11 @@ OC.L10N.register(
"Tomorrow" : "Imorgon", "Tomorrow" : "Imorgon",
"This week" : "Denna vecka", "This week" : "Denna vecka",
"No due" : "Inget slut", "No due" : "Inget slut",
"Search for {searchQuery} in all boards" : "Sök efter {searchQuery} i alla tavlor",
"No results found" : "Inga resultat funna",
"No upcoming cards" : "Inga kommande kort", "No upcoming cards" : "Inga kommande kort",
"upcoming cards" : "kommande kort", "upcoming cards" : "kommande kort",
"Link to a board" : "Länka till en tavla", "Link to a board" : "Länka till en tavla",
"Link to a card" : "Länka till ett kort", "Link to a card" : "Länka till ett kort",
"Create a card" : "Skapa ett kort",
"Message from {author} in {conversationName}" : "Meddelande från {author} i {conversationName}",
"Something went wrong" : "Något gick fel", "Something went wrong" : "Något gick fel",
"Failed to upload {name}" : "Kunde inte ladda upp {name}", "Maximum file size of {size} exceeded" : "Maximal filstorlek på {size} överskriden"
"Maximum file size of {size} exceeded" : "Maximal filstorlek på {size} överskriden",
"Error creating the share" : "Kunde inte skapa delning",
"Share with a Deck card" : "Dela med ett Kortlek-kort",
"Share {file} with a Deck card" : "Dela {file} med ett Kortlek-kort",
"Share" : "Dela"
}, },
"nplurals=2; plural=(n != 1);"); "nplurals=2; plural=(n != 1);");

View File

@@ -61,22 +61,16 @@
"{user} has restored the attachment {attachment} to card {card}" : "{user} har återställt bilagan {attachment} till kortet {card}", "{user} has restored the attachment {attachment} to card {card}" : "{user} har återställt bilagan {attachment} till kortet {card}",
"You have commented on card {card}" : "Du har kommenterat på kortet {card}", "You have commented on card {card}" : "Du har kommenterat på kortet {card}",
"{user} has commented on card {card}" : "{user} har kommenterat på kortet {card}", "{user} has commented on card {card}" : "{user} har kommenterat på kortet {card}",
"A <strong>card description</strong> inside the Deck app has been changed" : "En <strong>kortbeskrivning</strong> i Kortlek-appen har ändrats", "A <strong>card description</strong> inside the Deck app has been changed" : "En <strong>kortbeskrivning</strong> i Deck-appen har ändrats",
"Deck" : "Kortlek", "Deck" : "Deck",
"Changes in the <strong>Deck app</strong>" : "Ändringar i <strong>Kortlek-appen</strong>", "Changes in the <strong>Deck app</strong>" : "Ändringar i <strong>Deck-appen</strong>",
"A <strong>comment</strong> was created on a card" : "En <strong>kommentar</strong> skapades på ett kort", "A <strong>comment</strong> was created on a card" : "En <strong>kommentar</strong> skapades på ett kort",
"Upcoming cards" : "Kommande kort", "Upcoming cards" : "Kommande kort",
"Personal" : "Personlig", "Personal" : "Personlig",
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Kortet \"%s\" på \"%s\" har tilldelats dig av %s.", "The card \"%s\" on \"%s\" has been assigned to you by %s." : "Kortet \"%s\" på \"%s\" har tilldelats dig av %s.",
"{user} has assigned the card {deck-card} on {deck-board} to you." : "{user} har tilldelat kortet {deck-card} från {deck-board} till dig.", "The card \"%s\" on \"%s\" has reached its due date." : "Kortet \"%s\" på \"%s\" har nått sitt utgångsdatum.",
"The card \"%s\" on \"%s\" has reached its due date." : "Kortet \"%s\" på \"%s\" har nått sitt slutdatum.",
"The card {deck-card} on {deck-board} has reached its due date." : "Kortet {deck-card} från {deck-board} har nått sitt slutdatum.",
"%s has mentioned you in a comment on \"%s\"." : "%s har nämnt dig i en kommentar på \"%s\".", "%s has mentioned you in a comment on \"%s\"." : "%s har nämnt dig i en kommentar på \"%s\".",
"{user} has mentioned you in a comment on {deck-card}." : "{user} har nämnt dig i en kommentar i {deck-card}.",
"The board \"%s\" has been shared with you by %s." : "Tavlan \"%s\" har delats med dig av %s.", "The board \"%s\" has been shared with you by %s." : "Tavlan \"%s\" har delats med dig av %s.",
"{user} has shared {deck-board} with you." : "{user} har delat {deck-board} med dig.",
"Card comments" : "Kort kommentarer",
"%s on %s" : "%s på %s",
"No data was provided to create an attachment." : "Inga data lämnades för att skapa en bilaga.", "No data was provided to create an attachment." : "Inga data lämnades för att skapa en bilaga.",
"Finished" : "Slutförd", "Finished" : "Slutförd",
"To review" : "Att granska", "To review" : "Att granska",
@@ -98,26 +92,16 @@
"Could not write file to disk" : "Kunde inte skriva fil till disk", "Could not write file to disk" : "Kunde inte skriva fil till disk",
"A PHP extension stopped the file upload" : "Ett PHP-tillägg stoppade filuppladdningen", "A PHP extension stopped the file upload" : "Ett PHP-tillägg stoppade filuppladdningen",
"No file uploaded or file size exceeds maximum of %s" : "Ingen fil uppladdad eller filstorleken överstiger max %s", "No file uploaded or file size exceeds maximum of %s" : "Ingen fil uppladdad eller filstorleken överstiger max %s",
"Card not found" : "Kortet hittades inte",
"Path is already shared with this card" : "Sökvägen är redan delad med detta kort",
"Invalid date, date format must be YYYY-MM-DD" : "Ogiltigt datum, måste anges: ÅÅÅÅ-MM-DD",
"Personal planning and team project organization" : "Personlig planering och projekthantering för teams", "Personal planning and team project organization" : "Personlig planering och projekthantering för teams",
"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" : "Kortlek är en kanban-liknande projekt- och organiseringsapp för arbetsgrupper i Nextcloud.\n\n\n- 📥 Lägg till uppgifter på kort och ordna dem\n- 📄 Skriv anteckningar i markdown\n- 🔖 Tilldela etiketter för organisering\n- 👥 Dela med arbetsgruppen, vänner eller familj\n- 📎 Bifoga filer och bädda in dem i markdown-anteckningarna\n- 💬 Diskutera i arbetsgruppen genom kommentarer\n- ⚡ Håll koll på ändringar i aktivitetsflödet\n- 🚀 Börja organisera din arbetsgrupp nu!", "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" : "Korthögar är en kanban-liknande projekt- och organiseringsapp för arbetsgrupper i Nextcloud.\n\n\n- 📥 Lägg till uppgifter på kort och ordna dem\n- 📄 Skriv anteckningar i markdown\n- 🔖 Tilldela etiketter för organisering\n- 👥 Dela med arbetsgruppen, vänner eller familj\n- 📎 Bifoga filer och bädda in dem i markdown-anteckningarna\n- 💬 Diskutera i arbetsgruppen genom kommentarer\n- ⚡ Håll koll på ändringar i aktivitetsflödet\n- 🚀 Börja organisera din arbetsgrupp nu!",
"Card details" : "Kortdetaljer", "Card details" : "Kortdetaljer",
"Add board" : "Lägg till tavla", "Add board" : "Lägg till tavla",
"Select the board to link to a project" : "Välj tavla att länka till ett projekt", "Select the board to link to a project" : "Välj tavla att länka till ett projekt",
"Search by board title" : "Sök efter namn på tavla", "Search by board title" : "Sök efter namn på tavla",
"Select board" : "Välj tavla", "Select board" : "Välj tavla",
"Create a new card" : "Skapa ett nytt kort",
"Select a board" : "Välj en tavla", "Select a board" : "Välj en tavla",
"Select a list" : "Välj en lista", "Select a list" : "Välj en lista",
"Card title" : "Kort-titel",
"Cancel" : "Avbryt", "Cancel" : "Avbryt",
"Creating the new card …" : "Skapar det nya kortet ...",
"Card \"{card}\" was added to \"{board}\"" : "kortet \"{card}\" lades till i \"{board}\"",
"Open card" : "Öppna kort",
"Close" : "Stäng",
"Create card" : "Skapa kort",
"Select a card" : "Välj ett kort", "Select a card" : "Välj ett kort",
"Select the card to link to a project" : "Välj kort att länka till ett projekt", "Select the card to link to a project" : "Välj kort att länka till ett projekt",
"Link to card" : "Länka till kort", "Link to card" : "Länka till kort",
@@ -181,15 +165,9 @@
"title and color value must be provided" : "titel och färg måste anges", "title and color value must be provided" : "titel och färg måste anges",
"Board name" : "Tavlans namn", "Board name" : "Tavlans namn",
"Members" : "Medlemmar", "Members" : "Medlemmar",
"Upload new files" : "Ladda upp nya filer",
"Share from Files" : "Dela från Filer",
"Add this attachment" : "Lägg till denna bilaga", "Add this attachment" : "Lägg till denna bilaga",
"Show in Files" : "Visa i Filer",
"Unshare file" : "Sluta dela fil",
"Delete Attachment" : "Ta bort bilaga", "Delete Attachment" : "Ta bort bilaga",
"Restore Attachment" : "Återställ bilaga", "Restore Attachment" : "Återställ bilaga",
"File to share" : "Fil att dela",
"Invalid path selected" : "Ogiltig sökväg vald",
"Open in sidebar view" : "Öppna i sidofältet", "Open in sidebar view" : "Öppna i sidofältet",
"Open in bigger view" : "Öppna i större vy", "Open in bigger view" : "Öppna i större vy",
"Attachments" : "Bilagor", "Attachments" : "Bilagor",
@@ -198,7 +176,6 @@
"Created" : "Skapat", "Created" : "Skapat",
"The title cannot be empty." : "Titeln får inte lämnas tom.", "The title cannot be empty." : "Titeln får inte lämnas tom.",
"No comments yet. Begin the discussion!" : "Inga kommentarer än. Börja diskussionen!", "No comments yet. Begin the discussion!" : "Inga kommentarer än. Börja diskussionen!",
"Failed to load comments" : "Kunde inte ladda kommentarerna.",
"Assign a tag to this card…" : "Tilldela en tagg till det här kortet ...", "Assign a tag to this card…" : "Tilldela en tagg till det här kortet ...",
"Assign to users" : "Tilldela till användare", "Assign to users" : "Tilldela till användare",
"Assign to users/groups/circles" : "Tilldela till användare/grupper/cirklar", "Assign to users/groups/circles" : "Tilldela till användare/grupper/cirklar",
@@ -211,7 +188,6 @@
"The comment cannot be empty." : "Kommentaren kan inte vara tom.", "The comment cannot be empty." : "Kommentaren kan inte vara tom.",
"The comment cannot be longer than 1000 characters." : "Kommentaren kan inte vara längre än 1000 tecken.", "The comment cannot be longer than 1000 characters." : "Kommentaren kan inte vara längre än 1000 tecken.",
"In reply to" : "Som svar på", "In reply to" : "Som svar på",
"Cancel reply" : "Avbryt svar",
"Reply" : "Svara", "Reply" : "Svara",
"Update" : "Uppdatera", "Update" : "Uppdatera",
"Description" : "Beskrivning", "Description" : "Beskrivning",
@@ -224,7 +200,7 @@
"Write a description …" : "Ange en beskrivning ...", "Write a description …" : "Ange en beskrivning ...",
"Choose attachment" : "Välj bilaga", "Choose attachment" : "Välj bilaga",
"(group)" : " (grupp)", "(group)" : " (grupp)",
"{count} comments, {unread} unread" : "{count} kommentarer, {unread} olästa", "(circle)" : "(cirkel)",
"Assign to me" : "Tilldela till mig", "Assign to me" : "Tilldela till mig",
"Unassign myself" : "Ta bort från mig själv", "Unassign myself" : "Ta bort från mig själv",
"Move card" : "Flytta kort", "Move card" : "Flytta kort",
@@ -237,10 +213,9 @@
"All boards" : "Alla tavlor", "All boards" : "Alla tavlor",
"Archived boards" : "Arkiverade tavlor", "Archived boards" : "Arkiverade tavlor",
"Shared with you" : "Delad med dig", "Shared with you" : "Delad med dig",
"Use bigger card view" : "Visa större kort",
"Show boards in calendar/tasks" : "Visa tavlor i kalender / uppgifter", "Show boards in calendar/tasks" : "Visa tavlor i kalender / uppgifter",
"Limit deck usage of groups" : "Begränsa användningen av grupper", "Limit deck usage of groups" : "Begränsa användningen av grupper",
"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." : "Begränsning av Kortlek blockerar användare som inte ingår i dessa grupper från att skapa egna tavlor. Användare kan dock fortfarande integrera med tavlor som har delats med dem.", "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." : "Begränsa Deck blockerar användare som inte ingår i dessa grupper från att skapa egna tavlor. Användare kan fortfarande arbeta med tavlor som har delats med dem.",
"Board details" : "Taveldetaljer", "Board details" : "Taveldetaljer",
"Edit board" : "Ändra tavla", "Edit board" : "Ändra tavla",
"Clone board" : "Kopiera tavla", "Clone board" : "Kopiera tavla",
@@ -264,20 +239,11 @@
"Tomorrow" : "Imorgon", "Tomorrow" : "Imorgon",
"This week" : "Denna vecka", "This week" : "Denna vecka",
"No due" : "Inget slut", "No due" : "Inget slut",
"Search for {searchQuery} in all boards" : "Sök efter {searchQuery} i alla tavlor",
"No results found" : "Inga resultat funna",
"No upcoming cards" : "Inga kommande kort", "No upcoming cards" : "Inga kommande kort",
"upcoming cards" : "kommande kort", "upcoming cards" : "kommande kort",
"Link to a board" : "Länka till en tavla", "Link to a board" : "Länka till en tavla",
"Link to a card" : "Länka till ett kort", "Link to a card" : "Länka till ett kort",
"Create a card" : "Skapa ett kort",
"Message from {author} in {conversationName}" : "Meddelande från {author} i {conversationName}",
"Something went wrong" : "Något gick fel", "Something went wrong" : "Något gick fel",
"Failed to upload {name}" : "Kunde inte ladda upp {name}", "Maximum file size of {size} exceeded" : "Maximal filstorlek på {size} överskriden"
"Maximum file size of {size} exceeded" : "Maximal filstorlek på {size} överskriden",
"Error creating the share" : "Kunde inte skapa delning",
"Share with a Deck card" : "Dela med ett Kortlek-kort",
"Share {file} with a Deck card" : "Dela {file} med ett Kortlek-kort",
"Share" : "Dela"
},"pluralForm" :"nplurals=2; plural=(n != 1);" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@@ -70,14 +70,10 @@ OC.L10N.register(
"Upcoming cards" : "Yaklaşan kartlar", "Upcoming cards" : "Yaklaşan kartlar",
"Personal" : "Kişisel", "Personal" : "Kişisel",
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "\"%s\" kartı \"%s\" zamanında %s tarafından size atandı.", "The card \"%s\" on \"%s\" has been assigned to you by %s." : "\"%s\" kartı \"%s\" zamanında %s tarafından size atandı.",
"{user} has assigned the card {deck-card} on {deck-board} to you." : "{user}, {deck-board} panosundaki {deck-card} kartını size atadı.",
"The card \"%s\" on \"%s\" has reached its due date." : "\"%s\" kartı \"%s\" zamanında son kullanma tarihine ulaştı.", "The card \"%s\" on \"%s\" has reached its due date." : "\"%s\" kartı \"%s\" zamanında son kullanma tarihine ulaştı.",
"The card {deck-card} on {deck-board} has reached its due date." : "{deck-board} panosundaki {deck-card} kartının bitiş tarihi geldi.",
"%s has mentioned you in a comment on \"%s\"." : "%s kullanıcısı, \"%s\" üzerindeki bir yorumda sizi andı", "%s has mentioned you in a comment on \"%s\"." : "%s kullanıcısı, \"%s\" üzerindeki bir yorumda sizi andı",
"{user} has mentioned you in a comment on {deck-card}." : "{user}, {deck-card} kartına yaptığı yorumda sizi andı.",
"The board \"%s\" has been shared with you by %s." : "\"%s\" panosu %s tarafından sizinle paylaşıldı.", "The board \"%s\" has been shared with you by %s." : "\"%s\" panosu %s tarafından sizinle paylaşıldı.",
"{user} has shared {deck-board} with you." : "{user}, {deck-card} kartını sizinle paylaştı.", "Card comments" : "Kart açıklamaları",
"Card comments" : "Kart yorumları",
"%s on %s" : "%s, %s hakkında", "%s on %s" : "%s, %s hakkında",
"No data was provided to create an attachment." : "Bir ek dosya oluşturmak için herhangi bir veri belirtilmedi.", "No data was provided to create an attachment." : "Bir ek dosya oluşturmak için herhangi bir veri belirtilmedi.",
"Finished" : "Tamamlandı", "Finished" : "Tamamlandı",
@@ -88,9 +84,9 @@ OC.L10N.register(
"To do" : "Yapılacak işler", "To do" : "Yapılacak işler",
"Doing" : "Yapılanlar", "Doing" : "Yapılanlar",
"Done" : "Bitenler", "Done" : "Bitenler",
"Example Task 3" : "3. örnek görev", "Example Task 3" : "3. Örnek Görev",
"Example Task 2" : "2. örnek görev", "Example Task 2" : "2. Örnek Görev",
"Example Task 1" : "1. örnek görev", "Example Task 1" : "1. Örnek Görev",
"The file was uploaded" : "Dosya yüklendi", "The file was uploaded" : "Dosya yüklendi",
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Yüklenen dosya php.ini dosyasındaki yüklenebilecek dosya boyutunu belirten upload_max_filesize değişkeninin değerini aşıyor", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Yüklenen dosya php.ini dosyasındaki yüklenebilecek dosya boyutunu belirten upload_max_filesize değişkeninin değerini aşıyor",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Yüklenen dosya HTML formundaki yüklenebilecek dosya boyutunu belirten MAX_FILE_SIZE değişkeninin değerini aşıyor", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Yüklenen dosya HTML formundaki yüklenebilecek dosya boyutunu belirten MAX_FILE_SIZE değişkeninin değerini aşıyor",
@@ -115,8 +111,8 @@ OC.L10N.register(
"Select a list" : "Bir liste seçin", "Select a list" : "Bir liste seçin",
"Card title" : "Kart başlığı", "Card title" : "Kart başlığı",
"Cancel" : "İptal", "Cancel" : "İptal",
"Creating the new card …" : "Yeni kart ekleniyor …", "Creating the new card…" : "Yeni kart ekleniyor…",
"Card \"{card}\" was added to \"{board}\"" : "\"{card}\" kartı \"{board}\" panosuna eklendi", "\"{card}\" was added to \"{board}\"" : "\"{card}\" kartı \"{board}\" panosuna eklendi",
"Open card" : "Kartı aç", "Open card" : "Kartı aç",
"Close" : "Kapat", "Close" : "Kapat",
"Create card" : "Kart ekle", "Create card" : "Kart ekle",
@@ -188,19 +184,18 @@ OC.L10N.register(
"Add this attachment" : "Bu dosyayı ekle", "Add this attachment" : "Bu dosyayı ekle",
"Show in Files" : "Dosyalarda görüntüle", "Show in Files" : "Dosyalarda görüntüle",
"Unshare file" : "Dosyayı paylaşımdan kaldır", "Unshare file" : "Dosyayı paylaşımdan kaldır",
"Delete Attachment" : "Ek dosyasını sil", "Delete Attachment" : "Ek Dosyasını Sil",
"Restore Attachment" : "Ek dosyasını geri yükle", "Restore Attachment" : "Ek Dosyasını Geri Yükle",
"File to share" : "Paylaşılacak dosya", "File to share" : "Paylaşılacak dosya",
"Invalid path selected" : "Seçilen yol geçersiz", "Invalid path selected" : "Seçilen yol geçersiz",
"Open in sidebar view" : "Yan çubuk görünümünde aç", "Open in sidebar view" : "Yan çubuk görünümünde aç",
"Open in bigger view" : "Daha büyük görünümde aç", "Open in bigger view" : "Daha büyük görünümde aç",
"Attachments" : "Ek dosyalar", "Attachments" : "Ek dosyalar",
"Comments" : "Yorumlar", "Comments" : "ıklamalar",
"Modified" : "Değiştirilme", "Modified" : "Değiştirilme",
"Created" : "Oluşturulma", "Created" : "Oluşturulma",
"The title cannot be empty." : "Başlık boş olamaz.", "The title cannot be empty." : "Başlık boş olamaz.",
"No comments yet. Begin the discussion!" : "Henüz bir yorum yapılmamış. Tartışmayı başlatın!", "No comments yet. Begin the discussion!" : "Henüz bir yorum yapılmamış. Tartışmayı başlatın!",
"Failed to load comments" : "Yorumlar yüklenemedi",
"Assign a tag to this card…" : "Bu karta bir etiket ata…", "Assign a tag to this card…" : "Bu karta bir etiket ata…",
"Assign to users" : "Kullanıcılara ata", "Assign to users" : "Kullanıcılara ata",
"Assign to users/groups/circles" : "Kullanıcılara/gruplara/çevrelere ata", "Assign to users/groups/circles" : "Kullanıcılara/gruplara/çevrelere ata",
@@ -213,7 +208,6 @@ OC.L10N.register(
"The comment cannot be empty." : "Yorum boş olamaz.", "The comment cannot be empty." : "Yorum boş olamaz.",
"The comment cannot be longer than 1000 characters." : "Yorum 1000 karakterden uzun olamaz.", "The comment cannot be longer than 1000 characters." : "Yorum 1000 karakterden uzun olamaz.",
"In reply to" : "Şuna yanıtla", "In reply to" : "Şuna yanıtla",
"Cancel reply" : "Yanıtı iptal et",
"Reply" : "Yanıtla", "Reply" : "Yanıtla",
"Update" : "Güncelle", "Update" : "Güncelle",
"Description" : "Açıklama", "Description" : "Açıklama",
@@ -222,11 +216,11 @@ OC.L10N.register(
"Formatting help" : "Biçimlendirme yardımı", "Formatting help" : "Biçimlendirme yardımı",
"Edit description" : "Açıklamayı düzenle", "Edit description" : "Açıklamayı düzenle",
"View description" : "Açıklamayı görüntüle", "View description" : "Açıklamayı görüntüle",
"Add Attachment" : "Dosya ekle", "Add Attachment" : "Dosya Ekle",
"Write a description …" : "Bir açıklama yazın …", "Write a description …" : "Bir açıklama yazın …",
"Choose attachment" : "Ek dosyayı seçin", "Choose attachment" : "Ek dosyayı seçin",
"(group)" : "(grup)", "(group)" : "(grup)",
"{count} comments, {unread} unread" : "{count} yorum, {unread} okunmamış", "(circle)" : "(çevre)",
"Assign to me" : "Bana ata", "Assign to me" : "Bana ata",
"Unassign myself" : "Kendi atamamı kaldır", "Unassign myself" : "Kendi atamamı kaldır",
"Move card" : "Kartı taşı", "Move card" : "Kartı taşı",

View File

@@ -68,14 +68,10 @@
"Upcoming cards" : "Yaklaşan kartlar", "Upcoming cards" : "Yaklaşan kartlar",
"Personal" : "Kişisel", "Personal" : "Kişisel",
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "\"%s\" kartı \"%s\" zamanında %s tarafından size atandı.", "The card \"%s\" on \"%s\" has been assigned to you by %s." : "\"%s\" kartı \"%s\" zamanında %s tarafından size atandı.",
"{user} has assigned the card {deck-card} on {deck-board} to you." : "{user}, {deck-board} panosundaki {deck-card} kartını size atadı.",
"The card \"%s\" on \"%s\" has reached its due date." : "\"%s\" kartı \"%s\" zamanında son kullanma tarihine ulaştı.", "The card \"%s\" on \"%s\" has reached its due date." : "\"%s\" kartı \"%s\" zamanında son kullanma tarihine ulaştı.",
"The card {deck-card} on {deck-board} has reached its due date." : "{deck-board} panosundaki {deck-card} kartının bitiş tarihi geldi.",
"%s has mentioned you in a comment on \"%s\"." : "%s kullanıcısı, \"%s\" üzerindeki bir yorumda sizi andı", "%s has mentioned you in a comment on \"%s\"." : "%s kullanıcısı, \"%s\" üzerindeki bir yorumda sizi andı",
"{user} has mentioned you in a comment on {deck-card}." : "{user}, {deck-card} kartına yaptığı yorumda sizi andı.",
"The board \"%s\" has been shared with you by %s." : "\"%s\" panosu %s tarafından sizinle paylaşıldı.", "The board \"%s\" has been shared with you by %s." : "\"%s\" panosu %s tarafından sizinle paylaşıldı.",
"{user} has shared {deck-board} with you." : "{user}, {deck-card} kartını sizinle paylaştı.", "Card comments" : "Kart açıklamaları",
"Card comments" : "Kart yorumları",
"%s on %s" : "%s, %s hakkında", "%s on %s" : "%s, %s hakkında",
"No data was provided to create an attachment." : "Bir ek dosya oluşturmak için herhangi bir veri belirtilmedi.", "No data was provided to create an attachment." : "Bir ek dosya oluşturmak için herhangi bir veri belirtilmedi.",
"Finished" : "Tamamlandı", "Finished" : "Tamamlandı",
@@ -86,9 +82,9 @@
"To do" : "Yapılacak işler", "To do" : "Yapılacak işler",
"Doing" : "Yapılanlar", "Doing" : "Yapılanlar",
"Done" : "Bitenler", "Done" : "Bitenler",
"Example Task 3" : "3. örnek görev", "Example Task 3" : "3. Örnek Görev",
"Example Task 2" : "2. örnek görev", "Example Task 2" : "2. Örnek Görev",
"Example Task 1" : "1. örnek görev", "Example Task 1" : "1. Örnek Görev",
"The file was uploaded" : "Dosya yüklendi", "The file was uploaded" : "Dosya yüklendi",
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Yüklenen dosya php.ini dosyasındaki yüklenebilecek dosya boyutunu belirten upload_max_filesize değişkeninin değerini aşıyor", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Yüklenen dosya php.ini dosyasındaki yüklenebilecek dosya boyutunu belirten upload_max_filesize değişkeninin değerini aşıyor",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Yüklenen dosya HTML formundaki yüklenebilecek dosya boyutunu belirten MAX_FILE_SIZE değişkeninin değerini aşıyor", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Yüklenen dosya HTML formundaki yüklenebilecek dosya boyutunu belirten MAX_FILE_SIZE değişkeninin değerini aşıyor",
@@ -113,8 +109,8 @@
"Select a list" : "Bir liste seçin", "Select a list" : "Bir liste seçin",
"Card title" : "Kart başlığı", "Card title" : "Kart başlığı",
"Cancel" : "İptal", "Cancel" : "İptal",
"Creating the new card …" : "Yeni kart ekleniyor …", "Creating the new card…" : "Yeni kart ekleniyor…",
"Card \"{card}\" was added to \"{board}\"" : "\"{card}\" kartı \"{board}\" panosuna eklendi", "\"{card}\" was added to \"{board}\"" : "\"{card}\" kartı \"{board}\" panosuna eklendi",
"Open card" : "Kartı aç", "Open card" : "Kartı aç",
"Close" : "Kapat", "Close" : "Kapat",
"Create card" : "Kart ekle", "Create card" : "Kart ekle",
@@ -186,19 +182,18 @@
"Add this attachment" : "Bu dosyayı ekle", "Add this attachment" : "Bu dosyayı ekle",
"Show in Files" : "Dosyalarda görüntüle", "Show in Files" : "Dosyalarda görüntüle",
"Unshare file" : "Dosyayı paylaşımdan kaldır", "Unshare file" : "Dosyayı paylaşımdan kaldır",
"Delete Attachment" : "Ek dosyasını sil", "Delete Attachment" : "Ek Dosyasını Sil",
"Restore Attachment" : "Ek dosyasını geri yükle", "Restore Attachment" : "Ek Dosyasını Geri Yükle",
"File to share" : "Paylaşılacak dosya", "File to share" : "Paylaşılacak dosya",
"Invalid path selected" : "Seçilen yol geçersiz", "Invalid path selected" : "Seçilen yol geçersiz",
"Open in sidebar view" : "Yan çubuk görünümünde aç", "Open in sidebar view" : "Yan çubuk görünümünde aç",
"Open in bigger view" : "Daha büyük görünümde aç", "Open in bigger view" : "Daha büyük görünümde aç",
"Attachments" : "Ek dosyalar", "Attachments" : "Ek dosyalar",
"Comments" : "Yorumlar", "Comments" : "ıklamalar",
"Modified" : "Değiştirilme", "Modified" : "Değiştirilme",
"Created" : "Oluşturulma", "Created" : "Oluşturulma",
"The title cannot be empty." : "Başlık boş olamaz.", "The title cannot be empty." : "Başlık boş olamaz.",
"No comments yet. Begin the discussion!" : "Henüz bir yorum yapılmamış. Tartışmayı başlatın!", "No comments yet. Begin the discussion!" : "Henüz bir yorum yapılmamış. Tartışmayı başlatın!",
"Failed to load comments" : "Yorumlar yüklenemedi",
"Assign a tag to this card…" : "Bu karta bir etiket ata…", "Assign a tag to this card…" : "Bu karta bir etiket ata…",
"Assign to users" : "Kullanıcılara ata", "Assign to users" : "Kullanıcılara ata",
"Assign to users/groups/circles" : "Kullanıcılara/gruplara/çevrelere ata", "Assign to users/groups/circles" : "Kullanıcılara/gruplara/çevrelere ata",
@@ -211,7 +206,6 @@
"The comment cannot be empty." : "Yorum boş olamaz.", "The comment cannot be empty." : "Yorum boş olamaz.",
"The comment cannot be longer than 1000 characters." : "Yorum 1000 karakterden uzun olamaz.", "The comment cannot be longer than 1000 characters." : "Yorum 1000 karakterden uzun olamaz.",
"In reply to" : "Şuna yanıtla", "In reply to" : "Şuna yanıtla",
"Cancel reply" : "Yanıtı iptal et",
"Reply" : "Yanıtla", "Reply" : "Yanıtla",
"Update" : "Güncelle", "Update" : "Güncelle",
"Description" : "Açıklama", "Description" : "Açıklama",
@@ -220,11 +214,11 @@
"Formatting help" : "Biçimlendirme yardımı", "Formatting help" : "Biçimlendirme yardımı",
"Edit description" : "Açıklamayı düzenle", "Edit description" : "Açıklamayı düzenle",
"View description" : "Açıklamayı görüntüle", "View description" : "Açıklamayı görüntüle",
"Add Attachment" : "Dosya ekle", "Add Attachment" : "Dosya Ekle",
"Write a description …" : "Bir açıklama yazın …", "Write a description …" : "Bir açıklama yazın …",
"Choose attachment" : "Ek dosyayı seçin", "Choose attachment" : "Ek dosyayı seçin",
"(group)" : "(grup)", "(group)" : "(grup)",
"{count} comments, {unread} unread" : "{count} yorum, {unread} okunmamış", "(circle)" : "(çevre)",
"Assign to me" : "Bana ata", "Assign to me" : "Bana ata",
"Unassign myself" : "Kendi atamamı kaldır", "Unassign myself" : "Kendi atamamı kaldır",
"Move card" : "Kartı taşı", "Move card" : "Kartı taşı",

View File

@@ -122,6 +122,7 @@ OC.L10N.register(
"Add Attachment" : "Долучити вкладення", "Add Attachment" : "Долучити вкладення",
"Choose attachment" : "Вибрати вкладення", "Choose attachment" : "Вибрати вкладення",
"(group)" : "(група)", "(group)" : "(група)",
"(circle)" : "(коло)",
"Assign to me" : "Призначити мені", "Assign to me" : "Призначити мені",
"Move card" : "Пересунути картку", "Move card" : "Пересунути картку",
"Unarchive card" : "Розархівувати картку", "Unarchive card" : "Розархівувати картку",

View File

@@ -120,6 +120,7 @@
"Add Attachment" : "Долучити вкладення", "Add Attachment" : "Долучити вкладення",
"Choose attachment" : "Вибрати вкладення", "Choose attachment" : "Вибрати вкладення",
"(group)" : "(група)", "(group)" : "(група)",
"(circle)" : "(коло)",
"Assign to me" : "Призначити мені", "Assign to me" : "Призначити мені",
"Move card" : "Пересунути картку", "Move card" : "Пересунути картку",
"Unarchive card" : "Розархівувати картку", "Unarchive card" : "Розархівувати картку",

View File

@@ -70,13 +70,9 @@ OC.L10N.register(
"Upcoming cards" : "即将到来的卡片", "Upcoming cards" : "即将到来的卡片",
"Personal" : "个人", "Personal" : "个人",
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "卡片 \"%s\" (在 \"%s\" 中)已由%s指派给您。", "The card \"%s\" on \"%s\" has been assigned to you by %s." : "卡片 \"%s\" (在 \"%s\" 中)已由%s指派给您。",
"{user} has assigned the card {deck-card} on {deck-board} to you." : "{user} 已将卡片 {deck-card} 其位于 {deck-board} ,分配给了你",
"The card \"%s\" on \"%s\" has reached its due date." : "卡片 \"%s\" (在 \"%s\" 中)已到期.", "The card \"%s\" on \"%s\" has reached its due date." : "卡片 \"%s\" (在 \"%s\" 中)已到期.",
"The card {deck-card} on {deck-board} has reached its due date." : "卡片 {deck-card} 其位于 {deck-board} ,已到期",
"%s has mentioned you in a comment on \"%s\"." : "%s 在 “%s” 的评论中提到了您。", "%s has mentioned you in a comment on \"%s\"." : "%s 在 “%s” 的评论中提到了您。",
"{user} has mentioned you in a comment on {deck-card}." : "{user} 在 {deck-card} 的一条评论中提到了你",
"The board \"%s\" has been shared with you by %s." : "面板 \"%s\" 已由 %s 共享给您。", "The board \"%s\" has been shared with you by %s." : "面板 \"%s\" 已由 %s 共享给您。",
"{user} has shared {deck-board} with you." : "{user} 与你分享了 {deck-board}",
"Card comments" : "卡片评论", "Card comments" : "卡片评论",
"%s on %s" : "%s 于 %s", "%s on %s" : "%s 于 %s",
"No data was provided to create an attachment." : "未能提供数据以创建附件", "No data was provided to create an attachment." : "未能提供数据以创建附件",
@@ -115,8 +111,8 @@ OC.L10N.register(
"Select a list" : "选择一个列表", "Select a list" : "选择一个列表",
"Card title" : "卡片标题", "Card title" : "卡片标题",
"Cancel" : "取消", "Cancel" : "取消",
"Creating the new card …" : "正在创建新卡片… ", "Creating the new card…" : "正在创建新卡片…",
"Card \"{card}\" was added to \"{board}\"" : "卡片 \"{card}\" 被添加看板 \"{board}\"", "\"{card}\" was added to \"{board}\"" : "卡片 \"{card}\" 被添加看板 \"{board}\"",
"Open card" : "打开卡片", "Open card" : "打开卡片",
"Close" : "关闭", "Close" : "关闭",
"Create card" : "创建卡片", "Create card" : "创建卡片",
@@ -200,7 +196,6 @@ OC.L10N.register(
"Created" : "已创建", "Created" : "已创建",
"The title cannot be empty." : "标题不能为空", "The title cannot be empty." : "标题不能为空",
"No comments yet. Begin the discussion!" : "还没有评论。 开始讨论吧!", "No comments yet. Begin the discussion!" : "还没有评论。 开始讨论吧!",
"Failed to load comments" : "加载评论失败",
"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" : "指派给用户/群组/圈子",
@@ -213,7 +208,6 @@ OC.L10N.register(
"The comment cannot be empty." : "注释不能为空。", "The comment cannot be empty." : "注释不能为空。",
"The comment cannot be longer than 1000 characters." : "注释不能超过 1000 个字符。", "The comment cannot be longer than 1000 characters." : "注释不能超过 1000 个字符。",
"In reply to" : "回复", "In reply to" : "回复",
"Cancel reply" : "取消回复",
"Reply" : "回复", "Reply" : "回复",
"Update" : "更新", "Update" : "更新",
"Description" : "描述", "Description" : "描述",
@@ -226,7 +220,7 @@ OC.L10N.register(
"Write a description …" : "写一段描述", "Write a description …" : "写一段描述",
"Choose attachment" : "选择附件", "Choose attachment" : "选择附件",
"(group)" : "(组)", "(group)" : "(组)",
"{count} comments, {unread} unread" : "{count} 条评论,{unread} 未读", "(circle)" : "(圈子)",
"Assign to me" : "指派给我", "Assign to me" : "指派给我",
"Unassign myself" : "不再指派给我", "Unassign myself" : "不再指派给我",
"Move card" : "移动卡片", "Move card" : "移动卡片",

View File

@@ -68,13 +68,9 @@
"Upcoming cards" : "即将到来的卡片", "Upcoming cards" : "即将到来的卡片",
"Personal" : "个人", "Personal" : "个人",
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "卡片 \"%s\" (在 \"%s\" 中)已由%s指派给您。", "The card \"%s\" on \"%s\" has been assigned to you by %s." : "卡片 \"%s\" (在 \"%s\" 中)已由%s指派给您。",
"{user} has assigned the card {deck-card} on {deck-board} to you." : "{user} 已将卡片 {deck-card} 其位于 {deck-board} ,分配给了你",
"The card \"%s\" on \"%s\" has reached its due date." : "卡片 \"%s\" (在 \"%s\" 中)已到期.", "The card \"%s\" on \"%s\" has reached its due date." : "卡片 \"%s\" (在 \"%s\" 中)已到期.",
"The card {deck-card} on {deck-board} has reached its due date." : "卡片 {deck-card} 其位于 {deck-board} ,已到期",
"%s has mentioned you in a comment on \"%s\"." : "%s 在 “%s” 的评论中提到了您。", "%s has mentioned you in a comment on \"%s\"." : "%s 在 “%s” 的评论中提到了您。",
"{user} has mentioned you in a comment on {deck-card}." : "{user} 在 {deck-card} 的一条评论中提到了你",
"The board \"%s\" has been shared with you by %s." : "面板 \"%s\" 已由 %s 共享给您。", "The board \"%s\" has been shared with you by %s." : "面板 \"%s\" 已由 %s 共享给您。",
"{user} has shared {deck-board} with you." : "{user} 与你分享了 {deck-board}",
"Card comments" : "卡片评论", "Card comments" : "卡片评论",
"%s on %s" : "%s 于 %s", "%s on %s" : "%s 于 %s",
"No data was provided to create an attachment." : "未能提供数据以创建附件", "No data was provided to create an attachment." : "未能提供数据以创建附件",
@@ -113,8 +109,8 @@
"Select a list" : "选择一个列表", "Select a list" : "选择一个列表",
"Card title" : "卡片标题", "Card title" : "卡片标题",
"Cancel" : "取消", "Cancel" : "取消",
"Creating the new card …" : "正在创建新卡片… ", "Creating the new card…" : "正在创建新卡片…",
"Card \"{card}\" was added to \"{board}\"" : "卡片 \"{card}\" 被添加看板 \"{board}\"", "\"{card}\" was added to \"{board}\"" : "卡片 \"{card}\" 被添加看板 \"{board}\"",
"Open card" : "打开卡片", "Open card" : "打开卡片",
"Close" : "关闭", "Close" : "关闭",
"Create card" : "创建卡片", "Create card" : "创建卡片",
@@ -198,7 +194,6 @@
"Created" : "已创建", "Created" : "已创建",
"The title cannot be empty." : "标题不能为空", "The title cannot be empty." : "标题不能为空",
"No comments yet. Begin the discussion!" : "还没有评论。 开始讨论吧!", "No comments yet. Begin the discussion!" : "还没有评论。 开始讨论吧!",
"Failed to load comments" : "加载评论失败",
"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" : "指派给用户/群组/圈子",
@@ -211,7 +206,6 @@
"The comment cannot be empty." : "注释不能为空。", "The comment cannot be empty." : "注释不能为空。",
"The comment cannot be longer than 1000 characters." : "注释不能超过 1000 个字符。", "The comment cannot be longer than 1000 characters." : "注释不能超过 1000 个字符。",
"In reply to" : "回复", "In reply to" : "回复",
"Cancel reply" : "取消回复",
"Reply" : "回复", "Reply" : "回复",
"Update" : "更新", "Update" : "更新",
"Description" : "描述", "Description" : "描述",
@@ -224,7 +218,7 @@
"Write a description …" : "写一段描述", "Write a description …" : "写一段描述",
"Choose attachment" : "选择附件", "Choose attachment" : "选择附件",
"(group)" : "(组)", "(group)" : "(组)",
"{count} comments, {unread} unread" : "{count} 条评论,{unread} 未读", "(circle)" : "(圈子)",
"Assign to me" : "指派给我", "Assign to me" : "指派给我",
"Unassign myself" : "不再指派给我", "Unassign myself" : "不再指派给我",
"Move card" : "移动卡片", "Move card" : "移动卡片",

View File

@@ -70,13 +70,9 @@ OC.L10N.register(
"Upcoming cards" : "快將到期的卡片", "Upcoming cards" : "快將到期的卡片",
"Personal" : "個人", "Personal" : "個人",
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "%s 已將 “%s” 中的卡片 “%s” 指派給您。", "The card \"%s\" on \"%s\" has been assigned to you by %s." : "%s 已將 “%s” 中的卡片 “%s” 指派給您。",
"{user} has assigned the card {deck-card} on {deck-board} to you." : "{user} 已將 {deck-board} 中的卡片 {deck-card} 指派給您。",
"The card \"%s\" on \"%s\" has reached its due date." : "\"%s\"中的卡片 \"%s\" 已到期。", "The card \"%s\" on \"%s\" has reached its due date." : "\"%s\"中的卡片 \"%s\" 已到期。",
"The card {deck-card} on {deck-board} has reached its due date." : "deck-board} 中的卡片{deck-card} 已到期。",
"%s has mentioned you in a comment on \"%s\"." : "%s 在 “%s” 的意見中提到了您。", "%s has mentioned you in a comment on \"%s\"." : "%s 在 “%s” 的意見中提到了您。",
"{user} has mentioned you in a comment on {deck-card}." : "{user} 在 {deckcard} 的意見中提到了您。",
"The board \"%s\" has been shared with you by %s." : "面板 \"%s\" 已由 %s 分享給您。", "The board \"%s\" has been shared with you by %s." : "面板 \"%s\" 已由 %s 分享給您。",
"{user} has shared {deck-board} with you." : "{user} 分享了面板 {deck-board} 給您。",
"Card comments" : "卡片意見", "Card comments" : "卡片意見",
"%s on %s" : "%s上%s", "%s on %s" : "%s上%s",
"No data was provided to create an attachment." : "未能提供數據以創建附件", "No data was provided to create an attachment." : "未能提供數據以創建附件",
@@ -115,8 +111,8 @@ OC.L10N.register(
"Select a list" : "選擇一個列表", "Select a list" : "選擇一個列表",
"Card title" : "卡片標題", "Card title" : "卡片標題",
"Cancel" : "取消", "Cancel" : "取消",
"Creating the new card …" : "正在建立新卡片...", "Creating the new card…" : "正在建立新卡片...",
"Card \"{card}\" was added to \"{board}\"" : "\"{card}\" 已添加到 \"{board}\"", "\"{card}\" was added to \"{board}\"" : "\"{card}\" 已添加到 \"{board}\"",
"Open card" : "打開卡片", "Open card" : "打開卡片",
"Close" : "關閉", "Close" : "關閉",
"Create card" : "建立卡片", "Create card" : "建立卡片",
@@ -200,7 +196,6 @@ OC.L10N.register(
"Created" : "建立於", "Created" : "建立於",
"The title cannot be empty." : "標題不能為空。", "The title cannot be empty." : "標題不能為空。",
"No comments yet. Begin the discussion!" : "尚無意見,開始討論吧!", "No comments yet. Begin the discussion!" : "尚無意見,開始討論吧!",
"Failed to load comments" : "無法加載評論",
"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" : "指派給用戶/群組/圈子",
@@ -213,7 +208,6 @@ OC.L10N.register(
"The comment cannot be empty." : "意見不能為空。", "The comment cannot be empty." : "意見不能為空。",
"The comment cannot be longer than 1000 characters." : "意見不能超過 1000 個字符。", "The comment cannot be longer than 1000 characters." : "意見不能超過 1000 個字符。",
"In reply to" : "回覆", "In reply to" : "回覆",
"Cancel reply" : "取消回覆",
"Reply" : "回覆", "Reply" : "回覆",
"Update" : "更新", "Update" : "更新",
"Description" : "描述", "Description" : "描述",
@@ -226,7 +220,7 @@ OC.L10N.register(
"Write a description …" : "寫一段描述", "Write a description …" : "寫一段描述",
"Choose attachment" : "選擇附件", "Choose attachment" : "選擇附件",
"(group)" : "(群組)", "(group)" : "(群組)",
"{count} comments, {unread} unread" : "{count} 條評論,{unread} 條未讀", "(circle)" : "(圈子)",
"Assign to me" : "指派給我", "Assign to me" : "指派給我",
"Unassign myself" : "自己解除指派", "Unassign myself" : "自己解除指派",
"Move card" : "移動卡片", "Move card" : "移動卡片",

View File

@@ -68,13 +68,9 @@
"Upcoming cards" : "快將到期的卡片", "Upcoming cards" : "快將到期的卡片",
"Personal" : "個人", "Personal" : "個人",
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "%s 已將 “%s” 中的卡片 “%s” 指派給您。", "The card \"%s\" on \"%s\" has been assigned to you by %s." : "%s 已將 “%s” 中的卡片 “%s” 指派給您。",
"{user} has assigned the card {deck-card} on {deck-board} to you." : "{user} 已將 {deck-board} 中的卡片 {deck-card} 指派給您。",
"The card \"%s\" on \"%s\" has reached its due date." : "\"%s\"中的卡片 \"%s\" 已到期。", "The card \"%s\" on \"%s\" has reached its due date." : "\"%s\"中的卡片 \"%s\" 已到期。",
"The card {deck-card} on {deck-board} has reached its due date." : "deck-board} 中的卡片{deck-card} 已到期。",
"%s has mentioned you in a comment on \"%s\"." : "%s 在 “%s” 的意見中提到了您。", "%s has mentioned you in a comment on \"%s\"." : "%s 在 “%s” 的意見中提到了您。",
"{user} has mentioned you in a comment on {deck-card}." : "{user} 在 {deckcard} 的意見中提到了您。",
"The board \"%s\" has been shared with you by %s." : "面板 \"%s\" 已由 %s 分享給您。", "The board \"%s\" has been shared with you by %s." : "面板 \"%s\" 已由 %s 分享給您。",
"{user} has shared {deck-board} with you." : "{user} 分享了面板 {deck-board} 給您。",
"Card comments" : "卡片意見", "Card comments" : "卡片意見",
"%s on %s" : "%s上%s", "%s on %s" : "%s上%s",
"No data was provided to create an attachment." : "未能提供數據以創建附件", "No data was provided to create an attachment." : "未能提供數據以創建附件",
@@ -113,8 +109,8 @@
"Select a list" : "選擇一個列表", "Select a list" : "選擇一個列表",
"Card title" : "卡片標題", "Card title" : "卡片標題",
"Cancel" : "取消", "Cancel" : "取消",
"Creating the new card …" : "正在建立新卡片...", "Creating the new card…" : "正在建立新卡片...",
"Card \"{card}\" was added to \"{board}\"" : "\"{card}\" 已添加到 \"{board}\"", "\"{card}\" was added to \"{board}\"" : "\"{card}\" 已添加到 \"{board}\"",
"Open card" : "打開卡片", "Open card" : "打開卡片",
"Close" : "關閉", "Close" : "關閉",
"Create card" : "建立卡片", "Create card" : "建立卡片",
@@ -198,7 +194,6 @@
"Created" : "建立於", "Created" : "建立於",
"The title cannot be empty." : "標題不能為空。", "The title cannot be empty." : "標題不能為空。",
"No comments yet. Begin the discussion!" : "尚無意見,開始討論吧!", "No comments yet. Begin the discussion!" : "尚無意見,開始討論吧!",
"Failed to load comments" : "無法加載評論",
"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" : "指派給用戶/群組/圈子",
@@ -211,7 +206,6 @@
"The comment cannot be empty." : "意見不能為空。", "The comment cannot be empty." : "意見不能為空。",
"The comment cannot be longer than 1000 characters." : "意見不能超過 1000 個字符。", "The comment cannot be longer than 1000 characters." : "意見不能超過 1000 個字符。",
"In reply to" : "回覆", "In reply to" : "回覆",
"Cancel reply" : "取消回覆",
"Reply" : "回覆", "Reply" : "回覆",
"Update" : "更新", "Update" : "更新",
"Description" : "描述", "Description" : "描述",
@@ -224,7 +218,7 @@
"Write a description …" : "寫一段描述", "Write a description …" : "寫一段描述",
"Choose attachment" : "選擇附件", "Choose attachment" : "選擇附件",
"(group)" : "(群組)", "(group)" : "(群組)",
"{count} comments, {unread} unread" : "{count} 條評論,{unread} 條未讀", "(circle)" : "(圈子)",
"Assign to me" : "指派給我", "Assign to me" : "指派給我",
"Unassign myself" : "自己解除指派", "Unassign myself" : "自己解除指派",
"Move card" : "移動卡片", "Move card" : "移動卡片",

View File

@@ -70,13 +70,9 @@ OC.L10N.register(
"Upcoming cards" : "接下來的卡片", "Upcoming cards" : "接下來的卡片",
"Personal" : "個人", "Personal" : "個人",
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "卡片「%s」位於「%s」已由 %s 分配給您。", "The card \"%s\" on \"%s\" has been assigned to you by %s." : "卡片「%s」位於「%s」已由 %s 分配給您。",
"{user} has assigned the card {deck-card} on {deck-board} to you." : "{user} 已將位於 {deck-board} 的 {deck-card} 卡片分配給您。",
"The card \"%s\" on \"%s\" has reached its due date." : "卡片「%s」位於「%s」已達到期日。", "The card \"%s\" on \"%s\" has reached its due date." : "卡片「%s」位於「%s」已達到期日。",
"The card {deck-card} on {deck-board} has reached its due date." : "位於 {deck-board} 的 {deck-card} 卡片已達其到期日。",
"%s has mentioned you in a comment on \"%s\"." : "%s 在「%s」的留言中提到了您。", "%s has mentioned you in a comment on \"%s\"." : "%s 在「%s」的留言中提到了您。",
"{user} has mentioned you in a comment on {deck-card}." : "{user} 在 {deck-card} 的留言中提及您。",
"The board \"%s\" has been shared with you by %s." : "佈告欄「%s」已由 %s 分享給您。", "The board \"%s\" has been shared with you by %s." : "佈告欄「%s」已由 %s 分享給您。",
"{user} has shared {deck-board} with you." : "{user} 已與您分享 {deck-board}。",
"Card comments" : "卡片留言", "Card comments" : "卡片留言",
"%s on %s" : "%s 在 %s", "%s on %s" : "%s 在 %s",
"No data was provided to create an attachment." : "沒有提供用於建立附件的資料。", "No data was provided to create an attachment." : "沒有提供用於建立附件的資料。",
@@ -115,8 +111,8 @@ OC.L10N.register(
"Select a list" : "選取列表", "Select a list" : "選取列表",
"Card title" : "卡片標題", "Card title" : "卡片標題",
"Cancel" : "取消", "Cancel" : "取消",
"Creating the new card …" : "正在建立新卡片……", "Creating the new card…" : "正在建立新卡片……",
"Card \"{card}\" was added to \"{board}\"" : "卡片「{card}」已新增至「{board}」", "\"{card}\" was added to \"{board}\"" : "「{card}」已新增至「{board}」",
"Open card" : "開啟卡片", "Open card" : "開啟卡片",
"Close" : "關閉", "Close" : "關閉",
"Create card" : "建立卡片", "Create card" : "建立卡片",
@@ -200,7 +196,6 @@ OC.L10N.register(
"Created" : "已新增", "Created" : "已新增",
"The title cannot be empty." : "標題不能為空", "The title cannot be empty." : "標題不能為空",
"No comments yet. Begin the discussion!" : "暫無留言。開始討論吧!", "No comments yet. Begin the discussion!" : "暫無留言。開始討論吧!",
"Failed to load comments" : "載入留言失敗",
"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" : "分配給使用者/群組/小圈圈",
@@ -213,7 +208,6 @@ OC.L10N.register(
"The comment cannot be empty." : "留言不能為空。", "The comment cannot be empty." : "留言不能為空。",
"The comment cannot be longer than 1000 characters." : "留言不能多於 1000 個字元。", "The comment cannot be longer than 1000 characters." : "留言不能多於 1000 個字元。",
"In reply to" : "回覆", "In reply to" : "回覆",
"Cancel reply" : "取消回覆",
"Reply" : "回覆", "Reply" : "回覆",
"Update" : "更新", "Update" : "更新",
"Description" : "描述", "Description" : "描述",
@@ -226,7 +220,7 @@ OC.L10N.register(
"Write a description …" : "編寫描述……", "Write a description …" : "編寫描述……",
"Choose attachment" : "選擇附件", "Choose attachment" : "選擇附件",
"(group)" : "(群組)", "(group)" : "(群組)",
"{count} comments, {unread} unread" : "{count} 則留言,{unread} 則未讀", "(circle)" : "(小圈圈)",
"Assign to me" : "分配給我", "Assign to me" : "分配給我",
"Unassign myself" : "取消分配給我", "Unassign myself" : "取消分配給我",
"Move card" : "移動卡片", "Move card" : "移動卡片",

View File

@@ -68,13 +68,9 @@
"Upcoming cards" : "接下來的卡片", "Upcoming cards" : "接下來的卡片",
"Personal" : "個人", "Personal" : "個人",
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "卡片「%s」位於「%s」已由 %s 分配給您。", "The card \"%s\" on \"%s\" has been assigned to you by %s." : "卡片「%s」位於「%s」已由 %s 分配給您。",
"{user} has assigned the card {deck-card} on {deck-board} to you." : "{user} 已將位於 {deck-board} 的 {deck-card} 卡片分配給您。",
"The card \"%s\" on \"%s\" has reached its due date." : "卡片「%s」位於「%s」已達到期日。", "The card \"%s\" on \"%s\" has reached its due date." : "卡片「%s」位於「%s」已達到期日。",
"The card {deck-card} on {deck-board} has reached its due date." : "位於 {deck-board} 的 {deck-card} 卡片已達其到期日。",
"%s has mentioned you in a comment on \"%s\"." : "%s 在「%s」的留言中提到了您。", "%s has mentioned you in a comment on \"%s\"." : "%s 在「%s」的留言中提到了您。",
"{user} has mentioned you in a comment on {deck-card}." : "{user} 在 {deck-card} 的留言中提及您。",
"The board \"%s\" has been shared with you by %s." : "佈告欄「%s」已由 %s 分享給您。", "The board \"%s\" has been shared with you by %s." : "佈告欄「%s」已由 %s 分享給您。",
"{user} has shared {deck-board} with you." : "{user} 已與您分享 {deck-board}。",
"Card comments" : "卡片留言", "Card comments" : "卡片留言",
"%s on %s" : "%s 在 %s", "%s on %s" : "%s 在 %s",
"No data was provided to create an attachment." : "沒有提供用於建立附件的資料。", "No data was provided to create an attachment." : "沒有提供用於建立附件的資料。",
@@ -113,8 +109,8 @@
"Select a list" : "選取列表", "Select a list" : "選取列表",
"Card title" : "卡片標題", "Card title" : "卡片標題",
"Cancel" : "取消", "Cancel" : "取消",
"Creating the new card …" : "正在建立新卡片……", "Creating the new card…" : "正在建立新卡片……",
"Card \"{card}\" was added to \"{board}\"" : "卡片「{card}」已新增至「{board}」", "\"{card}\" was added to \"{board}\"" : "「{card}」已新增至「{board}」",
"Open card" : "開啟卡片", "Open card" : "開啟卡片",
"Close" : "關閉", "Close" : "關閉",
"Create card" : "建立卡片", "Create card" : "建立卡片",
@@ -198,7 +194,6 @@
"Created" : "已新增", "Created" : "已新增",
"The title cannot be empty." : "標題不能為空", "The title cannot be empty." : "標題不能為空",
"No comments yet. Begin the discussion!" : "暫無留言。開始討論吧!", "No comments yet. Begin the discussion!" : "暫無留言。開始討論吧!",
"Failed to load comments" : "載入留言失敗",
"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" : "分配給使用者/群組/小圈圈",
@@ -211,7 +206,6 @@
"The comment cannot be empty." : "留言不能為空。", "The comment cannot be empty." : "留言不能為空。",
"The comment cannot be longer than 1000 characters." : "留言不能多於 1000 個字元。", "The comment cannot be longer than 1000 characters." : "留言不能多於 1000 個字元。",
"In reply to" : "回覆", "In reply to" : "回覆",
"Cancel reply" : "取消回覆",
"Reply" : "回覆", "Reply" : "回覆",
"Update" : "更新", "Update" : "更新",
"Description" : "描述", "Description" : "描述",
@@ -224,7 +218,7 @@
"Write a description …" : "編寫描述……", "Write a description …" : "編寫描述……",
"Choose attachment" : "選擇附件", "Choose attachment" : "選擇附件",
"(group)" : "(群組)", "(group)" : "(群組)",
"{count} comments, {unread} unread" : "{count} 則留言,{unread} 則未讀", "(circle)" : "(小圈圈)",
"Assign to me" : "分配給我", "Assign to me" : "分配給我",
"Unassign myself" : "取消分配給我", "Unassign myself" : "取消分配給我",
"Move card" : "移動卡片", "Move card" : "移動卡片",

View File

@@ -207,7 +207,7 @@ class Application extends App implements IBootstrap {
// Talk integration has its own entrypoint which already includes collections handling // Talk integration has its own entrypoint which already includes collections handling
return; return;
} }
Util::addScript('deck', 'deck-collections'); Util::addScript('deck', 'collections');
}); });
} }
} }

View File

@@ -95,7 +95,7 @@ class CardApiController extends ApiController {
* Update a card * Update a card
*/ */
public function update($title, $type, $order = 0, $description = '', $owner, $duedate = null, $archived = null) { public function update($title, $type, $order = 0, $description = '', $owner, $duedate = null, $archived = null) {
$card = $this->cardService->update($this->request->getParam('cardId'), $title, $this->request->getParam('stackId'), $type, $owner, $description, $order, $duedate, 0, $archived); $card = $this->cardService->update($this->request->getParam('cardId'), $title, $this->request->getParam('stackId'), $type, $order, $description, $owner, $duedate, 0, $archived);
return new DataResponse($card, HTTP::STATUS_OK); return new DataResponse($card, HTTP::STATUS_OK);
} }

View File

@@ -95,7 +95,7 @@ class CardController extends Controller {
* @return \OCP\AppFramework\Db\Entity * @return \OCP\AppFramework\Db\Entity
*/ */
public function update($id, $title, $stackId, $type, $order, $description, $duedate, $deletedAt) { public function update($id, $title, $stackId, $type, $order, $description, $duedate, $deletedAt) {
return $this->cardService->update($id, $title, $stackId, $type, $this->userId, $description, $order, $duedate, $deletedAt); return $this->cardService->update($id, $title, $stackId, $type, $order, $description, $this->userId, $duedate, $deletedAt);
} }
/** /**

View File

@@ -79,6 +79,6 @@ class DeckWidget implements IWidget {
* @inheritDoc * @inheritDoc
*/ */
public function load(): void { public function load(): void {
\OCP\Util::addScript('deck', 'deck-dashboard'); \OCP\Util::addScript('deck', 'dashboard');
} }
} }

View File

@@ -44,9 +44,9 @@ class AclMapper extends DeckMapper implements IPermissionMapper {
return ($row['owner'] === $userId); return ($row['owner'] === $userId);
} }
public function findBoardId($id): ?int { public function findBoardId($aclId): ?int {
try { try {
$entity = $this->find($id); $entity = $this->find($aclId);
return $entity->getBoardId(); return $entity->getBoardId();
} catch (DoesNotExistException | MultipleObjectsReturnedException $e) { } catch (DoesNotExistException | MultipleObjectsReturnedException $e) {
} }

View File

@@ -83,8 +83,8 @@ class AssignmentMapper extends QBMapper implements IPermissionMapper {
return $this->cardMapper->isOwner($userId, $cardId); return $this->cardMapper->isOwner($userId, $cardId);
} }
public function findBoardId($id): ?int { public function findBoardId($cardId): ?int {
return $this->cardMapper->findBoardId($id); return $this->cardMapper->findBoardId($cardId);
} }
/** /**

View File

@@ -23,12 +23,11 @@
namespace OCA\Deck\Db; namespace OCA\Deck\Db;
use OC\Cache\CappedMemoryCache;
use OCP\AppFramework\Db\DoesNotExistException; use OCP\AppFramework\Db\DoesNotExistException;
use OCP\IDBConnection; use OCP\IDBConnection;
use OCP\ILogger;
use OCP\IUserManager; use OCP\IUserManager;
use OCP\IGroupManager; use OCP\IGroupManager;
use Psr\Log\LoggerInterface;
class BoardMapper extends DeckMapper implements IPermissionMapper { class BoardMapper extends DeckMapper implements IPermissionMapper {
private $labelMapper; private $labelMapper;
@@ -36,20 +35,16 @@ class BoardMapper extends DeckMapper implements IPermissionMapper {
private $stackMapper; private $stackMapper;
private $userManager; private $userManager;
private $groupManager; private $groupManager;
private $logger;
private $circlesEnabled; private $circlesEnabled;
private $userBoardCache;
public function __construct( public function __construct(
IDBConnection $db, IDBConnection $db,
LabelMapper $labelMapper, LabelMapper $labelMapper,
AclMapper $aclMapper, AclMapper $aclMapper,
StackMapper $stackMapper, StackMapper $stackMapper,
IUserManager $userManager, IUserManager $userManager,
IGroupManager $groupManager, IGroupManager $groupManager
LoggerInterface $logger
) { ) {
parent::__construct($db, 'deck_boards', Board::class); parent::__construct($db, 'deck_boards', Board::class);
$this->labelMapper = $labelMapper; $this->labelMapper = $labelMapper;
@@ -57,10 +52,6 @@ class BoardMapper extends DeckMapper implements IPermissionMapper {
$this->stackMapper = $stackMapper; $this->stackMapper = $stackMapper;
$this->userManager = $userManager; $this->userManager = $userManager;
$this->groupManager = $groupManager; $this->groupManager = $groupManager;
$this->logger = $logger;
$this->userBoardCache = new CappedMemoryCache();
$this->circlesEnabled = \OC::$server->getAppManager()->isEnabledForUser('circles'); $this->circlesEnabled = \OC::$server->getAppManager()->isEnabledForUser('circles');
} }
@@ -95,21 +86,13 @@ class BoardMapper extends DeckMapper implements IPermissionMapper {
} }
public function findAllForUser(string $userId, int $since = -1, $includeArchived = true): array { public function findAllForUser(string $userId, int $since = -1, $includeArchived = true): array {
$useCache = ($since === -1 && $includeArchived === true); $groups = $this->groupManager->getUserGroupIds(
if (!isset($this->userBoardCache[$userId]) || !$useCache) { $this->userManager->get($userId)
$groups = $this->groupManager->getUserGroupIds( );
$this->userManager->get($userId) $userBoards = $this->findAllByUser($userId, null, null, $since, $includeArchived);
); $groupBoards = $this->findAllByGroups($userId, $groups,null, null, $since, $includeArchived);
$userBoards = $this->findAllByUser($userId, null, null, $since, $includeArchived); $circleBoards = $this->findAllByCircles($userId, null, null, $since, $includeArchived);
$groupBoards = $this->findAllByGroups($userId, $groups, null, null, $since, $includeArchived); return array_unique(array_merge($userBoards, $groupBoards, $circleBoards));
$circleBoards = $this->findAllByCircles($userId, null, null, $since, $includeArchived);
$allBoards = array_unique(array_merge($userBoards, $groupBoards, $circleBoards));
if ($useCache) {
$this->userBoardCache[$userId] = $allBoards;
}
return $allBoards;
}
return $this->userBoardCache[$userId];
} }
/** /**
@@ -265,7 +248,7 @@ class BoardMapper extends DeckMapper implements IPermissionMapper {
if ($user !== null) { if ($user !== null) {
return new User($user); return new User($user);
} }
$this->logger->debug('User ' . $acl->getId() . ' not found when mapping acl ' . $acl->getParticipant()); \OC::$server->getLogger()->debug('User ' . $acl->getId() . ' not found when mapping acl ' . $acl->getParticipant());
return null; return null;
} }
if ($acl->getType() === Acl::PERMISSION_TYPE_GROUP) { if ($acl->getType() === Acl::PERMISSION_TYPE_GROUP) {
@@ -273,7 +256,7 @@ class BoardMapper extends DeckMapper implements IPermissionMapper {
if ($group !== null) { if ($group !== null) {
return new Group($group); return new Group($group);
} }
$this->logger->debug('Group ' . $acl->getId() . ' not found when mapping acl ' . $acl->getParticipant()); \OC::$server->getLogger()->debug('Group ' . $acl->getId() . ' not found when mapping acl ' . $acl->getParticipant());
return null; return null;
} }
if ($acl->getType() === Acl::PERMISSION_TYPE_CIRCLE) { if ($acl->getType() === Acl::PERMISSION_TYPE_CIRCLE) {
@@ -285,12 +268,11 @@ class BoardMapper extends DeckMapper implements IPermissionMapper {
if ($circle) { if ($circle) {
return new Circle($circle); return new Circle($circle);
} }
} catch (\Throwable $e) { } catch (\Exception $e) {
$this->logger->error('Failed to get circle details when building ACL', ['exception' => $e]);
} }
return null; return null;
} }
$this->logger->warning('Unknown permission type for mapping acl ' . $acl->getId()); \OC::$server->getLogger()->log(ILogger::WARN, 'Unknown permission type for mapping acl ' . $acl->getId());
return null; return null;
}); });
} }

View File

@@ -49,7 +49,6 @@ class Card extends RelationalEntity {
protected $notified = false; protected $notified = false;
protected $deletedAt = 0; protected $deletedAt = 0;
protected $commentsUnread = 0; protected $commentsUnread = 0;
protected $commentsCount = 0;
protected $relatedStack = null; protected $relatedStack = null;
protected $relatedBoard = null; protected $relatedBoard = null;
@@ -76,7 +75,6 @@ class Card extends RelationalEntity {
$this->addRelation('attachmentCount'); $this->addRelation('attachmentCount');
$this->addRelation('participants'); $this->addRelation('participants');
$this->addRelation('commentsUnread'); $this->addRelation('commentsUnread');
$this->addRelation('commentsCount');
$this->addResolvable('owner'); $this->addResolvable('owner');
$this->addRelation('relatedStack'); $this->addRelation('relatedStack');

View File

@@ -230,18 +230,16 @@ class CardMapper extends QBMapper implements IPermissionMapper {
return $this->findEntities($qb); return $this->findEntities($qb);
} }
public function findToMeOrNotAssignedCards($boardId, $username) { public function findAssignedCards($boardId, $username) {
$qb = $this->db->getQueryBuilder(); $qb = $this->db->getQueryBuilder();
$qb->select('c.*') $qb->select('c.*')
->from('deck_cards', 'c') ->from('deck_cards', 'c')
->innerJoin('c', 'deck_stacks', 's', 's.id = c.stack_id') ->innerJoin('c', 'deck_stacks', 's', 's.id = c.stack_id')
->innerJoin('s', 'deck_boards', 'b', 'b.id = s.board_id') ->innerJoin('s', 'deck_boards', 'b', 'b.id = s.board_id')
->leftJoin('c', 'deck_assigned_users', 'u', 'c.id = u.card_id') ->innerJoin('c', 'deck_assigned_users', 'u', 'c.id = u.card_id')
->where($qb->expr()->eq('s.board_id', $qb->createNamedParameter($boardId, IQueryBuilder::PARAM_INT))) ->where($qb->expr()->eq('s.board_id', $qb->createNamedParameter($boardId, IQueryBuilder::PARAM_INT)))
->andWhere($qb->expr()->orX( ->andWhere($qb->expr()->eq('u.participant', $qb->createNamedParameter($username, IQueryBuilder::PARAM_STR)))
$qb->expr()->eq('u.participant', $qb->createNamedParameter($username, IQueryBuilder::PARAM_STR)), ->andWhere($qb->expr()->eq('u.type', $qb->createNamedParameter(Acl::PERMISSION_TYPE_USER, IQueryBuilder::PARAM_INT)))
$qb->expr()->isNull('u.participant'))
)
// Filter out archived/deleted cards and board // Filter out archived/deleted cards and board
->andWhere($qb->expr()->eq('c.archived', $qb->createNamedParameter(false, IQueryBuilder::PARAM_BOOL))) ->andWhere($qb->expr()->eq('c.archived', $qb->createNamedParameter(false, IQueryBuilder::PARAM_BOOL)))
->andWhere($qb->expr()->eq('c.deleted_at', $qb->createNamedParameter(0, IQueryBuilder::PARAM_INT))) ->andWhere($qb->expr()->eq('c.deleted_at', $qb->createNamedParameter(0, IQueryBuilder::PARAM_INT)))
@@ -385,10 +383,6 @@ class CardMapper extends QBMapper implements IPermissionMapper {
foreach ($query->getDuedate() as $duedate) { foreach ($query->getDuedate() as $duedate) {
$dueDateColumn = $this->databaseType === 'sqlite3' ? $qb->createFunction('DATETIME(`c`.`duedate`)') : 'c.duedate'; $dueDateColumn = $this->databaseType === 'sqlite3' ? $qb->createFunction('DATETIME(`c`.`duedate`)') : 'c.duedate';
$date = $duedate->getValue(); $date = $duedate->getValue();
if ($date === "") {
$qb->andWhere($qb->expr()->isNotNull('c.duedate'));
continue;
}
$supportedFilters = ['overdue', 'today', 'week', 'month', 'none']; $supportedFilters = ['overdue', 'today', 'week', 'month', 'none'];
if (in_array($date, $supportedFilters, true)) { if (in_array($date, $supportedFilters, true)) {
$currentDate = new DateTime(); $currentDate = new DateTime();
@@ -436,10 +430,6 @@ class CardMapper extends QBMapper implements IPermissionMapper {
foreach ($query->getAssigned() as $index => $assignment) { foreach ($query->getAssigned() as $index => $assignment) {
$qb->innerJoin('c', 'deck_assigned_users', 'au' . $index, $qb->expr()->eq('c.id', 'au' . $index . '.card_id')); $qb->innerJoin('c', 'deck_assigned_users', 'au' . $index, $qb->expr()->eq('c.id', 'au' . $index . '.card_id'));
$assignedQueryValue = $assignment->getValue(); $assignedQueryValue = $assignment->getValue();
if ($assignedQueryValue === "") {
$qb->andWhere($qb->expr()->isNotNull('au' . $index . '.participant'));
continue;
}
$searchUsers = $this->userManager->searchDisplayName($assignment->getValue()); $searchUsers = $this->userManager->searchDisplayName($assignment->getValue());
$users = array_filter($searchUsers, function (IUser $user) use ($assignedQueryValue) { $users = array_filter($searchUsers, function (IUser $user) use ($assignedQueryValue) {
return (mb_strtolower($user->getDisplayName()) === mb_strtolower($assignedQueryValue) || $user->getUID() === $assignedQueryValue); return (mb_strtolower($user->getDisplayName()) === mb_strtolower($assignedQueryValue) || $user->getUID() === $assignedQueryValue);
@@ -546,10 +536,10 @@ class CardMapper extends QBMapper implements IPermissionMapper {
return ($row['owner'] === $userId); return ($row['owner'] === $userId);
} }
public function findBoardId($id): ?int { public function findBoardId($cardId): ?int {
$sql = 'SELECT id FROM `*PREFIX*deck_boards` WHERE `id` IN (SELECT board_id FROM `*PREFIX*deck_stacks` WHERE id IN (SELECT stack_id FROM `*PREFIX*deck_cards` WHERE id = ?))'; $sql = 'SELECT id FROM `*PREFIX*deck_boards` WHERE `id` IN (SELECT board_id FROM `*PREFIX*deck_stacks` WHERE id IN (SELECT stack_id FROM `*PREFIX*deck_cards` WHERE id = ?))';
$stmt = $this->db->prepare($sql); $stmt = $this->db->prepare($sql);
$stmt->bindParam(1, $id, \PDO::PARAM_INT); $stmt->bindParam(1, $cardId, \PDO::PARAM_INT);
$stmt->execute(); $stmt->execute();
return $stmt->fetchColumn() ?? null; return $stmt->fetchColumn() ?? null;
} }

View File

@@ -36,8 +36,8 @@ class Circle extends RelationalObject {
public function getObjectSerialization() { public function getObjectSerialization() {
return [ return [
'uid' => $this->object->getUniqueId(), 'uid' => $this->object->getUniqueId(),
'displayname' => $this->object->getDisplayName(), 'displayname' => $this->object->getName(),
'typeString' => '', 'typeString' => $this->object->getTypeString(),
'circleOwner' => $this->object->getOwner(), 'circleOwner' => $this->object->getOwner(),
'type' => 7 'type' => 7
]; ];

View File

@@ -101,9 +101,9 @@ class LabelMapper extends DeckMapper implements IPermissionMapper {
return ($row['owner'] === $userId); return ($row['owner'] === $userId);
} }
public function findBoardId($id): ?int { public function findBoardId($labelId): ?int {
try { try {
$entity = $this->find($id); $entity = $this->find($labelId);
return $entity->getBoardId(); return $entity->getBoardId();
} catch (DoesNotExistException $e) { } catch (DoesNotExistException $e) {
} catch (MultipleObjectsReturnedException $e) { } catch (MultipleObjectsReturnedException $e) {

View File

@@ -75,9 +75,9 @@ class StackMapper extends DeckMapper implements IPermissionMapper {
return ($row['owner'] === $userId); return ($row['owner'] === $userId);
} }
public function findBoardId($id): ?int { public function findBoardId($stackId): ?int {
try { try {
$entity = $this->find($id); $entity = $this->find($stackId);
return $entity->getBoardId(); return $entity->getBoardId();
} catch (DoesNotExistException $e) { } catch (DoesNotExistException $e) {
} catch (MultipleObjectsReturnedException $e) { } catch (MultipleObjectsReturnedException $e) {

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