.substr() is deprecated so we replace it with .slice() which works similarily but isn't deprecated
Signed-off-by: Tobias Speicher <rootcommander@gmail.com>
title and description where not populated and also opposed to documentation the link is not absolute
Signed-off-by: Joas Schilling <coding@schilljs.com>
Validate get boad
change pattern of api params
Import only one board by api
Populate data from api
Update class diagram
Update documentation
Add return when success
Sort comments
Fix order of cards
Instructions of attachments
Signed-off-by: Vitor Mattos <vitor@php.rio>
Implement name of system to import
Implement need validate data
Fix allowed system list
Start implementing Trello API service
Signed-off-by: Vitor Mattos <vitor@php.rio>
Fixes on getBoard tests
Refactor
Reduce psalm info
Refactor to implement pattern
Change order of methods to put all abstract first and all public first
Signed-off-by: Vitor Mattos <vitor@php.rio>
Fix visibility
Make compatible with php 7.2
Remove returing instance
Increase coverage
Reduce psalm info
Throw exception if system not defined
Increment coverage
Signed-off-by: Vitor Mattos <vitor@php.rio>
Check available helpers
Default permission: view only
Moved validate setting from helper to command
Turn more easy create a importer
Docblock and improvements on interface
lcfirst on system property
Helper moved to ImporHelper folder
Moved fixtures to ImportHelper
Rename settings to config
Big refactor to move import methods to service
Signed-off-by: Vitor Mattos <vitor@php.rio>
Clean code
Add new command
Import last modified and deleted date
Replace arrow functions by lambda functions
Add properties to class
Add dependency to composer.json
Signed-off-by: Vitor Mattos <vitor@php.rio>
Turn private methods
Add output messages and associate users to cards
Signed-off-by: Vitor Mattos <vitor@php.rio>
Previously the file was deleted in the file structure of the user is not
expected as the file might not only be related to the card.
Signed-off-by: Julius Härtl <jus@bitgrid.net>
@@ -15,12 +15,18 @@ Deck is a kanban style organization tool aimed at personal planning and project
- Keep track of changes in the activity stream
- Get your project organized
### Mobile apps
- The [Nextcloud Deck app for Android](https://github.com/stefan-niedermann/nextcloud-deck) is available in the [Google Play Store](https://play.google.com/store/apps/details?id=it.niedermann.nextcloud.deck.play)

### Mobile apps
- [Nextcloud Deck app for Android](https://github.com/stefan-niedermann/nextcloud-deck) - It is available in [F-Droid](https://f-droid.org/de/packages/it.niedermann.nextcloud.deck/) and the [Google Play Store](https://play.google.com/store/apps/details?id=it.niedermann.nextcloud.deck.play)
### 3rd-Party Integrations
- [trello-to-deck](https://github.com/maxammann/trello-to-deck) - Migrates cards from Trello
- [mail2deck](https://github.com/newroco/mail2deck) - Provides an "email in" solution
- [A-deck](https://github.com/leoossa/A-deck) - Chrome Extension that allows to create new card in selected stack based on current tab
## Installation/Update
This app is supposed to work on the two latest Nextcloud versions.
@@ -96,10 +96,27 @@ If available the ETag will also be part of JSON response objects as shown below
# Changelog
## 1.0.0 (unreleased)
## API version 1.0
- Deck >=1.0.0: The maximum length of the card title has been extended from 100 to 255 characters
- Deck >=1.0.0: The API will now return a 400 Bad request response if the length limitation of a board, stack or card title is exceeded
## API version 1.1
This API version has become available with **Deck 1.3.0**.
- The maximum length of the card title has been extended from 100 to 255 characters
- The API will now return a 400 Bad request response if the length limitation of a board, stack or card title is exceeded
- The attachments API endpoints will return other attachment types than deck_file
- Prior to Deck version v1.3.0 (API v1.0), attachments were stored within deck. For this type of attachments `deck_file` was used as the default type of attachments
- Starting with Deck version 1.3.0 (API v1.1) files are stored within the users regular Nextcloud files and the type `file` has been introduced for that
## API version 1.2 (unreleased)
- Endpoints for the new import functionality have been added:
- [GET /boards/import/getSystems - Import a board](#get-boardsimportgetsystems-import-a-board)
- [GET /boards/import/config/system/{schema} - Import a board](#get-boardsimportconfigsystemschema-import-a-board)
- [POST /boards/import - Import a board](#post-boardsimport-import-a-board)
# Endpoints
@@ -927,7 +944,8 @@ The request can fail with a bad request response for the following reasons:
| type | String | The type of the attachement |
| file | Binary | File data to add as an attachment |
For now only `deck_file` is supported as an attachment type.
- Prior to Deck version v1.3.0 (API v1.0), attachments were stored within deck. For this type of attachments `deck_file` was used as the default type of attachments
- Starting with Deck version 1.3.0 (API v1.1) files are stored within the users regular Nextcloud files and the type `file` has been introduced for that
#### Response
@@ -988,6 +1006,49 @@ For now only `deck_file` is supported as an attachment type.
##### 200 Success
### GET /boards/import/getSystems - Import a board
| system | string | The allowed name of system to import from |
| config | Object | The config object (JSON) |
| data | Object | The data object to import (JSON) |
#### Response
##### 200 Success
# OCS API
The following endpoints are available through the Nextcloud OCS endpoint, which is available at `/ocs/v2.php/apps/deck/api/v1.0/`.
@@ -1004,6 +1065,7 @@ Deck stores user and app configuration values globally and per board. The GET en
| Config key | Description |
| --- | --- |
| calendar | Determines if the calendar/tasks integration through the CalDAV backend is enabled for the user (boolean) |
| cardDetailsInModal | Determines if the bigger view is used (boolean) |
| groupLimit | Determines if creating new boards is limited to certain groups of the instance. The resulting output is an array of group objects with the id and the displayname (Admin only)|
```
@@ -1016,6 +1078,7 @@ Deck stores user and app configuration values globally and per board. The GET en
},
"data": {
"calendar": true,
"cardDetailsInModal": true,
"groupLimit": [
{
"id": "admin",
@@ -1045,6 +1108,7 @@ Deck stores user and app configuration values globally and per board. The GET en
8. [New owner for the deck entities](#8-new-owner-for-the-deck-entities)
### 1. Create my first board
In this example, we're going to create a board and share it with an other nextcloud user.
@@ -69,14 +72,80 @@ The **sharing tab** allows you to add users or even groups to your boards.
**Deleted objects** allows you to return previously deleted stacks or cards.
The **Timeline** allows you to see everything that happened in your boards. Everything!
## Search
### 6. Import boards
Importing can be done using the API or the `occ``deck:import` command.
Comments with more than 1000 characters are placed as attached files to the card.
It is possible to import from the following sources:
#### 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/master/lib/Service/fixtures/config-trelloJson-schema.json) for import `Trello JSON`
Example configuration file:
```json
{
"owner":"admin",
"color":"0800fd",
"uidRelation":{
"johndoe":"johndoe"
}
}
```
**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
Import using API is recommended for boards with more than 1000 actions.
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/master/lib/Service/fixtures/config-trelloApi-schema.json) for import `Trello JSON`
Deck provides a global search either through the unified search in the Nextcloud header or with the inline search next to the board controls.
This search allows advanced filtering of cards across all board of the logged in user.
For example the search `project tag:ToDo assigned:alice assigned:bob` will return all cards where the card title or description contains project **and** the tag ToDo is set **and** the user alice is assigned **and** the user bob is assigned.
* Create a new importer class extending `ABoardImportService`
* Create a listener for event `BoardImportGetAllowedEvent` to enable your importer.
> You can read more about listeners on [Nextcloud](https://docs.nextcloud.com/server/latest/developer_manual/basics/events.html?highlight=event#writing-a-listener) doc.
"Are you sure you want to delete the board {title}? This will delete all the data of this board.":"هل انت متأكد تريد مسح اللوح {title}؟ هذا سوف يمسح جميع بيانات هذا اللوح.",
"Delete the board?":"مسح اللوح؟",
"Loading filtered view":"جارِ تحميل التصفية ",
"This week":"هذا الأسبوع",
"No due":"غير محدد",
"Search for {searchQuery} in all boards":"البحث عن {searchQuery} في جميع اللوح",
"No results found":"لا يتم العثور على أي نتائج ",
@@ -279,6 +278,7 @@ OC.L10N.register(
"Share with a Deck card":"مشاركة مع بطاقة Deck",
"Share {file} with a Deck card":"مشاركة الملف {file} مع بطاقة Deck",
"Share":"مشاركة ",
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized":"دك (Deck) هو أداة تنظيم باسلوب كانبان (kanban) تهدف إلى التخطيط الشخصي وتنظيم المشروع للفرق مع نيكست كلاود (Nextcloud).\n- 📥 إضافة مهامك إلى البطاقات وترتيبها\n- 📄 كتابة ملاحظات إضافية باستخدام مارك داون (markdown)\n- 🔖 تعيين تسميات لتنظيم أفضل\n- 👥 شارك مع فريقك أو أصدقائك أو عائلتك\n- 📎 إرفاق الملفات وتضمينها بالوصف المستخدم فيه مارك داون (markdown)\n- 💬 ناقش مع فريقك باستخدام التعليقات\n- ⚡ تتبع التغييرات في تيار النشاط\n- 🚀 اجعل مشروعك منظماً"
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized":"دك (Deck) هو أداة تنظيم باسلوب كانبان (kanban) تهدف إلى التخطيط الشخصي وتنظيم المشروع للفرق مع نيكست كلاود (Nextcloud).\n- 📥 إضافة مهامك إلى البطاقات وترتيبها\n- 📄 كتابة ملاحظات إضافية باستخدام مارك داون (markdown)\n- 🔖 تعيين تسميات لتنظيم أفضل\n- 👥 شارك مع فريقك أو أصدقائك أو عائلتك\n- 📎 إرفاق الملفات وتضمينها بالوصف المستخدم فيه مارك داون (markdown)\n- 💬 ناقش مع فريقك باستخدام التعليقات\n- ⚡ تتبع التغييرات في تيار النشاط\n- 🚀 اجعل مشروعك منظماً",
"Are you sure you want to delete the board {title}? This will delete all the data of this board.":"هل انت متأكد تريد مسح اللوح {title}؟ هذا سوف يمسح جميع بيانات هذا اللوح.",
"Delete the board?":"مسح اللوح؟",
"Loading filtered view":"جارِ تحميل التصفية ",
"This week":"هذا الأسبوع",
"No due":"غير محدد",
"Search for {searchQuery} in all boards":"البحث عن {searchQuery} في جميع اللوح",
"No results found":"لا يتم العثور على أي نتائج ",
@@ -277,6 +276,7 @@
"Share with a Deck card":"مشاركة مع بطاقة Deck",
"Share {file} with a Deck card":"مشاركة الملف {file} مع بطاقة Deck",
"Share":"مشاركة ",
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized":"دك (Deck) هو أداة تنظيم باسلوب كانبان (kanban) تهدف إلى التخطيط الشخصي وتنظيم المشروع للفرق مع نيكست كلاود (Nextcloud).\n- 📥 إضافة مهامك إلى البطاقات وترتيبها\n- 📄 كتابة ملاحظات إضافية باستخدام مارك داون (markdown)\n- 🔖 تعيين تسميات لتنظيم أفضل\n- 👥 شارك مع فريقك أو أصدقائك أو عائلتك\n- 📎 إرفاق الملفات وتضمينها بالوصف المستخدم فيه مارك داون (markdown)\n- 💬 ناقش مع فريقك باستخدام التعليقات\n- ⚡ تتبع التغييرات في تيار النشاط\n- 🚀 اجعل مشروعك منظماً"
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized":"دك (Deck) هو أداة تنظيم باسلوب كانبان (kanban) تهدف إلى التخطيط الشخصي وتنظيم المشروع للفرق مع نيكست كلاود (Nextcloud).\n- 📥 إضافة مهامك إلى البطاقات وترتيبها\n- 📄 كتابة ملاحظات إضافية باستخدام مارك داون (markdown)\n- 🔖 تعيين تسميات لتنظيم أفضل\n- 👥 شارك مع فريقك أو أصدقائك أو عائلتك\n- 📎 إرفاق الملفات وتضمينها بالوصف المستخدم فيه مارك داون (markdown)\n- 💬 ناقش مع فريقك باستخدام التعليقات\n- ⚡ تتبع التغييرات في تيار النشاط\n- 🚀 اجعل مشروعك منظماً",
"Are you sure you want to delete the board {title}? This will delete all the data of this board.":"Сигурни ли сте, че искате да изтриете таблото {title}? Това ще изтрие всички данни на това табло.",
"Delete the board?":"Изтриване на таблото?",
"Loading filtered view":"Зареждане на филтриран изглед",
"This week":"Тази седмица",
"No due":"Несе дължи",
"Search for {searchQuery} in all boards":"Търсене на {searchQuery} във всички табла",
"No results found":"Няма намерени резултати",
@@ -284,6 +283,7 @@ OC.L10N.register(
"Share with a Deck card":"Споделяне с Deck карта",
"Share {file} with a Deck card":"Споделяне {file} с Deck карта",
"Share":"Споделяне",
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized":"Deck е инструмент за организация в стил kanban, насочен към лично планиране и организация на проекти за екипи, интегрирани с Nextcloud.\n\n\n- 📥 Добавете задачите си към карти и ги подредете\n- 📄 Запишете допълнителни бележки в markdown формат\n- Присвояване на етикети за още по-добра организация\n- 👥 Споделете с вашия екип, приятели или семейство\n- 📎Прикачете файлове и ги вградете във вашето описание за маркиране\n- 💬Обсъдете с вашия екип, като използвате коментари\n- ⚡ Проследявайте промените в потока от дейности\n- 🚀 Организирайте проекта си"
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized":"Deck е инструмент за организация в стил kanban, насочен към лично планиране и организация на проекти за екипи, интегрирани с Nextcloud.\n\n\n- 📥 Добавете задачите си към карти и ги подредете\n- 📄 Запишете допълнителни бележки в markdown формат\n- Присвояване на етикети за още по-добра организация\n- 👥 Споделете с вашия екип, приятели или семейство\n- 📎Прикачете файлове и ги вградете във вашето описание за маркиране\n- 💬Обсъдете с вашия екип, като използвате коментари\n- ⚡ Проследявайте промените в потока от дейности\n- 🚀 Организирайте проекта си",
"Are you sure you want to delete the board {title}? This will delete all the data of this board.":"Сигурни ли сте, че искате да изтриете таблото {title}? Това ще изтрие всички данни на това табло.",
"Delete the board?":"Изтриване на таблото?",
"Loading filtered view":"Зареждане на филтриран изглед",
"This week":"Тази седмица",
"No due":"Несе дължи",
"Search for {searchQuery} in all boards":"Търсене на {searchQuery} във всички табла",
"No results found":"Няма намерени резултати",
@@ -282,6 +281,7 @@
"Share with a Deck card":"Споделяне с Deck карта",
"Share {file} with a Deck card":"Споделяне {file} с Deck карта",
"Share":"Споделяне",
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized":"Deck е инструмент за организация в стил kanban, насочен към лично планиране и организация на проекти за екипи, интегрирани с Nextcloud.\n\n\n- 📥 Добавете задачите си към карти и ги подредете\n- 📄 Запишете допълнителни бележки в markdown формат\n- Присвояване на етикети за още по-добра организация\n- 👥 Споделете с вашия екип, приятели или семейство\n- 📎Прикачете файлове и ги вградете във вашето описание за маркиране\n- 💬Обсъдете с вашия екип, като използвате коментари\n- ⚡ Проследявайте промените в потока от дейности\n- 🚀 Организирайте проекта си"
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized":"Deck е инструмент за организация в стил kanban, насочен към лично планиране и организация на проекти за екипи, интегрирани с Nextcloud.\n\n\n- 📥 Добавете задачите си към карти и ги подредете\n- 📄 Запишете допълнителни бележки в markdown формат\n- Присвояване на етикети за още по-добра организация\n- 👥 Споделете с вашия екип, приятели или семейство\n- 📎Прикачете файлове и ги вградете във вашето описание за маркиране\n- 💬Обсъдете с вашия екип, като използвате коментари\n- ⚡ Проследявайте промените в потока от дейности\n- 🚀 Организирайте проекта си",
"Are you sure you want to delete the board {title}? This will delete all the data of this board.":"Esteu segur que voleu suprimir el tauler {title}? Això eliminarà totes les dades d'aquest tauler.",
"Delete the board?":"Voleu suprimir el tauler?",
"Loading filtered view":"S'està carregant la visualització filtrada",
"This week":"Aquesta setmana",
"No due":"Sense venciment",
"Search for {searchQuery} in all boards":"Busca {searchQuery} a tots els taulers",
"No results found":"No s'han trobat resultats",
@@ -283,6 +282,7 @@ 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",
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized":"Tauler és una eina d'organització a l'estil kanban dirigida a la planificació personal i a l'organització de projectes per equips integrada a Nextcloud.\n\n\n- 📥 Afegiu les tasques en targetes i poseu-les en ordre\n- 📄 Apunteu notes addicionals en markdown\n- 🔖 Assigneu etiquetes per una organització encara millor\n- 👥 Compartiu amb el vostre equip, família o amics\n- 📎 Adjunteu fitxers i encasteu-los en la descripció en markdown\n- 💬 Debateu amb el vostre equip fent servir comentaris\n- ⚡ Mantingueu el seguiment de canvis al flux d'activitat\n- 🚀 Tingueu el vostre projecte organitzat"
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized":"Tauler és una eina d'organització a l'estil kanban dirigida a la planificació personal i a l'organització de projectes per equips integrada a Nextcloud.\n\n\n- 📥 Afegiu les tasques en targetes i poseu-les en ordre\n- 📄 Apunteu notes addicionals en markdown\n- 🔖 Assigneu etiquetes per una organització encara millor\n- 👥 Compartiu amb el vostre equip, família o amics\n- 📎 Adjunteu fitxers i encasteu-los en la descripció en markdown\n- 💬 Debateu amb el vostre equip fent servir comentaris\n- ⚡ Mantingueu el seguiment de canvis al flux d'activitat\n- 🚀 Tingueu el vostre projecte organitzat",
"Are you sure you want to delete the board {title}? This will delete all the data of this board.":"Esteu segur que voleu suprimir el tauler {title}? Això eliminarà totes les dades d'aquest tauler.",
"Delete the board?":"Voleu suprimir el tauler?",
"Loading filtered view":"S'està carregant la visualització filtrada",
"This week":"Aquesta setmana",
"No due":"Sense venciment",
"Search for {searchQuery} in all boards":"Busca {searchQuery} a tots els taulers",
"No results found":"No s'han trobat resultats",
@@ -281,6 +280,7 @@
"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",
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized":"Tauler és una eina d'organització a l'estil kanban dirigida a la planificació personal i a l'organització de projectes per equips integrada a Nextcloud.\n\n\n- 📥 Afegiu les tasques en targetes i poseu-les en ordre\n- 📄 Apunteu notes addicionals en markdown\n- 🔖 Assigneu etiquetes per una organització encara millor\n- 👥 Compartiu amb el vostre equip, família o amics\n- 📎 Adjunteu fitxers i encasteu-los en la descripció en markdown\n- 💬 Debateu amb el vostre equip fent servir comentaris\n- ⚡ Mantingueu el seguiment de canvis al flux d'activitat\n- 🚀 Tingueu el vostre projecte organitzat"
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized":"Tauler és una eina d'organització a l'estil kanban dirigida a la planificació personal i a l'organització de projectes per equips integrada a Nextcloud.\n\n\n- 📥 Afegiu les tasques en targetes i poseu-les en ordre\n- 📄 Apunteu notes addicionals en markdown\n- 🔖 Assigneu etiquetes per una organització encara millor\n- 👥 Compartiu amb el vostre equip, família o amics\n- 📎 Adjunteu fitxers i encasteu-los en la descripció en markdown\n- 💬 Debateu amb el vostre equip fent servir comentaris\n- ⚡ Mantingueu el seguiment de canvis al flux d'activitat\n- 🚀 Tingueu el vostre projecte organitzat",
"Failed to create share with {displayName}":"Nepodařilo se vytvořit sdílení s {displayName}",
"Are you sure you want to transfer the board {title} for {user}?":"Opravdu chcete předat vlastnictví tabule {title} uživateli {user}?",
"Transfer the board.":"Předat vlastnictví tabule.",
"Transfer":"Předat vlastnictví",
"Transfer the board for {user} successfully":"Předání vlastnictví tabule uživateli {user} úspěšné",
"Failed to transfer the board for {user}":"Nepodařilo se předat vlastnictví tabule uživateli {user}",
"Add a new list":"Přidat nový sloupec",
"Archive all cards":"Archivovat všechny karty",
"Delete list":"Smazat seznam",
@@ -270,7 +276,6 @@ OC.L10N.register(
"Are you sure you want to delete the board {title}? This will delete all the data of this board.":"Opravdu chcete tabuly {title} smazat? Toto smaže veškerá data této tabule.",
"Search for {searchQuery} in all boards":"Hledat {searchQuery} na všech tabulích",
"No results found":"Nenalezeny žádné výsledky",
@@ -290,6 +295,8 @@ OC.L10N.register(
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized":"Deck je nástroj cílený na osobní nebo projektové plánování týmů v Kanban stylu, vestavěný v Nextcloud.\n\n\n- 📥 Zadávejte a uspořádávejte své úkoly do karet\n- 📄 Zapisujte si dodatečné poznámky \n- 🔖 Přiřazujte štítky pro ještě lepší organizaci\n- 👥 Sdílejte se svým týmem, přáteli nebo rodinou\n- 🚀 Dostaňte svůj projekt pod kontrolu",
"Creating the new card…":"Vytváření nové karty…",
"\"{card}\" was added to \"{board}\"":"„{card}“ bylo přidáno do „{board}“",
"(circle)":"(okruh)"
"(circle)":"(okruh)",
"This week":"Tento týden",
"Are you sure you want to transfer the board {title} for {user} ?":"Opravdu chcete předat vlastnictví tabule {title} uživateli {user}?"
"Failed to create share with {displayName}":"Nepodařilo se vytvořit sdílení s {displayName}",
"Are you sure you want to transfer the board {title} for {user}?":"Opravdu chcete předat vlastnictví tabule {title} uživateli {user}?",
"Transfer the board.":"Předat vlastnictví tabule.",
"Transfer":"Předat vlastnictví",
"Transfer the board for {user} successfully":"Předání vlastnictví tabule uživateli {user} úspěšné",
"Failed to transfer the board for {user}":"Nepodařilo se předat vlastnictví tabule uživateli {user}",
"Add a new list":"Přidat nový sloupec",
"Archive all cards":"Archivovat všechny karty",
"Delete list":"Smazat seznam",
@@ -268,7 +274,6 @@
"Are you sure you want to delete the board {title}? This will delete all the data of this board.":"Opravdu chcete tabuly {title} smazat? Toto smaže veškerá data této tabule.",
"Search for {searchQuery} in all boards":"Hledat {searchQuery} na všech tabulích",
"No results found":"Nenalezeny žádné výsledky",
@@ -288,6 +293,8 @@
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized":"Deck je nástroj cílený na osobní nebo projektové plánování týmů v Kanban stylu, vestavěný v Nextcloud.\n\n\n- 📥 Zadávejte a uspořádávejte své úkoly do karet\n- 📄 Zapisujte si dodatečné poznámky \n- 🔖 Přiřazujte štítky pro ještě lepší organizaci\n- 👥 Sdílejte se svým týmem, přáteli nebo rodinou\n- 🚀 Dostaňte svůj projekt pod kontrolu",
"Creating the new card…":"Vytváření nové karty…",
"\"{card}\" was added to \"{board}\"":"„{card}“ bylo přidáno do „{board}“",
"(circle)":"(okruh)"
"(circle)":"(okruh)",
"This week":"Tento týden",
"Are you sure you want to transfer the board {title} for {user} ?":"Opravdu chcete předat vlastnictví tabule {title} uživateli {user}?"
"Are you sure you want to delete the board {title}? This will delete all the data of this board.":"Er du sikker på du vil slette tavlen {title}? Dette vil slette alt data på tavlen.",
"Share {file} with a Deck card":"Del {file} med et Deck kort",
"Share":"Del",
"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 er et kanban inspireret organisations værktøj rettet mod personlig planlægning og projekt organisering for teams integreret med Nextcloud.\n\n\n- 📥 Tilføj dine opgaver til kort og organisér dem\n- 📄 Tilføj noter til dine opgaver i markdown\n- 🔖 Tilføj mærkater for endnu bedre organisering\n- 👥 Del med dit team, dine venner eller familie\n- 📎 Vedhæft filer og indfør dem i din markdown beskrivelse\n- 💬 Diskutér med dit team ved hjælp af kommentarer\n- ⚡ Hold øje med ændringer i aktivitets strømmen\n- 🚀 Få dit projekt organiseret!"
"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 er et kanban inspireret organisations værktøj rettet mod personlig planlægning og projekt organisering for teams integreret med Nextcloud.\n\n\n- 📥 Tilføj dine opgaver til kort og organisér dem\n- 📄 Tilføj noter til dine opgaver i markdown\n- 🔖 Tilføj mærkater for endnu bedre organisering\n- 👥 Del med dit team, dine venner eller familie\n- 📎 Vedhæft filer og indfør dem i din markdown beskrivelse\n- 💬 Diskutér med dit team ved hjælp af kommentarer\n- ⚡ Hold øje med ændringer i aktivitets strømmen\n- 🚀 Få dit projekt organiseret!",
"Are you sure you want to delete the board {title}? This will delete all the data of this board.":"Er du sikker på du vil slette tavlen {title}? Dette vil slette alt data på tavlen.",
"Share {file} with a Deck card":"Del {file} med et Deck kort",
"Share":"Del",
"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 er et kanban inspireret organisations værktøj rettet mod personlig planlægning og projekt organisering for teams integreret med Nextcloud.\n\n\n- 📥 Tilføj dine opgaver til kort og organisér dem\n- 📄 Tilføj noter til dine opgaver i markdown\n- 🔖 Tilføj mærkater for endnu bedre organisering\n- 👥 Del med dit team, dine venner eller familie\n- 📎 Vedhæft filer og indfør dem i din markdown beskrivelse\n- 💬 Diskutér med dit team ved hjælp af kommentarer\n- ⚡ Hold øje med ændringer i aktivitets strømmen\n- 🚀 Få dit projekt organiseret!"
"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 er et kanban inspireret organisations værktøj rettet mod personlig planlægning og projekt organisering for teams integreret med Nextcloud.\n\n\n- 📥 Tilføj dine opgaver til kort og organisér dem\n- 📄 Tilføj noter til dine opgaver i markdown\n- 🔖 Tilføj mærkater for endnu bedre organisering\n- 👥 Del med dit team, dine venner eller familie\n- 📎 Vedhæft filer og indfør dem i din markdown beskrivelse\n- 💬 Diskutér med dit team ved hjælp af kommentarer\n- ⚡ Hold øje med ændringer i aktivitets strømmen\n- 🚀 Få dit projekt organiseret!",
"Failed to create share with {displayName}":"Fehler beim Erstellen der Freigabe mit dem Namen {displayName}",
"Are you sure you want to transfer the board {title} for {user}?":"Möchtest Du wirklich das Board {title} an {user} übertragen?",
"Transfer the board.":"Board übertragen",
"Transfer":"Übertragen",
"Transfer the board for {user} successfully":"Das Board wurde erfolgreich an {user} übertragen",
"Failed to transfer the board for {user}":"Board konnte nicht an {user} übertragen werden",
"Add a new list":"Eine neue Liste hinzufügen",
"Archive all cards":"Alle Karten archivieren",
"Delete list":"Liste löschen",
@@ -270,7 +276,6 @@ OC.L10N.register(
"Are you sure you want to delete the board {title}? This will delete all the data of this board.":"Möchtest Du wirklich das Board {title} mit all seinen Daten löschen?",
"Search for {searchQuery} in all boards":"Suche nach {searchQuery} in allen Boards",
"No results found":"Keine Ergebnisse gefunden",
@@ -290,6 +295,8 @@ OC.L10N.register(
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized":"Deck ist ein Organisationstool im Kanban-Stil für die persönliche Planung und Projektorganisation von Teams, die in Nextcloud integriert sind.\n\n\n- 📥 Füge Deine Aufgaben zu den Karten hinzu und ordne diese\n- 📄 Zusätzliche Hinweise in der Abschrift notieren\n- 🔖 Zuweisen von Schlagworten für noch bessere Organisation\n- 👥 Teile mit Deinem Team, Freunden oder der Familie\n- 📎 Füge Dateien hinzu und verwende diese in Deinen Markdown-Beschreibungen\n- 💬 Diskutiere mit Deinem Team mit Kommentaren\n- ⚡ Behalte Überblick über Änderungen mit dem Aktivitäten-Stream\n- 🚀 Organisiere Dein Projekt",
"Creating the new card…":"Neue Karte wird erstellt …",
"\"{card}\" was added to \"{board}\"":"Karte \"{card}\" wurde zu Board \"{board}\" hinzugefügt",
"(circle)":"(Kreis)"
"(circle)":"(Kreis)",
"This week":"Diese Woche",
"Are you sure you want to transfer the board {title} for {user} ?":"Möchtest Du wirklich das Board {title} an {user} übertragen?"
"Failed to create share with {displayName}":"Fehler beim Erstellen der Freigabe mit dem Namen {displayName}",
"Are you sure you want to transfer the board {title} for {user}?":"Möchtest Du wirklich das Board {title} an {user} übertragen?",
"Transfer the board.":"Board übertragen",
"Transfer":"Übertragen",
"Transfer the board for {user} successfully":"Das Board wurde erfolgreich an {user} übertragen",
"Failed to transfer the board for {user}":"Board konnte nicht an {user} übertragen werden",
"Add a new list":"Eine neue Liste hinzufügen",
"Archive all cards":"Alle Karten archivieren",
"Delete list":"Liste löschen",
@@ -268,7 +274,6 @@
"Are you sure you want to delete the board {title}? This will delete all the data of this board.":"Möchtest Du wirklich das Board {title} mit all seinen Daten löschen?",
"Search for {searchQuery} in all boards":"Suche nach {searchQuery} in allen Boards",
"No results found":"Keine Ergebnisse gefunden",
@@ -288,6 +293,8 @@
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized":"Deck ist ein Organisationstool im Kanban-Stil für die persönliche Planung und Projektorganisation von Teams, die in Nextcloud integriert sind.\n\n\n- 📥 Füge Deine Aufgaben zu den Karten hinzu und ordne diese\n- 📄 Zusätzliche Hinweise in der Abschrift notieren\n- 🔖 Zuweisen von Schlagworten für noch bessere Organisation\n- 👥 Teile mit Deinem Team, Freunden oder der Familie\n- 📎 Füge Dateien hinzu und verwende diese in Deinen Markdown-Beschreibungen\n- 💬 Diskutiere mit Deinem Team mit Kommentaren\n- ⚡ Behalte Überblick über Änderungen mit dem Aktivitäten-Stream\n- 🚀 Organisiere Dein Projekt",
"Creating the new card…":"Neue Karte wird erstellt …",
"\"{card}\" was added to \"{board}\"":"Karte \"{card}\" wurde zu Board \"{board}\" hinzugefügt",
"(circle)":"(Kreis)"
"(circle)":"(Kreis)",
"This week":"Diese Woche",
"Are you sure you want to transfer the board {title} for {user} ?":"Möchtest Du wirklich das Board {title} an {user} übertragen?"
"Failed to create share with {displayName}":"Fehler beim Erstellen der Freigabe mit dem Namen {displayName}",
"Are you sure you want to transfer the board {title} for {user}?":"Möchten Sie wirklich Das Board {title} an {user} übertragen?",
"Transfer the board.":"Board übertragen.",
"Transfer":"Übertragen",
"Transfer the board for {user} successfully":"Das Board wurde erfolgreich an {user} übertragen",
"Failed to transfer the board for {user}":"Board konnte nicht an {user} übertragen werden",
"Add a new list":"Eine neue Liste hinzufügen",
"Archive all cards":"Alle Karten archivieren",
"Delete list":"Liste löschen",
@@ -270,7 +276,6 @@ OC.L10N.register(
"Are you sure you want to delete the board {title}? This will delete all the data of this board.":"Möchten Sie wirklich dieses Board {title} mit all seinen Daten löschen?",
"Search for {searchQuery} in all boards":"Suche nach {searchQuery} in allen Boards",
"No results found":"Keine Ergebnisse gefunden",
@@ -290,6 +295,8 @@ OC.L10N.register(
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized":"Deck ist ein Organisationstool im Kanban-Stil für die persönliche Planung und Projektorganisation von Teams, die in Nextcloud integriert sind.\n\n\n- 📥 Fügen Sie Ihre Aufgaben zu den Karten hinzu und ordnen Sie diese\n- 📄 Zusätzliche Hinweise in der Abschrift notieren\n- 🔖 Zuweisen von Schlagworten für noch bessere Organisation\n- 👥 Teilen Sie mit Ihrem Team, Ihren Freunden oder Ihrer Familie\n- 📎 Fügen Sie Dateien hinzu und verwende diese in Ihren Markdown-Beschreibungen\n- 💬 Diskutieren Sie mit Ihrem Team mit Kommentaren\n- ⚡ Behalten Sie Überblick über Änderungen mit dem Aktivitäten-Stream\n- 🚀 Organisieren Sie Ihr Projekt",
"Creating the new card…":"Neue Karte wird erstellt …",
"\"{card}\" was added to \"{board}\"":"\"{card}\" wurde \"{board}\" hinzugefügt",
"(circle)":"(Kreis)"
"(circle)":"(Kreis)",
"This week":"Diese Woche",
"Are you sure you want to transfer the board {title} for {user} ?":"Möchten Sie wirklich Das Board {title} an {user} übertragen?"
"Failed to create share with {displayName}":"Fehler beim Erstellen der Freigabe mit dem Namen {displayName}",
"Are you sure you want to transfer the board {title} for {user}?":"Möchten Sie wirklich Das Board {title} an {user} übertragen?",
"Transfer the board.":"Board übertragen.",
"Transfer":"Übertragen",
"Transfer the board for {user} successfully":"Das Board wurde erfolgreich an {user} übertragen",
"Failed to transfer the board for {user}":"Board konnte nicht an {user} übertragen werden",
"Add a new list":"Eine neue Liste hinzufügen",
"Archive all cards":"Alle Karten archivieren",
"Delete list":"Liste löschen",
@@ -268,7 +274,6 @@
"Are you sure you want to delete the board {title}? This will delete all the data of this board.":"Möchten Sie wirklich dieses Board {title} mit all seinen Daten löschen?",
"Search for {searchQuery} in all boards":"Suche nach {searchQuery} in allen Boards",
"No results found":"Keine Ergebnisse gefunden",
@@ -288,6 +293,8 @@
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized":"Deck ist ein Organisationstool im Kanban-Stil für die persönliche Planung und Projektorganisation von Teams, die in Nextcloud integriert sind.\n\n\n- 📥 Fügen Sie Ihre Aufgaben zu den Karten hinzu und ordnen Sie diese\n- 📄 Zusätzliche Hinweise in der Abschrift notieren\n- 🔖 Zuweisen von Schlagworten für noch bessere Organisation\n- 👥 Teilen Sie mit Ihrem Team, Ihren Freunden oder Ihrer Familie\n- 📎 Fügen Sie Dateien hinzu und verwende diese in Ihren Markdown-Beschreibungen\n- 💬 Diskutieren Sie mit Ihrem Team mit Kommentaren\n- ⚡ Behalten Sie Überblick über Änderungen mit dem Aktivitäten-Stream\n- 🚀 Organisieren Sie Ihr Projekt",
"Creating the new card…":"Neue Karte wird erstellt …",
"\"{card}\" was added to \"{board}\"":"\"{card}\" wurde \"{board}\" hinzugefügt",
"(circle)":"(Kreis)"
"(circle)":"(Kreis)",
"This week":"Diese Woche",
"Are you sure you want to transfer the board {title} for {user} ?":"Möchten Sie wirklich Das Board {title} an {user} übertragen?"
"You have created a new board {board}":"Δημιουργήσατε νέο πίνακα {board}",
"{user} has created a new board {board}":"Ο {user} δημιούργησε νέο πίνακα {board}",
"{user} has created a new board {board}":"Ο/η {user} δημιούργησε νέο πίνακα {board}",
"You have deleted the board {board}":"Έχετε διαγράψει τον πίνακα {board}",
"{user} has deleted the board {board}":"Ο {user} διέγραψε τον πίνακα {board}",
"{user} has deleted the board {board}":"Ο/η {user} διέγραψε τον πίνακα {board}",
"You have restored the board {board}":"Εχετε επαναφέρει τον πίνακα {board}",
"{user} has restored the board {board}":"Ο {user} επανέφερε τον πίνακα {board}",
"{user} has restored the board {board}":"Ο/η {user} επανέφερε τον πίνακα {board}",
"You have shared the board {board} with {acl}":"Εχετε διαμοιράσει τον πίνακα {board} με {acl}",
"{user} has shared the board {board} with {acl}":"Ο {user} διαμοίρασε τον πίνακα {board} με {acl}",
"{user} has shared the board {board} with {acl}":"Ο/η {user} διαμοίρασε τον πίνακα {board} με {acl}",
"You have removed {acl} from the board {board}":"Αφαιρέθηκε η {acl} από τον πίνακα {board}",
"{user} has removed {acl} from the board {board}":"Ο {user} αφαίρεσε την {acl} από τον πίνακα {board}",
"{user} has removed {acl} from the board {board}":"Ο/η {user} αφαίρεσε την {acl} από τον πίνακα {board}",
"You have renamed the board {before} to {board}":"Μετονομάσατε τον πίνακα {before} σε {board}",
"{user} has renamed the board {before} to {board}":"Ο {user} μετονόμασε τον πίνακα {before} σε {board}",
"{user} has renamed the board {before} to {board}":"Ο/η {user} μετονόμασε τον πίνακα {before} σε {board}",
"You have archived the board {board}":"Αρχειοθετήσατε τον πίνακα {board}",
"{user} has archived the board {before}":"Ο {user} αρχειοθέτησε τον πίνακα {before}",
"You have unarchived the board {board}":"Επαναφέρατε τον πίνακα {board} από αρχείο",
"{user} has unarchived the board {before}":"Ο {user} επανέφερε τον πίνακα {before} από αρχείο",
"{user} has archived the board {before}":"Ο/η {user} αρχειοθέτησε τον πίνακα {before}",
"You have unarchived the board {board}":"Επαναφέρατε τον πίνακα {board} από το αρχείο",
"{user} has unarchived the board {before}":"Ο/η {user} επανέφερε τον πίνακα {before} από αρχείο",
"You have created a new list {stack} on board {board}":"Έχετε δημιουργήσει μια νέα λίστα {stack} στον πίνακα {board}",
"{user} has created a new list {stack} on board {board}":"Ο {user} δημιούργησε μια νέα λίστα {stack} στον πίνακα {board}",
"{user} has created a new list {stack} on board {board}":"Ο/η {user} δημιούργησε μια νέα λίστα {stack} στον πίνακα {board}",
"You have renamed list {before} to {stack} on board {board}":"Μετονομάσατε την λίστα {before} σε {stack} στον πίνακα {board}",
"{user} has renamed list {before} to {stack} on board {board}":"Ο {user} μετονόμασε την λίστα {before} σε {stack} στον πίνακα {board}",
"{user} has renamed list {before} to {stack} on board {board}":"Ο/η {user} μετονόμασε την λίστα {before} σε {stack} στον πίνακα {board}",
"You have deleted list {stack} on board {board}":"Διαγράψατε την λίστα {stack} στον πίνακα {board}",
"{user} has deleted list {stack} on board {board}":"Ο {user} διέγραψε την λίστα {stack} στον πίνακα {board}",
"{user} has deleted list {stack} on board {board}":"Ο/η {user} διέγραψε την λίστα {stack} στον πίνακα {board}",
"You have created card {card} in list {stack} on board {board}":"Δημιουργήσατε την καρτέλα {card} στην λίστα {stack} του πίνακα {board}",
"{user} has created card {card} in list {stack} on board {board}":"Ο {user} δημιούργησε την καρτέλα {card} στην λίστα {stack} του πίνακα {board}",
"{user} has created card {card} in list {stack} on board {board}":"Ο/η {user} δημιούργησε την καρτέλα {card} στην λίστα {stack} του πίνακα {board}",
"You have deleted card {card} in list {stack} on board {board}":"Διαγράψατε την καρτέλα {card} στην λίστα {stack} του πίνακα {board}",
"{user} has deleted card {card} in list {stack} on board {board}":"Ο {user} διέγραψε την καρτέλα {card} στην λίστα {stack} του πίνακα {board}",
"{user} has deleted card {card} in list {stack} on board {board}":"Ο/η {user} διέγραψε την καρτέλα {card} στην λίστα {stack} του πίνακα {board}",
"You have renamed the card {before} to {card}":"Μετονομάσατε την καρτέλα {before} σε {card}",
"{user} has renamed the card {before} to {card}":"Ο {user} μετονόμασε την καρτέλα {before} σε {card}",
"{user} has renamed the card {before} to {card}":"Ο/η {user} μετονόμασε την καρτέλα {before} σε {card}",
"You have added a description to card {card} in list {stack} on board {board}":"Προσθέσατε μια περιγραφή στην καρτέλα {card} της λίστας {stack} του πίνακα {board}",
"{user} has added a description to card {card} in list {stack} on board {board}":"Ο {user} πρόσθεσε μια περιγραφή στην καρτέλα {card} της λίστας {stack} του πίνακα {board} ",
"{user} has added a description to card {card} in list {stack} on board {board}":"Ο/η {user} πρόσθεσε μια περιγραφή στην καρτέλα {card} της λίστας {stack} του πίνακα {board} ",
"You have updated the description of card {card} in list {stack} on board {board}":"Ενημερώσατε την περιγραφή στην καρτέλα {card} της λίστας {stack} του πίνακα {board}",
"{user} has updated the description of the card {card} in list {stack} on board {board}":"Ο {user} ενημέρωσε την περιγραφή της καρτέλας {card} στη λίστα {stack} του πίνακα {board}",
"{user} has updated the description of the card {card} in list {stack} on board {board}":"Ο/η {user} ενημέρωσε την περιγραφή της καρτέλας {card} στη λίστα {stack} του πίνακα {board}",
"You have archived card {card} in list {stack} on board {board}":"Αρχειοθετήσατε την κάρτα {card} στην λίστα {stack} του πίνακα {board} ",
"{user} has archived card {card} in list {stack} on board {board}":"Ο {user} αρχειοθέτησε την κάρτα {card} στην λίστα {stack} του πίνακα {board} ",
"{user} has archived card {card} in list {stack} on board {board}":"Ο/η {user} αρχειοθέτησε την κάρτα {card} στην λίστα {stack} του πίνακα {board} ",
"You have unarchived card {card} in list {stack} on board {board}":"Επαναφέρατε από το αρχείο την καρτέλα {card} της λίστας {stack} του πίνακα {board}",
"{user} has unarchived card {card} in list {stack} on board {board}":"Ο {user} επανέφερε από το αρχείο την κάρτα {card} της λίστας {stack} του πίνακα {board}",
"{user} has unarchived card {card} in list {stack} on board {board}":"Ο/η {user} επανέφερε από το αρχείο την κάρτα {card} της λίστας {stack} του πίνακα {board}",
"You have removed the due date of card {card}":"Καταργήσατε την ημερομηνία λήξης της καρτέλας {card}",
"{user} has removed the due date of card {card}":"Ο {user} κατήργησε την ημερομηνία λήξης της καρτέλας {card}",
"{user} has removed the due date of card {card}":"Ο/η {user} κατάργησε την ημερομηνία λήξης της καρτέλας {card}",
"You have set the due date of card {card} to {after}":"Ορίσατε την ημερομηνία λήξης της καρτέλας {card} σε {after}",
"{user} has set the due date of card {card} to {after}":"Ο {user} όρισε την ημερομηνία λήξης της καρτέλας {card} σε {after} ",
"{user} has set the due date of card {card} to {after}":"Ο/η {user} όρισε την ημερομηνία λήξης της καρτέλας {card} σε {after} ",
"You have updated the due date of card {card} to {after}":"Ενημερώσατε την ημερομηνία λήξης της καρτέλας {card} σε {after}",
"{user} has updated the due date of card {card} to {after}":"Ο {user} ενημέρωσε την ημερομηνία λήξης της καρτέλας {card} σε {after}",
"You have added the tag {label} to card {card} in list {stack} on board {board}":"Προσθέσατε ετικέτα στην καρτέλα {card} της λίστας {stack} του πίνακα {board}",
"{user} has added the tag {label} to card {card} in list {stack} on board {board}":"Ο {user} πρόσθεσε ετικέτα στην καρτέλα {card} της λίστας {stack} του πίνακα {board}",
"You have removed the tag {label} from card {card} in list {stack} on board {board}":"Αφαιρέσατε την ετικέτα από την καρτέλα {card} της λίστας {stack} του πίνακα {board}",
"{user} has removed the tag {label} from card {card} in list {stack} on board {board}":"Ο {user} αφαίρεσε την ετικέτα της καρτέλα {card} της λίστας {stack} του πίνακα {board} ",
"{user} has updated the due date of card {card} to {after}":"Ο/η {user} ενημέρωσε την ημερομηνία λήξης της καρτέλας {card} σε {after}",
"You have added the tag {label} to card {card} in list {stack} on board {board}":"Προσθέσατε ετικέτα {label} στην καρτέλα {card} της λίστας {stack} του πίνακα {board}",
"{user} has added the tag {label} to card {card} in list {stack} on board {board}":"Ο/η {user} πρόσθεσε ετικέτα {label} στην καρτέλα {card} της λίστας {stack} του πίνακα {board}",
"You have removed the tag {label} from card {card} in list {stack} on board {board}":"Αφαιρέσατε την ετικέτα {label} από την καρτέλα {card} της λίστας {stack} του πίνακα {board}",
"{user} has removed the tag {label} from card {card} in list {stack} on board {board}":"Ο/η {user} αφαίρεσε την ετικέτα {label} της καρτέλας {card} της λίστας {stack} του πίνακα {board} ",
"You have assigned {assigneduser} to card {card} on board {board}":"Έχετε ορίσει τον {assigneduser} στην καρτέλα {card} στον πίνακα {board}",
"{user} has assigned {assigneduser} to card {card} on board {board}":"Ο {user} έχει ορισθεί {assigneduser} στην καρτέλα {card} του πίνακα {board}",
"You have unassigned {assigneduser} from card {card} on board {board}":"Έχετε αφαιρεθεί {assigneduser} από την καρτέλα {card} του πίνακα {board}",
"{user} has unassigned {assigneduser} from card {card} on board {board}":"Ο {user} έχει αφαιρεθεί {assigneduser} από την καρτέλα {card} του πίνακα {board}",
"{user} has assigned {assigneduser} to card {card} on board {board}":"Ο/η {user} έχει ορισθεί {assigneduser} στην καρτέλα {card} του πίνακα {board}",
"You have unassigned {assigneduser} from card {card} on board {board}":"Έχετε αφαιρέσει {assigneduser} από την καρτέλα {card} του πίνακα {board}",
"{user} has unassigned {assigneduser} from card {card} on board {board}":"Ο/η {user} έχει αφαιρεθεί {assigneduser} από την καρτέλα {card} του πίνακα {board}",
"You have moved the card {card} from list {stackBefore} to {stack}":"Μετακινήσατε την καρτέλα {card} από την λίστα {stackBefore} στη {stack}",
"{user} has moved the card {card} from list {stackBefore} to {stack}":"Ο {user} μετακίνησε την καρτέλα {card} από την λίστα {stackBefore} στην {stack}",
"{user} has moved the card {card} from list {stackBefore} to {stack}":"Ο/η {user} μετακίνησε την καρτέλα {card} από την λίστα {stackBefore} στην {stack}",
"You have added the attachment {attachment} to card {card}":"Προσθέσατε το συνημμένο {attachment} στην καρτέλα {card}",
"{user} has added the attachment {attachment} to card {card}":"Ο {user} πρόσθεσε το συνημμένο {attachment} στην καρτέλα {card}",
"{user} has added the attachment {attachment} to card {card}":"Ο/η {user} πρόσθεσε το συνημμένο {attachment} στην καρτέλα {card}",
"You have updated the attachment {attachment} on card {card}":"Ενημερώσατε το συνημμένο {attachment} της καρτέλας {card}",
"{user} has updated the attachment {attachment} on card {card}":"Ο {user} ενημέρωσε το συνημμένο {attachment} της καρτέλας {card}",
"{user} has updated the attachment {attachment} on card {card}":"Ο/η {user} ενημέρωσε το συνημμένο {attachment} της καρτέλας {card}",
"You have deleted the attachment {attachment} from card {card}":"Διαγράψατε το συνημμένο {attachment} της καρτέλας {card}",
"{user} has deleted the attachment {attachment} from card {card}":"Ο {user} διέγραψε το συνημμένο {attachment} της καρτέλας {card}",
"{user} has deleted the attachment {attachment} from card {card}":"Ο/η {user} διέγραψε το συνημμένο {attachment} της καρτέλας {card}",
"You have restored the attachment {attachment} to card {card}":"Επαναφέρατε το συνημμένο {attachment} στην καρτέλα {card}",
"{user} has restored the attachment {attachment} to card {card}":"Ο {user} επανέφερε το συνημμένο {attachment} στην καρτέλα {card}",
"{user} has restored the attachment {attachment} to card {card}":"Ο/η {user} επανέφερε το συνημμένο {attachment} στην καρτέλα {card}",
"You have commented on card {card}":"Σχολιάσατε την καρτέλα {card}",
"{user} has commented on card {card}":"Ο {user} σχολίασε την καρτέλα {card}",
"{user} has commented on card {card}":"Ο/η {user} σχολίασε την καρτέλα {card}",
"A <strong>card description</strong> inside the Deck app has been changed":"Η <strong>περιγραφή καρτέλας </strong>στην εφαρμογή Deck άλλαξε",
"Deck":"Deck",
"Changes in the <strong>Deck app</strong>":"Αλλαγές στην <strong>εφαρμογή Deck</strong>",
"A <strong>comment</strong> was created on a card":"Ένα <strong>σχόλιο</strong> δημιουργήθηκε σε μια καρτέλα",
"Upcoming cards":"Επερχόμενες κάρτες",
"Upcoming cards":"Επερχόμενες καρτέλες",
"Personal":"Προσωπικά",
"The card \"%s\" on \"%s\" has been assigned to you by %s.":"Η καρτέλα \"%s\" του \"%s\" ανατέθηκε σε εσάς από τον %s.",
"The card \"%s\" on \"%s\" has reached its due date.":"Η κάρτα \"1%s\" στο \"1%s\" έχει λήξει.",
"%s has mentioned you in a comment on \"%s\".":"%s σας ανέφερε σε σχόλιο στο \"%s\".",
"The board \"%s\" has been shared with you by %s.":"Ο πίνακας \"%s\" είναι σε κοινή χρήση μαζί σας %s.",
"{user} has assigned the card {deck-card} on {deck-board} to you.":"Ο/Η {user} έχει αναθέσει την καρτέλα {deck-card} του πίνακα {deck-board} σε εσάς.",
"The card \"%s\" on \"%s\" has reached its due date.":"Η καρτέλα \"%s\" στο \"%s\" έχει λήξει.",
"The card {deck-card} on {deck-board} has reached its due date.":"Η καρτέλα {deck-card} στο {deck-board} έχει λήξει.",
"%s has mentioned you in a comment on \"%s\".":"Ο/η%s σας ανέφερε σε σχόλιο στο \"%s\".",
"{user} has mentioned you in a comment on {deck-card}.":"Ο/Η {user} σας ανέφερε σε ένα σχόλιο στο {deck-card}.",
"The board \"%s\" has been shared with you by %s.":"Ο πίνακας \"%s\" είναι σε κοινή χρήση μαζί σας από %s.",
"{user} has shared {deck-board} with you.":"Ο/Η διαμοιράστηκε μαζί σας το {deck-board}",
"Card comments":"Σχόλια καρτέλας",
"%s on %s":"%s στο %s",
"No data was provided to create an attachment.":"Δεν δόθηκαν στοιχεία για δημιουργία συνημμένου.",
"Finished":"Ολοκληρώθηκε",
"To review":"Προς επισκόπηση",
"Action needed":"Απαιτείται ενέργεια",
"Later":"Αργότερα",
"copy":"Αντιγραφή",
"To do":"Να κάνω",
"To do":"Προς Ενέργεια",
"Doing":"Σε εξέλιξη",
"Done":"Ολοκληρώθηκε",
"Example Task 3":"Παράδειγμα Εργασίας 3",
"Example Task 2":"Παράδειγμα Εργασίας 2",
"Example Task 1":"Παράδειγμα Εργασίας 1",
"The file was uploaded":"Το αρχείο μεταφορτώθηκε",
"The uploaded file exceeds the upload_max_filesize directive in php.ini":"Τομεταφορτωμένο αρχείο υπερβαίνει την οδηγία upload_max_filesize στο php.ini",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form":"Τομεταφορτωμένο αρχείο υπερβαίνει την οδηγία MAX_FILE_SIZE που καθορίστηκε στην φόρμα HTML.",
"The uploaded file exceeds the 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",
"Card not found":"Η κάρτα δεν βρέθηκε",
"Path is already shared with this 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.",
"Card not found":"Η καρτέλα δεν βρέθηκε",
"Path is already shared with this card":"Η διαδρομή κοινοποιείται ήδη σε αυτήν την καρτέλα",
"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 είναι ένα εργαλείο οργάνωσης τύπου kanban με στόχο τον προσωπικό προγραμματισμό και την οργάνωση έργων για ομάδες που έχουν ενσωματωθεί στο Nextcloud.\n\n\n- 📥 Προσθέστε τις εργασίες σας στις καρτέλες και βάλτε τες στη σειρά\n- 📄 Γράψτε τις πρόσθετες σημειώσεις\n- 🔖 Αντιστοιχίστε τις ετικέτες για ακόμη καλύτερη οργάνωση\n- 👥 Μοιραστείτε με την ομάδα, φίλους ή την οικογένειά σας\n- 📎 Επισυνάψτε αρχεία και ενσωματώστε τα στην περιγραφή\n- 💬 Συζητήστε με την ομάδα σας χρησιμοποιώντας σχόλια\n- ⚡ Παρακολουθήστε τις αλλαγές στη ροή δραστηριοτήτων\n- 🚀 Έχετε τα όλα οργανωμένα",
"Card details":"Λεπτομέρειες καρτέλας",
"Add board":"Προσθήκη πίνακα",
"Select the board to link to a project":"Επιλέξτε πίνακα και συνδέστε τον σε έργο",
"Select the board to link to a project":"Επιλέξτε πίνακα και συνδέστε τον σε ένα έργο",
"Search by board title":"Αναζήτηση με το όνομα πίνακα",
"Select board":"Επιλογή πίνακα",
"Create a new card":"Δημιουργία νέας κάρτας",
"Create a new card":"Δημιουργία νέας καρτέλας",
"Select a board":"Επιλογή ενός πίνακα",
"Select a list":"Επιλέξτε μια λίστα",
"Card title":"Τίτλος κάρτας",
"Card title":"Τίτλος καρτέλας",
"Cancel":"Aκύρωση",
"Open card":"Άνοιγμα κάρτας",
"Creating the new card …":"Γίνεται δημιουργία της νέας καρτέλας...",
"Card \"{card}\" was added to \"{board}\"":"Η καρτέλα \"{card}\" προστέθηκε στο \"{board}\"",
"Open card":"Άνοιγμα καρτέλας",
"Close":"Κλείσιμο",
"Create card":"Δημιουργία κάρτας",
"Select a card":"Επίλογή μιας καρτέλας",
"Create card":"Δημιουργία καρτέλας",
"Select a card":"Επιλογή μιας καρτέλας",
"Select the card to link to a project":"Επιλογή καρτέλας για σύνδεση στο έργο",
"Link to card":"Σύνδεσμος σε καρτέλα",
"File already exists":"Το αρχείο υπάρχει ήδη",
"A file with the name {filename} already exists.":"Το αρχείο με όνομα {filename} υπάρχει ήδη.",
"Do you want to overwrite it?":"Επιθυμείτε να γίνει αντικατάσταση του?",
"Move card to another board":"Μετακίνηση καρτέλας σε άλλο πίνακα",
"Card deleted":"Η κάρτα διαγράφηκε",
"List is empty":"Η λίστα είναι άδεια.",
"Card deleted":"Η καρτέλα διαγράφηκε",
"seconds ago":" δευτερόλεπτα πριν ",
"All boards":"Όλοι οι πίνακες",
"Archived boards":"Αρχειοθέτηση πινάκων ",
"Shared with you":"Διαμοιρασμένα μαζί σας",
"Use bigger card view":"Χρησιμοποιήστε μεγαλύτερη προβολή κάρτας",
"Use bigger card view":"Χρησιμοποιήστε μεγαλύτερη προβολή καρτέλας",
"Show boards in calendar/tasks":"Εμφάνιση πινάκων στο ημερολόγιο / εργασίες",
"Limit deck usage of groups":"Περιορίστε τη χρήση της εφαρμογής σε ομάδες",
"Limit deck usage of groups":"Περιορίστε τη χρήση της εφαρμογής deck σε ομάδες",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them.":"Ο περιορισμός του Deck θα εμποδίσει τους χρήστες που δεν είναι μέρος αυτών των ομάδων να δημιουργούν δικούς τους πίνακες. Οι χρήστες θα εξακολουθήσουν να εργάζονται σε πίνακες που έχουν διαμοιραστεί μαζί τους.",
"Board details":"Λεπτομέριες πίνακα",
"Edit board":"Επεξεργασία πίνακα",
@@ -240,31 +262,37 @@ OC.L10N.register(
"Turn on due date reminders":"Ενεργοποιήστε τις υπενθυμίσεις ημερομηνίας προθεσμίας",
"Turn off due date reminders":"Απενεργοποιήστε τις υπενθυμίσεις ημερομηνίας προθεσμίας",
"Due date reminders":"Υπενθυμίσεις ημερομηνίας προθεσμίας",
"All cards":"Όλες οι κάρτες",
"Assigned cards":"Ανατεθείς κάρτες",
"All cards":"Όλες οι καρτέλες",
"Assigned cards":"Ανατεθειμένες καρτέλες",
"No notifications":"Δεν υπάρχουν ειδοποιήσεις",
"Delete board":"Διαγραφή πίνακα",
"Board {0} deleted":"Διαγράφηκε {0} πίνακας",
"Only assigned cards":"Μόνο κάρτες που έχουν ανατεθεί",
"Board {0} deleted":"Διαγράφηκε {0} πίνακας",
"Only assigned cards":"Μόνο καρτέλες που έχουν ανατεθεί",
"No reminder":"Δεν υπάρχει υπενθύμιση",
"An error occurred":"Παρουσιάστηκε σφάλμα",
"Are you sure you want to delete the board {title}? This will delete all the data of this board.":"Είστε βέβαιοι ότι θέλετε να διαγράψετε τον πίνακα {title}; Θα διαγραφούν όλα τα δεδομένα.",
"Delete the board?":"Διαγραφή πίνακα;",
"Delete the board?":"Διαγραφή του πίνακα;",
"Loading filtered view":"Φόρτωση εμφάνισης με βάση το φίλτρο",
"This week":"Αυτή την εβδομάδα",
"No due":"Χωρίς λήξη",
"No upcoming cards":"Δεν υπάρχουν επερχόμενες κάρτες",
"upcoming cards":"Επερχόμενες κάρτες",
"Search for {searchQuery} in all boards":"Αναζήτηση για {searchQuery} σε όλους τους πίνακες",
"No results found":"Δεν βρέθηκαν αποτελέσματα",
"No upcoming cards":"Δεν υπάρχουν επερχόμενες καρτέλες",
"upcoming cards":"επερχόμενες καρτέλες",
"Link to a board":"Σύνδεσμος στον πίνακα",
"Link to a card":"Σύνδεσμος σε καρτέλα",
"Create a card":"Δημιουργία κάρτας",
"Create a card":"Δημιουργία καρτέλας",
"Message from {author} in {conversationName}":"Μήνυμα από {author} σε {conversationName}",
"Something went wrong":"Κάτι πήγε στραβά",
"Failed to upload {name}":"Αποτυχία μεταφόρτωσης {όνομα}",
"Failed to upload {name}":"Αποτυχία μεταφόρτωσης {name}",
"Maximum file size of {size} exceeded":"Υπέρβαση επιτρεπόμενου μεγέθους αρχείου {size}",
"Error creating the share":"Σφάλμα κατά τη δημιουργία της κοινοποίησης",
"Share with a Deck card":"Μοιραστείτε με μια κάρτα Deck",
"Share {file} with a Deck card":"Μοιραστείτε {αρχείο} με μια κάρτα Deck",
"Share with a Deck card":"Μοιραστείτε με μια καρτέλα Deck",
"Share {file} with a Deck card":"Μοιραστείτε το {file} με μια καρτέλα Deck",
"Share":"Μοιραστείτε",
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized":"Το Deck είναι ένα εργαλείο οργάνωσης τύπου kanban με στόχο τον προσωπικό προγραμματισμό και την ομαδική οργάνωση για ομάδες που έχουν ενσωματωθεί στο Nextcloud.\n\n\n- 📥 Προσθέστε τις εργασίες σας στις καρτέλες και βάλτε τες στη σειρά\n- 📄 Γράψτε τις πρόσθετες σημειώσεις\n- 🔖 Αντιστοιχίστε τις ετικέτες για ακόμη καλύτερη οργάνωση\n- 👥 Μοιραστείτε με την ομάδα, φίλους ή την οικογένειά σας\n- 📎 Συνδέστε αρχεία και ενσωματώστε τα στην περιγραφή\n- 💬 Συζητήστε με την ομάδα σας χρησιμοποιώντας σχόλια\n- ⚡ Παρακολουθήστε τις αλλαγές στη ροή δραστηριοτήτων\n- 🚀 Έχετε τα όλα οργανωμένα"
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized":"Το Deck είναι ένα εργαλείο οργάνωσης τύπου kanban με στόχο τον προσωπικό προγραμματισμό και την οργάνωση έργωνγια ομάδες που έχουν ενσωματωθεί στο Nextcloud.\n\n\n- 📥 Προσθέστε τις εργασίες σας στις καρτέλες και βάλτε τες στη σειρά\n- 📄 Γράψτε τις πρόσθετες σημειώσεις\n- 🔖 Αντιστοιχίστε τις ετικέτες για ακόμη καλύτερη οργάνωση\n- 👥 Μοιραστείτε με την ομάδα, φίλους ή την οικογένειά σας\n- 📎 Συνδέστε αρχεία και ενσωματώστε τα στην περιγραφή\n- 💬 Συζητήστε με την ομάδα σας χρησιμοποιώντας σχόλια\n- ⚡ Παρακολουθήστε τις αλλαγές στη ροή δραστηριοτήτων\n- 🚀 Έχετε τα όλα οργανωμένα",
"Creating the new card…":"Δημιουργία νέας καρτέλας...",
"\"{card}\" was added to \"{board}\"":"\"{card}\" προστέθηκε στο \"{board}\"",
"You have created a new board {board}":"Δημιουργήσατε νέο πίνακα {board}",
"{user} has created a new board {board}":"Ο {user} δημιούργησε νέο πίνακα {board}",
"{user} has created a new board {board}":"Ο/η {user} δημιούργησε νέο πίνακα {board}",
"You have deleted the board {board}":"Έχετε διαγράψει τον πίνακα {board}",
"{user} has deleted the board {board}":"Ο {user} διέγραψε τον πίνακα {board}",
"{user} has deleted the board {board}":"Ο/η {user} διέγραψε τον πίνακα {board}",
"You have restored the board {board}":"Εχετε επαναφέρει τον πίνακα {board}",
"{user} has restored the board {board}":"Ο {user} επανέφερε τον πίνακα {board}",
"{user} has restored the board {board}":"Ο/η {user} επανέφερε τον πίνακα {board}",
"You have shared the board {board} with {acl}":"Εχετε διαμοιράσει τον πίνακα {board} με {acl}",
"{user} has shared the board {board} with {acl}":"Ο {user} διαμοίρασε τον πίνακα {board} με {acl}",
"{user} has shared the board {board} with {acl}":"Ο/η {user} διαμοίρασε τον πίνακα {board} με {acl}",
"You have removed {acl} from the board {board}":"Αφαιρέθηκε η {acl} από τον πίνακα {board}",
"{user} has removed {acl} from the board {board}":"Ο {user} αφαίρεσε την {acl} από τον πίνακα {board}",
"{user} has removed {acl} from the board {board}":"Ο/η {user} αφαίρεσε την {acl} από τον πίνακα {board}",
"You have renamed the board {before} to {board}":"Μετονομάσατε τον πίνακα {before} σε {board}",
"{user} has renamed the board {before} to {board}":"Ο {user} μετονόμασε τον πίνακα {before} σε {board}",
"{user} has renamed the board {before} to {board}":"Ο/η {user} μετονόμασε τον πίνακα {before} σε {board}",
"You have archived the board {board}":"Αρχειοθετήσατε τον πίνακα {board}",
"{user} has archived the board {before}":"Ο {user} αρχειοθέτησε τον πίνακα {before}",
"You have unarchived the board {board}":"Επαναφέρατε τον πίνακα {board} από αρχείο",
"{user} has unarchived the board {before}":"Ο {user} επανέφερε τον πίνακα {before} από αρχείο",
"{user} has archived the board {before}":"Ο/η {user} αρχειοθέτησε τον πίνακα {before}",
"You have unarchived the board {board}":"Επαναφέρατε τον πίνακα {board} από το αρχείο",
"{user} has unarchived the board {before}":"Ο/η {user} επανέφερε τον πίνακα {before} από αρχείο",
"You have created a new list {stack} on board {board}":"Έχετε δημιουργήσει μια νέα λίστα {stack} στον πίνακα {board}",
"{user} has created a new list {stack} on board {board}":"Ο {user} δημιούργησε μια νέα λίστα {stack} στον πίνακα {board}",
"{user} has created a new list {stack} on board {board}":"Ο/η {user} δημιούργησε μια νέα λίστα {stack} στον πίνακα {board}",
"You have renamed list {before} to {stack} on board {board}":"Μετονομάσατε την λίστα {before} σε {stack} στον πίνακα {board}",
"{user} has renamed list {before} to {stack} on board {board}":"Ο {user} μετονόμασε την λίστα {before} σε {stack} στον πίνακα {board}",
"{user} has renamed list {before} to {stack} on board {board}":"Ο/η {user} μετονόμασε την λίστα {before} σε {stack} στον πίνακα {board}",
"You have deleted list {stack} on board {board}":"Διαγράψατε την λίστα {stack} στον πίνακα {board}",
"{user} has deleted list {stack} on board {board}":"Ο {user} διέγραψε την λίστα {stack} στον πίνακα {board}",
"{user} has deleted list {stack} on board {board}":"Ο/η {user} διέγραψε την λίστα {stack} στον πίνακα {board}",
"You have created card {card} in list {stack} on board {board}":"Δημιουργήσατε την καρτέλα {card} στην λίστα {stack} του πίνακα {board}",
"{user} has created card {card} in list {stack} on board {board}":"Ο {user} δημιούργησε την καρτέλα {card} στην λίστα {stack} του πίνακα {board}",
"{user} has created card {card} in list {stack} on board {board}":"Ο/η {user} δημιούργησε την καρτέλα {card} στην λίστα {stack} του πίνακα {board}",
"You have deleted card {card} in list {stack} on board {board}":"Διαγράψατε την καρτέλα {card} στην λίστα {stack} του πίνακα {board}",
"{user} has deleted card {card} in list {stack} on board {board}":"Ο {user} διέγραψε την καρτέλα {card} στην λίστα {stack} του πίνακα {board}",
"{user} has deleted card {card} in list {stack} on board {board}":"Ο/η {user} διέγραψε την καρτέλα {card} στην λίστα {stack} του πίνακα {board}",
"You have renamed the card {before} to {card}":"Μετονομάσατε την καρτέλα {before} σε {card}",
"{user} has renamed the card {before} to {card}":"Ο {user} μετονόμασε την καρτέλα {before} σε {card}",
"{user} has renamed the card {before} to {card}":"Ο/η {user} μετονόμασε την καρτέλα {before} σε {card}",
"You have added a description to card {card} in list {stack} on board {board}":"Προσθέσατε μια περιγραφή στην καρτέλα {card} της λίστας {stack} του πίνακα {board}",
"{user} has added a description to card {card} in list {stack} on board {board}":"Ο {user} πρόσθεσε μια περιγραφή στην καρτέλα {card} της λίστας {stack} του πίνακα {board} ",
"{user} has added a description to card {card} in list {stack} on board {board}":"Ο/η {user} πρόσθεσε μια περιγραφή στην καρτέλα {card} της λίστας {stack} του πίνακα {board} ",
"You have updated the description of card {card} in list {stack} on board {board}":"Ενημερώσατε την περιγραφή στην καρτέλα {card} της λίστας {stack} του πίνακα {board}",
"{user} has updated the description of the card {card} in list {stack} on board {board}":"Ο {user} ενημέρωσε την περιγραφή της καρτέλας {card} στη λίστα {stack} του πίνακα {board}",
"{user} has updated the description of the card {card} in list {stack} on board {board}":"Ο/η {user} ενημέρωσε την περιγραφή της καρτέλας {card} στη λίστα {stack} του πίνακα {board}",
"You have archived card {card} in list {stack} on board {board}":"Αρχειοθετήσατε την κάρτα {card} στην λίστα {stack} του πίνακα {board} ",
"{user} has archived card {card} in list {stack} on board {board}":"Ο {user} αρχειοθέτησε την κάρτα {card} στην λίστα {stack} του πίνακα {board} ",
"{user} has archived card {card} in list {stack} on board {board}":"Ο/η {user} αρχειοθέτησε την κάρτα {card} στην λίστα {stack} του πίνακα {board} ",
"You have unarchived card {card} in list {stack} on board {board}":"Επαναφέρατε από το αρχείο την καρτέλα {card} της λίστας {stack} του πίνακα {board}",
"{user} has unarchived card {card} in list {stack} on board {board}":"Ο {user} επανέφερε από το αρχείο την κάρτα {card} της λίστας {stack} του πίνακα {board}",
"{user} has unarchived card {card} in list {stack} on board {board}":"Ο/η {user} επανέφερε από το αρχείο την κάρτα {card} της λίστας {stack} του πίνακα {board}",
"You have removed the due date of card {card}":"Καταργήσατε την ημερομηνία λήξης της καρτέλας {card}",
"{user} has removed the due date of card {card}":"Ο {user} κατήργησε την ημερομηνία λήξης της καρτέλας {card}",
"{user} has removed the due date of card {card}":"Ο/η {user} κατάργησε την ημερομηνία λήξης της καρτέλας {card}",
"You have set the due date of card {card} to {after}":"Ορίσατε την ημερομηνία λήξης της καρτέλας {card} σε {after}",
"{user} has set the due date of card {card} to {after}":"Ο {user} όρισε την ημερομηνία λήξης της καρτέλας {card} σε {after} ",
"{user} has set the due date of card {card} to {after}":"Ο/η {user} όρισε την ημερομηνία λήξης της καρτέλας {card} σε {after} ",
"You have updated the due date of card {card} to {after}":"Ενημερώσατε την ημερομηνία λήξης της καρτέλας {card} σε {after}",
"{user} has updated the due date of card {card} to {after}":"Ο {user} ενημέρωσε την ημερομηνία λήξης της καρτέλας {card} σε {after}",
"You have added the tag {label} to card {card} in list {stack} on board {board}":"Προσθέσατε ετικέτα στην καρτέλα {card} της λίστας {stack} του πίνακα {board}",
"{user} has added the tag {label} to card {card} in list {stack} on board {board}":"Ο {user} πρόσθεσε ετικέτα στην καρτέλα {card} της λίστας {stack} του πίνακα {board}",
"You have removed the tag {label} from card {card} in list {stack} on board {board}":"Αφαιρέσατε την ετικέτα από την καρτέλα {card} της λίστας {stack} του πίνακα {board}",
"{user} has removed the tag {label} from card {card} in list {stack} on board {board}":"Ο {user} αφαίρεσε την ετικέτα της καρτέλα {card} της λίστας {stack} του πίνακα {board} ",
"{user} has updated the due date of card {card} to {after}":"Ο/η {user} ενημέρωσε την ημερομηνία λήξης της καρτέλας {card} σε {after}",
"You have added the tag {label} to card {card} in list {stack} on board {board}":"Προσθέσατε ετικέτα {label} στην καρτέλα {card} της λίστας {stack} του πίνακα {board}",
"{user} has added the tag {label} to card {card} in list {stack} on board {board}":"Ο/η {user} πρόσθεσε ετικέτα {label} στην καρτέλα {card} της λίστας {stack} του πίνακα {board}",
"You have removed the tag {label} from card {card} in list {stack} on board {board}":"Αφαιρέσατε την ετικέτα {label} από την καρτέλα {card} της λίστας {stack} του πίνακα {board}",
"{user} has removed the tag {label} from card {card} in list {stack} on board {board}":"Ο/η {user} αφαίρεσε την ετικέτα {label} της καρτέλας {card} της λίστας {stack} του πίνακα {board} ",
"You have assigned {assigneduser} to card {card} on board {board}":"Έχετε ορίσει τον {assigneduser} στην καρτέλα {card} στον πίνακα {board}",
"{user} has assigned {assigneduser} to card {card} on board {board}":"Ο {user} έχει ορισθεί {assigneduser} στην καρτέλα {card} του πίνακα {board}",
"You have unassigned {assigneduser} from card {card} on board {board}":"Έχετε αφαιρεθεί {assigneduser} από την καρτέλα {card} του πίνακα {board}",
"{user} has unassigned {assigneduser} from card {card} on board {board}":"Ο {user} έχει αφαιρεθεί {assigneduser} από την καρτέλα {card} του πίνακα {board}",
"{user} has assigned {assigneduser} to card {card} on board {board}":"Ο/η {user} έχει ορισθεί {assigneduser} στην καρτέλα {card} του πίνακα {board}",
"You have unassigned {assigneduser} from card {card} on board {board}":"Έχετε αφαιρέσει {assigneduser} από την καρτέλα {card} του πίνακα {board}",
"{user} has unassigned {assigneduser} from card {card} on board {board}":"Ο/η {user} έχει αφαιρεθεί {assigneduser} από την καρτέλα {card} του πίνακα {board}",
"You have moved the card {card} from list {stackBefore} to {stack}":"Μετακινήσατε την καρτέλα {card} από την λίστα {stackBefore} στη {stack}",
"{user} has moved the card {card} from list {stackBefore} to {stack}":"Ο {user} μετακίνησε την καρτέλα {card} από την λίστα {stackBefore} στην {stack}",
"{user} has moved the card {card} from list {stackBefore} to {stack}":"Ο/η {user} μετακίνησε την καρτέλα {card} από την λίστα {stackBefore} στην {stack}",
"You have added the attachment {attachment} to card {card}":"Προσθέσατε το συνημμένο {attachment} στην καρτέλα {card}",
"{user} has added the attachment {attachment} to card {card}":"Ο {user} πρόσθεσε το συνημμένο {attachment} στην καρτέλα {card}",
"{user} has added the attachment {attachment} to card {card}":"Ο/η {user} πρόσθεσε το συνημμένο {attachment} στην καρτέλα {card}",
"You have updated the attachment {attachment} on card {card}":"Ενημερώσατε το συνημμένο {attachment} της καρτέλας {card}",
"{user} has updated the attachment {attachment} on card {card}":"Ο {user} ενημέρωσε το συνημμένο {attachment} της καρτέλας {card}",
"{user} has updated the attachment {attachment} on card {card}":"Ο/η {user} ενημέρωσε το συνημμένο {attachment} της καρτέλας {card}",
"You have deleted the attachment {attachment} from card {card}":"Διαγράψατε το συνημμένο {attachment} της καρτέλας {card}",
"{user} has deleted the attachment {attachment} from card {card}":"Ο {user} διέγραψε το συνημμένο {attachment} της καρτέλας {card}",
"{user} has deleted the attachment {attachment} from card {card}":"Ο/η {user} διέγραψε το συνημμένο {attachment} της καρτέλας {card}",
"You have restored the attachment {attachment} to card {card}":"Επαναφέρατε το συνημμένο {attachment} στην καρτέλα {card}",
"{user} has restored the attachment {attachment} to card {card}":"Ο {user} επανέφερε το συνημμένο {attachment} στην καρτέλα {card}",
"{user} has restored the attachment {attachment} to card {card}":"Ο/η {user} επανέφερε το συνημμένο {attachment} στην καρτέλα {card}",
"You have commented on card {card}":"Σχολιάσατε την καρτέλα {card}",
"{user} has commented on card {card}":"Ο {user} σχολίασε την καρτέλα {card}",
"{user} has commented on card {card}":"Ο/η {user} σχολίασε την καρτέλα {card}",
"A <strong>card description</strong> inside the Deck app has been changed":"Η <strong>περιγραφή καρτέλας </strong>στην εφαρμογή Deck άλλαξε",
"Deck":"Deck",
"Changes in the <strong>Deck app</strong>":"Αλλαγές στην <strong>εφαρμογή Deck</strong>",
"A <strong>comment</strong> was created on a card":"Ένα <strong>σχόλιο</strong> δημιουργήθηκε σε μια καρτέλα",
"Upcoming cards":"Επερχόμενες κάρτες",
"Upcoming cards":"Επερχόμενες καρτέλες",
"Personal":"Προσωπικά",
"The card \"%s\" on \"%s\" has been assigned to you by %s.":"Η καρτέλα \"%s\" του \"%s\" ανατέθηκε σε εσάς από τον %s.",
"The card \"%s\" on \"%s\" has reached its due date.":"Η κάρτα \"1%s\" στο \"1%s\" έχει λήξει.",
"%s has mentioned you in a comment on \"%s\".":"%s σας ανέφερε σε σχόλιο στο \"%s\".",
"The board \"%s\" has been shared with you by %s.":"Ο πίνακας \"%s\" είναι σε κοινή χρήση μαζί σας %s.",
"{user} has assigned the card {deck-card} on {deck-board} to you.":"Ο/Η {user} έχει αναθέσει την καρτέλα {deck-card} του πίνακα {deck-board} σε εσάς.",
"The card \"%s\" on \"%s\" has reached its due date.":"Η καρτέλα \"%s\" στο \"%s\" έχει λήξει.",
"The card {deck-card} on {deck-board} has reached its due date.":"Η καρτέλα {deck-card} στο {deck-board} έχει λήξει.",
"%s has mentioned you in a comment on \"%s\".":"Ο/η%s σας ανέφερε σε σχόλιο στο \"%s\".",
"{user} has mentioned you in a comment on {deck-card}.":"Ο/Η {user} σας ανέφερε σε ένα σχόλιο στο {deck-card}.",
"The board \"%s\" has been shared with you by %s.":"Ο πίνακας \"%s\" είναι σε κοινή χρήση μαζί σας από %s.",
"{user} has shared {deck-board} with you.":"Ο/Η διαμοιράστηκε μαζί σας το {deck-board}",
"Card comments":"Σχόλια καρτέλας",
"%s on %s":"%s στο %s",
"No data was provided to create an attachment.":"Δεν δόθηκαν στοιχεία για δημιουργία συνημμένου.",
"Finished":"Ολοκληρώθηκε",
"To review":"Προς επισκόπηση",
"Action needed":"Απαιτείται ενέργεια",
"Later":"Αργότερα",
"copy":"Αντιγραφή",
"To do":"Να κάνω",
"To do":"Προς Ενέργεια",
"Doing":"Σε εξέλιξη",
"Done":"Ολοκληρώθηκε",
"Example Task 3":"Παράδειγμα Εργασίας 3",
"Example Task 2":"Παράδειγμα Εργασίας 2",
"Example Task 1":"Παράδειγμα Εργασίας 1",
"The file was uploaded":"Το αρχείο μεταφορτώθηκε",
"The uploaded file exceeds the upload_max_filesize directive in php.ini":"Τομεταφορτωμένο αρχείο υπερβαίνει την οδηγία upload_max_filesize στο php.ini",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form":"Τομεταφορτωμένο αρχείο υπερβαίνει την οδηγία MAX_FILE_SIZE που καθορίστηκε στην φόρμα HTML.",
"The uploaded file exceeds the 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",
"Card not found":"Η κάρτα δεν βρέθηκε",
"Path is already shared with this 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.",
"Card not found":"Η καρτέλα δεν βρέθηκε",
"Path is already shared with this card":"Η διαδρομή κοινοποιείται ήδη σε αυτήν την καρτέλα",
"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 είναι ένα εργαλείο οργάνωσης τύπου kanban με στόχο τον προσωπικό προγραμματισμό και την οργάνωση έργων για ομάδες που έχουν ενσωματωθεί στο Nextcloud.\n\n\n- 📥 Προσθέστε τις εργασίες σας στις καρτέλες και βάλτε τες στη σειρά\n- 📄 Γράψτε τις πρόσθετες σημειώσεις\n- 🔖 Αντιστοιχίστε τις ετικέτες για ακόμη καλύτερη οργάνωση\n- 👥 Μοιραστείτε με την ομάδα, φίλους ή την οικογένειά σας\n- 📎 Επισυνάψτε αρχεία και ενσωματώστε τα στην περιγραφή\n- 💬 Συζητήστε με την ομάδα σας χρησιμοποιώντας σχόλια\n- ⚡ Παρακολουθήστε τις αλλαγές στη ροή δραστηριοτήτων\n- 🚀 Έχετε τα όλα οργανωμένα",
"Card details":"Λεπτομέρειες καρτέλας",
"Add board":"Προσθήκη πίνακα",
"Select the board to link to a project":"Επιλέξτε πίνακα και συνδέστε τον σε έργο",
"Select the board to link to a project":"Επιλέξτε πίνακα και συνδέστε τον σε ένα έργο",
"Search by board title":"Αναζήτηση με το όνομα πίνακα",
"Select board":"Επιλογή πίνακα",
"Create a new card":"Δημιουργία νέας κάρτας",
"Create a new card":"Δημιουργία νέας καρτέλας",
"Select a board":"Επιλογή ενός πίνακα",
"Select a list":"Επιλέξτε μια λίστα",
"Card title":"Τίτλος κάρτας",
"Card title":"Τίτλος καρτέλας",
"Cancel":"Aκύρωση",
"Open card":"Άνοιγμα κάρτας",
"Creating the new card …":"Γίνεται δημιουργία της νέας καρτέλας...",
"Card \"{card}\" was added to \"{board}\"":"Η καρτέλα \"{card}\" προστέθηκε στο \"{board}\"",
"Open card":"Άνοιγμα καρτέλας",
"Close":"Κλείσιμο",
"Create card":"Δημιουργία κάρτας",
"Select a card":"Επίλογή μιας καρτέλας",
"Create card":"Δημιουργία καρτέλας",
"Select a card":"Επιλογή μιας καρτέλας",
"Select the card to link to a project":"Επιλογή καρτέλας για σύνδεση στο έργο",
"Link to card":"Σύνδεσμος σε καρτέλα",
"File already exists":"Το αρχείο υπάρχει ήδη",
"A file with the name {filename} already exists.":"Το αρχείο με όνομα {filename} υπάρχει ήδη.",
"Do you want to overwrite it?":"Επιθυμείτε να γίνει αντικατάσταση του?",
"Move card to another board":"Μετακίνηση καρτέλας σε άλλο πίνακα",
"Card deleted":"Η κάρτα διαγράφηκε",
"List is empty":"Η λίστα είναι άδεια.",
"Card deleted":"Η καρτέλα διαγράφηκε",
"seconds ago":" δευτερόλεπτα πριν ",
"All boards":"Όλοι οι πίνακες",
"Archived boards":"Αρχειοθέτηση πινάκων ",
"Shared with you":"Διαμοιρασμένα μαζί σας",
"Use bigger card view":"Χρησιμοποιήστε μεγαλύτερη προβολή κάρτας",
"Use bigger card view":"Χρησιμοποιήστε μεγαλύτερη προβολή καρτέλας",
"Show boards in calendar/tasks":"Εμφάνιση πινάκων στο ημερολόγιο / εργασίες",
"Limit deck usage of groups":"Περιορίστε τη χρήση της εφαρμογής σε ομάδες",
"Limit deck usage of groups":"Περιορίστε τη χρήση της εφαρμογής deck σε ομάδες",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them.":"Ο περιορισμός του Deck θα εμποδίσει τους χρήστες που δεν είναι μέρος αυτών των ομάδων να δημιουργούν δικούς τους πίνακες. Οι χρήστες θα εξακολουθήσουν να εργάζονται σε πίνακες που έχουν διαμοιραστεί μαζί τους.",
"Board details":"Λεπτομέριες πίνακα",
"Edit board":"Επεξεργασία πίνακα",
@@ -238,31 +260,37 @@
"Turn on due date reminders":"Ενεργοποιήστε τις υπενθυμίσεις ημερομηνίας προθεσμίας",
"Turn off due date reminders":"Απενεργοποιήστε τις υπενθυμίσεις ημερομηνίας προθεσμίας",
"Due date reminders":"Υπενθυμίσεις ημερομηνίας προθεσμίας",
"All cards":"Όλες οι κάρτες",
"Assigned cards":"Ανατεθείς κάρτες",
"All cards":"Όλες οι καρτέλες",
"Assigned cards":"Ανατεθειμένες καρτέλες",
"No notifications":"Δεν υπάρχουν ειδοποιήσεις",
"Delete board":"Διαγραφή πίνακα",
"Board {0} deleted":"Διαγράφηκε {0} πίνακας",
"Only assigned cards":"Μόνο κάρτες που έχουν ανατεθεί",
"Board {0} deleted":"Διαγράφηκε {0} πίνακας",
"Only assigned cards":"Μόνο καρτέλες που έχουν ανατεθεί",
"No reminder":"Δεν υπάρχει υπενθύμιση",
"An error occurred":"Παρουσιάστηκε σφάλμα",
"Are you sure you want to delete the board {title}? This will delete all the data of this board.":"Είστε βέβαιοι ότι θέλετε να διαγράψετε τον πίνακα {title}; Θα διαγραφούν όλα τα δεδομένα.",
"Delete the board?":"Διαγραφή πίνακα;",
"Delete the board?":"Διαγραφή του πίνακα;",
"Loading filtered view":"Φόρτωση εμφάνισης με βάση το φίλτρο",
"This week":"Αυτή την εβδομάδα",
"No due":"Χωρίς λήξη",
"No upcoming cards":"Δεν υπάρχουν επερχόμενες κάρτες",
"upcoming cards":"Επερχόμενες κάρτες",
"Search for {searchQuery} in all boards":"Αναζήτηση για {searchQuery} σε όλους τους πίνακες",
"No results found":"Δεν βρέθηκαν αποτελέσματα",
"No upcoming cards":"Δεν υπάρχουν επερχόμενες καρτέλες",
"upcoming cards":"επερχόμενες καρτέλες",
"Link to a board":"Σύνδεσμος στον πίνακα",
"Link to a card":"Σύνδεσμος σε καρτέλα",
"Create a card":"Δημιουργία κάρτας",
"Create a card":"Δημιουργία καρτέλας",
"Message from {author} in {conversationName}":"Μήνυμα από {author} σε {conversationName}",
"Something went wrong":"Κάτι πήγε στραβά",
"Failed to upload {name}":"Αποτυχία μεταφόρτωσης {όνομα}",
"Failed to upload {name}":"Αποτυχία μεταφόρτωσης {name}",
"Maximum file size of {size} exceeded":"Υπέρβαση επιτρεπόμενου μεγέθους αρχείου {size}",
"Error creating the share":"Σφάλμα κατά τη δημιουργία της κοινοποίησης",
"Share with a Deck card":"Μοιραστείτε με μια κάρτα Deck",
"Share {file} with a Deck card":"Μοιραστείτε {αρχείο} με μια κάρτα Deck",
"Share with a Deck card":"Μοιραστείτε με μια καρτέλα Deck",
"Share {file} with a Deck card":"Μοιραστείτε το {file} με μια καρτέλα Deck",
"Share":"Μοιραστείτε",
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized":"Το Deck είναι ένα εργαλείο οργάνωσης τύπου kanban με στόχο τον προσωπικό προγραμματισμό και την ομαδική οργάνωση για ομάδες που έχουν ενσωματωθεί στο Nextcloud.\n\n\n- 📥 Προσθέστε τις εργασίες σας στις καρτέλες και βάλτε τες στη σειρά\n- 📄 Γράψτε τις πρόσθετες σημειώσεις\n- 🔖 Αντιστοιχίστε τις ετικέτες για ακόμη καλύτερη οργάνωση\n- 👥 Μοιραστείτε με την ομάδα, φίλους ή την οικογένειά σας\n- 📎 Συνδέστε αρχεία και ενσωματώστε τα στην περιγραφή\n- 💬 Συζητήστε με την ομάδα σας χρησιμοποιώντας σχόλια\n- ⚡ Παρακολουθήστε τις αλλαγές στη ροή δραστηριοτήτων\n- 🚀 Έχετε τα όλα οργανωμένα"
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized":"Το Deck είναι ένα εργαλείο οργάνωσης τύπου kanban με στόχο τον προσωπικό προγραμματισμό και την οργάνωση έργωνγια ομάδες που έχουν ενσωματωθεί στο Nextcloud.\n\n\n- 📥 Προσθέστε τις εργασίες σας στις καρτέλες και βάλτε τες στη σειρά\n- 📄 Γράψτε τις πρόσθετες σημειώσεις\n- 🔖 Αντιστοιχίστε τις ετικέτες για ακόμη καλύτερη οργάνωση\n- 👥 Μοιραστείτε με την ομάδα, φίλους ή την οικογένειά σας\n- 📎 Συνδέστε αρχεία και ενσωματώστε τα στην περιγραφή\n- 💬 Συζητήστε με την ομάδα σας χρησιμοποιώντας σχόλια\n- ⚡ Παρακολουθήστε τις αλλαγές στη ροή δραστηριοτήτων\n- 🚀 Έχετε τα όλα οργανωμένα",
"Creating the new card…":"Δημιουργία νέας καρτέλας...",
"\"{card}\" was added to \"{board}\"":"\"{card}\" προστέθηκε στο \"{board}\"",
"Move card to another board":"Mover la tarjeta a otro tablero",
"List is empty":"La lista está vacía",
"Card deleted":"Tarjeta borrada",
"seconds ago":"hace unos segundos",
"All boards":"Todos los tableros",
@@ -267,7 +268,6 @@ OC.L10N.register(
"Are you sure you want to delete the board {title}? This will delete all the data of this board.":"¿Estas seguro de que quieres eliminar el tablero {title}? Esto eliminará todos los datos del tablero.",
"Delete the board?":"¿Borrar el tablero?",
"Loading filtered view":"Cargando vista filtrada",
"This week":"Esta semana",
"No due":"Sin finalizar",
"Search for {searchQuery} in all boards":"Buscar {searchQuery} en todos los tableros",
"No results found":"No se encontraron resultados",
@@ -284,6 +284,7 @@ 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",
"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 es una herramienta de organización de estilo kanban dirigida a la planificación personal y la organización de proyectos para equipos integrados con Nextcloud.\n\n\n- 📥 Agrega tus tareas a las tarjetas y ordénalas.\n- 📄 Escriba notas adicionales\n- 🔖 Asignar etiquetas para una organización mejor\n- 👥 Comparte con tu equipo, amigos o familia.\n- 📎 Adjuntar archivos e incrustarlos en su descripción\n- 💬 Discuta con su equipo usando comentarios.\n- ⚡ Mantenga un registro de los cambios en el flujo de actividad\n- 🚀 Organiza tu proyecto"
"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 es una herramienta de organización de estilo kanban dirigida a la planificación personal y la organización de proyectos para equipos integrados con Nextcloud.\n\n\n- 📥 Agrega tus tareas a las tarjetas y ordénalas.\n- 📄 Escriba notas adicionales\n- 🔖 Asignar etiquetas para una organización mejor\n- 👥 Comparte con tu equipo, amigos o familia.\n- 📎 Adjuntar archivos e incrustarlos en su descripción\n- 💬 Discuta con su equipo usando comentarios.\n- ⚡ Mantenga un registro de los cambios en el flujo de actividad\n- 🚀 Organiza tu proyecto",
"Move card to another board":"Mover la tarjeta a otro tablero",
"List is empty":"La lista está vacía",
"Card deleted":"Tarjeta borrada",
"seconds ago":"hace unos segundos",
"All boards":"Todos los tableros",
@@ -265,7 +266,6 @@
"Are you sure you want to delete the board {title}? This will delete all the data of this board.":"¿Estas seguro de que quieres eliminar el tablero {title}? Esto eliminará todos los datos del tablero.",
"Delete the board?":"¿Borrar el tablero?",
"Loading filtered view":"Cargando vista filtrada",
"This week":"Esta semana",
"No due":"Sin finalizar",
"Search for {searchQuery} in all boards":"Buscar {searchQuery} en todos los tableros",
"No results found":"No se encontraron resultados",
@@ -282,6 +282,7 @@
"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",
"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 es una herramienta de organización de estilo kanban dirigida a la planificación personal y la organización de proyectos para equipos integrados con Nextcloud.\n\n\n- 📥 Agrega tus tareas a las tarjetas y ordénalas.\n- 📄 Escriba notas adicionales\n- 🔖 Asignar etiquetas para una organización mejor\n- 👥 Comparte con tu equipo, amigos o familia.\n- 📎 Adjuntar archivos e incrustarlos en su descripción\n- 💬 Discuta con su equipo usando comentarios.\n- ⚡ Mantenga un registro de los cambios en el flujo de actividad\n- 🚀 Organiza tu proyecto"
"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 es una herramienta de organización de estilo kanban dirigida a la planificación personal y la organización de proyectos para equipos integrados con Nextcloud.\n\n\n- 📥 Agrega tus tareas a las tarjetas y ordénalas.\n- 📄 Escriba notas adicionales\n- 🔖 Asignar etiquetas para una organización mejor\n- 👥 Comparte con tu equipo, amigos o familia.\n- 📎 Adjuntar archivos e incrustarlos en su descripción\n- 💬 Discuta con su equipo usando comentarios.\n- ⚡ Mantenga un registro de los cambios en el flujo de actividad\n- 🚀 Organiza tu proyecto",
"Failed to create share with {displayName}":"Ezin izan da {displayName}-(r)ekin partekatzea sortu",
"Transfer":"Transferitu",
"Add a new list":"Gehitu zerrenda berria",
"Archive all cards":"Artxibatu txartel guztiak",
"Delete list":"Zerrenda ezabatu",
@@ -268,7 +270,6 @@ OC.L10N.register(
"Are you sure you want to delete the board {title}? This will delete all the data of this board.":"Ziur zaude «{title}» taula ezabatu nahi duzula? Honek taula honen datu guztiak ezabatuko ditu.",
"Search for {searchQuery} in all boards":"Bilatu {searchQuery} taula guztietan",
"No results found":"Ez da emaitzarik aurkitu",
@@ -287,6 +288,7 @@ OC.L10N.register(
"Share":"Partekatu",
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized":"Deck aplikazioa plangintza pertsonalera eta proiektuen antolaketara zuzenduta dagoen Nextcloudekin integratutako kanban moduko tresna bat da.\n\n\n- 📥 Gehitu atazak txarteletan eta ordenatu\n- 📄 Idatzi ohar gehigarriak markdown erabiliz\n- 🔖 Esleitu etiketak antolaketa are gehiago hobetzeko\n- 👥 Partekatu zure talde, lagun edo familiarekin\n- 📎 Erantsi fitxategiak eta kapsulatu zure markdown deskribapenean\n- 💬 Eztabaidatu zure taldearekin iruzkinak erabiliz\n- ⚡ Egin aldaketen jarraipena jarduera jarioa erabiliz\n- 🚀 Antolatu zure proiektua",
"Creating the new card…":"Txartel berria sortzen...",
"Failed to create share with {displayName}":"Ezin izan da {displayName}-(r)ekin partekatzea sortu",
"Transfer":"Transferitu",
"Add a new list":"Gehitu zerrenda berria",
"Archive all cards":"Artxibatu txartel guztiak",
"Delete list":"Zerrenda ezabatu",
@@ -266,7 +268,6 @@
"Are you sure you want to delete the board {title}? This will delete all the data of this board.":"Ziur zaude «{title}» taula ezabatu nahi duzula? Honek taula honen datu guztiak ezabatuko ditu.",
"Search for {searchQuery} in all boards":"Bilatu {searchQuery} taula guztietan",
"No results found":"Ez da emaitzarik aurkitu",
@@ -285,6 +286,7 @@
"Share":"Partekatu",
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized":"Deck aplikazioa plangintza pertsonalera eta proiektuen antolaketara zuzenduta dagoen Nextcloudekin integratutako kanban moduko tresna bat da.\n\n\n- 📥 Gehitu atazak txarteletan eta ordenatu\n- 📄 Idatzi ohar gehigarriak markdown erabiliz\n- 🔖 Esleitu etiketak antolaketa are gehiago hobetzeko\n- 👥 Partekatu zure talde, lagun edo familiarekin\n- 📎 Erantsi fitxategiak eta kapsulatu zure markdown deskribapenean\n- 💬 Eztabaidatu zure taldearekin iruzkinak erabiliz\n- ⚡ Egin aldaketen jarraipena jarduera jarioa erabiliz\n- 🚀 Antolatu zure proiektua",
"Creating the new card…":"Txartel berria sortzen...",
"The comment cannot be empty.":"Kommentti ei voi olla tyhjä.",
"The comment cannot be longer than 1000 characters.":"Kommentin on oltava alle 1000 merkkiä pitkä.",
"In reply to":"Vastauksena",
"Cancel reply":"Peru vastaus",
"Reply":"Vastaa",
"Update":"Päivitä",
"Description":"Kuvaus",
@@ -208,6 +213,7 @@ OC.L10N.register(
"Archive card":"Arkistoi kortti",
"Delete card":"Poista kortti",
"Move card to another board":"Siirrä kortti toiselle taululle",
"List is empty":"Lista on tyhjä",
"Card deleted":"Kortti poistettu",
"seconds ago":"sekuntia sitten",
"All boards":"Kaikki taulut",
@@ -225,7 +231,6 @@ OC.L10N.register(
"No reminder":"Ei muistutusta",
"An error occurred":"Tapahtui virhe",
"Delete the board?":"Poistetaanko tämä taulu?",
"This week":"Tällä viikolla",
"Search for {searchQuery} in all boards":"Hae ehtoja {searchQuery} kaikilta tauluilta",
"No results found":"Ei tuloksia",
"No upcoming cards":"Ei tulevia kortteja",
@@ -238,6 +243,8 @@ OC.L10N.register(
"Maximum file size of {size} exceeded":"Tiedoston enimmäiskoko {size} ylitetty",
"Error creating the share":"Virhe jakoa luotaessa",
"Share":"Jaa",
"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":"Pakka on Nextcloudissa työtään hallinnoivien tiimien käyttöön tarkoitettu kanban-tyyppinen organisointityökalu.\n\n\n- 📥 Lisää tehtävät korteille ja järjestele ne mielesi mukaan\n- 📄 Kirjoita lisätietoja markdown-kielellä\n- 🔖 Määritä tunnisteita helpottaaksesi hallintaa\n- 👥 Jaa tiimin, perheen tai kavereiden kanssa\n- 📎 Lisää tiedostoja ja upota ne lisätietoihin\n- 💬 Keskustele tiimisi kanssa kommenteilla\n- ⚡ Pidä kirjaa muutoksista tapahtumavirran avulla\n- 🚀 Pidä projektisi hallinnassa"
"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":"Pakka on Nextcloudissa työtään hallinnoivien tiimien käyttöön tarkoitettu kanban-tyyppinen organisointityökalu.\n\n\n- 📥 Lisää tehtävät korteille ja järjestele ne mielesi mukaan\n- 📄 Kirjoita lisätietoja markdown-kielellä\n- 🔖 Määritä tunnisteita helpottaaksesi hallintaa\n- 👥 Jaa tiimin, perheen tai kavereiden kanssa\n- 📎 Lisää tiedostoja ja upota ne lisätietoihin\n- 💬 Keskustele tiimisi kanssa kommenteilla\n- ⚡ Pidä kirjaa muutoksista tapahtumavirran avulla\n- 🚀 Pidä projektisi hallinnassa",
"The comment cannot be empty.":"Kommentti ei voi olla tyhjä.",
"The comment cannot be longer than 1000 characters.":"Kommentin on oltava alle 1000 merkkiä pitkä.",
"In reply to":"Vastauksena",
"Cancel reply":"Peru vastaus",
"Reply":"Vastaa",
"Update":"Päivitä",
"Description":"Kuvaus",
@@ -206,6 +211,7 @@
"Archive card":"Arkistoi kortti",
"Delete card":"Poista kortti",
"Move card to another board":"Siirrä kortti toiselle taululle",
"List is empty":"Lista on tyhjä",
"Card deleted":"Kortti poistettu",
"seconds ago":"sekuntia sitten",
"All boards":"Kaikki taulut",
@@ -223,7 +229,6 @@
"No reminder":"Ei muistutusta",
"An error occurred":"Tapahtui virhe",
"Delete the board?":"Poistetaanko tämä taulu?",
"This week":"Tällä viikolla",
"Search for {searchQuery} in all boards":"Hae ehtoja {searchQuery} kaikilta tauluilta",
"No results found":"Ei tuloksia",
"No upcoming cards":"Ei tulevia kortteja",
@@ -236,6 +241,8 @@
"Maximum file size of {size} exceeded":"Tiedoston enimmäiskoko {size} ylitetty",
"Error creating the share":"Virhe jakoa luotaessa",
"Share":"Jaa",
"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":"Pakka on Nextcloudissa työtään hallinnoivien tiimien käyttöön tarkoitettu kanban-tyyppinen organisointityökalu.\n\n\n- 📥 Lisää tehtävät korteille ja järjestele ne mielesi mukaan\n- 📄 Kirjoita lisätietoja markdown-kielellä\n- 🔖 Määritä tunnisteita helpottaaksesi hallintaa\n- 👥 Jaa tiimin, perheen tai kavereiden kanssa\n- 📎 Lisää tiedostoja ja upota ne lisätietoihin\n- 💬 Keskustele tiimisi kanssa kommenteilla\n- ⚡ Pidä kirjaa muutoksista tapahtumavirran avulla\n- 🚀 Pidä projektisi hallinnassa"
"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":"Pakka on Nextcloudissa työtään hallinnoivien tiimien käyttöön tarkoitettu kanban-tyyppinen organisointityökalu.\n\n\n- 📥 Lisää tehtävät korteille ja järjestele ne mielesi mukaan\n- 📄 Kirjoita lisätietoja markdown-kielellä\n- 🔖 Määritä tunnisteita helpottaaksesi hallintaa\n- 👥 Jaa tiimin, perheen tai kavereiden kanssa\n- 📎 Lisää tiedostoja ja upota ne lisätietoihin\n- 💬 Keskustele tiimisi kanssa kommenteilla\n- ⚡ Pidä kirjaa muutoksista tapahtumavirran avulla\n- 🚀 Pidä projektisi hallinnassa",
"Failed to create share with {displayName}":"Échec de la création du partage avec {displayName}",
"Add a new list":"Ajouter une nouvelle liste",
@@ -270,7 +271,6 @@ OC.L10N.register(
"Are you sure you want to delete the board {title}? This will delete all the data of this board.":"Êtes-vous certain de vouloir supprimer le tableau {title} ? Cela supprimera l'ensemble des données de ce tableau.",
"Delete the board?":"Supprimer le tableau ?",
"Loading filtered view":"Chargement de la vue filtrée",
"This week":"Cette semaine",
"No due":"Sans échéance",
"Search for {searchQuery} in all boards":"Rechercher {searchQuery} dans tous les tableaux",
"No results found":"Aucun résultat",
@@ -290,6 +290,7 @@ OC.L10N.register(
"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 est un outil d'organisation de style kanban destiné à la planification personnelle et à l'organisation de projets pour les équipes intégrées à Nextcloud.\n\n\n- 📥 Ajoutez vos tâches à des cartes et organisez-les\n- 📄 Écrivez des notes supplémentaires en Markdown\n- 🔖 Affectez des étiquettes pour une organisation encore meilleure\n- 👥 Partagez avec votre équipe, vos amis ou votre famille\n- 📎 Attachez des fichiers et utilisez les dans vos descriptions en Markdown\n- 💬 Échangez avec votre équipe grâce aux commentaires\n- ⚡ Gardez un œil sur les modifications dans le flux d'activité\n- 🚀 Organisez vos projets",
"Creating the new card…":"Création de la nouvelle carte…",
"\"{card}\" was added to \"{board}\"":"La carte \"{card}\" a été ajoutée au tableau \"{board}\"",
"Failed to create share with {displayName}":"Échec de la création du partage avec {displayName}",
"Add a new list":"Ajouter une nouvelle liste",
@@ -268,7 +269,6 @@
"Are you sure you want to delete the board {title}? This will delete all the data of this board.":"Êtes-vous certain de vouloir supprimer le tableau {title} ? Cela supprimera l'ensemble des données de ce tableau.",
"Delete the board?":"Supprimer le tableau ?",
"Loading filtered view":"Chargement de la vue filtrée",
"This week":"Cette semaine",
"No due":"Sans échéance",
"Search for {searchQuery} in all boards":"Rechercher {searchQuery} dans tous les tableaux",
"No results found":"Aucun résultat",
@@ -288,6 +288,7 @@
"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 est un outil d'organisation de style kanban destiné à la planification personnelle et à l'organisation de projets pour les équipes intégrées à Nextcloud.\n\n\n- 📥 Ajoutez vos tâches à des cartes et organisez-les\n- 📄 Écrivez des notes supplémentaires en Markdown\n- 🔖 Affectez des étiquettes pour une organisation encore meilleure\n- 👥 Partagez avec votre équipe, vos amis ou votre famille\n- 📎 Attachez des fichiers et utilisez les dans vos descriptions en Markdown\n- 💬 Échangez avec votre équipe grâce aux commentaires\n- ⚡ Gardez un œil sur les modifications dans le flux d'activité\n- 🚀 Organisez vos projets",
"Creating the new card…":"Création de la nouvelle carte…",
"\"{card}\" was added to \"{board}\"":"La carte \"{card}\" a été ajoutée au tableau \"{board}\"",
"Are you sure you want to delete the board {title}? This will delete all the data of this board.":"Confirma que quere eliminar o taboleiro {title}? Isto eliminará todos os datos deste taboleiro.",
"Delete the board?":"Eliminar o taboleiro?",
"Loading filtered view":"Cargando a vista filtrada",
"This week":"Esta semana",
"No due":"Sen caducidade",
"Search for {searchQuery} in all boards":"Resultados de busca para {searchQuery} en todos os taboleiros",
"No results found":"Non se atoparon resultados",
@@ -270,6 +269,7 @@ OC.L10N.register(
"Share with a Deck card":"Compartir cunha tarxeta Deck",
"Share {file} with a Deck card":"Compartir {file} cunha tarxeta Deck",
"Share":"Compartir",
"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 é unha ferramenta de organización de estilo kanban dirixida a planificación persoal e organización de proxectos para equipos integrados con Nextcloud. \n\n\n- 📥 Engada as súas tarefas ás tarxetas e fagas ordenadas\n- 📄 Escriba notas adicionais en markdown\n- 🔖 Asigne etiquetas para unha mellor organización\n- 👥 Comparta co seu equipo, amigos ou a súa familia\n- 📎 Anexe ficheiros e insíraos na súa descrición de markdown\n- 💬 Debata co seu equipo usando os comentarios\n- ⚡ Faga un seguimento dos cambios no fluxo de actividade\n- 🚀 Teña o seu proxecto organizado"
"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 é unha ferramenta de organización de estilo kanban dirixida a planificación persoal e organización de proxectos para equipos integrados con Nextcloud. \n\n\n- 📥 Engada as súas tarefas ás tarxetas e fagas ordenadas\n- 📄 Escriba notas adicionais en markdown\n- 🔖 Asigne etiquetas para unha mellor organización\n- 👥 Comparta co seu equipo, amigos ou a súa familia\n- 📎 Anexe ficheiros e insíraos na súa descrición de markdown\n- 💬 Debata co seu equipo usando os comentarios\n- ⚡ Faga un seguimento dos cambios no fluxo de actividade\n- 🚀 Teña o seu proxecto organizado",
"Are you sure you want to delete the board {title}? This will delete all the data of this board.":"Confirma que quere eliminar o taboleiro {title}? Isto eliminará todos os datos deste taboleiro.",
"Delete the board?":"Eliminar o taboleiro?",
"Loading filtered view":"Cargando a vista filtrada",
"This week":"Esta semana",
"No due":"Sen caducidade",
"Search for {searchQuery} in all boards":"Resultados de busca para {searchQuery} en todos os taboleiros",
"No results found":"Non se atoparon resultados",
@@ -268,6 +267,7 @@
"Share with a Deck card":"Compartir cunha tarxeta Deck",
"Share {file} with a Deck card":"Compartir {file} cunha tarxeta Deck",
"Share":"Compartir",
"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 é unha ferramenta de organización de estilo kanban dirixida a planificación persoal e organización de proxectos para equipos integrados con Nextcloud. \n\n\n- 📥 Engada as súas tarefas ás tarxetas e fagas ordenadas\n- 📄 Escriba notas adicionais en markdown\n- 🔖 Asigne etiquetas para unha mellor organización\n- 👥 Comparta co seu equipo, amigos ou a súa familia\n- 📎 Anexe ficheiros e insíraos na súa descrición de markdown\n- 💬 Debata co seu equipo usando os comentarios\n- ⚡ Faga un seguimento dos cambios no fluxo de actividade\n- 🚀 Teña o seu proxecto organizado"
"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 é unha ferramenta de organización de estilo kanban dirixida a planificación persoal e organización de proxectos para equipos integrados con Nextcloud. \n\n\n- 📥 Engada as súas tarefas ás tarxetas e fagas ordenadas\n- 📄 Escriba notas adicionais en markdown\n- 🔖 Asigne etiquetas para unha mellor organización\n- 👥 Comparta co seu equipo, amigos ou a súa familia\n- 📎 Anexe ficheiros e insíraos na súa descrición de markdown\n- 💬 Debata co seu equipo usando os comentarios\n- ⚡ Faga un seguimento dos cambios no fluxo de actividade\n- 🚀 Teña o seu proxecto organizado",
"Are you sure you want to delete the board {title}? This will delete all the data of this board.":"למחוק את הלוח {title}? פעולה זו תמחק את כל הנתונים של הלוח הזה.",
"Delete the board?":"למחוק את הלוח הזה?",
"Loading filtered view":"טוען תצוגה מסוננת",
"This week":"השבוע",
"No due":"אין תאריך יעד",
"No upcoming cards":"אין כרטיסים עתידיים",
"upcoming cards":"כרטיסים עתידיים",
@@ -259,6 +258,7 @@ OC.L10N.register(
"Share with a Deck card":"שיתוף עם כרטיס חפיסה",
"Share {file} with a Deck card":"שיתוף {file} עם כרטיס חפיסה",
"Share":"שיתוף",
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized":"Deck הוא כלי ארגון בסגנון kanban המכוון לתכנון אישי ולארגון פרויקטים עבור צוותים המשולבים ב- Nextcloud.\n\n\n- 📥 הוסף את המשימות שלך לכרטיסים וסדר אותן\n- 📄 רשמו הערות נוספות ב-markdown\n- 🔖הקצה תוויות לארגון טוב עוד יותר\n- 👥 שתף עם הצוות שלך, חברים, או משפחה\n- 📎 צרף קבצים והטמע אותם בתיאור ה-markdown שלך\n- 💬 שוחח עם הצוות שלך באמצעות הערות\n- ⚡ עקוב אחר שינויים בזרם הפעילות\n- 🚀 ארגנו את הפרויקט שלכם"
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized":"Deck הוא כלי ארגון בסגנון kanban המכוון לתכנון אישי ולארגון פרויקטים עבור צוותים המשולבים ב- Nextcloud.\n\n\n- 📥 הוסף את המשימות שלך לכרטיסים וסדר אותן\n- 📄 רשמו הערות נוספות ב-markdown\n- 🔖הקצה תוויות לארגון טוב עוד יותר\n- 👥 שתף עם הצוות שלך, חברים, או משפחה\n- 📎 צרף קבצים והטמע אותם בתיאור ה-markdown שלך\n- 💬 שוחח עם הצוות שלך באמצעות הערות\n- ⚡ עקוב אחר שינויים בזרם הפעילות\n- 🚀 ארגנו את הפרויקט שלכם",
"Are you sure you want to delete the board {title}? This will delete all the data of this board.":"למחוק את הלוח {title}? פעולה זו תמחק את כל הנתונים של הלוח הזה.",
"Delete the board?":"למחוק את הלוח הזה?",
"Loading filtered view":"טוען תצוגה מסוננת",
"This week":"השבוע",
"No due":"אין תאריך יעד",
"No upcoming cards":"אין כרטיסים עתידיים",
"upcoming cards":"כרטיסים עתידיים",
@@ -257,6 +256,7 @@
"Share with a Deck card":"שיתוף עם כרטיס חפיסה",
"Share {file} with a Deck card":"שיתוף {file} עם כרטיס חפיסה",
"Share":"שיתוף",
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized":"Deck הוא כלי ארגון בסגנון kanban המכוון לתכנון אישי ולארגון פרויקטים עבור צוותים המשולבים ב- Nextcloud.\n\n\n- 📥 הוסף את המשימות שלך לכרטיסים וסדר אותן\n- 📄 רשמו הערות נוספות ב-markdown\n- 🔖הקצה תוויות לארגון טוב עוד יותר\n- 👥 שתף עם הצוות שלך, חברים, או משפחה\n- 📎 צרף קבצים והטמע אותם בתיאור ה-markdown שלך\n- 💬 שוחח עם הצוות שלך באמצעות הערות\n- ⚡ עקוב אחר שינויים בזרם הפעילות\n- 🚀 ארגנו את הפרויקט שלכם"
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized":"Deck הוא כלי ארגון בסגנון kanban המכוון לתכנון אישי ולארגון פרויקטים עבור צוותים המשולבים ב- Nextcloud.\n\n\n- 📥 הוסף את המשימות שלך לכרטיסים וסדר אותן\n- 📄 רשמו הערות נוספות ב-markdown\n- 🔖הקצה תוויות לארגון טוב עוד יותר\n- 👥 שתף עם הצוות שלך, חברים, או משפחה\n- 📎 צרף קבצים והטמע אותם בתיאור ה-markdown שלך\n- 💬 שוחח עם הצוות שלך באמצעות הערות\n- ⚡ עקוב אחר שינויים בזרם הפעילות\n- 🚀 ארגנו את הפרויקט שלכם",
"Are you sure you want to delete the board {title}? This will delete all the data of this board.":"Jeste li sigurni da želite izbrisati ploču {title}? Time ćete izbrisati sve podatke ploče.",
"Search for {searchQuery} in all boards":"Traži {searchQuery} na svim pločama",
"No results found":"Nema rezultata",
@@ -279,6 +278,7 @@ 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",
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized":"Deck je organizacijski alat za kanban projekte usmjeren na osobno planiranje i organizaciju projekta za timove integrirane s Nextcloudom.\n\n\n- 📥 Dodajte svoje zadatke na kartice i poredajte ih po želji\n- 📄 Zapišite dodatne bilješke u markdown\n- 🔖 Dodijelite oznake za još bolju organizaciju\n- 👥 Dijelite sa svojim timom, prijateljima ili obitelji\n- 📎 Priložite datoteke i ugradite ih u svoj markdown opis\n- 💬 Raspravljajte sa svojim timom putem komentara\n- ⚡ Pratite promjene u strujanju aktivnosti\n- 🚀 Organizirajte svoj projekt"
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized":"Deck je organizacijski alat za kanban projekte usmjeren na osobno planiranje i organizaciju projekta za timove integrirane s Nextcloudom.\n\n\n- 📥 Dodajte svoje zadatke na kartice i poredajte ih po želji\n- 📄 Zapišite dodatne bilješke u markdown\n- 🔖 Dodijelite oznake za još bolju organizaciju\n- 👥 Dijelite sa svojim timom, prijateljima ili obitelji\n- 📎 Priložite datoteke i ugradite ih u svoj markdown opis\n- 💬 Raspravljajte sa svojim timom putem komentara\n- ⚡ Pratite promjene u strujanju aktivnosti\n- 🚀 Organizirajte svoj projekt",
"Are you sure you want to delete the board {title}? This will delete all the data of this board.":"Jeste li sigurni da želite izbrisati ploču {title}? Time ćete izbrisati sve podatke ploče.",
"Search for {searchQuery} in all boards":"Traži {searchQuery} na svim pločama",
"No results found":"Nema rezultata",
@@ -277,6 +276,7 @@
"Share with a Deck card":"Dijeli s Deck karticom",
"Share {file} with a Deck card":"Dijeli {file} s Deck karticom",
"Share":"Dijeli",
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized":"Deck je organizacijski alat za kanban projekte usmjeren na osobno planiranje i organizaciju projekta za timove integrirane s Nextcloudom.\n\n\n- 📥 Dodajte svoje zadatke na kartice i poredajte ih po želji\n- 📄 Zapišite dodatne bilješke u markdown\n- 🔖 Dodijelite oznake za još bolju organizaciju\n- 👥 Dijelite sa svojim timom, prijateljima ili obitelji\n- 📎 Priložite datoteke i ugradite ih u svoj markdown opis\n- 💬 Raspravljajte sa svojim timom putem komentara\n- ⚡ Pratite promjene u strujanju aktivnosti\n- 🚀 Organizirajte svoj projekt"
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized":"Deck je organizacijski alat za kanban projekte usmjeren na osobno planiranje i organizaciju projekta za timove integrirane s Nextcloudom.\n\n\n- 📥 Dodajte svoje zadatke na kartice i poredajte ih po želji\n- 📄 Zapišite dodatne bilješke u markdown\n- 🔖 Dodijelite oznake za još bolju organizaciju\n- 👥 Dijelite sa svojim timom, prijateljima ili obitelji\n- 📎 Priložite datoteke i ugradite ih u svoj markdown opis\n- 💬 Raspravljajte sa svojim timom putem komentara\n- ⚡ Pratite promjene u strujanju aktivnosti\n- 🚀 Organizirajte svoj projekt",
"Failed to create share with {displayName}":"Nem lehet létrehozni a következő megosztást: {displayName}",
"Are you sure you want to transfer the board {title} for {user}?":"Biztos, hogy átadja a(z) {board} tábla tulajdonjogát {user} számára?",
"Transfer the board.":"A tábla átadása.",
"Transfer":"Átadás",
"Transfer the board for {user} successfully":"A tábla átadása {user} számára sikeres",
"Failed to transfer the board for {user}":"A tábla átadása {user} számára sikertelen",
"Add a new list":"Új lista hozzáadása",
"Archive all cards":"Az összes kártya archiválása",
"Delete list":"Lista törlése",
@@ -270,7 +276,6 @@ OC.L10N.register(
"Are you sure you want to delete the board {title}? This will delete all the data of this board.":"Biztos, hogy törli a(z) {title} táblát? Ez törölni fogja a tábla összes adatát.",
"Delete the board?":"Törli a táblát?",
"Loading filtered view":"Szűrt nézet betöltése",
"This week":"Ez a hét",
"No due":"Nincs határidő",
"Search for {searchQuery} in all boards":"Keresés a(z) {searchQuery} kifejezésre az összes táblában",
"No results found":"Nincs találat",
@@ -290,6 +295,8 @@ OC.L10N.register(
"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":"A Kártyák egy kanban-stílusú szervezőeszköz, amely a személyes tervezést és a csapatok projektszervezését célozza, a Nextcloudba integrálva.\n\n\n- 📥 Saját feladatok kártyákhoz adása, és azok sorrendezése\n- 📄 További jegyzetek leírása markdownban\n- 🔖 Címkék hozzárendelése a még jobb rendszerezés miatt\n- 👥 Megosztás a csapattal, barátokkal vagy családdal\n- 📎 Fájlok hozzáadása mellékletként, vagy beágyazás a markdown leírásba\n- 💬 Megbeszélés a csapattal hozzászólások használatával\n- ⚡ A változások követése a tevékenységnaplóban\n- 🚀 Rendszerezze a projektjét",
"Creating the new card…":"Új kártya létrehozása…",
"\"{card}\" was added to \"{board}\"":"A(z) „{card}” hozzáadva a(z) „{board}” táblához",
"(circle)":"(kör)"
"(circle)":"(kör)",
"This week":"Ez a hét",
"Are you sure you want to transfer the board {title} for {user} ?":"Biztos, hogy átadja a(z) {board} tábla tulajdonjogát {user} számára?"
"Failed to create share with {displayName}":"Nem lehet létrehozni a következő megosztást: {displayName}",
"Are you sure you want to transfer the board {title} for {user}?":"Biztos, hogy átadja a(z) {board} tábla tulajdonjogát {user} számára?",
"Transfer the board.":"A tábla átadása.",
"Transfer":"Átadás",
"Transfer the board for {user} successfully":"A tábla átadása {user} számára sikeres",
"Failed to transfer the board for {user}":"A tábla átadása {user} számára sikertelen",
"Add a new list":"Új lista hozzáadása",
"Archive all cards":"Az összes kártya archiválása",
"Delete list":"Lista törlése",
@@ -268,7 +274,6 @@
"Are you sure you want to delete the board {title}? This will delete all the data of this board.":"Biztos, hogy törli a(z) {title} táblát? Ez törölni fogja a tábla összes adatát.",
"Delete the board?":"Törli a táblát?",
"Loading filtered view":"Szűrt nézet betöltése",
"This week":"Ez a hét",
"No due":"Nincs határidő",
"Search for {searchQuery} in all boards":"Keresés a(z) {searchQuery} kifejezésre az összes táblában",
"No results found":"Nincs találat",
@@ -288,6 +293,8 @@
"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":"A Kártyák egy kanban-stílusú szervezőeszköz, amely a személyes tervezést és a csapatok projektszervezését célozza, a Nextcloudba integrálva.\n\n\n- 📥 Saját feladatok kártyákhoz adása, és azok sorrendezése\n- 📄 További jegyzetek leírása markdownban\n- 🔖 Címkék hozzárendelése a még jobb rendszerezés miatt\n- 👥 Megosztás a csapattal, barátokkal vagy családdal\n- 📎 Fájlok hozzáadása mellékletként, vagy beágyazás a markdown leírásba\n- 💬 Megbeszélés a csapattal hozzászólások használatával\n- ⚡ A változások követése a tevékenységnaplóban\n- 🚀 Rendszerezze a projektjét",
"Creating the new card…":"Új kártya létrehozása…",
"\"{card}\" was added to \"{board}\"":"A(z) „{card}” hozzáadva a(z) „{board}” táblához",
"(circle)":"(kör)"
"(circle)":"(kör)",
"This week":"Ez a hét",
"Are you sure you want to transfer the board {title} for {user} ?":"Biztos, hogy átadja a(z) {board} tábla tulajdonjogát {user} számára?"
"Are you sure you want to delete the board {title}? This will delete all the data of this board.":"Apakah Anda yakin ingin menghapus papan {title}? Aksi ini akan menghapus seluruh data pada papan ini.",
"Delete the board?":"Hapus papan?",
"This week":"Pekan ini",
"Link to a board":"Tautan ke papan",
"Link to a card":"Tautan ke kartu",
"Something went wrong":"Ada yang salah",
"Maximum file size of {size} exceeded":"Melampaui batas ukuran maksimal {size}",
"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":"Longgok adalah alat pengelolaan bergaya kanban yang dapat digunakan untuk perencanaan pribadi dan pengelolaan proyek bagi tim yang terintegrasi dengan Nextcloud.\n\n\n- 📥 Tambah tugas Anda dalam bentuk kartu berurutan\n- 📄 Tulis catatan dalam format Markdown\n- 🔖 Sematkan label untuk pengelompokan yang lebih baik\n- 👥 Bagikan dengan anggota tim, teman atau keluarga\n- 📎 Lampirkan berkas dan sematkan dalam deskripsi Markdown\n- 💬 Diskusikan dengan tim melalui komentar\n- ⚡ Lacak setiap perubahan pada aliran aktivitas\n- 🚀 Buat proyek Anda terkelola"
"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":"Longgok adalah alat pengelolaan bergaya kanban yang dapat digunakan untuk perencanaan pribadi dan pengelolaan proyek bagi tim yang terintegrasi dengan Nextcloud.\n\n\n- 📥 Tambah tugas Anda dalam bentuk kartu berurutan\n- 📄 Tulis catatan dalam format Markdown\n- 🔖 Sematkan label untuk pengelompokan yang lebih baik\n- 👥 Bagikan dengan anggota tim, teman atau keluarga\n- 📎 Lampirkan berkas dan sematkan dalam deskripsi Markdown\n- 💬 Diskusikan dengan tim melalui komentar\n- ⚡ Lacak setiap perubahan pada aliran aktivitas\n- 🚀 Buat proyek Anda terkelola",
"Are you sure you want to delete the board {title}? This will delete all the data of this board.":"Apakah Anda yakin ingin menghapus papan {title}? Aksi ini akan menghapus seluruh data pada papan ini.",
"Delete the board?":"Hapus papan?",
"This week":"Pekan ini",
"Link to a board":"Tautan ke papan",
"Link to a card":"Tautan ke kartu",
"Something went wrong":"Ada yang salah",
"Maximum file size of {size} exceeded":"Melampaui batas ukuran maksimal {size}",
"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":"Longgok adalah alat pengelolaan bergaya kanban yang dapat digunakan untuk perencanaan pribadi dan pengelolaan proyek bagi tim yang terintegrasi dengan Nextcloud.\n\n\n- 📥 Tambah tugas Anda dalam bentuk kartu berurutan\n- 📄 Tulis catatan dalam format Markdown\n- 🔖 Sematkan label untuk pengelompokan yang lebih baik\n- 👥 Bagikan dengan anggota tim, teman atau keluarga\n- 📎 Lampirkan berkas dan sematkan dalam deskripsi Markdown\n- 💬 Diskusikan dengan tim melalui komentar\n- ⚡ Lacak setiap perubahan pada aliran aktivitas\n- 🚀 Buat proyek Anda terkelola"
"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":"Longgok adalah alat pengelolaan bergaya kanban yang dapat digunakan untuk perencanaan pribadi dan pengelolaan proyek bagi tim yang terintegrasi dengan Nextcloud.\n\n\n- 📥 Tambah tugas Anda dalam bentuk kartu berurutan\n- 📄 Tulis catatan dalam format Markdown\n- 🔖 Sematkan label untuk pengelompokan yang lebih baik\n- 👥 Bagikan dengan anggota tim, teman atau keluarga\n- 📎 Lampirkan berkas dan sematkan dalam deskripsi Markdown\n- 💬 Diskusikan dengan tim melalui komentar\n- ⚡ Lacak setiap perubahan pada aliran aktivitas\n- 🚀 Buat proyek Anda terkelola",
"Maximum file size of {size} exceeded":"Fór yfir hámarks skráarstærð {size}",
"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":"Dekk (e. Deck) er skipulagningartól í kanban-stíl sem ætlað er fyrir verkefna- og persónuupplýsingastjórnun hópvinnuteyma innan Nextcloud.\n\n\n- 📥 Settu verkefnin þín á spjöld of raðaðu þeim á ýmsa vegu\n- 📄 Skrifaðu niður minnispunkta í markdown-kóða\n- 🔖 Úthlutaðu merkjum/skýringum til að bæta skipulagninguna\n- 👥 Deildu með vinnuhópnum, vinum eða fjölskyldu\n- 📎 Hengdu við skrár og ívefðu þær í lýsinguna með markdown-kóða\n- 💬 Ræddu málin við hópinn þinn með athugasemdum\n- ⚡ Haltu utan um breytingar í virknistreyminu\n- 🚀 Haltu verkefnunum þínum skipulögðum"
"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":"Dekk (e. Deck) er skipulagningartól í kanban-stíl sem ætlað er fyrir verkefna- og persónuupplýsingastjórnun hópvinnuteyma innan Nextcloud.\n\n\n- 📥 Settu verkefnin þín á spjöld of raðaðu þeim á ýmsa vegu\n- 📄 Skrifaðu niður minnispunkta í markdown-kóða\n- 🔖 Úthlutaðu merkjum/skýringum til að bæta skipulagninguna\n- 👥 Deildu með vinnuhópnum, vinum eða fjölskyldu\n- 📎 Hengdu við skrár og ívefðu þær í lýsinguna með markdown-kóða\n- 💬 Ræddu málin við hópinn þinn með athugasemdum\n- ⚡ Haltu utan um breytingar í virknistreyminu\n- 🚀 Haltu verkefnunum þínum skipulögðum",
"Maximum file size of {size} exceeded":"Fór yfir hámarks skráarstærð {size}",
"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":"Dekk (e. Deck) er skipulagningartól í kanban-stíl sem ætlað er fyrir verkefna- og persónuupplýsingastjórnun hópvinnuteyma innan Nextcloud.\n\n\n- 📥 Settu verkefnin þín á spjöld of raðaðu þeim á ýmsa vegu\n- 📄 Skrifaðu niður minnispunkta í markdown-kóða\n- 🔖 Úthlutaðu merkjum/skýringum til að bæta skipulagninguna\n- 👥 Deildu með vinnuhópnum, vinum eða fjölskyldu\n- 📎 Hengdu við skrár og ívefðu þær í lýsinguna með markdown-kóða\n- 💬 Ræddu málin við hópinn þinn með athugasemdum\n- ⚡ Haltu utan um breytingar í virknistreyminu\n- 🚀 Haltu verkefnunum þínum skipulögðum"
"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":"Dekk (e. Deck) er skipulagningartól í kanban-stíl sem ætlað er fyrir verkefna- og persónuupplýsingastjórnun hópvinnuteyma innan Nextcloud.\n\n\n- 📥 Settu verkefnin þín á spjöld of raðaðu þeim á ýmsa vegu\n- 📄 Skrifaðu niður minnispunkta í markdown-kóða\n- 🔖 Úthlutaðu merkjum/skýringum til að bæta skipulagninguna\n- 👥 Deildu með vinnuhópnum, vinum eða fjölskyldu\n- 📎 Hengdu við skrár og ívefðu þær í lýsinguna með markdown-kóða\n- 💬 Ræddu málin við hópinn þinn með athugasemdum\n- ⚡ Haltu utan um breytingar í virknistreyminu\n- 🚀 Haltu verkefnunum þínum skipulögðum",
"Are you sure you want to delete the board {title}? This will delete all the data of this board.":"Sei sicuro di voler eliminare la lavagna {title}? Questo eliminerà tutti i dati di questa lavagna?",
"Delete the board?":"Vuoi eliminare la lavagna?",
"Loading filtered view":"Caricamento della vista filtrata",
"This week":"Questa settimana",
"No due":"Nessuna scadenza",
"Search for {searchQuery} in all boards":"Risultato di ricerca per \"{search}\" in tutte le lavagne",
"No results found":"Nessun risultato trovato",
@@ -290,6 +289,7 @@ OC.L10N.register(
"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 è uno strumento di organizzazione in stile kanban destinato alla pianificazione personale e all'organizzazione di progetti per squadre integrato con Nextcloud.\n\n\n- 📥 Aggiungi le tue attività alle schede e tienile in ordine\n- 📄 Scrivi note aggiuntive in markdown\n- 🔖 Assegna etichette per un'organizzazione ancora migliore\n- 👥 Condividi con la tua squadra, amici o famiglia\n- 📎 Allega file e integrali nella tua descrizione markdown\n- 💬 Discuti con la tua squadra utilizzando i commenti\n- ⚡ Tieni traccia dei cambiamenti nel flusso delle attività\n- 🚀 Organizza il tuo progetto",
"Creating the new card…":"Creazione della nuova scheda...",
"\"{card}\" was added to \"{board}\"":"\"{card}\" è stata aggiunta a \"{board}\"",
"Are you sure you want to delete the board {title}? This will delete all the data of this board.":"Sei sicuro di voler eliminare la lavagna {title}? Questo eliminerà tutti i dati di questa lavagna?",
"Delete the board?":"Vuoi eliminare la lavagna?",
"Loading filtered view":"Caricamento della vista filtrata",
"This week":"Questa settimana",
"No due":"Nessuna scadenza",
"Search for {searchQuery} in all boards":"Risultato di ricerca per \"{search}\" in tutte le lavagne",
"No results found":"Nessun risultato trovato",
@@ -288,6 +287,7 @@
"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 è uno strumento di organizzazione in stile kanban destinato alla pianificazione personale e all'organizzazione di progetti per squadre integrato con Nextcloud.\n\n\n- 📥 Aggiungi le tue attività alle schede e tienile in ordine\n- 📄 Scrivi note aggiuntive in markdown\n- 🔖 Assegna etichette per un'organizzazione ancora migliore\n- 👥 Condividi con la tua squadra, amici o famiglia\n- 📎 Allega file e integrali nella tua descrizione markdown\n- 💬 Discuti con la tua squadra utilizzando i commenti\n- ⚡ Tieni traccia dei cambiamenti nel flusso delle attività\n- 🚀 Organizza il tuo progetto",
"Creating the new card…":"Creazione della nuova scheda...",
"\"{card}\" was added to \"{board}\"":"\"{card}\" è stata aggiunta a \"{board}\"",
"Are you sure you want to delete the board {title}? This will delete all the data of this board.":"このボード{title}を削除してもよろしいですか?この操作はこのボードのデータすべてを削除します。",
"Delete the board?":"ボードを削除しますか?",
"Loading filtered view":"フィルタされたビューを読み込み中",
"This week":"今週",
"No due":"日付なし",
"Search for {searchQuery} in all boards":"すべてのボードで{searchQuery}を検索します",
"No results found":"結果が見つかりません",
@@ -274,6 +273,7 @@ OC.L10N.register(
"Share with a Deck card":"デッキのカードで共有する",
"Share {file} with a Deck card":"{file}をデッキのカードで共有する",
"Share":"共有",
"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はNextcloudと統合した、チームの個人計画とプロジェクトの組織化を目的としたカンバンスタイルの組織ツールです。\n\n\n- 📥 タスクをカードに追加して整理する\n- 📄 マークダウンで追加のメモを書き留めます\n- 🔖 より良い組織のためにラベルを割り当てる\n- 👥 あなたのチーム、友人、家族と共有する\n- 📎 ファイルを添付してマークダウンの説明に埋め込む\n- 💬 コメントを使ってあなたのチームと話し合う\n- ⚡ アクティビティの流れの変化を追跡する\n- 🚀 プロジェクトを整理する"
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized":"DeckはNextcloudと統合した、チームの個人計画とプロジェクトの組織化を目的としたカンバンスタイルの組織ツールです。\n\n\n- 📥 タスクをカードに追加して整理する\n- 📄 マークダウンで追加のメモを書き留めます\n- 🔖 より良い組織のためにラベルを割り当てる\n- 👥 あなたのチーム、友人、家族と共有する\n- 📎 ファイルを添付してマークダウンの説明に埋め込む\n- 💬 コメントを使ってあなたのチームと話し合う\n- ⚡ アクティビティの流れの変化を追跡する\n- 🚀 プロジェクトを整理する",
"Are you sure you want to delete the board {title}? This will delete all the data of this board.":"このボード{title}を削除してもよろしいですか?この操作はこのボードのデータすべてを削除します。",
"Delete the board?":"ボードを削除しますか?",
"Loading filtered view":"フィルタされたビューを読み込み中",
"This week":"今週",
"No due":"日付なし",
"Search for {searchQuery} in all boards":"すべてのボードで{searchQuery}を検索します",
"No results found":"結果が見つかりません",
@@ -272,6 +271,7 @@
"Share with a Deck card":"デッキのカードで共有する",
"Share {file} with a Deck card":"{file}をデッキのカードで共有する",
"Share":"共有",
"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はNextcloudと統合した、チームの個人計画とプロジェクトの組織化を目的としたカンバンスタイルの組織ツールです。\n\n\n- 📥 タスクをカードに追加して整理する\n- 📄 マークダウンで追加のメモを書き留めます\n- 🔖 より良い組織のためにラベルを割り当てる\n- 👥 あなたのチーム、友人、家族と共有する\n- 📎 ファイルを添付してマークダウンの説明に埋め込む\n- 💬 コメントを使ってあなたのチームと話し合う\n- ⚡ アクティビティの流れの変化を追跡する\n- 🚀 プロジェクトを整理する"
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized":"DeckはNextcloudと統合した、チームの個人計画とプロジェクトの組織化を目的としたカンバンスタイルの組織ツールです。\n\n\n- 📥 タスクをカードに追加して整理する\n- 📄 マークダウンで追加のメモを書き留めます\n- 🔖 より良い組織のためにラベルを割り当てる\n- 👥 あなたのチーム、友人、家族と共有する\n- 📎 ファイルを添付してマークダウンの説明に埋め込む\n- 💬 コメントを使ってあなたのチームと話し合う\n- ⚡ アクティビティの流れの変化を追跡する\n- 🚀 プロジェクトを整理する",
"Are you sure you want to delete the board {title}? This will delete all the data of this board.":"Ar tikrai norite ištrinti lentą, pavadinimu {title}? Tai ištrins visus šios lentos duomenis.",
"Delete the board?":"Ištrinti lentą?",
"This week":"Šią savaitę",
"No due":"Be galutinio termino",
"No results found":"Nerasta jokių rezultatų",
"Link to a board":"Susieti su lenta",
@@ -260,6 +259,7 @@ OC.L10N.register(
"Error creating the share":"Klaida kuriant viešinį",
"Share":"Bendrinti",
"Creating the new card…":"Kuriama nauja kortelė…",
"Are you sure you want to delete the board {title}? This will delete all the data of this board.":"Ar tikrai norite ištrinti lentą, pavadinimu {title}? Tai ištrins visus šios lentos duomenis.",
"Delete the board?":"Ištrinti lentą?",
"This week":"Šią savaitę",
"No due":"Be galutinio termino",
"No results found":"Nerasta jokių rezultatų",
"Link to a board":"Susieti su lenta",
@@ -258,6 +257,7 @@
"Error creating the share":"Klaida kuriant viešinį",
"Share":"Bendrinti",
"Creating the new card…":"Kuriama nauja kortelė…",
"Are you sure you want to delete the board {title}? This will delete all the data of this board.":"Дали сте сигурени дека сакате да ја избришете оваа табла {title}? Ова ќе ги избрише и сите податоци на таблата.",
"Delete the board?":"Бришење на таблата?",
"Loading filtered view":"Вчитување на филтриран поглед",
"This week":"Оваа недела",
"No due":"Не истекува",
"No upcoming cards":"Нема престојни картици",
"upcoming cards":"престојни картици",
@@ -266,6 +265,7 @@ OC.L10N.register(
"Share with a Deck card":"Споделено со Deck картица",
"Share {file} with a Deck card":"Сподели {file} со Deck картица",
"Share":"Сподели",
"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"
"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",
"Are you sure you want to delete the board {title}? This will delete all the data of this board.":"Дали сте сигурени дека сакате да ја избришете оваа табла {title}? Ова ќе ги избрише и сите податоци на таблата.",
"Delete the board?":"Бришење на таблата?",
"Loading filtered view":"Вчитување на филтриран поглед",
"This week":"Оваа недела",
"No due":"Не истекува",
"No upcoming cards":"Нема престојни картици",
"upcoming cards":"престојни картици",
@@ -264,6 +263,7 @@
"Share with a Deck card":"Споделено со Deck картица",
"Share {file} with a Deck card":"Сподели {file} со Deck картица",
"Share":"Сподели",
"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"
"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",
"Maximum file size of {size} exceeded":"Maksimal størrelse for filer på {size} er overskredet",
"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":"Stokk er et kanban inspirert verktøy for organisering for personlig planlegging og prosjekt organisering for team integrert med Nextcloud.\n\n\n- 📥 Legg til oppgaver på kort og hold orden på disse.\n- 📄 Legg til notater.\n- 🔖 Tildel merke for enda bedre organisering.\n- 👥 Del med team, venner eller familile.\n- 📎 Legg ved filer som kan integreres i beskrivelser.\n- 💬 Diskuter med ditt team ved å bruke kommentarer.\n- ⚡ Hold oversikt over endringer i aktivitetsstrøm.\n- 🚀 Få dine prosjekt organisert."
"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":"Stokk er et kanban inspirert verktøy for organisering for personlig planlegging og prosjekt organisering for team integrert med Nextcloud.\n\n\n- 📥 Legg til oppgaver på kort og hold orden på disse.\n- 📄 Legg til notater.\n- 🔖 Tildel merke for enda bedre organisering.\n- 👥 Del med team, venner eller familile.\n- 📎 Legg ved filer som kan integreres i beskrivelser.\n- 💬 Diskuter med ditt team ved å bruke kommentarer.\n- ⚡ Hold oversikt over endringer i aktivitetsstrøm.\n- 🚀 Få dine prosjekt organisert.",
"Maximum file size of {size} exceeded":"Maksimal størrelse for filer på {size} er overskredet",
"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":"Stokk er et kanban inspirert verktøy for organisering for personlig planlegging og prosjekt organisering for team integrert med Nextcloud.\n\n\n- 📥 Legg til oppgaver på kort og hold orden på disse.\n- 📄 Legg til notater.\n- 🔖 Tildel merke for enda bedre organisering.\n- 👥 Del med team, venner eller familile.\n- 📎 Legg ved filer som kan integreres i beskrivelser.\n- 💬 Diskuter med ditt team ved å bruke kommentarer.\n- ⚡ Hold oversikt over endringer i aktivitetsstrøm.\n- 🚀 Få dine prosjekt organisert."
"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":"Stokk er et kanban inspirert verktøy for organisering for personlig planlegging og prosjekt organisering for team integrert med Nextcloud.\n\n\n- 📥 Legg til oppgaver på kort og hold orden på disse.\n- 📄 Legg til notater.\n- 🔖 Tildel merke for enda bedre organisering.\n- 👥 Del med team, venner eller familile.\n- 📎 Legg ved filer som kan integreres i beskrivelser.\n- 💬 Diskuter med ditt team ved å bruke kommentarer.\n- ⚡ Hold oversikt over endringer i aktivitetsstrøm.\n- 🚀 Få dine prosjekt organisert.",
"Are you sure you want to delete the board {title}? This will delete all the data of this board.":"Weet je zeker dat je bord {title} met wilt verwijderen? Dit verwijderd alle informatie van dit bord.",
"Delete the board?":"Bord verwijderen?",
"Loading filtered view":"Gefilterde weergave wordt geladen",
"This week":"Deze week",
"No due":"Geen vervallen",
"Search for {searchQuery} in all boards":"Zoek naar {searchQuery} in alle borden",
"No results found":"Geen resultaten gevonden",
@@ -290,6 +289,7 @@ OC.L10N.register(
"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 een soort kanban organisatietool gericht op persoonlijke planning en projectorganisatie voor teams geïntegreerd in Nextcloud.\n\n\n- 📥 Voeg taken toe aan kaarten en sorteer ze\n- 📄 Schrijf extra notities in markdown\n- 🔖 Ken labels toe voor betere organisatie\n- 👥 Deel met je team, vrienden of familie\n- 📎 Voeg bestanden toe en plaats ze in je markdown beschrijving\n- 💬 Discussieer binnen je team met reacties\n- ⚡ Volg de wijzigingen in het activiteiten kanaal\n- 🚀 Organiseer je project",
"Creating the new card…":"Aanmaken nieuwe kaart...",
"\"{card}\" was added to \"{board}\"":"\"{card}\" is toegevoegd aan \"{board}\"",
"Are you sure you want to delete the board {title}? This will delete all the data of this board.":"Weet je zeker dat je bord {title} met wilt verwijderen? Dit verwijderd alle informatie van dit bord.",
"Delete the board?":"Bord verwijderen?",
"Loading filtered view":"Gefilterde weergave wordt geladen",
"This week":"Deze week",
"No due":"Geen vervallen",
"Search for {searchQuery} in all boards":"Zoek naar {searchQuery} in alle borden",
"No results found":"Geen resultaten gevonden",
@@ -288,6 +287,7 @@
"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 een soort kanban organisatietool gericht op persoonlijke planning en projectorganisatie voor teams geïntegreerd in Nextcloud.\n\n\n- 📥 Voeg taken toe aan kaarten en sorteer ze\n- 📄 Schrijf extra notities in markdown\n- 🔖 Ken labels toe voor betere organisatie\n- 👥 Deel met je team, vrienden of familie\n- 📎 Voeg bestanden toe en plaats ze in je markdown beschrijving\n- 💬 Discussieer binnen je team met reacties\n- ⚡ Volg de wijzigingen in het activiteiten kanaal\n- 🚀 Organiseer je project",
"Creating the new card…":"Aanmaken nieuwe kaart...",
"\"{card}\" was added to \"{board}\"":"\"{card}\" is toegevoegd aan \"{board}\"",
"Failed to create share with {displayName}":"Nie udało się utworzyć udostępnienia dla {displayName}",
"Are you sure you want to transfer the board {title} for {user}?":"Czy na pewno chcesz przenieść tablicę {title} dla {user}?",
"Transfer the board.":"Przeniesienie tablicy.",
"Transfer":"Przenieś",
"Transfer the board for {user} successfully":"Przeniesienie tablicy dla {user} pomyślne",
"Failed to transfer the board for {user}":"Nie udało się przenieść tablicy dla {user}",
"Add a new list":"Dodaj nową listę",
"Archive all cards":"Zarchiwizuj wszystkie karty",
"Delete list":"Usuń listę",
@@ -270,7 +276,6 @@ OC.L10N.register(
"Are you sure you want to delete the board {title}? This will delete all the data of this board.":"Czy na pewno chcesz usunąć tablicę {title}? Spowoduje to usunięcie wszystkich danych z tej tablicy.",
"Search for {searchQuery} in all boards":"Wyszukaj dla {searchQuery} na wszystkich tablicach",
"No results found":"Nie znaleziono wyników",
@@ -290,6 +295,8 @@ OC.L10N.register(
"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":"Tablica to narzędzie organizacyjne w stylu kanban, którego celem jest osobiste planowanie i organizacja projektu dla zespołów zintegrowanych z Nextcloud.\n\n\n- 📥 Dodaj swoje zadania do kart i porządkuj je\n- 📄 Zapisuj dodatkowe notatki w Markdown\n- 🔖 Przypisuj etykiety dla jeszcze lepszej organizacji\n- 👥 Współdziel ze swoim zespołem, przyjaciółmi lub rodziną\n- 📎 Dołączaj pliki i umieszczaj je w opisie Markdown\n- 💬 Porozmawiaj ze swoim zespołem za pomocą komentarzy\n- ⚡ Śledź zmiany w strumieniu aktywności\n- 🚀 Organizuj swój projekt",
"Creating the new card…":"Tworzę nową kartę…",
"\"{card}\" was added to \"{board}\"":"\"{card}\" została dodana do \"{board}\"",
"(circle)":"(krąg)"
"(circle)":"(krąg)",
"This week":"W tym tygodniu",
"Are you sure you want to transfer the board {title} for {user} ?":"Czy na pewno chcesz przenieść tablicę {title} dla {user}?"
"Failed to create share with {displayName}":"Nie udało się utworzyć udostępnienia dla {displayName}",
"Are you sure you want to transfer the board {title} for {user}?":"Czy na pewno chcesz przenieść tablicę {title} dla {user}?",
"Transfer the board.":"Przeniesienie tablicy.",
"Transfer":"Przenieś",
"Transfer the board for {user} successfully":"Przeniesienie tablicy dla {user} pomyślne",
"Failed to transfer the board for {user}":"Nie udało się przenieść tablicy dla {user}",
"Add a new list":"Dodaj nową listę",
"Archive all cards":"Zarchiwizuj wszystkie karty",
"Delete list":"Usuń listę",
@@ -268,7 +274,6 @@
"Are you sure you want to delete the board {title}? This will delete all the data of this board.":"Czy na pewno chcesz usunąć tablicę {title}? Spowoduje to usunięcie wszystkich danych z tej tablicy.",
"Search for {searchQuery} in all boards":"Wyszukaj dla {searchQuery} na wszystkich tablicach",
"No results found":"Nie znaleziono wyników",
@@ -288,6 +293,8 @@
"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":"Tablica to narzędzie organizacyjne w stylu kanban, którego celem jest osobiste planowanie i organizacja projektu dla zespołów zintegrowanych z Nextcloud.\n\n\n- 📥 Dodaj swoje zadania do kart i porządkuj je\n- 📄 Zapisuj dodatkowe notatki w Markdown\n- 🔖 Przypisuj etykiety dla jeszcze lepszej organizacji\n- 👥 Współdziel ze swoim zespołem, przyjaciółmi lub rodziną\n- 📎 Dołączaj pliki i umieszczaj je w opisie Markdown\n- 💬 Porozmawiaj ze swoim zespołem za pomocą komentarzy\n- ⚡ Śledź zmiany w strumieniu aktywności\n- 🚀 Organizuj swój projekt",
"Creating the new card…":"Tworzę nową kartę…",
"\"{card}\" was added to \"{board}\"":"\"{card}\" została dodana do \"{board}\"",
"(circle)":"(krąg)"
"(circle)":"(krąg)",
"This week":"W tym tygodniu",
"Are you sure you want to transfer the board {title} for {user} ?":"Czy na pewno chcesz przenieść tablicę {title} dla {user}?"
"Failed to create share with {displayName}":"Falha ao criar compartilhamento com {displayName}",
"Are you sure you want to transfer the board {title} for {user}?":"Tem certeza de que deseja transferir o quadro {title} para {user}?",
"Transfer the board.":"Transfira a reunião.",
"Transfer":"Transferir",
"Transfer the board for {user} successfully":"Transferida a reunião para {user} com sucesso",
"Failed to transfer the board for {user}":"Falha ao transferir a reunião para {user}",
"Add a new list":"Adicionar nova lista",
"Archive all cards":"Arquivar todos os cartões",
"Delete list":"Excluir lista",
@@ -270,7 +276,6 @@ OC.L10N.register(
"Are you sure you want to delete the board {title}? This will delete all the data of this board.":"Deseja realmente excluir o painel {title}? Isto excluirá todos os dados deste painel.",
"Search for {searchQuery} in all boards":"Pesquisar por {searchQuery} em todos os painéis",
"No results found":"Nenhum resultado encontrado",
@@ -290,6 +295,8 @@ OC.L10N.register(
"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 é uma ferramenta de organização de estilo kanban destinada ao planejamento pessoal e organização para equipes integradas com o Nextcloud.\n\n\n- 📥 Adicione suas tarefas aos cartões e coloque-os em ordem\n- 📄 Insira notas adicionais em markdown\n- 🔖 Atribua etiquetas para melhorar a organização\n- 👥 Compartilhe com sua equipe, amigos ou familiares\n- 📎 Anexe arquivos e incorpore-os em sua descrição no markdown\n- 💬 Discuta com sua equipe usando os comentários\n- ⚡ Acompanhe as alterações no fluxo de atividades\n- 🚀 Mantenha seu projeto organizado",
"Creating the new card…":"Criando o novo cartão…",
"\"{card}\" was added to \"{board}\"":"\"{card}\" foi adicionado a \"{board}\"",
"(circle)":"(círculo)"
"(circle)":"(círculo)",
"This week":"Esta semana",
"Are you sure you want to transfer the board {title} for {user} ?":"Tem certeza de que deseja transferir o quadro {title} para {user}?"
"Failed to create share with {displayName}":"Falha ao criar compartilhamento com {displayName}",
"Are you sure you want to transfer the board {title} for {user}?":"Tem certeza de que deseja transferir o quadro {title} para {user}?",
"Transfer the board.":"Transfira a reunião.",
"Transfer":"Transferir",
"Transfer the board for {user} successfully":"Transferida a reunião para {user} com sucesso",
"Failed to transfer the board for {user}":"Falha ao transferir a reunião para {user}",
"Add a new list":"Adicionar nova lista",
"Archive all cards":"Arquivar todos os cartões",
"Delete list":"Excluir lista",
@@ -268,7 +274,6 @@
"Are you sure you want to delete the board {title}? This will delete all the data of this board.":"Deseja realmente excluir o painel {title}? Isto excluirá todos os dados deste painel.",
"Search for {searchQuery} in all boards":"Pesquisar por {searchQuery} em todos os painéis",
"No results found":"Nenhum resultado encontrado",
@@ -288,6 +293,8 @@
"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 é uma ferramenta de organização de estilo kanban destinada ao planejamento pessoal e organização para equipes integradas com o Nextcloud.\n\n\n- 📥 Adicione suas tarefas aos cartões e coloque-os em ordem\n- 📄 Insira notas adicionais em markdown\n- 🔖 Atribua etiquetas para melhorar a organização\n- 👥 Compartilhe com sua equipe, amigos ou familiares\n- 📎 Anexe arquivos e incorpore-os em sua descrição no markdown\n- 💬 Discuta com sua equipe usando os comentários\n- ⚡ Acompanhe as alterações no fluxo de atividades\n- 🚀 Mantenha seu projeto organizado",
"Creating the new card…":"Criando o novo cartão…",
"\"{card}\" was added to \"{board}\"":"\"{card}\" foi adicionado a \"{board}\"",
"(circle)":"(círculo)"
"(circle)":"(círculo)",
"This week":"Esta semana",
"Are you sure you want to transfer the board {title} for {user} ?":"Tem certeza de que deseja transferir o quadro {title} para {user}?"
"Are you sure you want to delete the board {title}? This will delete all the data of this board.":"Подтвердите удаление доски «{title}»; это действие приведёт к удалению также все данных, принадлежащих этой доске.",
"Delete the board?":"Удалить доску?",
"Loading filtered view":"Выполняется отбор",
"This week":"Эта неделя",
"No due":"Без назначенной даты",
"Search for {searchQuery} in all boards":"Искать {searchQuery} на всех досках",
"No results found":"Результаты отсутствуют",
@@ -290,6 +289,7 @@ OC.L10N.register(
"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":"Карточки — приложение для Nextcloud, предоставляющее возможности личного планирования и управления проектами для рабочих групп в стиле канбан.\n\n\n- 📥 Создавайте карточки задач и упорядочите их;\n- 📄 Добавляйте описания задач с возможностью использовать формат разметки «markdown»;\n- 🔖 Присваивайте ярлыки для ещё лучшей организации;\n- 👥 Делитесь со своей командой, друзьями или семьей;\n- 📎 Вкладывайте файлы в виде ссылок в описании, используя формат разметки «markdown»;\n- 💬 Обсуждайте в комментариях;\n- ⚡ Отслеживайте изменения в ленте событий;\n- 🚀 Сделайте свой проект более организованным.",
"Creating the new card…":"Создание карточки…",
"\"{card}\" was added to \"{board}\"":"«{card}» добавлена на доску «{board}»",
"Are you sure you want to delete the board {title}? This will delete all the data of this board.":"Подтвердите удаление доски «{title}»; это действие приведёт к удалению также все данных, принадлежащих этой доске.",
"Delete the board?":"Удалить доску?",
"Loading filtered view":"Выполняется отбор",
"This week":"Эта неделя",
"No due":"Без назначенной даты",
"Search for {searchQuery} in all boards":"Искать {searchQuery} на всех досках",
"No results found":"Результаты отсутствуют",
@@ -288,6 +287,7 @@
"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":"Карточки — приложение для Nextcloud, предоставляющее возможности личного планирования и управления проектами для рабочих групп в стиле канбан.\n\n\n- 📥 Создавайте карточки задач и упорядочите их;\n- 📄 Добавляйте описания задач с возможностью использовать формат разметки «markdown»;\n- 🔖 Присваивайте ярлыки для ещё лучшей организации;\n- 👥 Делитесь со своей командой, друзьями или семьей;\n- 📎 Вкладывайте файлы в виде ссылок в описании, используя формат разметки «markdown»;\n- 💬 Обсуждайте в комментариях;\n- ⚡ Отслеживайте изменения в ленте событий;\n- 🚀 Сделайте свой проект более организованным.",
"Creating the new card…":"Создание карточки…",
"\"{card}\" was added to \"{board}\"":"«{card}» добавлена на доску «{board}»",
"Are you sure you want to delete the board {title}? This will delete all the data of this board.":"Ses seguru chi cheres cantzellare sa lavagna {title}? Custa operatzione at a cantzellare totu is datos de custa lavagna.",
"Delete the board?":"Cheres cantzellare sa lavagna?",
"Loading filtered view":"Carrigamentu de sa bista cun su filtru",
"This week":"Custa chida",
"No due":"Peruna iscadèntzia",
"Search for {searchQuery} in all boards":"Chirca {searchQuery} in totu is lavagnas",
"No results found":"Perunu resurtadu agatadu",
@@ -279,6 +278,7 @@ OC.L10N.register(
"Share with a Deck card":"Cumpartzi cun un'ischeda deck",
"Share {file} with a Deck card":"Cumpartzi {file} cun un'ischeda de deck",
"Share":"Cumpartzi",
"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 est unu trastu de organizatzione a sa moda de kanban destinadu a sa pranificatzione personale e a s'organizatzione de progetos in iscuadra integradu cun Nextcloud\n\n- 📥 Agiunghe is atividades tuas a is ischedas e mantene·ddas ordinadas\n- 📄 Iscrie notas in agiunta in markdown\n- 🔖 Assigna etichetas pro t'organizare mègius ancora\n- 👥 Cumpatzi cun s'iscuadra tua, famìlia e amigos\n- 📎 Aligongia archìvios e integra·ddos in sa descritzione tua in markdown\n- 💬 Chistiona cun s'iscuadra tua impreende is cummentos\n- ⚡ Mantene su rastru de is cummentos tuos in su flussu de atividades\n- 🚀 Organiza su progetu tuo"
"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 est unu trastu de organizatzione a sa moda de kanban destinadu a sa pranificatzione personale e a s'organizatzione de progetos in iscuadra integradu cun Nextcloud\n\n- 📥 Agiunghe is atividades tuas a is ischedas e mantene·ddas ordinadas\n- 📄 Iscrie notas in agiunta in markdown\n- 🔖 Assigna etichetas pro t'organizare mègius ancora\n- 👥 Cumpatzi cun s'iscuadra tua, famìlia e amigos\n- 📎 Aligongia archìvios e integra·ddos in sa descritzione tua in markdown\n- 💬 Chistiona cun s'iscuadra tua impreende is cummentos\n- ⚡ Mantene su rastru de is cummentos tuos in su flussu de atividades\n- 🚀 Organiza su progetu tuo",
"Are you sure you want to delete the board {title}? This will delete all the data of this board.":"Ses seguru chi cheres cantzellare sa lavagna {title}? Custa operatzione at a cantzellare totu is datos de custa lavagna.",
"Delete the board?":"Cheres cantzellare sa lavagna?",
"Loading filtered view":"Carrigamentu de sa bista cun su filtru",
"This week":"Custa chida",
"No due":"Peruna iscadèntzia",
"Search for {searchQuery} in all boards":"Chirca {searchQuery} in totu is lavagnas",
"No results found":"Perunu resurtadu agatadu",
@@ -277,6 +276,7 @@
"Share with a Deck card":"Cumpartzi cun un'ischeda deck",
"Share {file} with a Deck card":"Cumpartzi {file} cun un'ischeda de deck",
"Share":"Cumpartzi",
"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 est unu trastu de organizatzione a sa moda de kanban destinadu a sa pranificatzione personale e a s'organizatzione de progetos in iscuadra integradu cun Nextcloud\n\n- 📥 Agiunghe is atividades tuas a is ischedas e mantene·ddas ordinadas\n- 📄 Iscrie notas in agiunta in markdown\n- 🔖 Assigna etichetas pro t'organizare mègius ancora\n- 👥 Cumpatzi cun s'iscuadra tua, famìlia e amigos\n- 📎 Aligongia archìvios e integra·ddos in sa descritzione tua in markdown\n- 💬 Chistiona cun s'iscuadra tua impreende is cummentos\n- ⚡ Mantene su rastru de is cummentos tuos in su flussu de atividades\n- 🚀 Organiza su progetu tuo"
"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 est unu trastu de organizatzione a sa moda de kanban destinadu a sa pranificatzione personale e a s'organizatzione de progetos in iscuadra integradu cun Nextcloud\n\n- 📥 Agiunghe is atividades tuas a is ischedas e mantene·ddas ordinadas\n- 📄 Iscrie notas in agiunta in markdown\n- 🔖 Assigna etichetas pro t'organizare mègius ancora\n- 👥 Cumpatzi cun s'iscuadra tua, famìlia e amigos\n- 📎 Aligongia archìvios e integra·ddos in sa descritzione tua in markdown\n- 💬 Chistiona cun s'iscuadra tua impreende is cummentos\n- ⚡ Mantene su rastru de is cummentos tuos in su flussu de atividades\n- 🚀 Organiza su progetu tuo",
"Are you sure you want to delete the board {title}? This will delete all the data of this board.":"Naozaj chcete chcete vymazať nástenku {title}? Toto zmaže všetky údaje o tejto nástenke.",
"Search for {searchQuery} in all boards":"Vyhľadať {searchQuery} na všetkých plochách",
"No results found":"Neboli nájdené žiadne výsledky",
@@ -290,6 +289,7 @@ OC.L10N.register(
"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":"Karty sú nástroj zacielený na osobné alebo projektové plánovanie tímov v štýle Kanban integrovaný do Nextcloud.\n\n\n- 📥 Zadávajte a usporadúvajte svoje úlohy do kariet\n- 📄 Zapisujte si dodatočné poznámky\n- 🔖 Priraďujte štítky pre ešte lepšiu organizáciu\n- 👥 Zdieľajte so svojim tímom, priateľmi alebo rodinou\n- 🚀 Dostaňte svoj projekt pod kontrolu",
"Creating the new card…":"Vytváram novú kartu...",
"\"{card}\" was added to \"{board}\"":"\"{card}\" bola pridaná na \"{board}\"",
"(circle)":"(kruh)"
"(circle)":"(kruh)",
"This week":"Tento týždeň"
},
"nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);");
"Are you sure you want to delete the board {title}? This will delete all the data of this board.":"Naozaj chcete chcete vymazať nástenku {title}? Toto zmaže všetky údaje o tejto nástenke.",
"Search for {searchQuery} in all boards":"Vyhľadať {searchQuery} na všetkých plochách",
"No results found":"Neboli nájdené žiadne výsledky",
@@ -288,6 +287,7 @@
"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":"Karty sú nástroj zacielený na osobné alebo projektové plánovanie tímov v štýle Kanban integrovaný do Nextcloud.\n\n\n- 📥 Zadávajte a usporadúvajte svoje úlohy do kariet\n- 📄 Zapisujte si dodatočné poznámky\n- 🔖 Priraďujte štítky pre ešte lepšiu organizáciu\n- 👥 Zdieľajte so svojim tímom, priateľmi alebo rodinou\n- 🚀 Dostaňte svoj projekt pod kontrolu",
"Creating the new card…":"Vytváram novú kartu...",
"\"{card}\" was added to \"{board}\"":"\"{card}\" bola pridaná na \"{board}\"",
"(circle)":"(kruh)"
"(circle)":"(kruh)",
"This week":"Tento týždeň"
},"pluralForm":"nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);"
"Are you sure you want to delete the board {title}? This will delete all the data of this board.":"Ali ste prepričani, da želite izbrisati zbirko »{title}«? S tem boste izbrisali tudi vse podatke zbirke.",
"Delete the board?":"Ali želite izbrisati zbirko?",
"Search for {searchQuery} in all boards":"Poišči {searchQuery} med vsemi zbirkami nalog.",
"No results found":"Ni najdenih zadetkov",
@@ -282,6 +281,7 @@ OC.L10N.register(
"Error creating the share":"Napaka ustvarjanja mesta souporabe",
"Share with a Deck card":"Poveži z nalogo Deck",
"Share {file} with a Deck card":"Poveži datoteko {file} z nalogo Deck",
"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":"Program Deck je orodje za osebno načrtovanje in projektno delo v slogu kanban, ki se izvrstno vključuje v okolje Nextcloud.\n\nOrodje omogoča:\n- 📥 dodajanje in urejanje nalog\n- 📄 zapis dodatnih opomb v zapisu markdown\n- 🔖 dodeljevanje oznak za lažje urejanje in iskanje\n- 👥 souporabo v skupini, s prijatelji ali družino\n- 📎 pripenjanje in vstavljanje datotek v opise\n- 💬 opombe k posamezni nalogi\n- ⚡ sledenje spremembam in dejavnosti\n- 🚀 Organizaciji projekta"
"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":"Program Deck je orodje za osebno načrtovanje in projektno delo v slogu kanban, ki se izvrstno vključuje v okolje Nextcloud.\n\nOrodje omogoča:\n- 📥 dodajanje in urejanje nalog\n- 📄 zapis dodatnih opomb v zapisu markdown\n- 🔖 dodeljevanje oznak za lažje urejanje in iskanje\n- 👥 souporabo v skupini, s prijatelji ali družino\n- 📎 pripenjanje in vstavljanje datotek v opise\n- 💬 opombe k posamezni nalogi\n- ⚡ sledenje spremembam in dejavnosti\n- 🚀 Organizaciji projekta",
"Are you sure you want to delete the board {title}? This will delete all the data of this board.":"Ali ste prepričani, da želite izbrisati zbirko »{title}«? S tem boste izbrisali tudi vse podatke zbirke.",
"Delete the board?":"Ali želite izbrisati zbirko?",
"Search for {searchQuery} in all boards":"Poišči {searchQuery} med vsemi zbirkami nalog.",
"No results found":"Ni najdenih zadetkov",
@@ -280,6 +279,7 @@
"Error creating the share":"Napaka ustvarjanja mesta souporabe",
"Share with a Deck card":"Poveži z nalogo Deck",
"Share {file} with a Deck card":"Poveži datoteko {file} z nalogo Deck",
"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":"Program Deck je orodje za osebno načrtovanje in projektno delo v slogu kanban, ki se izvrstno vključuje v okolje Nextcloud.\n\nOrodje omogoča:\n- 📥 dodajanje in urejanje nalog\n- 📄 zapis dodatnih opomb v zapisu markdown\n- 🔖 dodeljevanje oznak za lažje urejanje in iskanje\n- 👥 souporabo v skupini, s prijatelji ali družino\n- 📎 pripenjanje in vstavljanje datotek v opise\n- 💬 opombe k posamezni nalogi\n- ⚡ sledenje spremembam in dejavnosti\n- 🚀 Organizaciji projekta"
"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":"Program Deck je orodje za osebno načrtovanje in projektno delo v slogu kanban, ki se izvrstno vključuje v okolje Nextcloud.\n\nOrodje omogoča:\n- 📥 dodajanje in urejanje nalog\n- 📄 zapis dodatnih opomb v zapisu markdown\n- 🔖 dodeljevanje oznak za lažje urejanje in iskanje\n- 👥 souporabo v skupini, s prijatelji ali družino\n- 📎 pripenjanje in vstavljanje datotek v opise\n- 💬 opombe k posamezni nalogi\n- ⚡ sledenje spremembam in dejavnosti\n- 🚀 Organizaciji projekta",
"Are you sure you want to delete the board {title}? This will delete all the data of this board.":"Да ли стварно желите да обришете таблу {title}? Овим ћете обрисати све податке са табле.",
"Maximum file size of {size} exceeded":"Премашена максимална величина фајла од {size}",
"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 је алатка канбан организационог стила намењена за лично планирање и организацију пројеката за тимове интегрисане са Некстклаудом.\n\n\n- 📥 Додајте Ваше задатке на картице и распоређујте их како желите\n- 📄 Допишите додатне белешке markdown синтаксом\n- 🔖 Додељујте ознаке за још боље организовање\n- 👥 Делите са Вашим тимом, пријатељима или породицом\n- 📎 Качите фајлове и уградите их у Ваш markdown опис\n- 💬 Дискутујте са тимом преко коментара\n- ⚡ Пазите на промене коришћењем тока активности\n- 🚀 Организујте Ваше пројекте"
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized":"Deck је алатка канбан организационог стила намењена за лично планирање и организацију пројеката за тимове интегрисане са Некстклаудом.\n\n\n- 📥 Додајте Ваше задатке на картице и распоређујте их како желите\n- 📄 Допишите додатне белешке markdown синтаксом\n- 🔖 Додељујте ознаке за још боље организовање\n- 👥 Делите са Вашим тимом, пријатељима или породицом\n- 📎 Качите фајлове и уградите их у Ваш markdown опис\n- 💬 Дискутујте са тимом преко коментара\n- ⚡ Пазите на промене коришћењем тока активности\n- 🚀 Организујте Ваше пројекте",
"Are you sure you want to delete the board {title}? This will delete all the data of this board.":"Да ли стварно желите да обришете таблу {title}? Овим ћете обрисати све податке са табле.",
"Maximum file size of {size} exceeded":"Премашена максимална величина фајла од {size}",
"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 је алатка канбан организационог стила намењена за лично планирање и организацију пројеката за тимове интегрисане са Некстклаудом.\n\n\n- 📥 Додајте Ваше задатке на картице и распоређујте их како желите\n- 📄 Допишите додатне белешке markdown синтаксом\n- 🔖 Додељујте ознаке за још боље организовање\n- 👥 Делите са Вашим тимом, пријатељима или породицом\n- 📎 Качите фајлове и уградите их у Ваш markdown опис\n- 💬 Дискутујте са тимом преко коментара\n- ⚡ Пазите на промене коришћењем тока активности\n- 🚀 Организујте Ваше пројекте"
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized":"Deck је алатка канбан организационог стила намењена за лично планирање и организацију пројеката за тимове интегрисане са Некстклаудом.\n\n\n- 📥 Додајте Ваше задатке на картице и распоређујте их како желите\n- 📄 Допишите додатне белешке markdown синтаксом\n- 🔖 Додељујте ознаке за још боље организовање\n- 👥 Делите са Вашим тимом, пријатељима или породицом\n- 📎 Качите фајлове и уградите их у Ваш markdown опис\n- 💬 Дискутујте са тимом преко коментара\n- ⚡ Пазите на промене коришћењем тока активности\n- 🚀 Организујте Ваше пројекте",
"Are you sure you want to delete the board {title}? This will delete all the data of this board.":"Är du säker på att du vill radera tavla {title}? Detta kommer att radera all information från denna tavla.",
"Delete the board?":"Ta bort tavlan?",
"Loading filtered view":"Laddar filtrerad vy",
"This week":"Denna vecka",
"No due":"Inget slut",
"Search for {searchQuery} in all boards":"Sök efter {searchQuery} i alla tavlor",
"No results found":"Inga resultat funna",
@@ -290,6 +289,7 @@ OC.L10N.register(
"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 är en kanban-liknande projekt- och organiseringsapp för arbetsgrupper i Nextcloud.\n\n\n- 📥 Lägg till uppgifter på kort och ordna dem\n- 📄 Skriv anteckningar i markdown\n- 🔖 Tilldela etiketter för organisering\n- 👥 Dela med arbetsgruppen, vänner eller familj\n- 📎 Bifoga filer och bädda in dem i markdown-anteckningarna\n- 💬 Diskutera i arbetsgruppen genom kommentarer\n- ⚡ Håll koll på ändringar i aktivitetsflödet\n- 🚀 Börja organisera din arbetsgrupp nu!",
"Creating the new card…":"Skapar det nya kortet...",
"\"{card}\" was added to \"{board}\"":"\"{card}\" lades till i \"{board}\"",
"Are you sure you want to delete the board {title}? This will delete all the data of this board.":"Är du säker på att du vill radera tavla {title}? Detta kommer att radera all information från denna tavla.",
"Delete the board?":"Ta bort tavlan?",
"Loading filtered view":"Laddar filtrerad vy",
"This week":"Denna vecka",
"No due":"Inget slut",
"Search for {searchQuery} in all boards":"Sök efter {searchQuery} i alla tavlor",
"No results found":"Inga resultat funna",
@@ -288,6 +287,7 @@
"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 är en kanban-liknande projekt- och organiseringsapp för arbetsgrupper i Nextcloud.\n\n\n- 📥 Lägg till uppgifter på kort och ordna dem\n- 📄 Skriv anteckningar i markdown\n- 🔖 Tilldela etiketter för organisering\n- 👥 Dela med arbetsgruppen, vänner eller familj\n- 📎 Bifoga filer och bädda in dem i markdown-anteckningarna\n- 💬 Diskutera i arbetsgruppen genom kommentarer\n- ⚡ Håll koll på ändringar i aktivitetsflödet\n- 🚀 Börja organisera din arbetsgrupp nu!",
"Creating the new card…":"Skapar det nya kortet...",
"\"{card}\" was added to \"{board}\"":"\"{card}\" lades till i \"{board}\"",
"Failed to create share with {displayName}":"{displayName} ile paylaşılamadı",
"Are you sure you want to transfer the board {title} for {user}?":"{title} panosunu {user} kullanıcısına aktarmak istediğinize emin misiniz?",
"Transfer the board.":"Panoyu aktar.",
"Transfer":"Aktar",
"Transfer the board for {user} successfully":"Pano {user} kullanıcısına aktarıldı",
"Failed to transfer the board for {user}":"Pano {user} kullanıcısına aktarılamadı",
"Add a new list":"Yeni liste ekle",
"Archive all cards":"Tüm kartları arşivle",
"Delete list":"Listeyi sil",
@@ -270,7 +276,6 @@ OC.L10N.register(
"Are you sure you want to delete the board {title}? This will delete all the data of this board.":"{title} panosunu silmek istediğinize emin misiniz? Bu işlem, bu panodaki tüm verileri silecek.",
"Search for {searchQuery} in all boards":"Tüm panolarda {searchQuery} için sonuçlar",
"No results found":"Herhangi bir sonuç bulunamadı",
@@ -290,6 +295,8 @@ OC.L10N.register(
"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":"Tahta, Nextcloud ile bütünleştirilmiş takımlar için Kanban tarzında bir kişisel planlama ve proje yönetimi uygulamasıdır.\n\n\n- 📥 Görevleri kartlara ekleyerek sıralayabilirsiniz\n- 📄 Markdown ile biçimlendirilmiş notlar ekleyebilirsiniz\n- 🔖 Daha iyi düzenleme için etiketler atayabilirsiniz\n- 👥 Takımınız, arkadaşlarınız ya da aileniz ile paylaşabilirsiniz\n- 💬 Yorumları kullanarak konular üzerinde takımınız ile yazışabilirsiniz\n- ⚡ İşlem akışı ile değişiklikleri görebilirsiniz\n- 🚀 Projelerinizi düzenli tutarak izleyebilirsiniz",
"Creating the new card…":"Yeni kart ekleniyor…",
"\"{card}\" was added to \"{board}\"":"\"{card}\" kartı \"{board}\" panosuna eklendi",
"(circle)":"(çevre)"
"(circle)":"(çevre)",
"This week":"Bu hafta",
"Are you sure you want to transfer the board {title} for {user} ?":"{title} panosunu {user} kullanıcısına aktarmak istediğinize emin misiniz?"
"Failed to create share with {displayName}":"{displayName} ile paylaşılamadı",
"Are you sure you want to transfer the board {title} for {user}?":"{title} panosunu {user} kullanıcısına aktarmak istediğinize emin misiniz?",
"Transfer the board.":"Panoyu aktar.",
"Transfer":"Aktar",
"Transfer the board for {user} successfully":"Pano {user} kullanıcısına aktarıldı",
"Failed to transfer the board for {user}":"Pano {user} kullanıcısına aktarılamadı",
"Add a new list":"Yeni liste ekle",
"Archive all cards":"Tüm kartları arşivle",
"Delete list":"Listeyi sil",
@@ -268,7 +274,6 @@
"Are you sure you want to delete the board {title}? This will delete all the data of this board.":"{title} panosunu silmek istediğinize emin misiniz? Bu işlem, bu panodaki tüm verileri silecek.",
"Search for {searchQuery} in all boards":"Tüm panolarda {searchQuery} için sonuçlar",
"No results found":"Herhangi bir sonuç bulunamadı",
@@ -288,6 +293,8 @@
"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":"Tahta, Nextcloud ile bütünleştirilmiş takımlar için Kanban tarzında bir kişisel planlama ve proje yönetimi uygulamasıdır.\n\n\n- 📥 Görevleri kartlara ekleyerek sıralayabilirsiniz\n- 📄 Markdown ile biçimlendirilmiş notlar ekleyebilirsiniz\n- 🔖 Daha iyi düzenleme için etiketler atayabilirsiniz\n- 👥 Takımınız, arkadaşlarınız ya da aileniz ile paylaşabilirsiniz\n- 💬 Yorumları kullanarak konular üzerinde takımınız ile yazışabilirsiniz\n- ⚡ İşlem akışı ile değişiklikleri görebilirsiniz\n- 🚀 Projelerinizi düzenli tutarak izleyebilirsiniz",
"Creating the new card…":"Yeni kart ekleniyor…",
"\"{card}\" was added to \"{board}\"":"\"{card}\" kartı \"{board}\" panosuna eklendi",
"(circle)":"(çevre)"
"(circle)":"(çevre)",
"This week":"Bu hafta",
"Are you sure you want to transfer the board {title} for {user} ?":"{title} panosunu {user} kullanıcısına aktarmak istediğinize emin misiniz?"
"Maximum file size of {size} exceeded":"Досягнуто максимальний розмір файлу {size}"
"Maximum file size of {size} exceeded":"Досягнуто максимальний розмір файлу {size}",
"This week":"Цього тижня"
},
"nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);");
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.