* Show users with matches in the email address.
* List email addresses in sharing dialog.
`NcSelect` filters the options based on matches in `label` and `subname`.
By using the email address as a subname we ensure
options with a matching email address are shown.
Signed-off-by: Max <max@nextcloud.com>
@@ -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)
| 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
@@ -13,7 +13,7 @@ The Deck application plugin uses the [markdown-it](https://github.com/markdown-i
## Supported Markdown
Markdown comes in many flavors. The best way to learn markdown and understand how to use it, is simply to [try it](https://markdown-it.github.io) on the original script official playground.
Markdown comes in may flavors. The best way to learn markdown and understand how to use it, is simply to [try it](https://markdown-it.github.io) on the original script official playground.
That same link offers also a comprehensive list of what is supported, and what is not - rendering it unnecessary to duplicate that content in here.
@@ -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:
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:
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`
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
occ deck:export > my-file.json
```
*(`userid` = username as seen in the admin user accounts page)*
## Import Boards
## Import boards
Importing can be done using the API or the `occ` `deck:import` command.
@@ -24,57 +23,39 @@ 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 abovedescribed `occ deck:export [userid]` command can be imported.
```
occ deck:import userid-deck-export.json
occ deck:import my-file.json
```
You will be asked to provide a path to a config file.
In case you are importing from a different instance you may use an additional config file to provide custom user id mapping in case users have different identifiers.
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.
If 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
```
{
"owner":"useridofnewownerofallboards",
"owner": "admin",
"uidRelation": {
"userid1onoldinstance":"userid1onnewinstance",
"userid2onoldinstance":"userid2onnewinstance",
"groupid1onoldinstance":"groupid1onnewinstance"
"johndoe": "test-user-1"
}
}
```
After pressing enter, everything will be imported.
Additional info:
- If you export a user’s boards, all boards that the user has access to will be exported (including those shared with 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 +66,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:
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:
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`
"The uploaded file exceeds the upload_max_filesize directive in php.ini":"Памер запампаванага файла перавышае значэнне дырэктывы upload_max_filesize у php.ini",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form":"Памер запампаванага файла перавышае значэнне дырэктывы MAX_FILE_SIZE у HTML форме",
"The file was only partially uploaded":"Файл быў запампаваны толькі часткова",
"No file was uploaded":"Ніводзін файл не быў запампаваны",
"Missing a temporary folder":"Адсутнічае часовая папка",
"Could not write file to disk":"Не ўдалося запісаць файл на дыск",
"A PHP extension stopped the file upload":"Пашырэнне PHP спыніла запампоўванне файла",
"No file uploaded or file size exceeds maximum of %s":"Файл не запампаваны, або памер файла перавышае максімальны %s",
"copy":"копія",
"Done":"Гатова",
"File":"Файл",
"Invalid date, date format must be YYYY-MM-DD":"Памылковая дата, дата павінна быць у фармаце ГГГГ-ММ-ДД",
"Cancel":"Скасаваць",
"Drop your files to upload":"Перацягніце файлы для запампоўвання",
"File already exists":"Файл ужо існуе",
"A file with the name {filename} already exists.":"Файл з назвай {filename} ужо існуе.",
"Do you want to overwrite it?":"Хочаце перазапісаць яго?",
@@ -34,29 +39,52 @@ OC.L10N.register(
"Delete":"Выдаліць",
"Edit":"Рэдагаваць",
"Members":"Удзельнікі",
"File to share":"Файл для абагульвання",
"Invalid path selected":"Выбраны памылковы шлях",
"Share from Files":"Абагуліць з Файлаў",
"Show in Files":"Паказаць у Файлах",
"Download":"Спампаваць",
"Modified":"Зменены",
"Comments":"Каментарыі",
"Save":"Захаваць",
"Created:":"Створана:",
"Cancel reply":"Скасаваць адказ",
"Reply":"Адказаць",
"Update":"Абнавіць",
"Description":"Апісанне",
"Formatting help":"Даведка па фармаціраванні",
"Later today – {timeLocale}":"Пазней сёння – {timeLocale}",
"Set due date for later today":"Задаць дату выканання на пазней сёння",
"The uploaded file exceeds the upload_max_filesize directive in php.ini":"Памер запампаванага файла перавышае значэнне дырэктывы upload_max_filesize у php.ini",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form":"Памер запампаванага файла перавышае значэнне дырэктывы MAX_FILE_SIZE у HTML форме",
"The file was only partially uploaded":"Файл быў запампаваны толькі часткова",
"No file was uploaded":"Ніводзін файл не быў запампаваны",
"Missing a temporary folder":"Адсутнічае часовая папка",
"Could not write file to disk":"Не ўдалося запісаць файл на дыск",
"A PHP extension stopped the file upload":"Пашырэнне PHP спыніла запампоўванне файла",
"No file uploaded or file size exceeds maximum of %s":"Файл не запампаваны, або памер файла перавышае максімальны %s",
"copy":"копія",
"Done":"Гатова",
"File":"Файл",
"Invalid date, date format must be YYYY-MM-DD":"Памылковая дата, дата павінна быць у фармаце ГГГГ-ММ-ДД",
"Cancel":"Скасаваць",
"Drop your files to upload":"Перацягніце файлы для запампоўвання",
"File already exists":"Файл ужо існуе",
"A file with the name {filename} already exists.":"Файл з назвай {filename} ужо існуе.",
"Do you want to overwrite it?":"Хочаце перазапісаць яго?",
@@ -32,29 +37,52 @@
"Delete":"Выдаліць",
"Edit":"Рэдагаваць",
"Members":"Удзельнікі",
"File to share":"Файл для абагульвання",
"Invalid path selected":"Выбраны памылковы шлях",
"Share from Files":"Абагуліць з Файлаў",
"Show in Files":"Паказаць у Файлах",
"Download":"Спампаваць",
"Modified":"Зменены",
"Comments":"Каментарыі",
"Save":"Захаваць",
"Created:":"Створана:",
"Cancel reply":"Скасаваць адказ",
"Reply":"Адказаць",
"Update":"Абнавіць",
"Description":"Апісанне",
"Formatting help":"Даведка па фармаціраванні",
"Later today – {timeLocale}":"Пазней сёння – {timeLocale}",
"Set due date for later today":"Задаць дату выканання на пазней сёння",
"Note: Only the JSON format is supported for importing back into the Deck app.":"Pozn.: Pro import zpět do aplikace Deck je podporován pouze formát JSON.",
"Note: Only the JSON format is supported for importing back into the Deck app.":"Pozn.: Pro import zpět do aplikace Deck je podporován pouze formát JSON.",
"{user} has deleted card {card} in list {stack} on board {board}":"{user} har slettet kortet {card} i listen {stack} på tavlen {board}",
"You have renamed the card {before} to {card}":"Du har omdøbt kortet {before} til {card}",
"{user} has renamed the card {before} to {card}":"{user} har omdøbt kortet {before} til {card}",
"You have added a description to card {card} in list {stack} on board {board}":"Du har tilføjet en beskrivelse til kortet {card} i listen {stack} på tavlen {board}",
"{user} has added a description to card {card} in list {stack} on board {board}":"{user} har tilføjet en beskrivelse til kortet {card} i listen {stack} på tavlen {board}",
"You have updated the description of card {card} in list {stack} on board {board}":"Du har opdateret beskrivelsen for kortet {card} i listen {stack} på tavlen {board}",
"{user} has updated the description of the card {card} in list {stack} on board {board}":"{user} har opdateret beskrivelsen for kortet {card} i listen {stack} på tavlen {board}",
"You have archived card {card} in list {stack} on board {board}":"Du har arkiveret kortet {card} i listen {stack} på tavlen {board}",
"Deck":"Opslag",
"Changes in the <strong>Deck app</strong>":"Ændringer i <strong>Opslags app'en</strong>",
"The file was uploaded":"Filen blev uploadet",
@@ -46,13 +51,14 @@ OC.L10N.register(
"{user} has assigned the card {deck-card} on {deck-board} to you.":"{user} har tilknyttet kortet {deck-card} på {deck-board} til dig.",
"The card \"%s\" on \"%s\" has reached its due date.":"Kortet \"%s\" på \"%s\" har nået sin forfaldsdato.",
"The card {deck-card} on {deck-board} has reached its due date.":"Kortet {deck-card} på {deck-board} har nået sin forfaldsdato.",
"%s has mentioned you in a comment on \"%s\".":" %s har nævnt dig i en kommentar på \"%s\".",
"{user} has mentioned you in a comment on {deck-card}.":"{user} har nævnt dig i en kommentar på {deck-card}.",
"%s has mentioned you in a comment on \"%s\".":" %s har omtalt dig i en kommentar på \"%s\".",
"{user} has mentioned you in a comment on {deck-card}.":"{user} har omtalt dig i en kommentar på {deck-card}.",
"The board \"%s\" has been shared with you by %s.":"Tavlen \"%s\" er blevet delt med dig af %s.",
"{user} has shared {deck-board} with you.":"{user} har delt {deck-board} med dig.",
"Deck board":"Opslagstavle",
"Deck boards, cards and comments":"Opslagstavler, kort og kommentarer",
"Create a new deck card":"Opret et nyt opslagskort",
"Card comments":"Kommentarer på kort",
"%s on %s":"%s på %s",
"Deck boards and cards":"Opslagstavler og -kort",
"No data was provided to create an attachment.":"Ingen data blev givet som kunne vedhæftes",
@@ -64,6 +70,7 @@ OC.L10N.register(
"To Do":"To-do liste",
"In Progress":"I gang",
"Done":"Afsluttet",
"Create your first card!":"Opret dit første kort!",
"Attachments":"Vedhæftede filer",
"File":"Fil",
"Card not found":"Kort ikke fundet.",
@@ -75,10 +82,12 @@ OC.L10N.register(
"Select the board to link to a project":"Vælg tavlen der skal linkes til et projekt",
"Search by board title":"Søg efter tavletitel",
"Select board":"Vælg tavle",
"Move/copy card":"Flyt/kopiér kort",
"Select a board":"Vælg en tavle",
"No lists available":"Ingen lister tilgængelige",
"Select a list":"Vælg en liste",
"Move card":"Flyt kort",
"Copy card":"Kopiér kort",
"Select the card to link to a project":"Vælg kortet der skal linkes til et projekt",
"Link to card":"Link til kort",
"Select a card":"Vælg et kort",
@@ -140,7 +149,7 @@ OC.L10N.register(
"Add a new card":"Tilføj et nyt kort",
"Card name":"Kortnavn",
"title and color value must be provided":"Titel- og farveværdi skal angives.",
"Edit":"Rediger",
"Edit":"Redigér",
"Add a new tag":"Opret et nyt tag",
"Board name":"Tavlenavn",
"Members":"Medlemmer",
@@ -168,17 +177,21 @@ OC.L10N.register(
"In reply to":"Som svar til",
"Cancel reply":"Annuller svar",
"Reply":"Besvar",
"Update":"Opdater",
"Update":"Opdatér",
"Write a description …":"Skriv en beskrivelse...",
"Description":"Beskrivelse",
"(Unsaved)":"(Ikke gemt)",
"(Saving…)":"(Gemmer...)",
"Formatting help":"Hjælp til formatering",
"Edit description":"Rediger beskrivelse",
"Edit description":"Redigér beskrivelse",
"View description":"Se beskrivelse",
"Add Attachment":"Tilføj vedhæftning",
"Choose attachment":"Vælg en vedhæftning",
"Select Date":"Vælg dato",
"Later today – {timeLocale}":"Senere i dag – {timeLocale}",
"{user} has deleted card {card} in list {stack} on board {board}":"{user} har slettet kortet {card} i listen {stack} på tavlen {board}",
"You have renamed the card {before} to {card}":"Du har omdøbt kortet {before} til {card}",
"{user} has renamed the card {before} to {card}":"{user} har omdøbt kortet {before} til {card}",
"You have added a description to card {card} in list {stack} on board {board}":"Du har tilføjet en beskrivelse til kortet {card} i listen {stack} på tavlen {board}",
"{user} has added a description to card {card} in list {stack} on board {board}":"{user} har tilføjet en beskrivelse til kortet {card} i listen {stack} på tavlen {board}",
"You have updated the description of card {card} in list {stack} on board {board}":"Du har opdateret beskrivelsen for kortet {card} i listen {stack} på tavlen {board}",
"{user} has updated the description of the card {card} in list {stack} on board {board}":"{user} har opdateret beskrivelsen for kortet {card} i listen {stack} på tavlen {board}",
"You have archived card {card} in list {stack} on board {board}":"Du har arkiveret kortet {card} i listen {stack} på tavlen {board}",
"Deck":"Opslag",
"Changes in the <strong>Deck app</strong>":"Ændringer i <strong>Opslags app'en</strong>",
"The file was uploaded":"Filen blev uploadet",
@@ -44,13 +49,14 @@
"{user} has assigned the card {deck-card} on {deck-board} to you.":"{user} har tilknyttet kortet {deck-card} på {deck-board} til dig.",
"The card \"%s\" on \"%s\" has reached its due date.":"Kortet \"%s\" på \"%s\" har nået sin forfaldsdato.",
"The card {deck-card} on {deck-board} has reached its due date.":"Kortet {deck-card} på {deck-board} har nået sin forfaldsdato.",
"%s has mentioned you in a comment on \"%s\".":" %s har nævnt dig i en kommentar på \"%s\".",
"{user} has mentioned you in a comment on {deck-card}.":"{user} har nævnt dig i en kommentar på {deck-card}.",
"%s has mentioned you in a comment on \"%s\".":" %s har omtalt dig i en kommentar på \"%s\".",
"{user} has mentioned you in a comment on {deck-card}.":"{user} har omtalt dig i en kommentar på {deck-card}.",
"The board \"%s\" has been shared with you by %s.":"Tavlen \"%s\" er blevet delt med dig af %s.",
"{user} has shared {deck-board} with you.":"{user} har delt {deck-board} med dig.",
"Deck board":"Opslagstavle",
"Deck boards, cards and comments":"Opslagstavler, kort og kommentarer",
"Create a new deck card":"Opret et nyt opslagskort",
"Card comments":"Kommentarer på kort",
"%s on %s":"%s på %s",
"Deck boards and cards":"Opslagstavler og -kort",
"No data was provided to create an attachment.":"Ingen data blev givet som kunne vedhæftes",
@@ -62,6 +68,7 @@
"To Do":"To-do liste",
"In Progress":"I gang",
"Done":"Afsluttet",
"Create your first card!":"Opret dit første kort!",
"Attachments":"Vedhæftede filer",
"File":"Fil",
"Card not found":"Kort ikke fundet.",
@@ -73,10 +80,12 @@
"Select the board to link to a project":"Vælg tavlen der skal linkes til et projekt",
"Search by board title":"Søg efter tavletitel",
"Select board":"Vælg tavle",
"Move/copy card":"Flyt/kopiér kort",
"Select a board":"Vælg en tavle",
"No lists available":"Ingen lister tilgængelige",
"Select a list":"Vælg en liste",
"Move card":"Flyt kort",
"Copy card":"Kopiér kort",
"Select the card to link to a project":"Vælg kortet der skal linkes til et projekt",
"Link to card":"Link til kort",
"Select a card":"Vælg et kort",
@@ -138,7 +147,7 @@
"Add a new card":"Tilføj et nyt kort",
"Card name":"Kortnavn",
"title and color value must be provided":"Titel- og farveværdi skal angives.",
"Edit":"Rediger",
"Edit":"Redigér",
"Add a new tag":"Opret et nyt tag",
"Board name":"Tavlenavn",
"Members":"Medlemmer",
@@ -166,17 +175,21 @@
"In reply to":"Som svar til",
"Cancel reply":"Annuller svar",
"Reply":"Besvar",
"Update":"Opdater",
"Update":"Opdatér",
"Write a description …":"Skriv en beskrivelse...",
"Description":"Beskrivelse",
"(Unsaved)":"(Ikke gemt)",
"(Saving…)":"(Gemmer...)",
"Formatting help":"Hjælp til formatering",
"Edit description":"Rediger beskrivelse",
"Edit description":"Redigér beskrivelse",
"View description":"Se beskrivelse",
"Add Attachment":"Tilføj vedhæftning",
"Choose attachment":"Vælg en vedhæftning",
"Select Date":"Vælg dato",
"Later today – {timeLocale}":"Senere i dag – {timeLocale}",
"Note: Only the JSON format is supported for importing back into the Deck app.":"Hinweis: Für den Rückimport in die Deck-App wird nur das JSON-Format unterstützt.",
"Note: Only the JSON format is supported for importing back into the Deck app.":"Hinweis: Für den Rückimport in die Deck-App wird nur das JSON-Format unterstützt.",
"Note: Only the JSON format is supported for importing back into the Deck app.":"Hinweis: Für den Rückimport in die Deck-App wird nur das JSON-Format unterstützt.",
"Note: Only the JSON format is supported for importing back into the Deck app.":"Hinweis: Für den Rückimport in die Deck-App wird nur das JSON-Format unterstützt.",
"Could not write file to disk":"Αδυναμία εγγραφής αρχείου στον δίσκο",
"A PHP extension stopped the file upload":"Ένα πρόσθετο PHP διέκοψε την μεταφόρτωση του αρχείου",
"No file uploaded or file size exceeds maximum of %s":"Δεν μεταφορτώθηκε αρχείο ή το μέγεθος αρχείου υπερβαίνει το μέγιστο %s",
"Invalid file type. Only JSON files are allowed.":"Μη έγκυρος τύπος αρχείου. Επιτρέπονται μόνο αρχεία JSON.",
"Invalid JSON data":"Μη έγκυρα δεδομένα JSON",
"Failed to import board":"Αποτυχία εισαγωγής πίνακα",
"Cards due today":"Κάρτες που λήγουν σήμερα",
"Cards due tomorrow":"Κάρτες που λήγουν αύριο",
"Upcoming cards":"Επερχόμενες καρτέλες",
"Load more":"Φόρτωση περισσότερων",
"Welcome to Nextcloud Deck!":"Καλώς ήρθατε στο Nextcloud Deck!",
"The card \"%s\" on \"%s\" has been assigned to you by %s.":"Η καρτέλα \"%s\" του \"%s\" ανατέθηκε σε εσάς από τον %s.",
"{user} has assigned the card {deck-card} on {deck-board} to you.":"Ο/Η {user} έχει αναθέσει την καρτέλα {deck-card} του πίνακα {deck-board} σε εσάς.",
"The card \"%s\" on \"%s\" has reached its due date.":"Η καρτέλα \"%s\" στο \"%s\" έχει λήξει.",
@@ -96,6 +100,7 @@ OC.L10N.register(
"Deck board":"Πίνακας του Deck",
"Owned by %1$s":"Ανήκει στον/στην %1$s",
"Deck boards, cards and comments":"Πίνακες, κάρτες και σχόλια Deck",
"From %1$s, in %2$s/%3$s, owned by %4$s":"Από %1$s, στον %2$s/%3$s, που ανήκει στον %4$s",
"Create a new deck card":"Δημιουργήστε μια νέα κάρτα",
"Card comments":"Σχόλια καρτέλας",
"%s on %s":"%s στο %s",
@@ -106,11 +111,20 @@ OC.L10N.register(
"Action needed":"Απαιτείται ενέργεια",
"Later":"Αργότερα",
"copy":"Αντιγραφή",
"Read more inside":"Διαβάστε περισσότερα εντός",
"Custom lists - click to rename!":"Προσαρμοσμένες λίστες - κάντε κλικ για μετονομασία!",
"To Do":"Προς Ενέργεια",
"In Progress":"Σε Εξέλιξη",
"Done":"Ολοκληρώθηκε",
"1. Open to learn more about boards and cards":"1. Ανοίξτε γιανα μάθετε περισσότερα για τους πίνακες και τις κάρτες",
"2. Drag cards left and right, up and down":"2. Σύρετε κάρτες αριστερά και δεξιά, πάνω και κάτω",
"3. Apply rich formatting and link content":"3. Εφαρμόστε πλούσια μορφοποίηση και συνδέστε περιεχόμενο",
"4. Share, comment and collaborate!":"4. Μοιραστείτε, σχολιάστε και συνεργαστείτε!",
"Create your first card!":"Δημιουργήστε την πρώτη σας κάρτα!",
"This comment has more than %s characters.\nAdded as an attachment to the card with name %s.\nAccessible on URL: %s.":"Αυτό το σχόλιο έχει περισσότερους από %s χαρακτήρες.\nΠροστέθηκε ως συνημμένο στην καρτέλα με όνομα %s .\nΠροσβάσιμο στη διεύθυνση URL: %s.",
"Attachments":"Συνημμένα",
"File":"Αρχείο",
"date":"ημερομηνία",
"Card not found":"Η καρτέλα δεν βρέθηκε",
"Path is already shared with this card":"Η διαδρομή κοινοποιείται ήδη σε αυτήν την καρτέλα",
"Invalid date, date format must be YYYY-MM-DD":"Μη έγκυρη ημερομηνία, η μορφή ημερομηνίας πρέπει να είναι ΕΕΕΕ-ΜΜ-ΗΗ",
@@ -121,10 +135,12 @@ OC.L10N.register(
"Select the board to link to a project":"Επιλέξτε πίνακα και συνδέστε τον σε ένα έργο",
"Search by board title":"Αναζήτηση με το όνομα πίνακα",
"Select board":"Επιλογή πίνακα",
"Move/copy card":"Μετακίνηση/αντιγραφή κάρτας",
"Select a board":"Επιλογή ενός πίνακα",
"No lists available":"Δεν υπάρχουν διαθέσιμες λίστες",
"Select a list":"Επιλέξτε μια λίστα",
"Move card":"Μετακίνηση καρτέλας",
"Copy card":"Αντίγραφο κάρτας",
"Select the card to link to a project":"Επιλογή καρτέλας για σύνδεση στο έργο",
"Link to card":"Σύνδεσμος σε καρτέλα",
"Select a card":"Επιλογή μιας καρτέλας",
@@ -212,7 +228,7 @@ OC.L10N.register(
"Select a user to assign to this card…":"Επιλέξτε έναν χρήστη γιανα του αναθέσετε αυτή την κάρτα...",
"File to share":"Αρχείο για κοινή χρήση",
"Invalid path selected":"Επιλέχθηκε μη έγκυρη διαδρομή",
"Upload new files":"Ανεβάστε νέα αρχεία",
"Upload new files":"Μεταφορτώστε νέα αρχεία",
"Share from Files":"Κοινή χρήση από Αρχεία",
"Pending share":"Κοινή χρήση σε εκκρεμότητα",
"Add this attachment":"Προσθήκη αυτού του συνημμένου",
@@ -224,6 +240,7 @@ OC.L10N.register(
"Modified":"Τροποποιήθηκε",
"Created":"Δημιουργήθηκε",
"The title cannot be empty.":"Ο τίτλος δεν μπορεί να είναι κενός.",
"Cannot close unsaved card!":"Αδυναμία κλεισίματος της κάρτας που δεν έχει αποθηκευτεί!",
"Open in sidebar view":"Άνοιγμα σε προβολή πλευρικής στήλης",
"Open in bigger view":"Άνοιγμα σε μεγαλύτερη προβολή",
"Comments":"Σχόλια",
@@ -238,6 +255,7 @@ OC.L10N.register(
"Reply":"Απάντηση",
"Update":"Ενημέρωση",
"Write a description …":"Γράψτε μια περιγραφή…",
"Could not save description":"Αδυναμία αποθήκευσης της περιγραφής",
"Description":"Περιγραφή",
"(Unsaved)":"(Δεν αποθηκεύτηκε)",
"(Saving…)":"(Αποθήκευση...)",
@@ -272,6 +290,7 @@ OC.L10N.register(
"{count} comments, {unread} unread":"{count} σχόλια, {unread} μη αναγνωσμένα",
"Todo items":"Στοιχεία todo",
"Edit card title":"Επεξεργασία τίτλου κάρτας",
"Open link":"Άνοιγμα συνδέσμου",
"Card deleted":"Η καρτέλα διαγράφηκε",
"Edit title":"Επεξεργασία τίτλου",
"Assign to me":"Ανάθεση σε εμένα",
@@ -315,6 +334,7 @@ OC.L10N.register(
"Limit board creation to some groups":"Περιορισμός της δημιουργίας πινάκων σε ορισμένες ομάδες",
"Users outside of those groups will not be able to create their own boards, but will still be able to work on boards that have been shared with them.":"Οι χρήστες εκτός αυτών των ομάδων δεν θα μπορούν να δημιουργούν τους δικούς τους πίνακες, αλλά θα μπορούν να εργάζονται σε πίνακες που τους έχουν διαμοιραστεί.",
"Cancel edit":"Ακύρωση επεξεργασίας",
"Save board":"Αποθήκευση πίνακα",
"Board {0} deleted":"Διαγράφηκε {0} πίνακας ",
"All cards":"Όλες οι καρτέλες",
"Only assigned cards":"Μόνο καρτέλες που έχουν ανατεθεί",
@@ -322,6 +342,7 @@ 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}; Αυτό θα διαγράψει όλα τα δεδομένα του πίνακα συμπεριλαμβανομένων και των αρχειοθετημένων καρτών.",
"Note: Only the JSON format is supported for importing back into the Deck app.":"Σημείωση: Μόνο η μορφή JSON υποστηρίζεται για εισαγωγή πίσω στην εφαρμογή Deck.",
"Export":"Εξαγωγή",
"Loading filtered view":"Φόρτωση εμφάνισης με βάση το φίλτρο",
"Today":"Σήμερα",
"Tomorrow":"Αύριο",
"No due":"Χωρίς λήξη",
"Search for {searchQuery} in other boards":"Αναζήτηση για {searchQuery} σε άλλους πίνακες",
"Search for {searchQuery} in all boards":"Αναζήτηση για {searchQuery} σε όλους τους πίνακες",
"No results found":"Δεν βρέθηκαν αποτελέσματα",
"Deck board {name}\n* Last modified on {lastMod}":"Πίνακας Deck {name}\n* Τελευταία τροποποίηση στις {lastMod}",
@@ -371,6 +402,7 @@ OC.L10N.register(
"Something went wrong":"Κάτι πήγε στραβά",
"Failed to upload {name}":"Αποτυχία μεταφόρτωσης {name}",
"Maximum file size of {size} exceeded":"Υπέρβαση επιτρεπόμενου μεγέθους αρχείου {size}",
"Assigned users":"Ανατεθειμένοι χρήστες",
"Due date":"Προθεσμία",
"Error creating the share":"Σφάλμα κατά τη δημιουργία της κοινοποίησης",
"Share with a Deck card":"Μοιραστείτε με μια καρτέλα Deck",
@@ -382,6 +414,9 @@ OC.L10N.register(
"Example Task 3":"Παράδειγμα Εργασίας 3",
"Example Task 2":"Παράδειγμα Εργασίας 2",
"Example Task 1":"Παράδειγμα Εργασίας 1",
"Move card to another board":"Μετακίνηση καρτέλας σε άλλο πίνακα"
"Move card to another board":"Μετακίνηση καρτέλας σε άλλο πίνακα",
"Could not write file to disk":"Αδυναμία εγγραφής αρχείου στον δίσκο",
"A PHP extension stopped the file upload":"Ένα πρόσθετο PHP διέκοψε την μεταφόρτωση του αρχείου",
"No file uploaded or file size exceeds maximum of %s":"Δεν μεταφορτώθηκε αρχείο ή το μέγεθος αρχείου υπερβαίνει το μέγιστο %s",
"Invalid file type. Only JSON files are allowed.":"Μη έγκυρος τύπος αρχείου. Επιτρέπονται μόνο αρχεία JSON.",
"Invalid JSON data":"Μη έγκυρα δεδομένα JSON",
"Failed to import board":"Αποτυχία εισαγωγής πίνακα",
"Cards due today":"Κάρτες που λήγουν σήμερα",
"Cards due tomorrow":"Κάρτες που λήγουν αύριο",
"Upcoming cards":"Επερχόμενες καρτέλες",
"Load more":"Φόρτωση περισσότερων",
"Welcome to Nextcloud Deck!":"Καλώς ήρθατε στο Nextcloud Deck!",
"The card \"%s\" on \"%s\" has been assigned to you by %s.":"Η καρτέλα \"%s\" του \"%s\" ανατέθηκε σε εσάς από τον %s.",
"{user} has assigned the card {deck-card} on {deck-board} to you.":"Ο/Η {user} έχει αναθέσει την καρτέλα {deck-card} του πίνακα {deck-board} σε εσάς.",
"The card \"%s\" on \"%s\" has reached its due date.":"Η καρτέλα \"%s\" στο \"%s\" έχει λήξει.",
@@ -94,6 +98,7 @@
"Deck board":"Πίνακας του Deck",
"Owned by %1$s":"Ανήκει στον/στην %1$s",
"Deck boards, cards and comments":"Πίνακες, κάρτες και σχόλια Deck",
"From %1$s, in %2$s/%3$s, owned by %4$s":"Από %1$s, στον %2$s/%3$s, που ανήκει στον %4$s",
"Create a new deck card":"Δημιουργήστε μια νέα κάρτα",
"Card comments":"Σχόλια καρτέλας",
"%s on %s":"%s στο %s",
@@ -104,11 +109,20 @@
"Action needed":"Απαιτείται ενέργεια",
"Later":"Αργότερα",
"copy":"Αντιγραφή",
"Read more inside":"Διαβάστε περισσότερα εντός",
"Custom lists - click to rename!":"Προσαρμοσμένες λίστες - κάντε κλικ για μετονομασία!",
"To Do":"Προς Ενέργεια",
"In Progress":"Σε Εξέλιξη",
"Done":"Ολοκληρώθηκε",
"1. Open to learn more about boards and cards":"1. Ανοίξτε γιανα μάθετε περισσότερα για τους πίνακες και τις κάρτες",
"2. Drag cards left and right, up and down":"2. Σύρετε κάρτες αριστερά και δεξιά, πάνω και κάτω",
"3. Apply rich formatting and link content":"3. Εφαρμόστε πλούσια μορφοποίηση και συνδέστε περιεχόμενο",
"4. Share, comment and collaborate!":"4. Μοιραστείτε, σχολιάστε και συνεργαστείτε!",
"Create your first card!":"Δημιουργήστε την πρώτη σας κάρτα!",
"This comment has more than %s characters.\nAdded as an attachment to the card with name %s.\nAccessible on URL: %s.":"Αυτό το σχόλιο έχει περισσότερους από %s χαρακτήρες.\nΠροστέθηκε ως συνημμένο στην καρτέλα με όνομα %s .\nΠροσβάσιμο στη διεύθυνση URL: %s.",
"Attachments":"Συνημμένα",
"File":"Αρχείο",
"date":"ημερομηνία",
"Card not found":"Η καρτέλα δεν βρέθηκε",
"Path is already shared with this card":"Η διαδρομή κοινοποιείται ήδη σε αυτήν την καρτέλα",
"Invalid date, date format must be YYYY-MM-DD":"Μη έγκυρη ημερομηνία, η μορφή ημερομηνίας πρέπει να είναι ΕΕΕΕ-ΜΜ-ΗΗ",
@@ -119,10 +133,12 @@
"Select the board to link to a project":"Επιλέξτε πίνακα και συνδέστε τον σε ένα έργο",
"Search by board title":"Αναζήτηση με το όνομα πίνακα",
"Select board":"Επιλογή πίνακα",
"Move/copy card":"Μετακίνηση/αντιγραφή κάρτας",
"Select a board":"Επιλογή ενός πίνακα",
"No lists available":"Δεν υπάρχουν διαθέσιμες λίστες",
"Select a list":"Επιλέξτε μια λίστα",
"Move card":"Μετακίνηση καρτέλας",
"Copy card":"Αντίγραφο κάρτας",
"Select the card to link to a project":"Επιλογή καρτέλας για σύνδεση στο έργο",
"Link to card":"Σύνδεσμος σε καρτέλα",
"Select a card":"Επιλογή μιας καρτέλας",
@@ -210,7 +226,7 @@
"Select a user to assign to this card…":"Επιλέξτε έναν χρήστη γιανα του αναθέσετε αυτή την κάρτα...",
"File to share":"Αρχείο για κοινή χρήση",
"Invalid path selected":"Επιλέχθηκε μη έγκυρη διαδρομή",
"Upload new files":"Ανεβάστε νέα αρχεία",
"Upload new files":"Μεταφορτώστε νέα αρχεία",
"Share from Files":"Κοινή χρήση από Αρχεία",
"Pending share":"Κοινή χρήση σε εκκρεμότητα",
"Add this attachment":"Προσθήκη αυτού του συνημμένου",
@@ -222,6 +238,7 @@
"Modified":"Τροποποιήθηκε",
"Created":"Δημιουργήθηκε",
"The title cannot be empty.":"Ο τίτλος δεν μπορεί να είναι κενός.",
"Cannot close unsaved card!":"Αδυναμία κλεισίματος της κάρτας που δεν έχει αποθηκευτεί!",
"Open in sidebar view":"Άνοιγμα σε προβολή πλευρικής στήλης",
"Open in bigger view":"Άνοιγμα σε μεγαλύτερη προβολή",
"Comments":"Σχόλια",
@@ -236,6 +253,7 @@
"Reply":"Απάντηση",
"Update":"Ενημέρωση",
"Write a description …":"Γράψτε μια περιγραφή…",
"Could not save description":"Αδυναμία αποθήκευσης της περιγραφής",
"Description":"Περιγραφή",
"(Unsaved)":"(Δεν αποθηκεύτηκε)",
"(Saving…)":"(Αποθήκευση...)",
@@ -270,6 +288,7 @@
"{count} comments, {unread} unread":"{count} σχόλια, {unread} μη αναγνωσμένα",
"Todo items":"Στοιχεία todo",
"Edit card title":"Επεξεργασία τίτλου κάρτας",
"Open link":"Άνοιγμα συνδέσμου",
"Card deleted":"Η καρτέλα διαγράφηκε",
"Edit title":"Επεξεργασία τίτλου",
"Assign to me":"Ανάθεση σε εμένα",
@@ -313,6 +332,7 @@
"Limit board creation to some groups":"Περιορισμός της δημιουργίας πινάκων σε ορισμένες ομάδες",
"Users outside of those groups will not be able to create their own boards, but will still be able to work on boards that have been shared with them.":"Οι χρήστες εκτός αυτών των ομάδων δεν θα μπορούν να δημιουργούν τους δικούς τους πίνακες, αλλά θα μπορούν να εργάζονται σε πίνακες που τους έχουν διαμοιραστεί.",
"Cancel edit":"Ακύρωση επεξεργασίας",
"Save board":"Αποθήκευση πίνακα",
"Board {0} deleted":"Διαγράφηκε {0} πίνακας ",
"All cards":"Όλες οι καρτέλες",
"Only assigned cards":"Μόνο καρτέλες που έχουν ανατεθεί",
@@ -320,6 +340,7 @@
"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}; Αυτό θα διαγράψει όλα τα δεδομένα του πίνακα συμπεριλαμβανομένων και των αρχειοθετημένων καρτών.",
"Note: Only the JSON format is supported for importing back into the Deck app.":"Σημείωση: Μόνο η μορφή JSON υποστηρίζεται για εισαγωγή πίσω στην εφαρμογή Deck.",
"Export":"Εξαγωγή",
"Loading filtered view":"Φόρτωση εμφάνισης με βάση το φίλτρο",
"Today":"Σήμερα",
"Tomorrow":"Αύριο",
"No due":"Χωρίς λήξη",
"Search for {searchQuery} in other boards":"Αναζήτηση για {searchQuery} σε άλλους πίνακες",
"Search for {searchQuery} in all boards":"Αναζήτηση για {searchQuery} σε όλους τους πίνακες",
"No results found":"Δεν βρέθηκαν αποτελέσματα",
"Deck board {name}\n* Last modified on {lastMod}":"Πίνακας Deck {name}\n* Τελευταία τροποποίηση στις {lastMod}",
@@ -369,6 +400,7 @@
"Something went wrong":"Κάτι πήγε στραβά",
"Failed to upload {name}":"Αποτυχία μεταφόρτωσης {name}",
"Maximum file size of {size} exceeded":"Υπέρβαση επιτρεπόμενου μεγέθους αρχείου {size}",
"Assigned users":"Ανατεθειμένοι χρήστες",
"Due date":"Προθεσμία",
"Error creating the share":"Σφάλμα κατά τη δημιουργία της κοινοποίησης",
"Share with a Deck card":"Μοιραστείτε με μια καρτέλα Deck",
@@ -380,6 +412,9 @@
"Example Task 3":"Παράδειγμα Εργασίας 3",
"Example Task 2":"Παράδειγμα Εργασίας 2",
"Example Task 1":"Παράδειγμα Εργασίας 1",
"Move card to another board":"Μετακίνηση καρτέλας σε άλλο πίνακα"
"Move card to another board":"Μετακίνηση καρτέλας σε άλλο πίνακα",
"Path is already shared with this card":"Path is already shared with this card",
"Invalid date, date format must be YYYY-MM-DD":"Invalid date, date format must be YYYY-MM-DD",
"Personal planning and team project organization":"Personal planning and team project organization",
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized":"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized",
"Personal planning and team project organization":"Personal planning and team project organisation",
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized":"Deck is a kanban style organisation tool aimed at personal planning and project organisation for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organisation\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organised",
"Add board":"Add board",
"Card details":"Card details",
"Select the board to link to a project":"Select the board to link to a project",
@@ -373,9 +373,7 @@ OC.L10N.register(
"Note: Only the JSON format is supported for importing back into the Deck app.":"Note: Only the JSON format is supported for importing back into the Deck app.",
"Export":"Export",
"Loading filtered view":"Loading filtered view",
"Today":"Today",
"Tomorrow":"Tomorrow",
"No due":"No due",
"Search for {searchQuery} in other boards":"Search for {searchQuery} in other boards",
"Search for {searchQuery} in all boards":"Search for {searchQuery} in all boards",
"No results found":"No results found",
"Deck board {name}\n* Last modified on {lastMod}":"Deck board {name}\n* Last modified on {lastMod}",
@@ -416,6 +414,9 @@ OC.L10N.register(
"Example Task 3":"Example Task 3",
"Example Task 2":"Example Task 2",
"Example Task 1":"Example Task 1",
"Move card to another board":"Move card to another board"
"Move card to another board":"Move card to another board",
"Path is already shared with this card":"Path is already shared with this card",
"Invalid date, date format must be YYYY-MM-DD":"Invalid date, date format must be YYYY-MM-DD",
"Personal planning and team project organization":"Personal planning and team project organization",
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized":"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized",
"Personal planning and team project organization":"Personal planning and team project organisation",
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized":"Deck is a kanban style organisation tool aimed at personal planning and project organisation for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in Markdown\n- 🔖 Assign labels for even better organisation\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your Markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organised",
"Add board":"Add board",
"Card details":"Card details",
"Select the board to link to a project":"Select the board to link to a project",
@@ -371,9 +371,7 @@
"Note: Only the JSON format is supported for importing back into the Deck app.":"Note: Only the JSON format is supported for importing back into the Deck app.",
"Export":"Export",
"Loading filtered view":"Loading filtered view",
"Today":"Today",
"Tomorrow":"Tomorrow",
"No due":"No due",
"Search for {searchQuery} in other boards":"Search for {searchQuery} in other boards",
"Search for {searchQuery} in all boards":"Search for {searchQuery} in all boards",
"No results found":"No results found",
"Deck board {name}\n* Last modified on {lastMod}":"Deck board {name}\n* Last modified on {lastMod}",
@@ -414,6 +412,9 @@
"Example Task 3":"Example Task 3",
"Example Task 2":"Example Task 2",
"Example Task 1":"Example Task 1",
"Move card to another board":"Move card to another board"
"Move card to another board":"Move card to another board",
"Note: Only the JSON format is supported for importing back into the Deck app.":"Nota: Solo el formato JSON es soportar al importar de vuelta en la app Deck.",
"Export":"Exportar",
"Loading filtered view":"Cargando vista filtrada",
"Today":"Hoy",
"Tomorrow":"Mañana",
"No due":"Sin finalizar",
"Search for {searchQuery} in other boards":"Buscar {searchQuery} en otros tableros",
"Search for {searchQuery} in all boards":"Buscar {searchQuery} en todos los tableros",
"No results found":"No se encontraron resultados",
"Deck board {name}\n* Last modified on {lastMod}":"Tablero Deck {name}\n* Se modificó por última vez el {lastMod}",
@@ -416,6 +414,9 @@ OC.L10N.register(
"Example Task 3":"Tarea de ejemplo 3",
"Example Task 2":"Tarea de ejemplo 2",
"Example Task 1":"Tarea de ejemplo 1",
"Move card to another board":"Mover la tarjeta a otro tablero"
"Move card to another board":"Mover la tarjeta a otro tablero",
"Today":"Hoy",
"Tomorrow":"Mañana",
"No due":"Sin finalizar"
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
"Note: Only the JSON format is supported for importing back into the Deck app.":"Nota: Solo el formato JSON es soportar al importar de vuelta en la app Deck.",
"Export":"Exportar",
"Loading filtered view":"Cargando vista filtrada",
"Today":"Hoy",
"Tomorrow":"Mañana",
"No due":"Sin finalizar",
"Search for {searchQuery} in other boards":"Buscar {searchQuery} en otros tableros",
"Search for {searchQuery} in all boards":"Buscar {searchQuery} en todos los tableros",
"No results found":"No se encontraron resultados",
"Deck board {name}\n* Last modified on {lastMod}":"Tablero Deck {name}\n* Se modificó por última vez el {lastMod}",
@@ -414,6 +412,9 @@
"Example Task 3":"Tarea de ejemplo 3",
"Example Task 2":"Tarea de ejemplo 2",
"Example Task 1":"Tarea de ejemplo 1",
"Move card to another board":"Mover la tarjeta a otro tablero"
"Move card to another board":"Mover la tarjeta a otro tablero",
"Today":"Hoy",
"Tomorrow":"Mañana",
"No due":"Sin finalizar"
},"pluralForm":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
},"pluralForm":"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
}
Some files were not shown because too many files have changed in this diff
Show More
Reference in New Issue
Block a user
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.