Compare commits

..

7 Commits

Author SHA1 Message Date
Julius Knorr
b3e358868f Revert "fix: Add method to map board to file permissions"
This reverts commit cfc804ad21.
2024-12-19 18:04:46 +01:00
Julius Knorr
dec47f6f0a Revert "perf(sharing): Optimize getSharedWith to fetch permissions right away"
This reverts commit c1dde0cb74.
2024-12-19 18:04:45 +01:00
Julius Knorr
93cdedb6b0 Revert "fix: Chunk query for getting labels for cards"
This reverts commit cb469fb78c.
2024-12-19 18:04:42 +01:00
Julius Knorr
a1bd24dbf7 ci: Print query log
Signed-off-by: Julius Knorr <jus@bitgrid.net>
2024-12-19 18:04:23 +01:00
Julius Härtl
cb469fb78c fix: Chunk query for getting labels for cards
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2024-12-19 17:17:23 +01:00
Julius Härtl
c1dde0cb74 perf(sharing): Optimize getSharedWith to fetch permissions right away
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2024-12-19 17:17:23 +01:00
Julius Härtl
cfc804ad21 fix: Add method to map board to file permissions
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2024-12-19 16:49:23 +01:00
199 changed files with 539 additions and 1786 deletions

View File

@@ -1,5 +1,5 @@
{
"image": "ghcr.io/juliusknorr/nextcloud-dev-php81:latest",
"image": "ghcr.io/juliushaertl/nextcloud-dev-php81:latest",
"forwardPorts": [80],
"containerEnv": {
"NEXTCLOUD_AUTOINSTALL_APPS": "deck",

View File

@@ -28,7 +28,7 @@ jobs:
matrix:
php-versions: ['8.1']
databases: ['sqlite', 'mysql', 'pgsql']
server-versions: ['stable31']
server-versions: ['master']
name: php${{ matrix.php-versions }}-${{ matrix.databases }}-${{ matrix.server-versions }}
@@ -112,9 +112,10 @@ jobs:
working-directory: apps/${{ env.APP_NAME }}/tests/integration
run: ./run.sh
- name: Print log
if: always()
run: cat data/nextcloud.log
- name: Print query log
run: |
cat query.log | wc -l
cat query.log
- name: Query count
if: ${{ matrix.databases == 'mysql' }}

View File

@@ -17,8 +17,6 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
persist-credentials: false
- name: REUSE Compliance Check
uses: fsfe/reuse-action@bb774aa972c2a89ff34781233d275075cbddf542 # v5.0.0

View File

@@ -5,16 +5,6 @@
# Changelog
All notable changes to this project will be documented in this file.
## 1.15.0-beta.1
### Fixed
- fix: Catch not found card @juliusknorr [#6646](https://github.com/nextcloud/deck/pull/6646)
- fix: Avoid failing on public dav URLs @juliusknorr [#6642](https://github.com/nextcloud/deck/pull/6642)
- fix: Proper rich object formats @juliusknorr [#6641](https://github.com/nextcloud/deck/pull/6641)
- fix(notifications): Notifier::prepare() threw \InvalidArgumentExcepti… @nickvergessen [#6623](https://github.com/nextcloud/deck/pull/6623)
- fix: close modal after deleting card @ludij [#6617](https://github.com/nextcloud/deck/pull/6617)
- fix: Use new query builder @juliusknorr [#6611](https://github.com/nextcloud/deck/pull/6611)
- fix: new card input spacing @luka-nextcloud [#6574](https://github.com/nextcloud/deck/pull/6574)
## 1.14.0-beta.1
### Fixed

View File

@@ -25,6 +25,7 @@ Deck is a kanban style organization tool aimed at personal planning and project
- [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)
- [Nextcloud Deck app for iOS](https://github.com/StCyr/deck-react-native) - It is available in [Apple App store](https://apps.apple.com/ml/app/nextcloud-deck/id1570892788)
- [deck NG for Android and iOS](https://github.com/meltzow/deck-ng) - It is available in [Google Play Store](https://play.google.com/store/apps/details?id=net.meltzow.deckng) and [Apple App Store](https://apps.apple.com/us/app/deck-ng/id6443334702)
### 3rd-Party Integrations

View File

@@ -20,7 +20,7 @@
- 🚀 Get your project organized
</description>
<version>1.15.0-beta.1</version>
<version>2.0.0-dev.0</version>
<licence>agpl</licence>
<author>Julius Härtl</author>
<namespace>Deck</namespace>

View File

@@ -103,8 +103,6 @@ return [
['name' => 'card_api#assignUser', 'url' => '/api/v{apiVersion}/boards/{boardId}/stacks/{stackId}/cards/{cardId}/assignUser', 'verb' => 'PUT'],
['name' => 'card_api#unassignUser', 'url' => '/api/v{apiVersion}/boards/{boardId}/stacks/{stackId}/cards/{cardId}/unassignUser', 'verb' => 'PUT'],
['name' => 'card_api#reorder', 'url' => '/api/v{apiVersion}/boards/{boardId}/stacks/{stackId}/cards/{cardId}/reorder', 'verb' => 'PUT'],
['name' => 'card_api#archive', 'url' => '/api/v{apiVersion}/boards/{boardId}/stacks/{stackId}/cards/{cardId}/archive', 'verb' => 'PUT'],
['name' => 'card_api#unarchive', 'url' => '/api/v{apiVersion}/boards/{boardId}/stacks/{stackId}/cards/{cardId}/unarchive', 'verb' => 'PUT'],
['name' => 'card_api#delete', 'url' => '/api/v{apiVersion}/boards/{boardId}/stacks/{stackId}/cards/{cardId}', 'verb' => 'DELETE'],
['name' => 'card_api#findAllWithDue', 'url' => '/api/v{apiVersion}/dashboard/due', 'verb' => 'GET'],

View File

@@ -15,7 +15,7 @@
"roave/security-advisories": "dev-master",
"phpunit/phpunit": "^9",
"nextcloud/coding-standard": "^1.1",
"nextcloud/ocp": "dev-stable31",
"nextcloud/ocp": "dev-master",
"psalm/phar": "^5.13"
},
"config": {

19
composer.lock generated
View File

@@ -4,7 +4,7 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically"
],
"content-hash": "c89537a172cee5c19093b4ea0cb5365c",
"content-hash": "6950663d9d213151028e780637480220",
"packages": [
{
"name": "icecave/parity",
@@ -488,29 +488,30 @@
},
{
"name": "nextcloud/ocp",
"version": "dev-stable31",
"version": "dev-master",
"source": {
"type": "git",
"url": "https://github.com/nextcloud-deps/ocp.git",
"reference": "3ac4be37f04642c663a2fc711f3848f69f3713f1"
"reference": "c9082446fc13d4e9e98e7dd1b365ff65cdf682ae"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/nextcloud-deps/ocp/zipball/3ac4be37f04642c663a2fc711f3848f69f3713f1",
"reference": "3ac4be37f04642c663a2fc711f3848f69f3713f1",
"url": "https://api.github.com/repos/nextcloud-deps/ocp/zipball/c9082446fc13d4e9e98e7dd1b365ff65cdf682ae",
"reference": "c9082446fc13d4e9e98e7dd1b365ff65cdf682ae",
"shasum": ""
},
"require": {
"php": "~8.1 || ~8.2 || ~8.3 || ~8.4",
"php": "~8.1 || ~8.2 || ~8.3",
"psr/clock": "^1.0",
"psr/container": "^2.0.2",
"psr/event-dispatcher": "^1.0",
"psr/log": "^3.0.2"
},
"default-branch": true,
"type": "library",
"extra": {
"branch-alias": {
"dev-stable31": "31.0.0-dev"
"dev-master": "31.0.0-dev"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -530,9 +531,9 @@
"description": "Composer package containing Nextcloud's public OCP API and the unstable NCU API",
"support": {
"issues": "https://github.com/nextcloud-deps/ocp/issues",
"source": "https://github.com/nextcloud-deps/ocp/tree/stable31"
"source": "https://github.com/nextcloud-deps/ocp/tree/master"
},
"time": "2025-01-23T08:35:12+00:00"
"time": "2024-12-17T00:48:14+00:00"
},
{
"name": "nikic/php-parser",

View File

@@ -5,7 +5,6 @@
import { randUser } from '../utils/index.js'
const user = randUser()
const recipient = randUser()
import { sampleBoard } from '../utils/sampleBoard'
describe('Board', function() {
@@ -59,73 +58,3 @@ describe('Board', function() {
.should('be.visible')
})
})
describe('Board cloning', function() {
before(function() {
cy.createUser(user)
})
it('Clones a board without cards', function() {
const boardName = 'Clone board original'
const board = sampleBoard(boardName)
cy.createExampleBoard({ user, board }).then((board) => {
const boardId = board.id
cy.visit(`/apps/deck/board/${boardId}`)
cy.get('.app-navigation__list .app-navigation-entry:contains("' + boardName + '")')
.parent()
.find('button[aria-label="Actions"]')
.click()
cy.get('button:contains("Clone board")')
.click()
cy.get('.modal-container button:contains("Clone")')
.click()
cy.get('.app-navigation__list .app-navigation-entry:contains("' + boardName + '")')
.should('be.visible')
cy.get('.app-navigation__list .app-navigation-entry:contains("' + boardName + ' (copy)")')
.should('be.visible')
cy.get('.board-title h2').contains(boardName + ' (copy)')
cy.get('h3[aria-label="TestList"]')
.should('be.visible')
})
})
it('Clones a board with cards', function() {
const boardName = 'Clone with cards'
const board = sampleBoard(boardName)
cy.createExampleBoard({ user, board }).then((board) => {
const boardId = board.id
cy.visit(`/apps/deck/board/${boardId}`)
cy.get('.app-navigation__list .app-navigation-entry:contains("' + boardName + '")')
.parent()
.find('button[aria-label="Actions"]')
.click()
cy.get('button:contains("Clone board")')
.click()
cy.get('.checkbox-content__text:contains("Clone cards")')
.click()
cy.get('.modal-container button:contains("Clone")')
.click()
cy.get('.app-navigation__list .app-navigation-entry:contains("' + boardName + '")')
.should('be.visible')
cy.get('.app-navigation__list .app-navigation-entry:contains("' + boardName + ' (copy)")')
.should('be.visible')
cy.get('.board-title h2').contains(boardName + ' (copy)')
cy.get('h3[aria-label="TestList"]')
.should('be.visible')
cy.get('.card:contains("Hello world")')
.should('be.visible')
})
})
})

View File

@@ -94,68 +94,6 @@ describe('Card', function () {
})
})
it('Card with link reference', () => {
cy.visit(`/apps/deck/#/board/${boardId}`)
const absoluteUrl = `https://example.com`
cy.get('.board .stack').eq(0).within(() => {
cy.get('.button-vue[aria-label*="Add card"]')
.first().click()
cy.get('.stack__card-add form input#new-stack-input-main')
.type(absoluteUrl)
cy.get('.stack__card-add form input[type=submit]')
.first().click()
cy.get('.card:contains("Example Domain")')
.should('be.visible')
.click()
})
cy.get('.app-sidebar-header', { timeout: 10000 })
.should('be.visible')
.find('h2').contains('Example Domain').should('be.visible')
})
it('Rename card with link', () => {
cy.visit(`/apps/deck/#/board/${boardId}`)
const absoluteUrl = `https://example.com`
const plainTitle = 'New title'
cy.get('.board .stack').eq(0).within(() => {
cy.get('.button-vue[aria-label*="Add card"]')
.first().click()
cy.get('.stack__card-add form input#new-stack-input-main')
.type(absoluteUrl)
cy.get('.stack__card-add form input[type=submit]')
.first().click()
cy.get('.card:contains("Example Domain")')
.should('be.visible')
})
// Rename link to plain title
cy.get('.card:contains("Example Domain")')
.find('.action-item__menutoggle')
.click()
cy.get('.v-popper__popper button:contains("Edit title")')
.click()
cy.get(`h4:contains("${absoluteUrl}") span[contenteditable="true"]`)
.type(`{selectAll}${plainTitle}{enter}`)
cy.get(`.card:contains("${plainTitle}")`)
.should('be.visible')
// Rename plain title to link
cy.get('.card:contains("New title")')
.find('.action-item__menutoggle')
.click()
cy.get('.v-popper__popper button:contains("Edit title")')
.click()
cy.get('h4:contains("New title") span[contenteditable="true"]')
.type(`{selectAll}${absoluteUrl}{enter}`)
cy.get('.board').click()
cy.get('.card:contains("Example Domain")')
.should('be.visible')
})
describe('Modal', () => {
beforeEach(function () {
cy.login(user)

View File

@@ -347,34 +347,6 @@ A 403 response might be returned if the users ability to create new boards has b
##### 200 Success
### PUT /boards/{boardId}/stacks/{stackId}/cards/{cardId}/archive - Archive a card
#### Request parameters
| Parameter | Type | Description |
| --------- | ------- | --------------------------------------- |
| boardId | Integer | The id of the board the card belongs to |
| stackId | Integer | The id of the stack the card belongs to |
| cardId | Integer | The id of the card |
#### Response
##### 200 Success
### PUT /boards/{boardId}/stacks/{stackId}/cards/{cardId}/unarchive - Unarchive a card
#### Request parameters
| Parameter | Type | Description |
| --------- | ------- | --------------------------------------- |
| boardId | Integer | The id of the board the card belongs to |
| stackId | Integer | The id of the stack the card belongs to |
| cardId | Integer | The id of the card |
#### Response
##### 200 Success
### DELETE /boards/{boardId} - Delete a board
#### Request parameters
@@ -451,25 +423,6 @@ A 403 response might be returned if the users ability to create new boards has b
##### 200 Success
### POST /boards/{boardId}/clone - Clone a board
Creates a copy of the board.
#### Request body
| Parameter | Type | Description |
| --------- | ------ | ---------------------------------------------------- |
| withCards | Bool | Setting if the cards should be copied (Default: false) |
| withAssignments | Bool | Setting if the card assignments should be cloned (Default: false) |
| withLabels | Bool | Setting if the card labels should be cloned (Default: false) |
| withDueDate | Bool | Setting if the card due dates should be cloned (Default: false) |
| moveCardsToLeftStack | Bool | Setting if all cards should be moved to the most left column (useful for To-Do / Doing / Done boards) (Default: false) |
| restoreArchivedCards | Bool | Setting if the archived cards should be unarchived (Default: false) |
#### Response
##### 200 Success
### DELETE /boards/{boardId}/acl/{aclId} - Delete an acl rule
#### Response

View File

@@ -105,21 +105,17 @@ It is possible to import from the following sources:
#### Trello JSON
**Limitations:**
* Comments with more than 1000 characters are placed as attached files to the card.
Steps:
* Create the data file
* Access Trello
* go to the board you want to export
* Follow the steps in [Trello documentation](https://help.trello.com/article/747-exporting-data-from-trello-1) and export as JSON
* Create the configuration file
* Execute the import informing the import file path, data file and source as `Trello JSON`
**Steps:**
1. Create the data file:
* Access Trello.
* Go to the board you want to export.
* Follow the steps in [Trello documentation](https://help.trello.com/article/747-exporting-data-from-trello-1) and export as JSON.
2. Create the configuration file.
3. Execute the import, specifying the import file path, data file, and source as `Trello JSON`.
Create the configuration file respecting the [JSON Schema](https://github.com/nextcloud/deck/blob/main/lib/Service/Importer/fixtures/config-trelloJson-schema.json) for importing `Trello JSON`.
Create the configuration file respecting the [JSON Schema](https://github.com/nextcloud/deck/blob/main/lib/Service/Importer/fixtures/config-trelloJson-schema.json) for import `Trello JSON`
Example configuration file:
```json
{
"owner": "admin",
@@ -130,22 +126,26 @@ Example configuration file:
}
```
**Additional Limitations**:
* Importing from a JSON file imports up to 1000 actions. To find out how many actions the board to be imported has, check the number of actions in the JSON.
**Limitations**:
Importing from a JSON file imports up to 1000 actions. To find out how many actions the board to be imported has, identify how many actions the JSON has.
#### Trello API
Importing via API is recommended for boards with more than 1000 actions. Trello allows attaching links to a card, but Deck does not support this feature. Attachment links are instead added in a markdown table at the end of the description for each imported card.
Import using API is recommended for boards with more than 1000 actions.
1. Get the API Key and Token [here](https://developer.atlassian.com/cloud/trello/guides/rest-api/api-introduction/#authentication-and-authorization).
2. Obtain the ID of the board you want to import by making a request to:
```
https://api.trello.com/1/members/me/boards?key={yourKey}&token={yourToken}&fields=id,name
```
3. Create the configuration file, ensuring it follows the [JSON Schema](https://github.com/nextcloud/deck/blob/main/lib/Service/Importer/fixtures/config-trelloApi-schema.json) for `Trello JSON`.
Trello makes it possible to attach links to a card. Deck does not have this feature. Attachments and attachment links are added in a markdown table at the end of the description for every imported card that has attachments in Trello.
* Get the API Key and API Token [here](https://developer.atlassian.com/cloud/trello/guides/rest-api/api-introduction/#authentication-and-authorization)
* Get the ID of the board you want to import by making a request to:
https://api.trello.com/1/members/me/boards?key={yourKey}&token={yourToken}&fields=id,name
This ID you will use in the configuration file in the `board` property
* Create the configuration file
Create the configuration file respecting the [JSON Schema](https://github.com/nextcloud/deck/blob/main/lib/Service/Importer/fixtures/config-trelloApi-schema.json) for import `Trello JSON`
Example configuration file:
```json
{
"owner": "admin",

View File

@@ -4,19 +4,19 @@
-->
## Export
Deck currently supports exporting all boards a user owns in a single JSON file. The format is based on the database schema that Deck uses. It can be used to re-import boards on the same or other instances.
Deck currently supports exporting all boards a user owns in a single JSON file. The format is based on the database schema that deck uses. It can be used to re-import boards on the same or other instances.
The export currently has some known limitations in terms of specific data not included:
The export currently has some kown limitations in terms of specific data not included:
- Activity information
- File attachments to Deck cards
- File attachments to deck cards
- Comments
-
```
occ deck:export userid > userid-deck-export.json
```
*(`userid` = username as seen in the admin user accounts page)*
(userid = username you see in admin useraccounts page)
## Import Boards
## Import boards
Importing can be done using the API or the `occ` `deck:import` command.
@@ -24,7 +24,7 @@ It is possible to import from the following sources:
### Deck JSON
A JSON file that has been obtained from the above-described `occ deck:export [userid] > userid-deck-export.json` command can be imported.
A json file that has been obtained from the above described `occ deck:export [userid] > userid-deck-export.json` command can be imported.
```
occ deck:import userid-deck-export.json
@@ -33,48 +33,50 @@ occ deck:import userid-deck-export.json
You will be asked to provide a path to a config file.
To know what to put in there:
- Have a look at your `userid-deck-export.json`
- Near the top, you will see `"uid"` with a username.
- Search for additional `"uid"` entries to find all the usernames involved and note them.
- Search for `"acl"`, where `"uid"`s of groups are also present; note them too.
- Have a look at your userid-deck-export.json
- fairly at the top you will see "uid" with a username.
- search for some more "uid" till you find all the usernames involved and note them.
- search for "acl"
- in there there are "uid" of groups note them too
If you are importing from a different instance, you must provide custom user ID mapping in case users have different identifiers.
In case you are importing from a different instance you must provide custom user id mapping in case users have different identifiers.
Create a config file, e.g., `deck-import-config-file-userid.json`, and adjust the content of this example as described above. User IDs on the new instance can be seen in the admin user accounts page.
```json
create a config file e.g `deck-import-config-file-userid.json` and ajust the content of this example as descibed above.
Userids on new instance can be seen in the admin useraccounts page.
```
{
"owner": "useridofnewownerofallboards",
"owner": "useridofnewownderofallboards",
"uidRelation": {
"userid1onoldinstance": "userid1onnewinstance",
"userid2onoldinstance": "userid2onnewinstance",
"groupid1onoldinstance": "groupid1onnewinstance"
"userid2onoldinstance": "userid2onnewinstance",
"groupid1onoldinstance": "groupid1onnewinstance"
}
}
```
after you hit enter everything will be imported.
After pressing enter, everything will be imported.
Additional info:
- If you export a users boards, all boards that the user has access to will be exported (including those shared with that user).
- If you export a users boards, all boards that the user has access to will be exported. (also the onws shared to that user)
#### Trello JSON
**Limitations:**
Limitations:
* Comments with more than 1000 characters are placed as attached files to the card.
**Steps:**
1. Create the data file:
* Access Trello.
* Go to the board you want to export.
* Follow the steps in [Trello documentation](https://help.trello.com/article/747-exporting-data-from-trello-1) and export as JSON.
2. Create the configuration file.
3. Execute the import, specifying the import file path, data file, and source as `Trello JSON`.
Steps:
* Create the data file
* Access Trello
* go to the board you want to export
* Follow the steps in [Trello documentation](https://help.trello.com/article/747-exporting-data-from-trello-1) and export as JSON
* Create the configuration file
* Execute the import informing the import file path, data file and source as `Trello JSON`
Create the configuration file respecting the [JSON Schema](https://github.com/nextcloud/deck/blob/main/lib/Service/Importer/fixtures/config-trelloJson-schema.json) for importing `Trello JSON`.
Create the configuration file respecting the [JSON Schema](https://github.com/nextcloud/deck/blob/main/lib/Service/Importer/fixtures/config-trelloJson-schema.json) for import `Trello JSON`
Example configuration file:
```json
{
"owner": "admin",
@@ -85,22 +87,26 @@ Example configuration file:
}
```
**Additional Limitations**:
* Importing from a JSON file imports up to 1000 actions. To find out how many actions the board to be imported has, check the number of actions in the JSON.
**Limitations**:
Importing from a JSON file imports up to 1000 actions. To find out how many actions the board to be imported has, identify how many actions the JSON has.
#### Trello API
Importing via API is recommended for boards with more than 1000 actions. Trello allows attaching links to a card, but Deck does not support this feature. Attachment links are instead added in a markdown table at the end of the description for each imported card.
Import using API is recommended for boards with more than 1000 actions.
1. Get the API Key and Token [here](https://developer.atlassian.com/cloud/trello/guides/rest-api/api-introduction/#authentication-and-authorization).
2. Obtain the ID of the board you want to import by making a request to:
```
https://api.trello.com/1/members/me/boards?key={yourKey}&token={yourToken}&fields=id,name
```
3. Create the configuration file, ensuring it follows the [JSON Schema](https://github.com/nextcloud/deck/blob/main/lib/Service/Importer/fixtures/config-trelloApi-schema.json) for `Trello JSON`.
Trello makes it possible to attach links to a card. Deck does not have this feature. Attachments and attachment links are added in a markdown table at the end of the description for every imported card that has attachments in Trello.
* Get the API Key and API Token [here](https://developer.atlassian.com/cloud/trello/guides/rest-api/api-introduction/#authentication-and-authorization)
* Get the ID of the board you want to import by making a request to:
https://api.trello.com/1/members/me/boards?key={yourKey}&token={yourToken}&fields=id,name
This ID you will use in the configuration file in the `board` property
* Create the configuration file
Create the configuration file respecting the [JSON Schema](https://github.com/nextcloud/deck/blob/main/lib/Service/Importer/fixtures/config-trelloApi-schema.json) for import `Trello JSON`
Example configuration file:
```json
{
"owner": "admin",

View File

@@ -42,7 +42,6 @@ OC.L10N.register(
"Shared with you" : "Met u gedeel",
"No notifications" : "Geen kennisgewings",
"An error occurred" : "'n Fout het voorgekom",
"Advanced options" : "Gevorderde opsies",
"Today" : "Vandag",
"Tomorrow" : "Môre",
"Close" : "Sluit",

View File

@@ -40,7 +40,6 @@
"Shared with you" : "Met u gedeel",
"No notifications" : "Geen kennisgewings",
"An error occurred" : "'n Fout het voorgekom",
"Advanced options" : "Gevorderde opsies",
"Today" : "Vandag",
"Tomorrow" : "Môre",
"Close" : "Sluit",

View File

@@ -125,14 +125,13 @@ OC.L10N.register(
"Select the board to link to a project" : "تحديد اللوح لربطه بمشروع",
"Search by board title" : "بحث بواسطة عنوان اللوح",
"Select board" : "حدد لوح",
"Move/copy card" : "نسخ أو نقل بطاقة",
"Move card to another board" : "حرك البطاقة الى لوح اخر",
"Select a board" : "حدد لوح",
"No lists available" : "لا يوجد قائمة متاحه ",
"Select a list" : "اختر قائمة ",
"Move card" : "حرك البطاقة",
"Copy card" : "نسخ بطاقة",
"Select a card" : "حدد بطاقة",
"Cancel" : "إلغاء",
"Select a card" : "حدد بطاقة",
"Select the card to link to a project" : "حدد البطاقة لربطها بمشروع",
"Link to card" : "اربط بطاقة",
"File already exists" : "الملف موجود مسبقاً",
@@ -276,8 +275,6 @@ OC.L10N.register(
"Todo items" : "قائمة المهام",
"{count} comments, {unread} unread" : "{عدد} التعليقات، {غير مقروءة} غير مقروءة",
"Edit card title" : "تعديل اسم القائمة",
"Open link" : "إفتَح الرابط",
"Edit title" : "تحرير عنوان",
"Assign to me" : "ينسب لي",
"Unassign myself" : "إلغاء تعييني ",
"Mark as not done" : "تمييز كـ \"غير منتهٍ\"",
@@ -340,15 +337,6 @@ OC.L10N.register(
"An error occurred" : "حدث خطأ",
"Are you sure you want to delete the board {title}? This will delete all the data of this board including archived cards." : "هل أنت متأكد من حذف اللوحة {title}؟ هذا سيؤدي إلى حذف كل بيانات هذه اللوحة بما في ذلك البطاقات المؤرشفة.",
"Delete the board?" : "مسح اللوح؟",
"Clone {boardTitle}" : "استنساخ {boardTitle}",
"Clone cards" : "استنسخ البطاقة ",
"Clone assignments" : "استنساخ مهام",
"Clone labels" : "استنساخ عناوين",
"Clone due dates" : "استنساخ تواريخ استحقاق",
"Advanced options" : "الخيارات المتقدمة",
"Move all cards to the first list" : "نقل كل البطاقات للقائمة الأولى",
"Restore archived cards" : "استرجاع البطاقات المؤرشفة",
"Clone" : "استنسخ",
"Loading filtered view" : "جارِ تحميل التصفية ",
"Today" : "اليوم",
"Tomorrow" : "غدا",
@@ -388,7 +376,6 @@ OC.L10N.register(
"Share with a Deck card" : "مشاركة مع بطاقة Deck",
"Share {file} with a Deck card" : "مشاركة الملف {file} مع بطاقة Deck",
"Share" : "مشاركة ",
"Move card to another board" : "حرك البطاقة الى لوح اخر",
"Searching for users, groups and circles …" : "ابحث عن أعضاء، مجموعات أو حلقات ...",
"(Circle)" : "(دائرة)",
"Assign to users/groups/circles" : "انسب الى المستخدمين،المجموعات،الدوائر",

View File

@@ -123,14 +123,13 @@
"Select the board to link to a project" : "تحديد اللوح لربطه بمشروع",
"Search by board title" : "بحث بواسطة عنوان اللوح",
"Select board" : "حدد لوح",
"Move/copy card" : "نسخ أو نقل بطاقة",
"Move card to another board" : "حرك البطاقة الى لوح اخر",
"Select a board" : "حدد لوح",
"No lists available" : "لا يوجد قائمة متاحه ",
"Select a list" : "اختر قائمة ",
"Move card" : "حرك البطاقة",
"Copy card" : "نسخ بطاقة",
"Select a card" : "حدد بطاقة",
"Cancel" : "إلغاء",
"Select a card" : "حدد بطاقة",
"Select the card to link to a project" : "حدد البطاقة لربطها بمشروع",
"Link to card" : "اربط بطاقة",
"File already exists" : "الملف موجود مسبقاً",
@@ -274,8 +273,6 @@
"Todo items" : "قائمة المهام",
"{count} comments, {unread} unread" : "{عدد} التعليقات، {غير مقروءة} غير مقروءة",
"Edit card title" : "تعديل اسم القائمة",
"Open link" : "إفتَح الرابط",
"Edit title" : "تحرير عنوان",
"Assign to me" : "ينسب لي",
"Unassign myself" : "إلغاء تعييني ",
"Mark as not done" : "تمييز كـ \"غير منتهٍ\"",
@@ -338,15 +335,6 @@
"An error occurred" : "حدث خطأ",
"Are you sure you want to delete the board {title}? This will delete all the data of this board including archived cards." : "هل أنت متأكد من حذف اللوحة {title}؟ هذا سيؤدي إلى حذف كل بيانات هذه اللوحة بما في ذلك البطاقات المؤرشفة.",
"Delete the board?" : "مسح اللوح؟",
"Clone {boardTitle}" : "استنساخ {boardTitle}",
"Clone cards" : "استنسخ البطاقة ",
"Clone assignments" : "استنساخ مهام",
"Clone labels" : "استنساخ عناوين",
"Clone due dates" : "استنساخ تواريخ استحقاق",
"Advanced options" : "الخيارات المتقدمة",
"Move all cards to the first list" : "نقل كل البطاقات للقائمة الأولى",
"Restore archived cards" : "استرجاع البطاقات المؤرشفة",
"Clone" : "استنسخ",
"Loading filtered view" : "جارِ تحميل التصفية ",
"Today" : "اليوم",
"Tomorrow" : "غدا",
@@ -386,7 +374,6 @@
"Share with a Deck card" : "مشاركة مع بطاقة Deck",
"Share {file} with a Deck card" : "مشاركة الملف {file} مع بطاقة Deck",
"Share" : "مشاركة ",
"Move card to another board" : "حرك البطاقة الى لوح اخر",
"Searching for users, groups and circles …" : "ابحث عن أعضاء، مجموعات أو حلقات ...",
"(Circle)" : "(دائرة)",
"Assign to users/groups/circles" : "انسب الى المستخدمين،المجموعات،الدوائر",

View File

@@ -87,7 +87,6 @@ OC.L10N.register(
"Archive card" : "Archivar la tarxeta",
"(group)" : "(grupu)",
"Next week {timeLocale}" : "La próxima selmana {timeLocale}",
"Edit title" : "Editar el títulu",
"Delete card" : "Desaniciar la tarxeta",
"seconds ago" : "hai segundos",
"Keyboard shortcuts" : "Atayos del tecláu",
@@ -101,8 +100,6 @@ OC.L10N.register(
"No notifications" : "Nun hai nengún avisu",
"No reminder" : "Nun hai nengún recordatoriu",
"An error occurred" : "Prodúxose un error",
"Clone cards" : "Clonar les tarxetes",
"Advanced options" : "Opciones avanzaes",
"Today" : "Güei",
"Tomorrow" : "Mañana",
"No results found" : "Nun s'atopó nengún resultáu",

View File

@@ -85,7 +85,6 @@
"Archive card" : "Archivar la tarxeta",
"(group)" : "(grupu)",
"Next week {timeLocale}" : "La próxima selmana {timeLocale}",
"Edit title" : "Editar el títulu",
"Delete card" : "Desaniciar la tarxeta",
"seconds ago" : "hai segundos",
"Keyboard shortcuts" : "Atayos del tecláu",
@@ -99,8 +98,6 @@
"No notifications" : "Nun hai nengún avisu",
"No reminder" : "Nun hai nengún recordatoriu",
"An error occurred" : "Prodúxose un error",
"Clone cards" : "Clonar les tarxetes",
"Advanced options" : "Opciones avanzaes",
"Today" : "Güei",
"Tomorrow" : "Mañana",
"No results found" : "Nun s'atopó nengún resultáu",

View File

@@ -116,12 +116,13 @@ OC.L10N.register(
"Select the board to link to a project" : "Изберете таблото, което да свържете към проект",
"Search by board title" : "Търсене по заглавие на таблото",
"Select board" : "Избор на табло",
"Move card to another board" : "Преместване на картата на друго табло",
"Select a board" : "Избор на табло",
"No lists available" : "Няма налична списъци.",
"Select a list" : "Избор на списък",
"Move card" : "Преместване на карта",
"Select a card" : "Избор на карта",
"Cancel" : "Отказ",
"Select a card" : "Избор на карта",
"Select the card to link to a project" : "Изберете картата, която да свържете към проект",
"Link to card" : "Връзка към карта",
"File already exists" : "Файлът вече съществува",
@@ -242,7 +243,6 @@ OC.L10N.register(
"Todo items" : "Елементи на задача за изпълнение",
"{count} comments, {unread} unread" : "{count} коментари, {unread} непрочетени",
"Edit card title" : "Редактиране на заглавието на карта",
"Edit title" : "Редактиране на заглавието",
"Assign to me" : "Зачисляване към мен",
"Unassign myself" : "Отмяна на зачисляването към мен",
"Delete card" : "Изтриване на карта",
@@ -283,9 +283,6 @@ OC.L10N.register(
"An error occurred" : "Възникна грешка",
"Are you sure you want to delete the board {title}? This will delete all the data of this board including archived cards." : "Сигурни ли сте, че искате да изтриете таблото {title}? Това ще изтрие всички данни на това табло, включително архивираните карти.",
"Delete the board?" : "Изтриване на таблото?",
"Clone cards" : " Клониране на карти",
"Advanced options" : "Допълнителни опции",
"Clone" : "Клониране",
"Loading filtered view" : "Зареждане на филтриран изглед",
"Today" : "Днес",
"Tomorrow" : "Утре",
@@ -320,7 +317,6 @@ OC.L10N.register(
"Share with a Deck card" : "Споделяне с Deck карта",
"Share {file} with a Deck card" : "Споделяне {file} с Deck карта",
"Share" : "Споделяне",
"Move card to another board" : "Преместване на картата на друго табло",
"Searching for users, groups and circles …" : "Търсене за потребители, групи и кръгове ...",
"(Circle)" : "(Кръг)",
"Assign to users/groups/circles" : "Зачисляване към потребители/групи/кръгове"

View File

@@ -114,12 +114,13 @@
"Select the board to link to a project" : "Изберете таблото, което да свържете към проект",
"Search by board title" : "Търсене по заглавие на таблото",
"Select board" : "Избор на табло",
"Move card to another board" : "Преместване на картата на друго табло",
"Select a board" : "Избор на табло",
"No lists available" : "Няма налична списъци.",
"Select a list" : "Избор на списък",
"Move card" : "Преместване на карта",
"Select a card" : "Избор на карта",
"Cancel" : "Отказ",
"Select a card" : "Избор на карта",
"Select the card to link to a project" : "Изберете картата, която да свържете към проект",
"Link to card" : "Връзка към карта",
"File already exists" : "Файлът вече съществува",
@@ -240,7 +241,6 @@
"Todo items" : "Елементи на задача за изпълнение",
"{count} comments, {unread} unread" : "{count} коментари, {unread} непрочетени",
"Edit card title" : "Редактиране на заглавието на карта",
"Edit title" : "Редактиране на заглавието",
"Assign to me" : "Зачисляване към мен",
"Unassign myself" : "Отмяна на зачисляването към мен",
"Delete card" : "Изтриване на карта",
@@ -281,9 +281,6 @@
"An error occurred" : "Възникна грешка",
"Are you sure you want to delete the board {title}? This will delete all the data of this board including archived cards." : "Сигурни ли сте, че искате да изтриете таблото {title}? Това ще изтрие всички данни на това табло, включително архивираните карти.",
"Delete the board?" : "Изтриване на таблото?",
"Clone cards" : " Клониране на карти",
"Advanced options" : "Допълнителни опции",
"Clone" : "Клониране",
"Loading filtered view" : "Зареждане на филтриран изглед",
"Today" : "Днес",
"Tomorrow" : "Утре",
@@ -318,7 +315,6 @@
"Share with a Deck card" : "Споделяне с Deck карта",
"Share {file} with a Deck card" : "Споделяне {file} с Deck карта",
"Share" : "Споделяне",
"Move card to another board" : "Преместване на картата на друго табло",
"Searching for users, groups and circles …" : "Търсене за потребители, групи и кръгове ...",
"(Circle)" : "(Кръг)",
"Assign to users/groups/circles" : "Зачисляване към потребители/групи/кръгове"

View File

@@ -125,12 +125,13 @@ OC.L10N.register(
"Select the board to link to a project" : "Selecciona el tauler per enllaçar a un projecte",
"Search by board title" : "Cerca per títol del tauler",
"Select board" : "Selecciona un tauler",
"Move card to another board" : "Mou la targeta a un altre tauler",
"Select a board" : "Selecciona un tauler",
"No lists available" : "No hi ha cap llista disponible",
"Select a list" : "Seleccioneu una llista",
"Move card" : "Mou la targeta",
"Select a card" : "Selecciona una targeta",
"Cancel" : "Cancel·la",
"Select a card" : "Selecciona una targeta",
"Select the card to link to a project" : "Selecciona la targeta per enllaçar a un projecte",
"Link to card" : "Enllaç a la targeta",
"File already exists" : "El fitxer ja existeix",
@@ -266,7 +267,6 @@ OC.L10N.register(
"Todo items" : "Tasques pendents",
"{count} comments, {unread} unread" : "{count} comentaris, {unread} no llegits",
"Edit card title" : "Edició del títol de la targeta",
"Edit title" : "Edició del títol",
"Assign to me" : "Assigna'm a mi",
"Unassign myself" : "Desasignar a mi mateix",
"Mark as not done" : "Marca com no fet",
@@ -327,9 +327,6 @@ OC.L10N.register(
"An error occurred" : "S'ha produït un error",
"Are you sure you want to delete the board {title}? This will delete all the data of this board including archived cards." : "Esteu segur que voleu suprimir el tauler {title}? Això suprimirà totes les dades d'aquest tauler, incloses les targetes arxivades.",
"Delete the board?" : "Voleu suprimir el tauler?",
"Clone cards" : "Clonar targetes",
"Advanced options" : "Paràmetres avançats",
"Clone" : "Clonar",
"Loading filtered view" : "S'està carregant la visualització filtrada",
"Today" : "Avui",
"Tomorrow" : "Demà",
@@ -369,7 +366,6 @@ OC.L10N.register(
"Share with a Deck card" : "Compartir amb una targeta de Deck",
"Share {file} with a Deck card" : "Compartir {file} amb una targeta de Deck",
"Share" : "Compartir",
"Move card to another board" : "Mou la targeta a un altre tauler",
"Searching for users, groups and circles …" : "Buscant usuaris, grups i cercles …",
"(Circle)" : "(Cercle)",
"Assign to users/groups/circles" : "Assignació a usuaris/grups/cercles"

View File

@@ -123,12 +123,13 @@
"Select the board to link to a project" : "Selecciona el tauler per enllaçar a un projecte",
"Search by board title" : "Cerca per títol del tauler",
"Select board" : "Selecciona un tauler",
"Move card to another board" : "Mou la targeta a un altre tauler",
"Select a board" : "Selecciona un tauler",
"No lists available" : "No hi ha cap llista disponible",
"Select a list" : "Seleccioneu una llista",
"Move card" : "Mou la targeta",
"Select a card" : "Selecciona una targeta",
"Cancel" : "Cancel·la",
"Select a card" : "Selecciona una targeta",
"Select the card to link to a project" : "Selecciona la targeta per enllaçar a un projecte",
"Link to card" : "Enllaç a la targeta",
"File already exists" : "El fitxer ja existeix",
@@ -264,7 +265,6 @@
"Todo items" : "Tasques pendents",
"{count} comments, {unread} unread" : "{count} comentaris, {unread} no llegits",
"Edit card title" : "Edició del títol de la targeta",
"Edit title" : "Edició del títol",
"Assign to me" : "Assigna'm a mi",
"Unassign myself" : "Desasignar a mi mateix",
"Mark as not done" : "Marca com no fet",
@@ -325,9 +325,6 @@
"An error occurred" : "S'ha produït un error",
"Are you sure you want to delete the board {title}? This will delete all the data of this board including archived cards." : "Esteu segur que voleu suprimir el tauler {title}? Això suprimirà totes les dades d'aquest tauler, incloses les targetes arxivades.",
"Delete the board?" : "Voleu suprimir el tauler?",
"Clone cards" : "Clonar targetes",
"Advanced options" : "Paràmetres avançats",
"Clone" : "Clonar",
"Loading filtered view" : "S'està carregant la visualització filtrada",
"Today" : "Avui",
"Tomorrow" : "Demà",
@@ -367,7 +364,6 @@
"Share with a Deck card" : "Compartir amb una targeta de Deck",
"Share {file} with a Deck card" : "Compartir {file} amb una targeta de Deck",
"Share" : "Compartir",
"Move card to another board" : "Mou la targeta a un altre tauler",
"Searching for users, groups and circles …" : "Buscant usuaris, grups i cercles …",
"(Circle)" : "(Cercle)",
"Assign to users/groups/circles" : "Assignació a usuaris/grups/cercles"

View File

@@ -125,14 +125,13 @@ OC.L10N.register(
"Select the board to link to a project" : "Vyberte tabuli kterou propojit s projektem",
"Search by board title" : "Hledat podle názvu tabule",
"Select board" : "Vybrat tabuli",
"Move/copy card" : "Přesunout/zkopírovat kartu",
"Move card to another board" : "Přesunout kartu na jinou tabuli",
"Select a board" : "Vybrat tabuli",
"No lists available" : "Nejsou k dispozici žádné seznamy",
"Select a list" : "Vyberte sloupec",
"Move card" : "Přesunout kartu",
"Copy card" : "Zkopírovat kartu",
"Select a card" : "Vybrat kartu",
"Cancel" : "Storno",
"Select a card" : "Vybrat kartu",
"Select the card to link to a project" : "Vyberte kartu kterou propojit s projektem",
"Link to card" : "Propojit s kartou",
"File already exists" : "Soubor už existuje",
@@ -276,8 +275,6 @@ OC.L10N.register(
"Todo items" : "Položky k udělání",
"{count} comments, {unread} unread" : "{count} komentářů, {unread} nepřečtených",
"Edit card title" : "Upravit nadpis karty",
"Open link" : "Otevřít okaz",
"Edit title" : "Upravit nadpis",
"Assign to me" : "Přiřadit mě",
"Unassign myself" : "Zrušit přiřazení sobě",
"Mark as not done" : "Označit jako nehotové",
@@ -340,15 +337,6 @@ OC.L10N.register(
"An error occurred" : "Došlo k chybě",
"Are you sure you want to delete the board {title}? This will delete all the data of this board including archived cards." : "Opravdu chcete tabuli {title} smazat? Toto smaže veškerá data této tabule, včetně archivovaných karet.",
"Delete the board?" : "Smazat tabuli?",
"Clone {boardTitle}" : "Naklonovat {boardTitle}",
"Clone cards" : "Klonovat karty",
"Clone assignments" : "Přiřazení klonu",
"Clone labels" : "Popisky klonu",
"Clone due dates" : "Termíny klonu",
"Advanced options" : "Pokročilé předvolby",
"Move all cards to the first list" : "Přesunout všechny karty na první seznam",
"Restore archived cards" : "Obnovit archivované karty",
"Clone" : "Klonovat",
"Loading filtered view" : "Načítání filtrovaného pohledu",
"Today" : "Dnes",
"Tomorrow" : "Zítra",
@@ -388,7 +376,6 @@ OC.L10N.register(
"Share with a Deck card" : "Sdílet s kartou aplikace Deck",
"Share {file} with a Deck card" : "Sdílet {file} s kartou aplikace Deck",
"Share" : "Sdílet",
"Move card to another board" : "Přesunout kartu na jinou tabuli",
"Searching for users, groups and circles …" : "Hledání v uživatelích, skupinách a okruzích…",
"(Circle)" : "(Okruh)",
"Assign to users/groups/circles" : "Přiřadit uživatelům/skupinám/okruhům",

View File

@@ -123,14 +123,13 @@
"Select the board to link to a project" : "Vyberte tabuli kterou propojit s projektem",
"Search by board title" : "Hledat podle názvu tabule",
"Select board" : "Vybrat tabuli",
"Move/copy card" : "Přesunout/zkopírovat kartu",
"Move card to another board" : "Přesunout kartu na jinou tabuli",
"Select a board" : "Vybrat tabuli",
"No lists available" : "Nejsou k dispozici žádné seznamy",
"Select a list" : "Vyberte sloupec",
"Move card" : "Přesunout kartu",
"Copy card" : "Zkopírovat kartu",
"Select a card" : "Vybrat kartu",
"Cancel" : "Storno",
"Select a card" : "Vybrat kartu",
"Select the card to link to a project" : "Vyberte kartu kterou propojit s projektem",
"Link to card" : "Propojit s kartou",
"File already exists" : "Soubor už existuje",
@@ -274,8 +273,6 @@
"Todo items" : "Položky k udělání",
"{count} comments, {unread} unread" : "{count} komentářů, {unread} nepřečtených",
"Edit card title" : "Upravit nadpis karty",
"Open link" : "Otevřít okaz",
"Edit title" : "Upravit nadpis",
"Assign to me" : "Přiřadit mě",
"Unassign myself" : "Zrušit přiřazení sobě",
"Mark as not done" : "Označit jako nehotové",
@@ -338,15 +335,6 @@
"An error occurred" : "Došlo k chybě",
"Are you sure you want to delete the board {title}? This will delete all the data of this board including archived cards." : "Opravdu chcete tabuli {title} smazat? Toto smaže veškerá data této tabule, včetně archivovaných karet.",
"Delete the board?" : "Smazat tabuli?",
"Clone {boardTitle}" : "Naklonovat {boardTitle}",
"Clone cards" : "Klonovat karty",
"Clone assignments" : "Přiřazení klonu",
"Clone labels" : "Popisky klonu",
"Clone due dates" : "Termíny klonu",
"Advanced options" : "Pokročilé předvolby",
"Move all cards to the first list" : "Přesunout všechny karty na první seznam",
"Restore archived cards" : "Obnovit archivované karty",
"Clone" : "Klonovat",
"Loading filtered view" : "Načítání filtrovaného pohledu",
"Today" : "Dnes",
"Tomorrow" : "Zítra",
@@ -386,7 +374,6 @@
"Share with a Deck card" : "Sdílet s kartou aplikace Deck",
"Share {file} with a Deck card" : "Sdílet {file} s kartou aplikace Deck",
"Share" : "Sdílet",
"Move card to another board" : "Přesunout kartu na jinou tabuli",
"Searching for users, groups and circles …" : "Hledání v uživatelích, skupinách a okruzích…",
"(Circle)" : "(Okruh)",
"Assign to users/groups/circles" : "Přiřadit uživatelům/skupinám/okruhům",

View File

@@ -68,12 +68,13 @@ OC.L10N.register(
"Select the board to link to a project" : "Vælg en tavle at linke til et projekt",
"Search by board title" : "Søg efter tavle titel",
"Select board" : "Vælg tavle",
"Move card to another board" : "Flyt kort til en anden tavle",
"Select a board" : "Vælg én tavle",
"No lists available" : "Ingen kolonner tilgængelige",
"Select a list" : "Vælg en kolonne",
"Move card" : "Flyt kort",
"Select a card" : "Vælg et kort",
"Cancel" : "Annullér",
"Select a card" : "Vælg et kort",
"Select the card to link to a project" : "Vælg et kort at linke til et projekt",
"Link to card" : "Link til kort",
"File already exists" : "Filen findes allerede",
@@ -180,7 +181,6 @@ OC.L10N.register(
"Select Date" : "Vælg dato",
"Assign a tag to this card…" : "Tilføj et mærkat til dette kort ...",
"(group)" : "(gruppe)",
"Edit title" : "Redigér titel",
"Assign to me" : "Tildel til mig",
"Unassign myself" : "Fjern mig selv",
"Delete card" : "Slet kort",
@@ -215,7 +215,6 @@ OC.L10N.register(
"No reminder" : "Ingen påmindelse",
"An error occurred" : "Der var en fejl",
"Delete the board?" : "Slet tavlen?",
"Advanced options" : "Avancerede indstillinger",
"Loading filtered view" : "Indlæser filtreret visning",
"Today" : "I dag",
"Tomorrow" : "I morgen",
@@ -234,7 +233,6 @@ OC.L10N.register(
"Share with a Deck card" : "Del med et Deck kort",
"Share {file} with a Deck card" : "Del {file} med et Deck kort",
"Share" : "Del",
"Move card to another board" : "Flyt kort til en anden tavle",
"Searching for users, groups and circles …" : "Leder efter brugere, grupper og cirkler ...",
"(Circle)" : "(Cirkel)",
"Assign to users/groups/circles" : "Tildel til brugere/grupper/cirkler"

View File

@@ -66,12 +66,13 @@
"Select the board to link to a project" : "Vælg en tavle at linke til et projekt",
"Search by board title" : "Søg efter tavle titel",
"Select board" : "Vælg tavle",
"Move card to another board" : "Flyt kort til en anden tavle",
"Select a board" : "Vælg én tavle",
"No lists available" : "Ingen kolonner tilgængelige",
"Select a list" : "Vælg en kolonne",
"Move card" : "Flyt kort",
"Select a card" : "Vælg et kort",
"Cancel" : "Annullér",
"Select a card" : "Vælg et kort",
"Select the card to link to a project" : "Vælg et kort at linke til et projekt",
"Link to card" : "Link til kort",
"File already exists" : "Filen findes allerede",
@@ -178,7 +179,6 @@
"Select Date" : "Vælg dato",
"Assign a tag to this card…" : "Tilføj et mærkat til dette kort ...",
"(group)" : "(gruppe)",
"Edit title" : "Redigér titel",
"Assign to me" : "Tildel til mig",
"Unassign myself" : "Fjern mig selv",
"Delete card" : "Slet kort",
@@ -213,7 +213,6 @@
"No reminder" : "Ingen påmindelse",
"An error occurred" : "Der var en fejl",
"Delete the board?" : "Slet tavlen?",
"Advanced options" : "Avancerede indstillinger",
"Loading filtered view" : "Indlæser filtreret visning",
"Today" : "I dag",
"Tomorrow" : "I morgen",
@@ -232,7 +231,6 @@
"Share with a Deck card" : "Del med et Deck kort",
"Share {file} with a Deck card" : "Del {file} med et Deck kort",
"Share" : "Del",
"Move card to another board" : "Flyt kort til en anden tavle",
"Searching for users, groups and circles …" : "Leder efter brugere, grupper og cirkler ...",
"(Circle)" : "(Cirkel)",
"Assign to users/groups/circles" : "Tildel til brugere/grupper/cirkler"

View File

@@ -125,14 +125,13 @@ OC.L10N.register(
"Select the board to link to a project" : "Wähle ein Board aus, um dieses mit einem Projekt zu verknüpfen",
"Search by board title" : "Nach einem Board suchen",
"Select board" : "Board auswählen",
"Move/copy card" : "Karte verschieben/kopieren",
"Move card to another board" : "Karte auf ein anderes Board verschieben",
"Select a board" : "Ein Board auswählen",
"No lists available" : "Keine Listen verfügbar",
"Select a list" : "Eine Liste auswählen",
"Move card" : "Karte verschieben",
"Copy card" : "Karte kopieren",
"Select a card" : "Eine Karte auswählen",
"Cancel" : "Abbrechen",
"Select a card" : "Eine Karte auswählen",
"Select the card to link to a project" : "Wähle die Karte aus, um diese mit einem Projekt zu verknüpfen",
"Link to card" : "Mit dieser Karte verknüpfen",
"File already exists" : "Datei bereits vorhanden",
@@ -276,8 +275,6 @@ OC.L10N.register(
"Todo items" : "Aufgaben-Elemente",
"{count} comments, {unread} unread" : "{count} Kommentare, {unread} ungelesen",
"Edit card title" : "Kartentitel bearbeiten",
"Open link" : "Link öffnen",
"Edit title" : "Titel bearbeiten",
"Assign to me" : "Mir zuweisen",
"Unassign myself" : "Nicht mehr mir zuweisen",
"Mark as not done" : "Als nicht erledigt markieren",
@@ -340,15 +337,6 @@ OC.L10N.register(
"An error occurred" : "Es ist ein Fehler aufgetreten",
"Are you sure you want to delete the board {title}? This will delete all the data of this board including archived cards." : "Möchtest du wirklich das Board {title} mit all seinen Daten einschließlich der archivierten Karten löschen?",
"Delete the board?" : "Das Board löschen?",
"Clone {boardTitle}" : "{boardTitle} klonen",
"Clone cards" : "Karten klonen",
"Clone assignments" : "Zuweisungen klonen",
"Clone labels" : "Etiketten klonen",
"Clone due dates" : "Fälligkeitsdaten klonen",
"Advanced options" : "Erweiterte Optionen",
"Move all cards to the first list" : "Alle Karten in die erste Liste verschieben",
"Restore archived cards" : "Archivierte Karten wiederherstellen",
"Clone" : "Klonen",
"Loading filtered view" : "Lade gefilterte Ansicht",
"Today" : "Heute",
"Tomorrow" : "Morgen",
@@ -388,7 +376,6 @@ OC.L10N.register(
"Share with a Deck card" : "Mit einer Deck-Karte teilen",
"Share {file} with a Deck card" : "{file} mit einer Deck-Karte teilen",
"Share" : "Freigeben",
"Move card to another board" : "Karte auf ein anderes Board verschieben",
"Searching for users, groups and circles …" : "Suche nach Benutzern, Gruppen und Kreisen …",
"(Circle)" : "(Kreis)",
"Assign to users/groups/circles" : "An Benutzer, Gruppen oder Kreise zuweisen",

View File

@@ -123,14 +123,13 @@
"Select the board to link to a project" : "Wähle ein Board aus, um dieses mit einem Projekt zu verknüpfen",
"Search by board title" : "Nach einem Board suchen",
"Select board" : "Board auswählen",
"Move/copy card" : "Karte verschieben/kopieren",
"Move card to another board" : "Karte auf ein anderes Board verschieben",
"Select a board" : "Ein Board auswählen",
"No lists available" : "Keine Listen verfügbar",
"Select a list" : "Eine Liste auswählen",
"Move card" : "Karte verschieben",
"Copy card" : "Karte kopieren",
"Select a card" : "Eine Karte auswählen",
"Cancel" : "Abbrechen",
"Select a card" : "Eine Karte auswählen",
"Select the card to link to a project" : "Wähle die Karte aus, um diese mit einem Projekt zu verknüpfen",
"Link to card" : "Mit dieser Karte verknüpfen",
"File already exists" : "Datei bereits vorhanden",
@@ -274,8 +273,6 @@
"Todo items" : "Aufgaben-Elemente",
"{count} comments, {unread} unread" : "{count} Kommentare, {unread} ungelesen",
"Edit card title" : "Kartentitel bearbeiten",
"Open link" : "Link öffnen",
"Edit title" : "Titel bearbeiten",
"Assign to me" : "Mir zuweisen",
"Unassign myself" : "Nicht mehr mir zuweisen",
"Mark as not done" : "Als nicht erledigt markieren",
@@ -338,15 +335,6 @@
"An error occurred" : "Es ist ein Fehler aufgetreten",
"Are you sure you want to delete the board {title}? This will delete all the data of this board including archived cards." : "Möchtest du wirklich das Board {title} mit all seinen Daten einschließlich der archivierten Karten löschen?",
"Delete the board?" : "Das Board löschen?",
"Clone {boardTitle}" : "{boardTitle} klonen",
"Clone cards" : "Karten klonen",
"Clone assignments" : "Zuweisungen klonen",
"Clone labels" : "Etiketten klonen",
"Clone due dates" : "Fälligkeitsdaten klonen",
"Advanced options" : "Erweiterte Optionen",
"Move all cards to the first list" : "Alle Karten in die erste Liste verschieben",
"Restore archived cards" : "Archivierte Karten wiederherstellen",
"Clone" : "Klonen",
"Loading filtered view" : "Lade gefilterte Ansicht",
"Today" : "Heute",
"Tomorrow" : "Morgen",
@@ -386,7 +374,6 @@
"Share with a Deck card" : "Mit einer Deck-Karte teilen",
"Share {file} with a Deck card" : "{file} mit einer Deck-Karte teilen",
"Share" : "Freigeben",
"Move card to another board" : "Karte auf ein anderes Board verschieben",
"Searching for users, groups and circles …" : "Suche nach Benutzern, Gruppen und Kreisen …",
"(Circle)" : "(Kreis)",
"Assign to users/groups/circles" : "An Benutzer, Gruppen oder Kreise zuweisen",

View File

@@ -125,14 +125,13 @@ OC.L10N.register(
"Select the board to link to a project" : "Wählen Sie ein Board aus, um dieses mit einem Projekt zu verknüpfen",
"Search by board title" : "Nach einem Board suchen",
"Select board" : "Board auswählen",
"Move/copy card" : "Karte verschieben/kopieren",
"Move card to another board" : "Karte auf ein anderes Board verschieben",
"Select a board" : "Ein Board auswählen",
"No lists available" : "Keine Listen verfügbar",
"Select a list" : "Eine Liste auswählen",
"Move card" : "Karte verschieben",
"Copy card" : "Karte kopieren",
"Select a card" : "Eine Karte auswählen",
"Cancel" : "Abbrechen",
"Select a card" : "Eine Karte auswählen",
"Select the card to link to a project" : "Wählen Sie die Karte aus, um diese mit einem Projekt zu verknüpfen",
"Link to card" : "Mit einer Karte verknüpfen",
"File already exists" : "Datei bereits vorhanden",
@@ -276,8 +275,6 @@ OC.L10N.register(
"Todo items" : "Aufgaben-Elemente",
"{count} comments, {unread} unread" : "{count} Kommentare, {unread} ungelesen",
"Edit card title" : "Kartentitel bearbeiten",
"Open link" : "Link öffnen",
"Edit title" : "Titel bearbeiten",
"Assign to me" : "Mir zuweisen",
"Unassign myself" : "Nicht mehr mir zuweisen",
"Mark as not done" : "Als unerledigt markieren",
@@ -340,15 +337,6 @@ OC.L10N.register(
"An error occurred" : "Es ist ein Fehler aufgetreten",
"Are you sure you want to delete the board {title}? This will delete all the data of this board including archived cards." : "Möchten Sie das Board {title} wirklich löschen? Dadurch werden alle Daten dieses Boards einschließlich archivierter Karten gelöscht.",
"Delete the board?" : "Das Board löschen?",
"Clone {boardTitle}" : "{boardTitle} klonen",
"Clone cards" : "Karten klonen",
"Clone assignments" : "Zuordnungen klonen",
"Clone labels" : "Etiketten klonen",
"Clone due dates" : "Fälligkeitsdaten klonen",
"Advanced options" : "Erweiterte Optionen",
"Move all cards to the first list" : "Alle Karten in die erste Liste verschieben",
"Restore archived cards" : "Archivierte Karten wiederherstellen",
"Clone" : "Klonen",
"Loading filtered view" : "Lade gefilterte Ansicht",
"Today" : "Heute",
"Tomorrow" : "Morgen",
@@ -388,7 +376,6 @@ OC.L10N.register(
"Share with a Deck card" : "Mit einer Deck-Karte teilen",
"Share {file} with a Deck card" : "{file} mit einer Deck-Karte teilen",
"Share" : "Freigeben",
"Move card to another board" : "Karte auf ein anderes Board verschieben",
"Searching for users, groups and circles …" : "Suche nach Benutzern, Gruppen und Kreisen …",
"(Circle)" : "(Kreis)",
"Assign to users/groups/circles" : "An Benutzer, Gruppen oder Kreise zuweisen",

View File

@@ -123,14 +123,13 @@
"Select the board to link to a project" : "Wählen Sie ein Board aus, um dieses mit einem Projekt zu verknüpfen",
"Search by board title" : "Nach einem Board suchen",
"Select board" : "Board auswählen",
"Move/copy card" : "Karte verschieben/kopieren",
"Move card to another board" : "Karte auf ein anderes Board verschieben",
"Select a board" : "Ein Board auswählen",
"No lists available" : "Keine Listen verfügbar",
"Select a list" : "Eine Liste auswählen",
"Move card" : "Karte verschieben",
"Copy card" : "Karte kopieren",
"Select a card" : "Eine Karte auswählen",
"Cancel" : "Abbrechen",
"Select a card" : "Eine Karte auswählen",
"Select the card to link to a project" : "Wählen Sie die Karte aus, um diese mit einem Projekt zu verknüpfen",
"Link to card" : "Mit einer Karte verknüpfen",
"File already exists" : "Datei bereits vorhanden",
@@ -274,8 +273,6 @@
"Todo items" : "Aufgaben-Elemente",
"{count} comments, {unread} unread" : "{count} Kommentare, {unread} ungelesen",
"Edit card title" : "Kartentitel bearbeiten",
"Open link" : "Link öffnen",
"Edit title" : "Titel bearbeiten",
"Assign to me" : "Mir zuweisen",
"Unassign myself" : "Nicht mehr mir zuweisen",
"Mark as not done" : "Als unerledigt markieren",
@@ -338,15 +335,6 @@
"An error occurred" : "Es ist ein Fehler aufgetreten",
"Are you sure you want to delete the board {title}? This will delete all the data of this board including archived cards." : "Möchten Sie das Board {title} wirklich löschen? Dadurch werden alle Daten dieses Boards einschließlich archivierter Karten gelöscht.",
"Delete the board?" : "Das Board löschen?",
"Clone {boardTitle}" : "{boardTitle} klonen",
"Clone cards" : "Karten klonen",
"Clone assignments" : "Zuordnungen klonen",
"Clone labels" : "Etiketten klonen",
"Clone due dates" : "Fälligkeitsdaten klonen",
"Advanced options" : "Erweiterte Optionen",
"Move all cards to the first list" : "Alle Karten in die erste Liste verschieben",
"Restore archived cards" : "Archivierte Karten wiederherstellen",
"Clone" : "Klonen",
"Loading filtered view" : "Lade gefilterte Ansicht",
"Today" : "Heute",
"Tomorrow" : "Morgen",
@@ -386,7 +374,6 @@
"Share with a Deck card" : "Mit einer Deck-Karte teilen",
"Share {file} with a Deck card" : "{file} mit einer Deck-Karte teilen",
"Share" : "Freigeben",
"Move card to another board" : "Karte auf ein anderes Board verschieben",
"Searching for users, groups and circles …" : "Suche nach Benutzern, Gruppen und Kreisen …",
"(Circle)" : "(Kreis)",
"Assign to users/groups/circles" : "An Benutzer, Gruppen oder Kreise zuweisen",

View File

@@ -124,12 +124,13 @@ OC.L10N.register(
"Select the board to link to a project" : "Επιλέξτε πίνακα και συνδέστε τον σε ένα έργο",
"Search by board title" : "Αναζήτηση με το όνομα πίνακα",
"Select board" : "Επιλογή πίνακα",
"Move card to another board" : "Μετακίνηση καρτέλας σε άλλο πίνακα",
"Select a board" : "Επιλογή ενός πίνακα",
"No lists available" : "Δεν υπάρχουν διαθέσιμες λίστες",
"Select a list" : "Επιλέξτε μια λίστα",
"Move card" : "Μετακίνηση καρτέλας",
"Select a card" : "Επιλογή μιας καρτέλας",
"Cancel" : "Aκύρωση",
"Select a card" : "Επιλογή μιας καρτέλας",
"Select the card to link to a project" : "Επιλογή καρτέλας για σύνδεση στο έργο",
"Link to card" : "Σύνδεσμος σε καρτέλα",
"File already exists" : "Το αρχείο υπάρχει ήδη",
@@ -273,7 +274,6 @@ OC.L10N.register(
"Todo items" : "Στοιχεία todo",
"{count} comments, {unread} unread" : "{count} σχόλια, {unread} μη αναγνωσμένα",
"Edit card title" : "Επεξεργασία τίτλου κάρτας",
"Edit title" : "Επεξεργασία τίτλου",
"Assign to me" : "Ανάθεση σε εμένα",
"Unassign myself" : "Αποδέσμευσή μου",
"Mark as not done" : "Σήμανση ως ολοκληρωμένου",
@@ -335,9 +335,6 @@ OC.L10N.register(
"An error occurred" : "Παρουσιάστηκε σφάλμα",
"Are you sure you want to delete the board {title}? This will delete all the data of this board including archived cards." : "Είστε βέβαιοι ότι θέλετε να διαγράψετε τον πίνακα {title}; Αυτό θα διαγράψει όλα τα δεδομένα του πίνακα συμπεριλαμβανομένων και των αρχειοθετημένων καρτών.",
"Delete the board?" : "Διαγραφή του πίνακα;",
"Clone cards" : "Κάρτες κλώνου",
"Advanced options" : "Επιλογές για προχωρημένους",
"Clone" : "Κλώνος",
"Loading filtered view" : "Φόρτωση εμφάνισης με βάση το φίλτρο",
"Today" : "Σήμερα",
"Tomorrow" : "Αύριο",
@@ -377,7 +374,6 @@ OC.L10N.register(
"Share with a Deck card" : "Μοιραστείτε με μια καρτέλα Deck",
"Share {file} with a Deck card" : "Μοιραστείτε το {file} με μια καρτέλα Deck",
"Share" : "Μοιραστείτε",
"Move card to another board" : "Μετακίνηση καρτέλας σε άλλο πίνακα",
"Searching for users, groups and circles …" : "Αναζήτηση χρηστών, ομάδων και κύκλων…",
"(Circle)" : "(Κύκλος)",
"Assign to users/groups/circles" : "Ανάθεση σε χρήστες/ομάδες/κύκλους",

View File

@@ -122,12 +122,13 @@
"Select the board to link to a project" : "Επιλέξτε πίνακα και συνδέστε τον σε ένα έργο",
"Search by board title" : "Αναζήτηση με το όνομα πίνακα",
"Select board" : "Επιλογή πίνακα",
"Move card to another board" : "Μετακίνηση καρτέλας σε άλλο πίνακα",
"Select a board" : "Επιλογή ενός πίνακα",
"No lists available" : "Δεν υπάρχουν διαθέσιμες λίστες",
"Select a list" : "Επιλέξτε μια λίστα",
"Move card" : "Μετακίνηση καρτέλας",
"Select a card" : "Επιλογή μιας καρτέλας",
"Cancel" : "Aκύρωση",
"Select a card" : "Επιλογή μιας καρτέλας",
"Select the card to link to a project" : "Επιλογή καρτέλας για σύνδεση στο έργο",
"Link to card" : "Σύνδεσμος σε καρτέλα",
"File already exists" : "Το αρχείο υπάρχει ήδη",
@@ -271,7 +272,6 @@
"Todo items" : "Στοιχεία todo",
"{count} comments, {unread} unread" : "{count} σχόλια, {unread} μη αναγνωσμένα",
"Edit card title" : "Επεξεργασία τίτλου κάρτας",
"Edit title" : "Επεξεργασία τίτλου",
"Assign to me" : "Ανάθεση σε εμένα",
"Unassign myself" : "Αποδέσμευσή μου",
"Mark as not done" : "Σήμανση ως ολοκληρωμένου",
@@ -333,9 +333,6 @@
"An error occurred" : "Παρουσιάστηκε σφάλμα",
"Are you sure you want to delete the board {title}? This will delete all the data of this board including archived cards." : "Είστε βέβαιοι ότι θέλετε να διαγράψετε τον πίνακα {title}; Αυτό θα διαγράψει όλα τα δεδομένα του πίνακα συμπεριλαμβανομένων και των αρχειοθετημένων καρτών.",
"Delete the board?" : "Διαγραφή του πίνακα;",
"Clone cards" : "Κάρτες κλώνου",
"Advanced options" : "Επιλογές για προχωρημένους",
"Clone" : "Κλώνος",
"Loading filtered view" : "Φόρτωση εμφάνισης με βάση το φίλτρο",
"Today" : "Σήμερα",
"Tomorrow" : "Αύριο",
@@ -375,7 +372,6 @@
"Share with a Deck card" : "Μοιραστείτε με μια καρτέλα Deck",
"Share {file} with a Deck card" : "Μοιραστείτε το {file} με μια καρτέλα Deck",
"Share" : "Μοιραστείτε",
"Move card to another board" : "Μετακίνηση καρτέλας σε άλλο πίνακα",
"Searching for users, groups and circles …" : "Αναζήτηση χρηστών, ομάδων και κύκλων…",
"(Circle)" : "(Κύκλος)",
"Assign to users/groups/circles" : "Ανάθεση σε χρήστες/ομάδες/κύκλους",

View File

@@ -125,14 +125,13 @@ OC.L10N.register(
"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",
"Move/copy card" : "Move/copy card",
"Move card to another board" : "Move card to another board",
"Select a board" : "Select a board",
"No lists available" : "No lists available",
"Select a list" : "Select a list",
"Move card" : "Move card",
"Copy card" : "Copy card",
"Select a card" : "Select a card",
"Cancel" : "Cancel",
"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",
@@ -276,8 +275,6 @@ OC.L10N.register(
"Todo items" : "Todo items",
"{count} comments, {unread} unread" : "{count} comments, {unread} unread",
"Edit card title" : "Edit card title",
"Open link" : "Open link",
"Edit title" : "Edit title",
"Assign to me" : "Assign to me",
"Unassign myself" : "Unassign myself",
"Mark as not done" : "Mark as not done",
@@ -340,15 +337,6 @@ OC.L10N.register(
"An error occurred" : "An error occurred",
"Are you sure you want to delete the board {title}? This will delete all the data of this board including archived cards." : "Are you sure you want to delete the board {title}? This will delete all the data of this board including archived cards.",
"Delete the board?" : "Delete the board?",
"Clone {boardTitle}" : "Clone {boardTitle}",
"Clone cards" : "Clone cards",
"Clone assignments" : "Clone assignments",
"Clone labels" : "Clone labels",
"Clone due dates" : "Clone due dates",
"Advanced options" : "Advanced options",
"Move all cards to the first list" : "Move all cards to the first list",
"Restore archived cards" : "Restore archived cards",
"Clone" : "Clone",
"Loading filtered view" : "Loading filtered view",
"Today" : "Today",
"Tomorrow" : "Tomorrow",
@@ -388,7 +376,6 @@ OC.L10N.register(
"Share with a Deck card" : "Share with a Deck card",
"Share {file} with a Deck card" : "Share {file} with a Deck card",
"Share" : "Share",
"Move card to another board" : "Move card to another board",
"Searching for users, groups and circles …" : "Searching for users, groups and circles …",
"(Circle)" : "(Circle)",
"Assign to users/groups/circles" : "Assign to users/groups/circles",

View File

@@ -123,14 +123,13 @@
"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",
"Move/copy card" : "Move/copy card",
"Move card to another board" : "Move card to another board",
"Select a board" : "Select a board",
"No lists available" : "No lists available",
"Select a list" : "Select a list",
"Move card" : "Move card",
"Copy card" : "Copy card",
"Select a card" : "Select a card",
"Cancel" : "Cancel",
"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",
@@ -274,8 +273,6 @@
"Todo items" : "Todo items",
"{count} comments, {unread} unread" : "{count} comments, {unread} unread",
"Edit card title" : "Edit card title",
"Open link" : "Open link",
"Edit title" : "Edit title",
"Assign to me" : "Assign to me",
"Unassign myself" : "Unassign myself",
"Mark as not done" : "Mark as not done",
@@ -338,15 +335,6 @@
"An error occurred" : "An error occurred",
"Are you sure you want to delete the board {title}? This will delete all the data of this board including archived cards." : "Are you sure you want to delete the board {title}? This will delete all the data of this board including archived cards.",
"Delete the board?" : "Delete the board?",
"Clone {boardTitle}" : "Clone {boardTitle}",
"Clone cards" : "Clone cards",
"Clone assignments" : "Clone assignments",
"Clone labels" : "Clone labels",
"Clone due dates" : "Clone due dates",
"Advanced options" : "Advanced options",
"Move all cards to the first list" : "Move all cards to the first list",
"Restore archived cards" : "Restore archived cards",
"Clone" : "Clone",
"Loading filtered view" : "Loading filtered view",
"Today" : "Today",
"Tomorrow" : "Tomorrow",
@@ -386,7 +374,6 @@
"Share with a Deck card" : "Share with a Deck card",
"Share {file} with a Deck card" : "Share {file} with a Deck card",
"Share" : "Share",
"Move card to another board" : "Move card to another board",
"Searching for users, groups and circles …" : "Searching for users, groups and circles …",
"(Circle)" : "(Circle)",
"Assign to users/groups/circles" : "Assign to users/groups/circles",

View File

@@ -124,7 +124,6 @@ OC.L10N.register(
"No notifications" : "Neniu sciigo",
"Delete board" : "Forigi tabulon",
"An error occurred" : "Eraro okazis",
"Advanced options" : "Detalaj agordoj",
"Today" : "Hodiaŭ",
"Tomorrow" : "Morgaŭ",
"Close" : "Malfermi",

View File

@@ -122,7 +122,6 @@
"No notifications" : "Neniu sciigo",
"Delete board" : "Forigi tabulon",
"An error occurred" : "Eraro okazis",
"Advanced options" : "Detalaj agordoj",
"Today" : "Hodiaŭ",
"Tomorrow" : "Morgaŭ",
"Close" : "Malfermi",

View File

@@ -125,12 +125,13 @@ OC.L10N.register(
"Select the board to link to a project" : "Selecciona el tablero que enlazar a un proyecto",
"Search by board title" : "Buscar por título de tablero",
"Select board" : "Selecciona tablero",
"Move card to another board" : "Mover la tarjeta a otro tablero",
"Select a board" : "Selecciona un tablero",
"No lists available" : "No hay listas disponibles",
"Select a list" : "Seleccionar una lista",
"Move card" : "Mover tarjeta",
"Select a card" : "Seleccionar una tarjeta",
"Cancel" : "Cancelar",
"Select a card" : "Seleccionar una tarjeta",
"Select the card to link to a project" : "Selecciona la tarjeta que enlazar a un proyecto",
"Link to card" : "Enlace a tarjeta",
"File already exists" : "El archivo ya existe",
@@ -273,7 +274,6 @@ OC.L10N.register(
"Todo items" : "Ítems pendientes",
"{count} comments, {unread} unread" : "{count} comentarios, {unread} sin leer",
"Edit card title" : "Editar el título de la tarjeta",
"Edit title" : "Editar título",
"Assign to me" : "Asignarme a mí",
"Unassign myself" : "Desasignarme a mí mismo",
"Mark as not done" : "Marcar como no completado",
@@ -335,9 +335,6 @@ OC.L10N.register(
"An error occurred" : "Ocurrió un error",
"Are you sure you want to delete the board {title}? This will delete all the data of this board including archived cards." : "¿Está seguro de querer eliminar el tablero {title}? Esto eliminará todos los datos del tablero incluyendo las tarjetas archivadas.",
"Delete the board?" : "¿Borrar el tablero?",
"Clone cards" : "Clonar tarjetas",
"Advanced options" : "Opciones avanzadas",
"Clone" : "Clonar",
"Loading filtered view" : "Cargando vista filtrada",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
@@ -377,7 +374,6 @@ OC.L10N.register(
"Share with a Deck card" : "Compartir con una tarjeta de Deck",
"Share {file} with a Deck card" : "Compartir {file} con una tarjeta de Deck",
"Share" : "Compartir",
"Move card to another board" : "Mover la tarjeta a otro tablero",
"Searching for users, groups and circles …" : "Buscando usuarios, grupos o círculos...",
"(Circle)" : "(Circle)",
"Assign to users/groups/circles" : "Asignar a usuarios/grupos/círculos",

View File

@@ -123,12 +123,13 @@
"Select the board to link to a project" : "Selecciona el tablero que enlazar a un proyecto",
"Search by board title" : "Buscar por título de tablero",
"Select board" : "Selecciona tablero",
"Move card to another board" : "Mover la tarjeta a otro tablero",
"Select a board" : "Selecciona un tablero",
"No lists available" : "No hay listas disponibles",
"Select a list" : "Seleccionar una lista",
"Move card" : "Mover tarjeta",
"Select a card" : "Seleccionar una tarjeta",
"Cancel" : "Cancelar",
"Select a card" : "Seleccionar una tarjeta",
"Select the card to link to a project" : "Selecciona la tarjeta que enlazar a un proyecto",
"Link to card" : "Enlace a tarjeta",
"File already exists" : "El archivo ya existe",
@@ -271,7 +272,6 @@
"Todo items" : "Ítems pendientes",
"{count} comments, {unread} unread" : "{count} comentarios, {unread} sin leer",
"Edit card title" : "Editar el título de la tarjeta",
"Edit title" : "Editar título",
"Assign to me" : "Asignarme a mí",
"Unassign myself" : "Desasignarme a mí mismo",
"Mark as not done" : "Marcar como no completado",
@@ -333,9 +333,6 @@
"An error occurred" : "Ocurrió un error",
"Are you sure you want to delete the board {title}? This will delete all the data of this board including archived cards." : "¿Está seguro de querer eliminar el tablero {title}? Esto eliminará todos los datos del tablero incluyendo las tarjetas archivadas.",
"Delete the board?" : "¿Borrar el tablero?",
"Clone cards" : "Clonar tarjetas",
"Advanced options" : "Opciones avanzadas",
"Clone" : "Clonar",
"Loading filtered view" : "Cargando vista filtrada",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
@@ -375,7 +372,6 @@
"Share with a Deck card" : "Compartir con una tarjeta de Deck",
"Share {file} with a Deck card" : "Compartir {file} con una tarjeta de Deck",
"Share" : "Compartir",
"Move card to another board" : "Mover la tarjeta a otro tablero",
"Searching for users, groups and circles …" : "Buscando usuarios, grupos o círculos...",
"(Circle)" : "(Circle)",
"Assign to users/groups/circles" : "Asignar a usuarios/grupos/círculos",

View File

@@ -60,7 +60,6 @@ OC.L10N.register(
"Archive board" : "Archivar tablero",
"No notifications" : "No hay notificaciones",
"Delete board" : "Borrar tableros",
"Advanced options" : "Opciones avanzadas",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Close" : "Cerrar",

View File

@@ -58,7 +58,6 @@
"Archive board" : "Archivar tablero",
"No notifications" : "No hay notificaciones",
"Delete board" : "Borrar tableros",
"Advanced options" : "Opciones avanzadas",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Close" : "Cerrar",

View File

@@ -51,8 +51,8 @@ OC.L10N.register(
"Select board" : "Selecciona tablero",
"Select a board" : "Selecciona un tablero",
"Select a list" : "Seleccionar una lista",
"Select a card" : "Seleccionar una tarjeta",
"Cancel" : "Cancelar",
"Select a card" : "Seleccionar una tarjeta",
"Open" : "Abrir",
"Completed" : "Completado",
"Next 24 hours" : "Próximas 24 horas",
@@ -101,7 +101,6 @@ OC.L10N.register(
"No notifications" : "No hay notificaciones",
"Delete board" : "Eliminar Tablero",
"An error occurred" : "Ocurrió un error",
"Advanced options" : "Opciones avanzadas",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"No due" : "Sin finalizar",

View File

@@ -49,8 +49,8 @@
"Select board" : "Selecciona tablero",
"Select a board" : "Selecciona un tablero",
"Select a list" : "Seleccionar una lista",
"Select a card" : "Seleccionar una tarjeta",
"Cancel" : "Cancelar",
"Select a card" : "Seleccionar una tarjeta",
"Open" : "Abrir",
"Completed" : "Completado",
"Next 24 hours" : "Próximas 24 horas",
@@ -99,7 +99,6 @@
"No notifications" : "No hay notificaciones",
"Delete board" : "Eliminar Tablero",
"An error occurred" : "Ocurrió un error",
"Advanced options" : "Opciones avanzadas",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"No due" : "Sin finalizar",

View File

@@ -63,7 +63,6 @@ OC.L10N.register(
"Archive board" : "Archivar tablero",
"No notifications" : "No hay notificaciones",
"Delete board" : "Borrar tableros",
"Advanced options" : "Opciones avanzadas",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Close" : "Cerrar",

View File

@@ -61,7 +61,6 @@
"Archive board" : "Archivar tablero",
"No notifications" : "No hay notificaciones",
"Delete board" : "Borrar tableros",
"Advanced options" : "Opciones avanzadas",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Close" : "Cerrar",

View File

@@ -64,7 +64,6 @@ OC.L10N.register(
"Archive board" : "Archivar tablero",
"No notifications" : "No hay notificaciones",
"Delete board" : "Borrar tableros",
"Advanced options" : "Opciones avanzadas",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Close" : "Cerrar",

View File

@@ -62,7 +62,6 @@
"Archive board" : "Archivar tablero",
"No notifications" : "No hay notificaciones",
"Delete board" : "Borrar tableros",
"Advanced options" : "Opciones avanzadas",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Close" : "Cerrar",

View File

@@ -63,7 +63,6 @@ OC.L10N.register(
"Archive board" : "Archivar tablero",
"No notifications" : "No hay notificaciones",
"Delete board" : "Borrar tableros",
"Advanced options" : "Opciones avanzadas",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Close" : "Cerrar",

View File

@@ -61,7 +61,6 @@
"Archive board" : "Archivar tablero",
"No notifications" : "No hay notificaciones",
"Delete board" : "Borrar tableros",
"Advanced options" : "Opciones avanzadas",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Close" : "Cerrar",

View File

@@ -63,7 +63,6 @@ OC.L10N.register(
"Archive board" : "Archivar tablero",
"No notifications" : "No hay notificaciones",
"Delete board" : "Borrar tableros",
"Advanced options" : "Opciones avanzadas",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Close" : "Cerrar",

View File

@@ -61,7 +61,6 @@
"Archive board" : "Archivar tablero",
"No notifications" : "No hay notificaciones",
"Delete board" : "Borrar tableros",
"Advanced options" : "Opciones avanzadas",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Close" : "Cerrar",

View File

@@ -116,12 +116,13 @@ OC.L10N.register(
"Select the board to link to a project" : "Selecciona el tablero para vincularlo a un proyecto",
"Search by board title" : "Buscar por título del tablero",
"Select board" : "Seleccionar tablero",
"Move card to another board" : "Mover tarjeta a otro tablero",
"Select a board" : "Seleccionar un tablero",
"No lists available" : "No hay listas disponibles",
"Select a list" : "Seleccionar una lista",
"Move card" : "Mover tarjeta",
"Select a card" : "Seleccionar una tarjeta",
"Cancel" : "Cancelar",
"Select a card" : "Seleccionar una tarjeta",
"Select the card to link to a project" : "Selecciona la tarjeta para vincularla a un proyecto",
"Link to card" : "Vincular con tarjeta",
"File already exists" : "El archivo ya existe",
@@ -242,7 +243,6 @@ OC.L10N.register(
"Todo items" : "Elementos pendientes",
"{count} comments, {unread} unread" : "{count} comentarios, {unread} sin leer",
"Edit card title" : "Editar título de la tarjeta",
"Edit title" : "Editar título",
"Assign to me" : "Asignarme la tarjeta",
"Unassign myself" : "Desasignarme la tarjeta",
"Delete card" : "Eliminar tarjeta",
@@ -283,9 +283,6 @@ OC.L10N.register(
"An error occurred" : "Se produjo un error",
"Are you sure you want to delete the board {title}? This will delete all the data of this board including archived cards." : "¿Estás seguro de que quieres eliminar el tablero {title}? Esto eliminará todos los datos de este tablero, incluidas las tarjetas archivadas.",
"Delete the board?" : "¿Eliminar el tablero?",
"Clone cards" : "Clonar tarjetas",
"Advanced options" : "Opciones avanzadas",
"Clone" : "Clonar",
"Loading filtered view" : "Cargando vista filtrada",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
@@ -320,7 +317,6 @@ OC.L10N.register(
"Share with a Deck card" : "Compartir con una tarjeta de Deck",
"Share {file} with a Deck card" : "Compartir {file} con una tarjeta de Deck",
"Share" : "Compartir",
"Move card to another board" : "Mover tarjeta a otro tablero",
"Searching for users, groups and circles …" : "Buscando usuarios, grupos y círculos …",
"(Circle)" : "(Círculo)",
"Assign to users/groups/circles" : "Asignar a usuarios/grupos/círculos"

View File

@@ -114,12 +114,13 @@
"Select the board to link to a project" : "Selecciona el tablero para vincularlo a un proyecto",
"Search by board title" : "Buscar por título del tablero",
"Select board" : "Seleccionar tablero",
"Move card to another board" : "Mover tarjeta a otro tablero",
"Select a board" : "Seleccionar un tablero",
"No lists available" : "No hay listas disponibles",
"Select a list" : "Seleccionar una lista",
"Move card" : "Mover tarjeta",
"Select a card" : "Seleccionar una tarjeta",
"Cancel" : "Cancelar",
"Select a card" : "Seleccionar una tarjeta",
"Select the card to link to a project" : "Selecciona la tarjeta para vincularla a un proyecto",
"Link to card" : "Vincular con tarjeta",
"File already exists" : "El archivo ya existe",
@@ -240,7 +241,6 @@
"Todo items" : "Elementos pendientes",
"{count} comments, {unread} unread" : "{count} comentarios, {unread} sin leer",
"Edit card title" : "Editar título de la tarjeta",
"Edit title" : "Editar título",
"Assign to me" : "Asignarme la tarjeta",
"Unassign myself" : "Desasignarme la tarjeta",
"Delete card" : "Eliminar tarjeta",
@@ -281,9 +281,6 @@
"An error occurred" : "Se produjo un error",
"Are you sure you want to delete the board {title}? This will delete all the data of this board including archived cards." : "¿Estás seguro de que quieres eliminar el tablero {title}? Esto eliminará todos los datos de este tablero, incluidas las tarjetas archivadas.",
"Delete the board?" : "¿Eliminar el tablero?",
"Clone cards" : "Clonar tarjetas",
"Advanced options" : "Opciones avanzadas",
"Clone" : "Clonar",
"Loading filtered view" : "Cargando vista filtrada",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
@@ -318,7 +315,6 @@
"Share with a Deck card" : "Compartir con una tarjeta de Deck",
"Share {file} with a Deck card" : "Compartir {file} con una tarjeta de Deck",
"Share" : "Compartir",
"Move card to another board" : "Mover tarjeta a otro tablero",
"Searching for users, groups and circles …" : "Buscando usuarios, grupos y círculos …",
"(Circle)" : "(Círculo)",
"Assign to users/groups/circles" : "Asignar a usuarios/grupos/círculos"

View File

@@ -63,7 +63,6 @@ OC.L10N.register(
"Archive board" : "Archivar tablero",
"No notifications" : "No hay notificaciones",
"Delete board" : "Borrar tableros",
"Advanced options" : "Opciones avanzadas",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Close" : "Cerrar",

View File

@@ -61,7 +61,6 @@
"Archive board" : "Archivar tablero",
"No notifications" : "No hay notificaciones",
"Delete board" : "Borrar tableros",
"Advanced options" : "Opciones avanzadas",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Close" : "Cerrar",

View File

@@ -59,7 +59,6 @@ OC.L10N.register(
"Archive board" : "Archivar tablero",
"No notifications" : "No hay notificaciones",
"Delete board" : "Borrar tableros",
"Advanced options" : "Opciones avanzadas",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Close" : "Cerrar",

View File

@@ -57,7 +57,6 @@
"Archive board" : "Archivar tablero",
"No notifications" : "No hay notificaciones",
"Delete board" : "Borrar tableros",
"Advanced options" : "Opciones avanzadas",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Close" : "Cerrar",

View File

@@ -181,9 +181,6 @@ OC.L10N.register(
"Delete board" : "Borrar tableros",
"No reminder" : "Sin recordatorio",
"An error occurred" : "Ha ocurrido un error",
"Clone cards" : "Clonar tarjetas",
"Advanced options" : "Opciones avanzadas",
"Clone" : "Clonar",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Close" : "Cerrar",

View File

@@ -179,9 +179,6 @@
"Delete board" : "Borrar tableros",
"No reminder" : "Sin recordatorio",
"An error occurred" : "Ha ocurrido un error",
"Clone cards" : "Clonar tarjetas",
"Advanced options" : "Opciones avanzadas",
"Clone" : "Clonar",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Close" : "Cerrar",

View File

@@ -59,7 +59,6 @@ OC.L10N.register(
"Archive board" : "Archivar tablero",
"No notifications" : "No hay notificaciones",
"Delete board" : "Borrar tableros",
"Advanced options" : "Opciones avanzadas",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Close" : "Cerrar",

View File

@@ -57,7 +57,6 @@
"Archive board" : "Archivar tablero",
"No notifications" : "No hay notificaciones",
"Delete board" : "Borrar tableros",
"Advanced options" : "Opciones avanzadas",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Close" : "Cerrar",

View File

@@ -59,7 +59,6 @@ OC.L10N.register(
"Archive board" : "Archivar tablero",
"No notifications" : "No hay notificaciones",
"Delete board" : "Borrar tableros",
"Advanced options" : "Opciones avanzadas",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Close" : "Cerrar",

View File

@@ -57,7 +57,6 @@
"Archive board" : "Archivar tablero",
"No notifications" : "No hay notificaciones",
"Delete board" : "Borrar tableros",
"Advanced options" : "Opciones avanzadas",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Close" : "Cerrar",

View File

@@ -61,7 +61,6 @@ OC.L10N.register(
"Archive board" : "Archivar tablero",
"No notifications" : "No hay notificaciones",
"Delete board" : "Borrar tableros",
"Advanced options" : "Opciones avanzadas",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Close" : "Cerrar",

View File

@@ -59,7 +59,6 @@
"Archive board" : "Archivar tablero",
"No notifications" : "No hay notificaciones",
"Delete board" : "Borrar tableros",
"Advanced options" : "Opciones avanzadas",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Close" : "Cerrar",

View File

@@ -59,7 +59,6 @@ OC.L10N.register(
"Archive board" : "Archivar tablero",
"No notifications" : "No hay notificaciones",
"Delete board" : "Borrar tableros",
"Advanced options" : "Opciones avanzadas",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Close" : "Cerrar",

View File

@@ -57,7 +57,6 @@
"Archive board" : "Archivar tablero",
"No notifications" : "No hay notificaciones",
"Delete board" : "Borrar tableros",
"Advanced options" : "Opciones avanzadas",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Close" : "Cerrar",

View File

@@ -62,7 +62,6 @@ OC.L10N.register(
"No notifications" : "No hay notificaciones",
"Delete board" : "Borrar tableros",
"An error occurred" : "Se presentó un error",
"Advanced options" : "Opciones avanzadas",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Close" : "Cerrar",

View File

@@ -60,7 +60,6 @@
"No notifications" : "No hay notificaciones",
"Delete board" : "Borrar tableros",
"An error occurred" : "Se presentó un error",
"Advanced options" : "Opciones avanzadas",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Close" : "Cerrar",

View File

@@ -63,7 +63,6 @@ OC.L10N.register(
"Archive board" : "Archivar tablero",
"No notifications" : "No hay notificaciones",
"Delete board" : "Borrar tableros",
"Advanced options" : "Opciones avanzadas",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Close" : "Cerrar",

View File

@@ -61,7 +61,6 @@
"Archive board" : "Archivar tablero",
"No notifications" : "No hay notificaciones",
"Delete board" : "Borrar tableros",
"Advanced options" : "Opciones avanzadas",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Close" : "Cerrar",

View File

@@ -59,7 +59,6 @@ OC.L10N.register(
"Archive board" : "Archivar tablero",
"No notifications" : "No hay notificaciones",
"Delete board" : "Borrar tableros",
"Advanced options" : "Opciones avanzadas",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Close" : "Cerrar",

View File

@@ -57,7 +57,6 @@
"Archive board" : "Archivar tablero",
"No notifications" : "No hay notificaciones",
"Delete board" : "Borrar tableros",
"Advanced options" : "Opciones avanzadas",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Close" : "Cerrar",

View File

@@ -49,7 +49,6 @@ OC.L10N.register(
"Cancel edit" : "Loobu muutmisest",
"No notifications" : "Märguandeid pole",
"An error occurred" : "Tekkis tõrge",
"Advanced options" : "Täpsemad valikud",
"Today" : "Täna",
"Tomorrow" : "Homme",
"Close" : "Sulge",

View File

@@ -47,7 +47,6 @@
"Cancel edit" : "Loobu muutmisest",
"No notifications" : "Märguandeid pole",
"An error occurred" : "Tekkis tõrge",
"Advanced options" : "Täpsemad valikud",
"Today" : "Täna",
"Tomorrow" : "Homme",
"Close" : "Sulge",

View File

@@ -125,12 +125,13 @@ OC.L10N.register(
"Select the board to link to a project" : "Hautatu taula proiektu bati estekatzeko",
"Search by board title" : "Bilatu taula izenez",
"Select board" : "Hautatu taula",
"Move card to another board" : "Mugitu txartela beste taula batera",
"Select a board" : "Hautatu taula bat",
"No lists available" : "Ez dago zerrendarik eskuragarri",
"Select a list" : "Hautatu zerrenda bat",
"Move card" : "Mugitu txartela",
"Select a card" : "Hautatu txartel bat",
"Cancel" : "Utzi",
"Select a card" : "Hautatu txartel bat",
"Select the card to link to a project" : "Hautatu proiektu bati estekatzeko txartela",
"Link to card" : "Lotu txartelera",
"File already exists" : "Badago izen bereko fitxategi bat",
@@ -274,7 +275,6 @@ OC.L10N.register(
"Todo items" : "Elementuak egiteke",
"{count} comments, {unread} unread" : "{count} iruzkin, {unread} irakurri gabe",
"Edit card title" : "Editatu txartelaren izenburua",
"Edit title" : "Editatu izenburua",
"Assign to me" : "Esleitu niri",
"Unassign myself" : "Niri esleitzeari utzi",
"Mark as not done" : "Markatu ez egindako gisa",
@@ -337,9 +337,6 @@ OC.L10N.register(
"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 including archived cards." : "Ziur zaude {title} taula ezabatu nahi duzula? Honek taula honen datu guztiak ezabatuko ditu, artxibatutako txartelak barne.",
"Delete the board?" : "Taula ezabatu?",
"Clone cards" : "Klonatu txartelak",
"Advanced options" : "Ezarpen aurreratuak",
"Clone" : "Klonatu",
"Loading filtered view" : "Kargatzen iragazitako ikuspegia",
"Today" : "Gaur",
"Tomorrow" : "Bihar",
@@ -379,7 +376,6 @@ OC.L10N.register(
"Share with a Deck card" : "Partekatu Deck txartel baten bidez",
"Share {file} with a Deck card" : "Partekatu {file} Deck txartel baten bidez",
"Share" : "Partekatu",
"Move card to another board" : "Mugitu txartela beste taula batera",
"Searching for users, groups and circles …" : "Erabiltzaileak, taldeak, zirkuluak... bilatzen",
"(Circle)" : "(Zirkulua)",
"Assign to users/groups/circles" : "Esleitu erabiltzaile/talde/zirkuluei",

View File

@@ -123,12 +123,13 @@
"Select the board to link to a project" : "Hautatu taula proiektu bati estekatzeko",
"Search by board title" : "Bilatu taula izenez",
"Select board" : "Hautatu taula",
"Move card to another board" : "Mugitu txartela beste taula batera",
"Select a board" : "Hautatu taula bat",
"No lists available" : "Ez dago zerrendarik eskuragarri",
"Select a list" : "Hautatu zerrenda bat",
"Move card" : "Mugitu txartela",
"Select a card" : "Hautatu txartel bat",
"Cancel" : "Utzi",
"Select a card" : "Hautatu txartel bat",
"Select the card to link to a project" : "Hautatu proiektu bati estekatzeko txartela",
"Link to card" : "Lotu txartelera",
"File already exists" : "Badago izen bereko fitxategi bat",
@@ -272,7 +273,6 @@
"Todo items" : "Elementuak egiteke",
"{count} comments, {unread} unread" : "{count} iruzkin, {unread} irakurri gabe",
"Edit card title" : "Editatu txartelaren izenburua",
"Edit title" : "Editatu izenburua",
"Assign to me" : "Esleitu niri",
"Unassign myself" : "Niri esleitzeari utzi",
"Mark as not done" : "Markatu ez egindako gisa",
@@ -335,9 +335,6 @@
"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 including archived cards." : "Ziur zaude {title} taula ezabatu nahi duzula? Honek taula honen datu guztiak ezabatuko ditu, artxibatutako txartelak barne.",
"Delete the board?" : "Taula ezabatu?",
"Clone cards" : "Klonatu txartelak",
"Advanced options" : "Ezarpen aurreratuak",
"Clone" : "Klonatu",
"Loading filtered view" : "Kargatzen iragazitako ikuspegia",
"Today" : "Gaur",
"Tomorrow" : "Bihar",
@@ -377,7 +374,6 @@
"Share with a Deck card" : "Partekatu Deck txartel baten bidez",
"Share {file} with a Deck card" : "Partekatu {file} Deck txartel baten bidez",
"Share" : "Partekatu",
"Move card to another board" : "Mugitu txartela beste taula batera",
"Searching for users, groups and circles …" : "Erabiltzaileak, taldeak, zirkuluak... bilatzen",
"(Circle)" : "(Zirkulua)",
"Assign to users/groups/circles" : "Esleitu erabiltzaile/talde/zirkuluei",

View File

@@ -117,12 +117,13 @@ OC.L10N.register(
"Select the board to link to a project" : "تخته‌ای را برای ایجاد پیوند با یک پروژه انتخاب کنید",
"Search by board title" : "جستجو بر اساس عنوان تخته",
"Select board" : "انتخاب تخته",
"Move card to another board" : "انتقال برگه به تخته‌ای دیگر",
"Select a board" : "انتخاب یک تخته",
"No lists available" : "هیچ فهرستی در دسترس نیست",
"Select a list" : "یک فهرست برگزینید",
"Move card" : "انتقال برگه",
"Select a card" : "انتخاب یک برگه",
"Cancel" : "لغو",
"Select a card" : "انتخاب یک برگه",
"Select the card to link to a project" : "برگه‌ای را برای ایجاد پیوند با یک پروژه انتخاب کنید",
"Link to card" : "پیوند به برگه",
"File already exists" : "پرونده از قبل موجود است",
@@ -245,7 +246,6 @@ OC.L10N.register(
"Todo items" : "Todo items",
"{count} comments, {unread} unread" : "{count} نظر، { خوانده نشده} خوانده نشده",
"Edit card title" : "Edit card title",
"Edit title" : "ویرایش عنوان",
"Assign to me" : "به من اختصاص دهید",
"Unassign myself" : "واگذاری به خودم را لغو می‌کنم",
"Delete card" : "حذف برگه",
@@ -287,9 +287,6 @@ OC.L10N.register(
"An error occurred" : "خطایی روی داد",
"Are you sure you want to delete the board {title}? This will delete all the data of this board including archived cards." : "Are you sure you want to delete the board {title}? This will delete all the data of this board including archived cards.",
"Delete the board?" : "Delete the board?",
"Clone cards" : "شبیه سازی کارت",
"Advanced options" : "گزینه‌های پیش‌رفته",
"Clone" : "شبیه سازی",
"Loading filtered view" : "Loading filtered view",
"Today" : "Today",
"Tomorrow" : "فردا",
@@ -327,7 +324,6 @@ OC.L10N.register(
"Share with a Deck card" : "Share with a Deck card",
"Share {file} with a Deck card" : "Share {file} with a Deck card",
"Share" : "هم‌رسانی",
"Move card to another board" : "انتقال برگه به تخته‌ای دیگر",
"Searching for users, groups and circles …" : "جستجوی کاربران، گروه‌ها و حلقه‌ها…",
"(Circle)" : "(حلقه)",
"Assign to users/groups/circles" : "به کاربران/ گروه‌ها/ حلقه‌ها اختصاص دهید"

View File

@@ -115,12 +115,13 @@
"Select the board to link to a project" : "تخته‌ای را برای ایجاد پیوند با یک پروژه انتخاب کنید",
"Search by board title" : "جستجو بر اساس عنوان تخته",
"Select board" : "انتخاب تخته",
"Move card to another board" : "انتقال برگه به تخته‌ای دیگر",
"Select a board" : "انتخاب یک تخته",
"No lists available" : "هیچ فهرستی در دسترس نیست",
"Select a list" : "یک فهرست برگزینید",
"Move card" : "انتقال برگه",
"Select a card" : "انتخاب یک برگه",
"Cancel" : "لغو",
"Select a card" : "انتخاب یک برگه",
"Select the card to link to a project" : "برگه‌ای را برای ایجاد پیوند با یک پروژه انتخاب کنید",
"Link to card" : "پیوند به برگه",
"File already exists" : "پرونده از قبل موجود است",
@@ -243,7 +244,6 @@
"Todo items" : "Todo items",
"{count} comments, {unread} unread" : "{count} نظر، { خوانده نشده} خوانده نشده",
"Edit card title" : "Edit card title",
"Edit title" : "ویرایش عنوان",
"Assign to me" : "به من اختصاص دهید",
"Unassign myself" : "واگذاری به خودم را لغو می‌کنم",
"Delete card" : "حذف برگه",
@@ -285,9 +285,6 @@
"An error occurred" : "خطایی روی داد",
"Are you sure you want to delete the board {title}? This will delete all the data of this board including archived cards." : "Are you sure you want to delete the board {title}? This will delete all the data of this board including archived cards.",
"Delete the board?" : "Delete the board?",
"Clone cards" : "شبیه سازی کارت",
"Advanced options" : "گزینه‌های پیش‌رفته",
"Clone" : "شبیه سازی",
"Loading filtered view" : "Loading filtered view",
"Today" : "Today",
"Tomorrow" : "فردا",
@@ -325,7 +322,6 @@
"Share with a Deck card" : "Share with a Deck card",
"Share {file} with a Deck card" : "Share {file} with a Deck card",
"Share" : "هم‌رسانی",
"Move card to another board" : "انتقال برگه به تخته‌ای دیگر",
"Searching for users, groups and circles …" : "جستجوی کاربران، گروه‌ها و حلقه‌ها…",
"(Circle)" : "(حلقه)",
"Assign to users/groups/circles" : "به کاربران/ گروه‌ها/ حلقه‌ها اختصاص دهید"

View File

@@ -94,12 +94,13 @@ OC.L10N.register(
"Select the board to link to a project" : "Valitse projektiin linkitettävä taulu",
"Search by board title" : "Hae taulun otsikon mukaan",
"Select board" : "Valitse taulu",
"Move card to another board" : "Siirrä kortti toiselle taululle",
"Select a board" : "Valitse taulu",
"No lists available" : "Ei listoja saatavilla",
"Select a list" : "Valitse lista ",
"Move card" : "Siirrä kortti",
"Select a card" : "Valitse kortti",
"Cancel" : "Peruuta",
"Select a card" : "Valitse kortti",
"Select the card to link to a project" : "Valitse projektiin linkitettävä kortti",
"Link to card" : "Linkitä korttiin",
"File already exists" : "Tiedosto on jo olemassa",
@@ -217,7 +218,6 @@ OC.L10N.register(
"Next week {timeLocale}" : "Ensi viikko {timeLocale}",
"{count} comments, {unread} unread" : "{count} kommenttia, {unread} lukematonta",
"Edit card title" : "Muokkaa kortin otsikkoa",
"Edit title" : "Muokkaa otsikkoa",
"Assign to me" : "Määritä minulle",
"Unassign myself" : "Poista määritys minulta",
"Delete card" : "Poista kortti",
@@ -249,9 +249,6 @@ OC.L10N.register(
"An error occurred" : "Tapahtui virhe",
"Are you sure you want to delete the board {title}? This will delete all the data of this board including archived cards." : "Haluatko varmasti poistaa taulun {title}? Tämä poistaa kaikki taulun tiedot, mukaan lukien arkistoidut kortit.",
"Delete the board?" : "Poistetaanko tämä taulu?",
"Clone cards" : "Kloonaa kortteja",
"Advanced options" : "Lisävalinnat",
"Clone" : "Kloonaa",
"Today" : "Tänään",
"Tomorrow" : "Huomenna",
"Search for {searchQuery} in all boards" : "Hae ehtoja {searchQuery} kaikilta tauluilta",
@@ -281,7 +278,6 @@ OC.L10N.register(
"Maximum file size of {size} exceeded" : "Tiedoston enimmäiskoko {size} ylitetty",
"Error creating the share" : "Virhe jakoa luotaessa",
"Share" : "Jaa",
"Move card to another board" : "Siirrä kortti toiselle taululle",
"(Circle)" : "(Piiri)"
},
"nplurals=2; plural=(n != 1);");

View File

@@ -92,12 +92,13 @@
"Select the board to link to a project" : "Valitse projektiin linkitettävä taulu",
"Search by board title" : "Hae taulun otsikon mukaan",
"Select board" : "Valitse taulu",
"Move card to another board" : "Siirrä kortti toiselle taululle",
"Select a board" : "Valitse taulu",
"No lists available" : "Ei listoja saatavilla",
"Select a list" : "Valitse lista ",
"Move card" : "Siirrä kortti",
"Select a card" : "Valitse kortti",
"Cancel" : "Peruuta",
"Select a card" : "Valitse kortti",
"Select the card to link to a project" : "Valitse projektiin linkitettävä kortti",
"Link to card" : "Linkitä korttiin",
"File already exists" : "Tiedosto on jo olemassa",
@@ -215,7 +216,6 @@
"Next week {timeLocale}" : "Ensi viikko {timeLocale}",
"{count} comments, {unread} unread" : "{count} kommenttia, {unread} lukematonta",
"Edit card title" : "Muokkaa kortin otsikkoa",
"Edit title" : "Muokkaa otsikkoa",
"Assign to me" : "Määritä minulle",
"Unassign myself" : "Poista määritys minulta",
"Delete card" : "Poista kortti",
@@ -247,9 +247,6 @@
"An error occurred" : "Tapahtui virhe",
"Are you sure you want to delete the board {title}? This will delete all the data of this board including archived cards." : "Haluatko varmasti poistaa taulun {title}? Tämä poistaa kaikki taulun tiedot, mukaan lukien arkistoidut kortit.",
"Delete the board?" : "Poistetaanko tämä taulu?",
"Clone cards" : "Kloonaa kortteja",
"Advanced options" : "Lisävalinnat",
"Clone" : "Kloonaa",
"Today" : "Tänään",
"Tomorrow" : "Huomenna",
"Search for {searchQuery} in all boards" : "Hae ehtoja {searchQuery} kaikilta tauluilta",
@@ -279,7 +276,6 @@
"Maximum file size of {size} exceeded" : "Tiedoston enimmäiskoko {size} ylitetty",
"Error creating the share" : "Virhe jakoa luotaessa",
"Share" : "Jaa",
"Move card to another board" : "Siirrä kortti toiselle taululle",
"(Circle)" : "(Piiri)"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@@ -125,14 +125,13 @@ OC.L10N.register(
"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",
"Select board" : "Sélectionner le tableau",
"Move/copy card" : "Déplacer/copier la carte",
"Move card to another board" : "Déplacer la carte vers un autre tableau ",
"Select a board" : "Sélectionner un tableau",
"No lists available" : "Aucune liste disponible",
"Select a list" : "Sélectionner une liste",
"Move card" : "Déplacer la carte",
"Copy card" : "Copier la carte",
"Select a card" : "Sélectionnez une carte",
"Cancel" : "Annuler",
"Select a card" : "Sélectionnez une carte",
"Select the card to link to a project" : "Sélectionner la carte à relier à un projet",
"Link to card" : "Relier à une carte",
"File already exists" : "Le fichier existe déjà",
@@ -276,8 +275,6 @@ OC.L10N.register(
"Todo items" : "À faire",
"{count} comments, {unread} unread" : "{count} commentaires, {unread} non lus",
"Edit card title" : "Modifier le titre de la carte",
"Open link" : "Ouvrir le lien",
"Edit title" : "Modifier le titre",
"Assign to me" : "Me l'affecter",
"Unassign myself" : "Me désaffecter",
"Mark as not done" : "Marquer comme non fait",
@@ -340,9 +337,6 @@ OC.L10N.register(
"An error occurred" : "Une erreur est survenue",
"Are you sure you want to delete the board {title}? This will delete all the data of this board including archived cards." : "Êtes-vous sûr de vouloir supprimer le tableau {title} ? Cela supprimera toutes les données de ce tableau, y compris les cartes archivées.",
"Delete the board?" : "Supprimer le tableau ?",
"Clone cards" : "Dupliquer des cartes",
"Advanced options" : "Options avancées",
"Clone" : "Dupliquer",
"Loading filtered view" : "Chargement de la vue filtrée",
"Today" : "Aujourd'hui",
"Tomorrow" : "Demain",
@@ -382,7 +376,6 @@ OC.L10N.register(
"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",
"Move card to another board" : "Déplacer la carte vers un autre tableau ",
"Searching for users, groups and circles …" : "Recherche d'utilisateurs, de groupes et de cercles ...",
"(Circle)" : "(Cercle)",
"Assign to users/groups/circles" : "Attribuer à des utilisateurs / groupes / cercles",

View File

@@ -123,14 +123,13 @@
"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",
"Select board" : "Sélectionner le tableau",
"Move/copy card" : "Déplacer/copier la carte",
"Move card to another board" : "Déplacer la carte vers un autre tableau ",
"Select a board" : "Sélectionner un tableau",
"No lists available" : "Aucune liste disponible",
"Select a list" : "Sélectionner une liste",
"Move card" : "Déplacer la carte",
"Copy card" : "Copier la carte",
"Select a card" : "Sélectionnez une carte",
"Cancel" : "Annuler",
"Select a card" : "Sélectionnez une carte",
"Select the card to link to a project" : "Sélectionner la carte à relier à un projet",
"Link to card" : "Relier à une carte",
"File already exists" : "Le fichier existe déjà",
@@ -274,8 +273,6 @@
"Todo items" : "À faire",
"{count} comments, {unread} unread" : "{count} commentaires, {unread} non lus",
"Edit card title" : "Modifier le titre de la carte",
"Open link" : "Ouvrir le lien",
"Edit title" : "Modifier le titre",
"Assign to me" : "Me l'affecter",
"Unassign myself" : "Me désaffecter",
"Mark as not done" : "Marquer comme non fait",
@@ -338,9 +335,6 @@
"An error occurred" : "Une erreur est survenue",
"Are you sure you want to delete the board {title}? This will delete all the data of this board including archived cards." : "Êtes-vous sûr de vouloir supprimer le tableau {title} ? Cela supprimera toutes les données de ce tableau, y compris les cartes archivées.",
"Delete the board?" : "Supprimer le tableau ?",
"Clone cards" : "Dupliquer des cartes",
"Advanced options" : "Options avancées",
"Clone" : "Dupliquer",
"Loading filtered view" : "Chargement de la vue filtrée",
"Today" : "Aujourd'hui",
"Tomorrow" : "Demain",
@@ -380,7 +374,6 @@
"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",
"Move card to another board" : "Déplacer la carte vers un autre tableau ",
"Searching for users, groups and circles …" : "Recherche d'utilisateurs, de groupes et de cercles ...",
"(Circle)" : "(Cercle)",
"Assign to users/groups/circles" : "Attribuer à des utilisateurs / groupes / cercles",

View File

@@ -125,14 +125,13 @@ OC.L10N.register(
"Select the board to link to a project" : "Roghnaigh an clár chun nasc a dhéanamh le tionscadal",
"Search by board title" : "Cuardaigh de réir teideal an bhoird",
"Select board" : "Roghnaigh bord",
"Move/copy card" : "Bog/cóipeáil an cárta",
"Move card to another board" : "Bog cárta go bord eile",
"Select a board" : "Roghnaigh bord",
"No lists available" : "Níl aon liostaí ar fáil",
"Select a list" : "Roghnaigh liosta",
"Move card" : "Bog cárta",
"Copy card" : "Cóip cárta",
"Select a card" : "Roghnaigh cárta",
"Cancel" : "Cealaigh",
"Select a card" : "Roghnaigh cárta",
"Select the card to link to a project" : "Roghnaigh an cárta chun nascadh le tionscadal",
"Link to card" : "Nasc le cárta",
"File already exists" : "Tá an comhad ann cheana féin",
@@ -276,8 +275,6 @@ OC.L10N.register(
"Todo items" : "Míreanna le déanamh",
"{count} comments, {unread} unread" : "{count} nóta tráchta, {unread} neamhléite",
"Edit card title" : "Cuir teideal an chárta in eagar",
"Open link" : "Oscail nasc",
"Edit title" : "Cuir teideal in eagar",
"Assign to me" : "Sann dom",
"Unassign myself" : "Díshannadh mé féin",
"Mark as not done" : "Marcáil mar nach bhfuil déanta",
@@ -340,15 +337,6 @@ OC.L10N.register(
"An error occurred" : "Tharla earráid",
"Are you sure you want to delete the board {title}? This will delete all the data of this board including archived cards." : "An bhfuil tú cinnte gur mhaith leat an clár {title} a scriosadh? Scriosfaidh sé seo sonraí uile an bhoird seo lena n-áirítear cártaí cartlainne.",
"Delete the board?" : "An bhfuil fonn ort an clár a scriosadh?",
"Clone {boardTitle}" : "Clón {boardTitle}",
"Clone cards" : "Cártaí clón",
"Clone assignments" : "Tascanna Clón",
"Clone labels" : "Lipéid Clón",
"Clone due dates" : "Dátaí dlite Clón",
"Advanced options" : "Ardroghanna",
"Move all cards to the first list" : "Bog na cártaí go léir chuig an gcéad liosta",
"Restore archived cards" : "Athchóirigh cártaí gcartlann",
"Clone" : "Clón",
"Loading filtered view" : "Amharc scagtha á lódáil",
"Today" : "Inniu",
"Tomorrow" : "Amárach",
@@ -388,7 +376,6 @@ OC.L10N.register(
"Share with a Deck card" : "Comhroinn le cárta Deic",
"Share {file} with a Deck card" : "Roinn {file} le cárta Deic",
"Share" : "Comhroinn",
"Move card to another board" : "Bog cárta go bord eile",
"Searching for users, groups and circles …" : "Ag cuardach úsáideoirí, grúpaí agus ciorcail…",
"(Circle)" : "(Ciorcal)",
"Assign to users/groups/circles" : "Sann d'úsáideoirí/grúpaí/ciorcail",

View File

@@ -123,14 +123,13 @@
"Select the board to link to a project" : "Roghnaigh an clár chun nasc a dhéanamh le tionscadal",
"Search by board title" : "Cuardaigh de réir teideal an bhoird",
"Select board" : "Roghnaigh bord",
"Move/copy card" : "Bog/cóipeáil an cárta",
"Move card to another board" : "Bog cárta go bord eile",
"Select a board" : "Roghnaigh bord",
"No lists available" : "Níl aon liostaí ar fáil",
"Select a list" : "Roghnaigh liosta",
"Move card" : "Bog cárta",
"Copy card" : "Cóip cárta",
"Select a card" : "Roghnaigh cárta",
"Cancel" : "Cealaigh",
"Select a card" : "Roghnaigh cárta",
"Select the card to link to a project" : "Roghnaigh an cárta chun nascadh le tionscadal",
"Link to card" : "Nasc le cárta",
"File already exists" : "Tá an comhad ann cheana féin",
@@ -274,8 +273,6 @@
"Todo items" : "Míreanna le déanamh",
"{count} comments, {unread} unread" : "{count} nóta tráchta, {unread} neamhléite",
"Edit card title" : "Cuir teideal an chárta in eagar",
"Open link" : "Oscail nasc",
"Edit title" : "Cuir teideal in eagar",
"Assign to me" : "Sann dom",
"Unassign myself" : "Díshannadh mé féin",
"Mark as not done" : "Marcáil mar nach bhfuil déanta",
@@ -338,15 +335,6 @@
"An error occurred" : "Tharla earráid",
"Are you sure you want to delete the board {title}? This will delete all the data of this board including archived cards." : "An bhfuil tú cinnte gur mhaith leat an clár {title} a scriosadh? Scriosfaidh sé seo sonraí uile an bhoird seo lena n-áirítear cártaí cartlainne.",
"Delete the board?" : "An bhfuil fonn ort an clár a scriosadh?",
"Clone {boardTitle}" : "Clón {boardTitle}",
"Clone cards" : "Cártaí clón",
"Clone assignments" : "Tascanna Clón",
"Clone labels" : "Lipéid Clón",
"Clone due dates" : "Dátaí dlite Clón",
"Advanced options" : "Ardroghanna",
"Move all cards to the first list" : "Bog na cártaí go léir chuig an gcéad liosta",
"Restore archived cards" : "Athchóirigh cártaí gcartlann",
"Clone" : "Clón",
"Loading filtered view" : "Amharc scagtha á lódáil",
"Today" : "Inniu",
"Tomorrow" : "Amárach",
@@ -386,7 +374,6 @@
"Share with a Deck card" : "Comhroinn le cárta Deic",
"Share {file} with a Deck card" : "Roinn {file} le cárta Deic",
"Share" : "Comhroinn",
"Move card to another board" : "Bog cárta go bord eile",
"Searching for users, groups and circles …" : "Ag cuardach úsáideoirí, grúpaí agus ciorcail…",
"(Circle)" : "(Ciorcal)",
"Assign to users/groups/circles" : "Sann d'úsáideoirí/grúpaí/ciorcail",

View File

@@ -125,14 +125,13 @@ OC.L10N.register(
"Select the board to link to a project" : "Seleccione o taboleiro para ligar a un proxecto",
"Search by board title" : "Buscar polo título do taboleiro",
"Select board" : "Seleccionar taboleiro",
"Move/copy card" : "Mover/copiar a tarxeta",
"Move card to another board" : "Mover a tarxeta a outro taboleiro",
"Select a board" : "Seleccione un taboleiro",
"No lists available" : "Non hai listas dispoñíbeis",
"Select a list" : "Seleccionar unha lista",
"Move card" : "Mover a tarxeta",
"Copy card" : "Copiar a tarxeta",
"Select a card" : "Seleccione unha tarxeta",
"Cancel" : "Cancelar",
"Select a card" : "Seleccione unha tarxeta",
"Select the card to link to a project" : "Seleccione a tarxeta para ligar a un proxecto",
"Link to card" : "Ligazón á tarxeta",
"File already exists" : "O ficheiro xa existe",
@@ -184,7 +183,7 @@ OC.L10N.register(
"Deleted cards" : "Eliminar tarxetas",
"Share board with a user, group or team …" : "Compartir taboleiro cun usuario, grupo ou equipo…",
"Searching for users, groups and teams …" : "Buscando por usuarios, grupos e equipos…",
"No participants found" : "Non se atopou ningún participante",
"No participants found" : "Non se atoparon participantes",
"Board owner" : "Propietariio do taboleiro",
"(Group)" : "(Grupo)",
"(Team)" : "(Equipo)",
@@ -276,8 +275,6 @@ OC.L10N.register(
"Todo items" : "Elementos pendentes",
"{count} comments, {unread} unread" : "{count} comentarios, {unread} sen ler",
"Edit card title" : "Editar o título da tarxeta",
"Open link" : "Abrir a ligazón",
"Edit title" : "Editar o título",
"Assign to me" : "Asignarme",
"Unassign myself" : "Desasignarme",
"Mark as not done" : "Marcar como sen facer",
@@ -340,21 +337,12 @@ OC.L10N.register(
"An error occurred" : "Produciuse un erro",
"Are you sure you want to delete the board {title}? This will delete all the data of this board including archived cards." : "Confirma que quere eliminar o taboleiro {title}? Isto eliminará todos os datos deste taboleiro, incluídas as tarxetas arquivadas.",
"Delete the board?" : "Eliminar o taboleiro?",
"Clone {boardTitle}" : "Clonar {boardTitle}",
"Clone cards" : "Clonar tarxetas",
"Clone assignments" : "Clonar as asignacións",
"Clone labels" : "Clonar as etiquetas",
"Clone due dates" : "Clonar as datas de caducidade",
"Advanced options" : "Opcións avanzadas",
"Move all cards to the first list" : "Mover todas as tarxetas á primeira lista",
"Restore archived cards" : "Restaurar as tarxetas arquivadas",
"Clone" : "Clonar",
"Loading filtered view" : "Cargando a vista filtrada",
"Today" : "Hoxe",
"Tomorrow" : "Mañá",
"No due" : "Sen caducidade",
"Search for {searchQuery} in all boards" : "Resultados de busca para {searchQuery} en todos os taboleiros",
"No results found" : "Non se atopou ningún resultado",
"No results found" : "Non se atoparon resultados",
"Deck board {name}\n* Last modified on {lastMod}" : "Taboleiro da Gabeta {name}\n* Última modificación en {lastMod}",
"{stack} in {board}" : "{stack} en {board}",
"Click to expand description" : "Prema para despregar a descrición",
@@ -388,7 +376,6 @@ OC.L10N.register(
"Share with a Deck card" : "Compartir cunha tarxeta da Gabeta",
"Share {file} with a Deck card" : "Compartir {file} cunha tarxeta da Gabeta",
"Share" : "Compartir",
"Move card to another board" : "Mover a tarxeta a outro taboleiro",
"Searching for users, groups and circles …" : "Buscando por usuarios, grupos e círculos…",
"(Circle)" : "(Círculo)",
"Assign to users/groups/circles" : "Asignar a usuarios/grupos/círculos",

View File

@@ -123,14 +123,13 @@
"Select the board to link to a project" : "Seleccione o taboleiro para ligar a un proxecto",
"Search by board title" : "Buscar polo título do taboleiro",
"Select board" : "Seleccionar taboleiro",
"Move/copy card" : "Mover/copiar a tarxeta",
"Move card to another board" : "Mover a tarxeta a outro taboleiro",
"Select a board" : "Seleccione un taboleiro",
"No lists available" : "Non hai listas dispoñíbeis",
"Select a list" : "Seleccionar unha lista",
"Move card" : "Mover a tarxeta",
"Copy card" : "Copiar a tarxeta",
"Select a card" : "Seleccione unha tarxeta",
"Cancel" : "Cancelar",
"Select a card" : "Seleccione unha tarxeta",
"Select the card to link to a project" : "Seleccione a tarxeta para ligar a un proxecto",
"Link to card" : "Ligazón á tarxeta",
"File already exists" : "O ficheiro xa existe",
@@ -182,7 +181,7 @@
"Deleted cards" : "Eliminar tarxetas",
"Share board with a user, group or team …" : "Compartir taboleiro cun usuario, grupo ou equipo…",
"Searching for users, groups and teams …" : "Buscando por usuarios, grupos e equipos…",
"No participants found" : "Non se atopou ningún participante",
"No participants found" : "Non se atoparon participantes",
"Board owner" : "Propietariio do taboleiro",
"(Group)" : "(Grupo)",
"(Team)" : "(Equipo)",
@@ -274,8 +273,6 @@
"Todo items" : "Elementos pendentes",
"{count} comments, {unread} unread" : "{count} comentarios, {unread} sen ler",
"Edit card title" : "Editar o título da tarxeta",
"Open link" : "Abrir a ligazón",
"Edit title" : "Editar o título",
"Assign to me" : "Asignarme",
"Unassign myself" : "Desasignarme",
"Mark as not done" : "Marcar como sen facer",
@@ -338,21 +335,12 @@
"An error occurred" : "Produciuse un erro",
"Are you sure you want to delete the board {title}? This will delete all the data of this board including archived cards." : "Confirma que quere eliminar o taboleiro {title}? Isto eliminará todos os datos deste taboleiro, incluídas as tarxetas arquivadas.",
"Delete the board?" : "Eliminar o taboleiro?",
"Clone {boardTitle}" : "Clonar {boardTitle}",
"Clone cards" : "Clonar tarxetas",
"Clone assignments" : "Clonar as asignacións",
"Clone labels" : "Clonar as etiquetas",
"Clone due dates" : "Clonar as datas de caducidade",
"Advanced options" : "Opcións avanzadas",
"Move all cards to the first list" : "Mover todas as tarxetas á primeira lista",
"Restore archived cards" : "Restaurar as tarxetas arquivadas",
"Clone" : "Clonar",
"Loading filtered view" : "Cargando a vista filtrada",
"Today" : "Hoxe",
"Tomorrow" : "Mañá",
"No due" : "Sen caducidade",
"Search for {searchQuery} in all boards" : "Resultados de busca para {searchQuery} en todos os taboleiros",
"No results found" : "Non se atopou ningún resultado",
"No results found" : "Non se atoparon resultados",
"Deck board {name}\n* Last modified on {lastMod}" : "Taboleiro da Gabeta {name}\n* Última modificación en {lastMod}",
"{stack} in {board}" : "{stack} en {board}",
"Click to expand description" : "Prema para despregar a descrición",
@@ -386,7 +374,6 @@
"Share with a Deck card" : "Compartir cunha tarxeta da Gabeta",
"Share {file} with a Deck card" : "Compartir {file} cunha tarxeta da Gabeta",
"Share" : "Compartir",
"Move card to another board" : "Mover a tarxeta a outro taboleiro",
"Searching for users, groups and circles …" : "Buscando por usuarios, grupos e círculos…",
"(Circle)" : "(Círculo)",
"Assign to users/groups/circles" : "Asignar a usuarios/grupos/círculos",

View File

@@ -107,12 +107,13 @@ OC.L10N.register(
"Select the board to link to a project" : "נא לבחור את הלוח לקישור למיזם",
"Search by board title" : "חיפוש לפי כותרת לו",
"Select board" : "בחירת לוח",
"Move card to another board" : "העברת כרטיס ללוח אחר",
"Select a board" : "נא לבחור לוח",
"No lists available" : "אין רשימות זמינות",
"Select a list" : "בחר רשימה",
"Move card" : "העברת כרטיס",
"Select a card" : "נא לבחור כרטיס",
"Cancel" : "ביטול",
"Select a card" : "נא לבחור כרטיס",
"Select the card to link to a project" : "נא לבחור את הכרטיס לקישור למיזם",
"Link to card" : "קישור לכרטיס",
"File already exists" : "הקובץ כבר קיים",
@@ -216,7 +217,6 @@ OC.L10N.register(
"Select Date" : "בחירת תאריך",
"Assign a tag to this card…" : "הקצאת תגית לכרטיס זה…",
"(group)" : "(קבוצה)",
"Edit title" : "עריכת כותרת",
"Assign to me" : "הקצאה אלי",
"Unassign myself" : "לבטל את הקצאת עצמי",
"Delete card" : "מחיקת כרטיס לארכיון",
@@ -250,7 +250,6 @@ OC.L10N.register(
"No reminder" : "אין תזכורת",
"An error occurred" : "אירעה שגיאה",
"Delete the board?" : "למחוק את הלוח הזה?",
"Advanced options" : "אפשרויות מתקדמות",
"Loading filtered view" : "טוען תצוגה מסוננת",
"Today" : "היום",
"Tomorrow" : "מחר",
@@ -269,7 +268,6 @@ OC.L10N.register(
"Share with a Deck card" : "שיתוף עם כרטיס חפיסה",
"Share {file} with a Deck card" : "שיתוף {file} עם כרטיס חפיסה",
"Share" : "שיתוף",
"Move card to another board" : "העברת כרטיס ללוח אחר",
"Searching for users, groups and circles …" : "מחפש משתמשים, קבוצות, ומעגלים ...",
"(Circle)" : "(מעגל)",
"Assign to users/groups/circles" : "הקצאה למשתמשים/קבוצות/מעגלים"

View File

@@ -105,12 +105,13 @@
"Select the board to link to a project" : "נא לבחור את הלוח לקישור למיזם",
"Search by board title" : "חיפוש לפי כותרת לו",
"Select board" : "בחירת לוח",
"Move card to another board" : "העברת כרטיס ללוח אחר",
"Select a board" : "נא לבחור לוח",
"No lists available" : "אין רשימות זמינות",
"Select a list" : "בחר רשימה",
"Move card" : "העברת כרטיס",
"Select a card" : "נא לבחור כרטיס",
"Cancel" : "ביטול",
"Select a card" : "נא לבחור כרטיס",
"Select the card to link to a project" : "נא לבחור את הכרטיס לקישור למיזם",
"Link to card" : "קישור לכרטיס",
"File already exists" : "הקובץ כבר קיים",
@@ -214,7 +215,6 @@
"Select Date" : "בחירת תאריך",
"Assign a tag to this card…" : "הקצאת תגית לכרטיס זה…",
"(group)" : "(קבוצה)",
"Edit title" : "עריכת כותרת",
"Assign to me" : "הקצאה אלי",
"Unassign myself" : "לבטל את הקצאת עצמי",
"Delete card" : "מחיקת כרטיס לארכיון",
@@ -248,7 +248,6 @@
"No reminder" : "אין תזכורת",
"An error occurred" : "אירעה שגיאה",
"Delete the board?" : "למחוק את הלוח הזה?",
"Advanced options" : "אפשרויות מתקדמות",
"Loading filtered view" : "טוען תצוגה מסוננת",
"Today" : "היום",
"Tomorrow" : "מחר",
@@ -267,7 +266,6 @@
"Share with a Deck card" : "שיתוף עם כרטיס חפיסה",
"Share {file} with a Deck card" : "שיתוף {file} עם כרטיס חפיסה",
"Share" : "שיתוף",
"Move card to another board" : "העברת כרטיס ללוח אחר",
"Searching for users, groups and circles …" : "מחפש משתמשים, קבוצות, ומעגלים ...",
"(Circle)" : "(מעגל)",
"Assign to users/groups/circles" : "הקצאה למשתמשים/קבוצות/מעגלים"

View File

@@ -110,12 +110,13 @@ OC.L10N.register(
"Select the board to link to a project" : "Odaberite ploču za povezivanje s projektom",
"Search by board title" : "Traži po naslovu ploče",
"Select board" : "Odaberi ploču",
"Move card to another board" : "Premjesti karticu na drugu ploču",
"Select a board" : "Odaberite ploču",
"No lists available" : "Nema dostupnih popisa",
"Select a list" : "Odaberi popis",
"Move card" : "Premjesti karticu",
"Select a card" : "Odaberite karticu",
"Cancel" : "Odustani",
"Select a card" : "Odaberite karticu",
"Select the card to link to a project" : "Odaberite karticu za povezivanje s projektom",
"Link to card" : "Poveznica na karticu",
"File already exists" : "Datoteka već postoji",
@@ -223,7 +224,6 @@ OC.L10N.register(
"Assign a tag to this card…" : "Dodijeli oznaku ovoj kartici...",
"(group)" : "(grupa)",
"{count} comments, {unread} unread" : "{count} komentara, {unread} nepročitanih",
"Edit title" : "Uredi naslov",
"Assign to me" : "Dodijeli meni",
"Unassign myself" : "Ukloni sebe",
"Delete card" : "Izbriši karticu",
@@ -257,9 +257,6 @@ OC.L10N.register(
"No reminder" : "Nema podsjetnika",
"An error occurred" : "Došlo je do pogreške",
"Delete the board?" : "Želite li izbrisati ploču?",
"Clone cards" : "Kloniraj kartice",
"Advanced options" : "Napredne opcije",
"Clone" : "Kloniraj",
"Loading filtered view" : "Učitavanje filtriranog prikaza",
"Today" : "Danas",
"Tomorrow" : "Sutra",
@@ -287,7 +284,6 @@ OC.L10N.register(
"Share with a Deck card" : "Dijeli s Deck karticom",
"Share {file} with a Deck card" : "Dijeli {file} s Deck karticom",
"Share" : "Dijeli",
"Move card to another board" : "Premjesti karticu na drugu ploču",
"Searching for users, groups and circles …" : "Traženje korisnika, grupa i krugova...",
"(Circle)" : "(Krug)",
"Assign to users/groups/circles" : "Dodijeli korisnicima/grupama/krugovima"

View File

@@ -108,12 +108,13 @@
"Select the board to link to a project" : "Odaberite ploču za povezivanje s projektom",
"Search by board title" : "Traži po naslovu ploče",
"Select board" : "Odaberi ploču",
"Move card to another board" : "Premjesti karticu na drugu ploču",
"Select a board" : "Odaberite ploču",
"No lists available" : "Nema dostupnih popisa",
"Select a list" : "Odaberi popis",
"Move card" : "Premjesti karticu",
"Select a card" : "Odaberite karticu",
"Cancel" : "Odustani",
"Select a card" : "Odaberite karticu",
"Select the card to link to a project" : "Odaberite karticu za povezivanje s projektom",
"Link to card" : "Poveznica na karticu",
"File already exists" : "Datoteka već postoji",
@@ -221,7 +222,6 @@
"Assign a tag to this card…" : "Dodijeli oznaku ovoj kartici...",
"(group)" : "(grupa)",
"{count} comments, {unread} unread" : "{count} komentara, {unread} nepročitanih",
"Edit title" : "Uredi naslov",
"Assign to me" : "Dodijeli meni",
"Unassign myself" : "Ukloni sebe",
"Delete card" : "Izbriši karticu",
@@ -255,9 +255,6 @@
"No reminder" : "Nema podsjetnika",
"An error occurred" : "Došlo je do pogreške",
"Delete the board?" : "Želite li izbrisati ploču?",
"Clone cards" : "Kloniraj kartice",
"Advanced options" : "Napredne opcije",
"Clone" : "Kloniraj",
"Loading filtered view" : "Učitavanje filtriranog prikaza",
"Today" : "Danas",
"Tomorrow" : "Sutra",
@@ -285,7 +282,6 @@
"Share with a Deck card" : "Dijeli s Deck karticom",
"Share {file} with a Deck card" : "Dijeli {file} s Deck karticom",
"Share" : "Dijeli",
"Move card to another board" : "Premjesti karticu na drugu ploču",
"Searching for users, groups and circles …" : "Traženje korisnika, grupa i krugova...",
"(Circle)" : "(Krug)",
"Assign to users/groups/circles" : "Dodijeli korisnicima/grupama/krugovima"

View File

@@ -121,12 +121,13 @@ OC.L10N.register(
"Select the board to link to a project" : "Válasszon ki egy táblát, amely egy projektre fog hivatkozni",
"Search by board title" : "Keresés táblacím szerint",
"Select board" : "Válasszon táblát",
"Move card to another board" : "Kártya áthelyezése egy másik táblára",
"Select a board" : "Válasszon egy táblát",
"No lists available" : "Nincs elérhető lista",
"Select a list" : "Válasszon listát",
"Move card" : "Kártya áthelyezése",
"Select a card" : "Válasszon egy kártyát",
"Cancel" : "Mégse",
"Select a card" : "Válasszon egy kártyát",
"Select the card to link to a project" : "Válasszon ki egy kártyát, amely egy projektre fog hivatkozni",
"Link to card" : "Hivatkozás egy kártyára",
"File already exists" : "A fájl már létezik",
@@ -261,7 +262,6 @@ OC.L10N.register(
"Todo items" : "Teendő elemek",
"{count} comments, {unread} unread" : "{count} hozzászólás, {unread} olvasatlan",
"Edit card title" : "Kártyacím szerkesztése",
"Edit title" : "Cím szerkesztése",
"Assign to me" : "Hozzám rendelés",
"Unassign myself" : "Saját magam hozzárendelésének eltávolítása",
"Delete card" : "Kártya törlése",
@@ -303,9 +303,6 @@ OC.L10N.register(
"An error occurred" : "Hiba történt",
"Are you sure you want to delete the board {title}? This will delete all the data of this board including archived cards." : "Biztos, hogy törli a(z) {title} táblát? Ez törölni fogja a tábla összes adatát, köztük az archivált kártyákat is.",
"Delete the board?" : "Törli a táblát?",
"Clone cards" : "Kártyák klónozása",
"Advanced options" : "Speciális beállítások",
"Clone" : "Klónozás",
"Loading filtered view" : "Szűrt nézet betöltése",
"Today" : "Ma",
"Tomorrow" : "Holnap",
@@ -345,7 +342,6 @@ OC.L10N.register(
"Share with a Deck card" : "Megosztás kártyával",
"Share {file} with a Deck card" : "A(z) {file} megosztása egy kártyával",
"Share" : "Megosztás",
"Move card to another board" : "Kártya áthelyezése egy másik táblára",
"Searching for users, groups and circles …" : "Felhasználók, csoportok és körök keresése…",
"(Circle)" : "(Kör)",
"Assign to users/groups/circles" : "Felhasználókhoz/csoportokhoz/körökhöz rendelés"

View File

@@ -119,12 +119,13 @@
"Select the board to link to a project" : "Válasszon ki egy táblát, amely egy projektre fog hivatkozni",
"Search by board title" : "Keresés táblacím szerint",
"Select board" : "Válasszon táblát",
"Move card to another board" : "Kártya áthelyezése egy másik táblára",
"Select a board" : "Válasszon egy táblát",
"No lists available" : "Nincs elérhető lista",
"Select a list" : "Válasszon listát",
"Move card" : "Kártya áthelyezése",
"Select a card" : "Válasszon egy kártyát",
"Cancel" : "Mégse",
"Select a card" : "Válasszon egy kártyát",
"Select the card to link to a project" : "Válasszon ki egy kártyát, amely egy projektre fog hivatkozni",
"Link to card" : "Hivatkozás egy kártyára",
"File already exists" : "A fájl már létezik",
@@ -259,7 +260,6 @@
"Todo items" : "Teendő elemek",
"{count} comments, {unread} unread" : "{count} hozzászólás, {unread} olvasatlan",
"Edit card title" : "Kártyacím szerkesztése",
"Edit title" : "Cím szerkesztése",
"Assign to me" : "Hozzám rendelés",
"Unassign myself" : "Saját magam hozzárendelésének eltávolítása",
"Delete card" : "Kártya törlése",
@@ -301,9 +301,6 @@
"An error occurred" : "Hiba történt",
"Are you sure you want to delete the board {title}? This will delete all the data of this board including archived cards." : "Biztos, hogy törli a(z) {title} táblát? Ez törölni fogja a tábla összes adatát, köztük az archivált kártyákat is.",
"Delete the board?" : "Törli a táblát?",
"Clone cards" : "Kártyák klónozása",
"Advanced options" : "Speciális beállítások",
"Clone" : "Klónozás",
"Loading filtered view" : "Szűrt nézet betöltése",
"Today" : "Ma",
"Tomorrow" : "Holnap",
@@ -343,7 +340,6 @@
"Share with a Deck card" : "Megosztás kártyával",
"Share {file} with a Deck card" : "A(z) {file} megosztása egy kártyával",
"Share" : "Megosztás",
"Move card to another board" : "Kártya áthelyezése egy másik táblára",
"Searching for users, groups and circles …" : "Felhasználók, csoportok és körök keresése…",
"(Circle)" : "(Kör)",
"Assign to users/groups/circles" : "Felhasználókhoz/csoportokhoz/körökhöz rendelés"

View File

@@ -39,7 +39,6 @@ OC.L10N.register(
"Search" : "Cercar",
"Shared with you" : "Compartite con te",
"No notifications" : "Nulle notificationes",
"Advanced options" : "Optiones avantiate",
"Today" : "Hodie",
"Tomorrow" : "Deman",
"Close" : "Clauder",

View File

@@ -37,7 +37,6 @@
"Search" : "Cercar",
"Shared with you" : "Compartite con te",
"No notifications" : "Nulle notificationes",
"Advanced options" : "Optiones avantiate",
"Today" : "Hodie",
"Tomorrow" : "Deman",
"Close" : "Clauder",

View File

@@ -102,11 +102,12 @@ OC.L10N.register(
"Select the board to link to a project" : "Pilih papan untuk ditautkan ke proyek",
"Search by board title" : "Cari berdasarkan judul papan",
"Select board" : "Pilih papan",
"Move card to another board" : "Pindahkan kartu ke papan lain",
"Select a board" : "Pilih papan",
"Select a list" : "Pilih daftar",
"Move card" : "Pindahkan kartu",
"Select a card" : "Pilih kartu",
"Cancel" : "Membatalkan",
"Select a card" : "Pilih kartu",
"Select the card to link to a project" : "Pilih kartu untuk ditautkan ke proyek",
"Link to card" : "Tautan ke kartu",
"File already exists" : "Berkas sudah ada",
@@ -192,7 +193,6 @@ OC.L10N.register(
"Archive card" : "Mengarsipkan kartu",
"Assign a tag to this card…" : "Berikan tag pada kartu ini...",
"(group)" : "(grup)",
"Edit title" : "Edit judul",
"Assign to me" : "Tugaskan saya",
"Delete card" : "Hapus kartu",
"seconds ago" : "beberapa detik yang lalu",
@@ -213,9 +213,6 @@ OC.L10N.register(
"Board {0} deleted" : "{0} papan terhapus",
"An error occurred" : "Terjadi kesalahan",
"Delete the board?" : "Hapus papan?",
"Clone cards" : "Klona kartu",
"Advanced options" : "Opsi lanjutan",
"Clone" : "Klona",
"Today" : "Hari ini",
"Tomorrow" : "Besok",
"Click to expand comment" : "Klik untuk membuka komentar",
@@ -227,7 +224,6 @@ OC.L10N.register(
"Something went wrong" : "Ada yang salah",
"Maximum file size of {size} exceeded" : "Melampaui batas ukuran maksimal {size}",
"Share" : "Bagikan",
"Move card to another board" : "Pindahkan kartu ke papan lain",
"(Circle)" : "(Kelompok)",
"Assign to users/groups/circles" : "Penugasan kepada pengguna/grup/lingkaran"
},

View File

@@ -100,11 +100,12 @@
"Select the board to link to a project" : "Pilih papan untuk ditautkan ke proyek",
"Search by board title" : "Cari berdasarkan judul papan",
"Select board" : "Pilih papan",
"Move card to another board" : "Pindahkan kartu ke papan lain",
"Select a board" : "Pilih papan",
"Select a list" : "Pilih daftar",
"Move card" : "Pindahkan kartu",
"Select a card" : "Pilih kartu",
"Cancel" : "Membatalkan",
"Select a card" : "Pilih kartu",
"Select the card to link to a project" : "Pilih kartu untuk ditautkan ke proyek",
"Link to card" : "Tautan ke kartu",
"File already exists" : "Berkas sudah ada",
@@ -190,7 +191,6 @@
"Archive card" : "Mengarsipkan kartu",
"Assign a tag to this card…" : "Berikan tag pada kartu ini...",
"(group)" : "(grup)",
"Edit title" : "Edit judul",
"Assign to me" : "Tugaskan saya",
"Delete card" : "Hapus kartu",
"seconds ago" : "beberapa detik yang lalu",
@@ -211,9 +211,6 @@
"Board {0} deleted" : "{0} papan terhapus",
"An error occurred" : "Terjadi kesalahan",
"Delete the board?" : "Hapus papan?",
"Clone cards" : "Klona kartu",
"Advanced options" : "Opsi lanjutan",
"Clone" : "Klona",
"Today" : "Hari ini",
"Tomorrow" : "Besok",
"Click to expand comment" : "Klik untuk membuka komentar",
@@ -225,7 +222,6 @@
"Something went wrong" : "Ada yang salah",
"Maximum file size of {size} exceeded" : "Melampaui batas ukuran maksimal {size}",
"Share" : "Bagikan",
"Move card to another board" : "Pindahkan kartu ke papan lain",
"(Circle)" : "(Kelompok)",
"Assign to users/groups/circles" : "Penugasan kepada pengguna/grup/lingkaran"
},"pluralForm" :"nplurals=1; plural=0;"

View File

@@ -125,12 +125,13 @@ OC.L10N.register(
"Select the board to link to a project" : "Veldu borðið sem á að tengja við verkefnið",
"Search by board title" : "Leita eftir titli borðs",
"Select board" : "Veldu borð",
"Move card to another board" : "Færa spjald á annað borð",
"Select a board" : "Veldu borð",
"No lists available" : "Engir listar tiltækir",
"Select a list" : "Veldu lista",
"Move card" : "Færa spjald",
"Select a card" : "Veldu spjald",
"Cancel" : "Hætta við",
"Select a card" : "Veldu spjald",
"Select the card to link to a project" : "Veldu spjaldið sem á að tengja við verkefnið",
"Link to card" : "Tengill á spjald",
"File already exists" : "Skrá er þegar til",
@@ -265,7 +266,6 @@ OC.L10N.register(
"Todo items" : "Atriði á verkefnalista",
"{count} comments, {unread} unread" : "{count} athugasemdir, {unread} ólesnar",
"Edit card title" : "Breyta titli spjalds",
"Edit title" : "Breyta titli",
"Assign to me" : "Úthluta mér",
"Unassign myself" : "Aftengja úthlutun sjálfs mín",
"Mark as not done" : "Merkja sem ólokið",
@@ -308,9 +308,6 @@ OC.L10N.register(
"An error occurred" : "Villa kom upp",
"Are you sure you want to delete the board {title}? This will delete all the data of this board including archived cards." : "Ertu viss um að þú viljir eyða borðinu {title}?. Þetta mun eyða öllum gögnum í þessu borði, meðal annars spjöldum í geymslu.",
"Delete the board?" : "Eyða borðinu?",
"Clone cards" : "Klóna spjöld",
"Advanced options" : "Ítarlegir valkostir",
"Clone" : "Klóna",
"Loading filtered view" : "Hleð inn síaðri sýn",
"Today" : "Í dag",
"Tomorrow" : "Á morgun",
@@ -350,7 +347,6 @@ OC.L10N.register(
"Share with a Deck card" : "Deila með Deck-spjaldi",
"Share {file} with a Deck card" : "Deila {file} með Deck-spjaldi",
"Share" : "Deila",
"Move card to another board" : "Færa spjald á annað borð",
"Searching for users, groups and circles …" : "Leita að notendum, hópum og hringjum …",
"(Circle)" : "(hringur)",
"Assign to users/groups/circles" : "Úthluta á notendur/hópa/hringi"

View File

@@ -123,12 +123,13 @@
"Select the board to link to a project" : "Veldu borðið sem á að tengja við verkefnið",
"Search by board title" : "Leita eftir titli borðs",
"Select board" : "Veldu borð",
"Move card to another board" : "Færa spjald á annað borð",
"Select a board" : "Veldu borð",
"No lists available" : "Engir listar tiltækir",
"Select a list" : "Veldu lista",
"Move card" : "Færa spjald",
"Select a card" : "Veldu spjald",
"Cancel" : "Hætta við",
"Select a card" : "Veldu spjald",
"Select the card to link to a project" : "Veldu spjaldið sem á að tengja við verkefnið",
"Link to card" : "Tengill á spjald",
"File already exists" : "Skrá er þegar til",
@@ -263,7 +264,6 @@
"Todo items" : "Atriði á verkefnalista",
"{count} comments, {unread} unread" : "{count} athugasemdir, {unread} ólesnar",
"Edit card title" : "Breyta titli spjalds",
"Edit title" : "Breyta titli",
"Assign to me" : "Úthluta mér",
"Unassign myself" : "Aftengja úthlutun sjálfs mín",
"Mark as not done" : "Merkja sem ólokið",
@@ -306,9 +306,6 @@
"An error occurred" : "Villa kom upp",
"Are you sure you want to delete the board {title}? This will delete all the data of this board including archived cards." : "Ertu viss um að þú viljir eyða borðinu {title}?. Þetta mun eyða öllum gögnum í þessu borði, meðal annars spjöldum í geymslu.",
"Delete the board?" : "Eyða borðinu?",
"Clone cards" : "Klóna spjöld",
"Advanced options" : "Ítarlegir valkostir",
"Clone" : "Klóna",
"Loading filtered view" : "Hleð inn síaðri sýn",
"Today" : "Í dag",
"Tomorrow" : "Á morgun",
@@ -348,7 +345,6 @@
"Share with a Deck card" : "Deila með Deck-spjaldi",
"Share {file} with a Deck card" : "Deila {file} með Deck-spjaldi",
"Share" : "Deila",
"Move card to another board" : "Færa spjald á annað borð",
"Searching for users, groups and circles …" : "Leita að notendum, hópum og hringjum …",
"(Circle)" : "(hringur)",
"Assign to users/groups/circles" : "Úthluta á notendur/hópa/hringi"

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