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.
"Failed to create share with {displayName}":"فشل في إنشاء المشاركة مع {displayName}",
"Transfer":"نقل",
"Add a new list":"اضف قائمة جديدة",
"Archive all cards":"أرشفة جميع البطاقات ",
"Delete list":"حذف القائمة",
@@ -188,7 +186,6 @@ OC.L10N.register(
"Share from Files":"مشاركة من الملفات",
"Add this attachment":"إضافة هذا المرفق",
"Show in Files":"عرض في الملفات ",
"Download":"تنزيل",
"Delete Attachment":"مسح المرفق",
"Restore Attachment":"إستعادة المرفق",
"File to share":"ملف للمشاركة",
@@ -212,8 +209,6 @@ OC.L10N.register(
"Select Date":"اختر التاريخ ",
"Today":"اليوم",
"Tomorrow":"غدا",
"Next week":"الاسبوع القادم",
"Next month":"الشهر القادم",
"Save":"حفظ",
"The comment cannot be empty.":"التعليق لايمكن ان يكون فارغا.",
"The comment cannot be longer than 1000 characters.":"التعليق لا يمكن ان يكون اطول من 1000 حرف.",
@@ -267,6 +262,7 @@ OC.L10N.register(
"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":"لا يتم العثور على أي نتائج ",
@@ -283,10 +279,6 @@ 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- 🚀 اجعل مشروعك منظماً",
"Creating the new card…":"أنشى البطاقة الجديدة ",
"\"{card}\" was added to \"{board}\"":"\"{بطاقة}\" تمت إضافتها في \"{اللوح}\"",
"(circle)":"(دائرة)",
"This week":"هذا الأسبوع"
"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- 🚀 اجعل مشروعك منظماً"
"Failed to create share with {displayName}":"فشل في إنشاء المشاركة مع {displayName}",
"Transfer":"نقل",
"Add a new list":"اضف قائمة جديدة",
"Archive all cards":"أرشفة جميع البطاقات ",
"Delete list":"حذف القائمة",
@@ -186,7 +184,6 @@
"Share from Files":"مشاركة من الملفات",
"Add this attachment":"إضافة هذا المرفق",
"Show in Files":"عرض في الملفات ",
"Download":"تنزيل",
"Delete Attachment":"مسح المرفق",
"Restore Attachment":"إستعادة المرفق",
"File to share":"ملف للمشاركة",
@@ -210,8 +207,6 @@
"Select Date":"اختر التاريخ ",
"Today":"اليوم",
"Tomorrow":"غدا",
"Next week":"الاسبوع القادم",
"Next month":"الشهر القادم",
"Save":"حفظ",
"The comment cannot be empty.":"التعليق لايمكن ان يكون فارغا.",
"The comment cannot be longer than 1000 characters.":"التعليق لا يمكن ان يكون اطول من 1000 حرف.",
@@ -265,6 +260,7 @@
"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":"لا يتم العثور على أي نتائج ",
@@ -281,10 +277,6 @@
"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- 🚀 اجعل مشروعك منظماً",
"Creating the new card…":"أنشى البطاقة الجديدة ",
"\"{card}\" was added to \"{board}\"":"\"{بطاقة}\" تمت إضافتها في \"{اللوح}\"",
"(circle)":"(دائرة)",
"This week":"هذا الأسبوع"
"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- 🚀 اجعل مشروعك منظماً"
"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",
"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":"Лично планиране и организация на екипни проекти",
"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- 🚀 Организирайте проекта си",
"Card details":"Подробности за картата",
"Add board":"Добави табло",
"Select the board to link to a project":"Изберете таблото, което да свържете към проект",
@@ -170,11 +168,8 @@ OC.L10N.register(
"Can edit":"Може да редактира",
"Can share":"Може да споделя",
"Can manage":"Може да управлява",
"Owner":"Собственик",
"Delete":"Изтриване",
"Failed to create share with {displayName}":"Създаването на споделяне с {displayName} не бе успешно",
"Transfer the board.":"Прехвърлете таблото.",
"Transfer":"Прехвърляне",
"Add a new list":"Добавяне на нов списък",
"Archive all cards":"Архивира всички карти",
"Delete list":"Изтрива списък",
@@ -244,7 +239,6 @@ OC.L10N.register(
"Archive card":"Архивиране на карта",
"Delete card":"Изтриване на карта",
"Move card to another board":"Преместване на картата на друго табло",
"List is empty":"Списъкът е празен",
"Card deleted":"Картата е изтрита",
"seconds ago":"преди секунди",
"All boards":"Всички табла",
@@ -273,6 +267,7 @@ OC.L10N.register(
"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":"Няма намерени резултати",
@@ -289,13 +284,6 @@ 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- 🚀 Организирайте проекта си",
"Creating the new card…":"Създаване на новата карта ...",
"\"{card}\" was added to \"{board}\"":" \"{card}\" беше добавен към \"{board}\"",
"(circle)":"(кръг)",
"This week":"Тази седмица",
"Are you sure you want to transfer the board {title} for {user} ?":"Сигурни ли сте че искате да прехвърлите таблото {title} на {user}?",
"Transfer the board for {user} successfully":"Успешно прехвърляне на таблото към {user} ",
"Failed to transfer the board for {user}":"Неуспешно прехвърляне на таблото към {user}"
"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- 🚀 Организирайте проекта си"
"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",
"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":"Лично планиране и организация на екипни проекти",
"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- 🚀 Организирайте проекта си",
"Card details":"Подробности за картата",
"Add board":"Добави табло",
"Select the board to link to a project":"Изберете таблото, което да свържете към проект",
@@ -168,11 +166,8 @@
"Can edit":"Може да редактира",
"Can share":"Може да споделя",
"Can manage":"Може да управлява",
"Owner":"Собственик",
"Delete":"Изтриване",
"Failed to create share with {displayName}":"Създаването на споделяне с {displayName} не бе успешно",
"Transfer the board.":"Прехвърлете таблото.",
"Transfer":"Прехвърляне",
"Add a new list":"Добавяне на нов списък",
"Archive all cards":"Архивира всички карти",
"Delete list":"Изтрива списък",
@@ -242,7 +237,6 @@
"Archive card":"Архивиране на карта",
"Delete card":"Изтриване на карта",
"Move card to another board":"Преместване на картата на друго табло",
"List is empty":"Списъкът е празен",
"Card deleted":"Картата е изтрита",
"seconds ago":"преди секунди",
"All boards":"Всички табла",
@@ -271,6 +265,7 @@
"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":"Няма намерени резултати",
@@ -287,13 +282,6 @@
"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- 🚀 Организирайте проекта си",
"Creating the new card…":"Създаване на новата карта ...",
"\"{card}\" was added to \"{board}\"":" \"{card}\" беше добавен към \"{board}\"",
"(circle)":"(кръг)",
"This week":"Тази седмица",
"Are you sure you want to transfer the board {title} for {user} ?":"Сигурни ли сте че искате да прехвърлите таблото {title} на {user}?",
"Transfer the board for {user} successfully":"Успешно прехвърляне на таблото към {user} ",
"Failed to transfer the board for {user}":"Неуспешно прехвърляне на таблото към {user}"
"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- 🚀 Организирайте проекта си"
"Failed to create share with {displayName}":"Ha fallat la creació de la compartició amb {displayName}",
"Transfer":"Transferència",
"Add a new list":"Afegir una llista nova",
"Archive all cards":"Arxiva totes les targetes",
"Delete list":"Suprimeix la llista",
@@ -189,7 +187,6 @@ OC.L10N.register(
"Pending share":"Compartició pendent",
"Add this attachment":"Afegeix aquest adjunt",
"Show in Files":"Mostra a Fitxers",
"Download":"Baixa",
"Remove attachment":"Treu l'adjunt",
"Delete Attachment":"Suprimeix l’adjunt",
"Restore Attachment":"Restaura l'adjunt",
@@ -241,7 +238,6 @@ OC.L10N.register(
"Archive card":"Arxiva la targeta",
"Delete card":"Suprimeix targeta",
"Move card to another board":"Mou la targeta a un altre tauler",
"List is empty":"La llista és buida",
"Card deleted":"Targeta suprimida",
"seconds ago":"fa uns segons",
"All boards":"Tots els taulers",
@@ -270,6 +266,7 @@ OC.L10N.register(
"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",
@@ -286,8 +283,6 @@ OC.L10N.register(
"Share with a Deck card":"Compartir amb una targeta de Deck",
"Share {file} with a Deck card":"Compartir {file} amb una targeta de Deck",
"Share":"Compartir",
"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",
"(circle)":"(cercle)",
"This week":"Aquesta setmana"
"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}":"Ha fallat la creació de la compartició amb {displayName}",
"Transfer":"Transferència",
"Add a new list":"Afegir una llista nova",
"Archive all cards":"Arxiva totes les targetes",
"Delete list":"Suprimeix la llista",
@@ -187,7 +185,6 @@
"Pending share":"Compartició pendent",
"Add this attachment":"Afegeix aquest adjunt",
"Show in Files":"Mostra a Fitxers",
"Download":"Baixa",
"Remove attachment":"Treu l'adjunt",
"Delete Attachment":"Suprimeix l’adjunt",
"Restore Attachment":"Restaura l'adjunt",
@@ -239,7 +236,6 @@
"Archive card":"Arxiva la targeta",
"Delete card":"Suprimeix targeta",
"Move card to another board":"Mou la targeta a un altre tauler",
"List is empty":"La llista és buida",
"Card deleted":"Targeta suprimida",
"seconds ago":"fa uns segons",
"All boards":"Tots els taulers",
@@ -268,6 +264,7 @@
"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",
@@ -284,8 +281,6 @@
"Share with a Deck card":"Compartir amb una targeta de Deck",
"Share {file} with a Deck card":"Compartir {file} amb una targeta de Deck",
"Share":"Compartir",
"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",
"(circle)":"(cercle)",
"This week":"Aquesta setmana"
"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",
@@ -273,6 +276,7 @@ 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",
@@ -292,10 +296,6 @@ 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)",
"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}?",
"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}"
"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",
@@ -271,6 +274,7 @@
"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,10 +294,6 @@
"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)",
"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}?",
"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}"
"Select the card to link to a project":"Vælg et kort at linke til et projekt",
"Link to card":"Link til kort",
@@ -120,10 +118,8 @@ OC.L10N.register(
"Can edit":"Kan redigere",
"Can share":"Kan dele",
"Can manage":"Kan administrere",
"Owner":"Ejer",
"Delete":"Slet",
"Failed to create share with {displayName}":"Oprettelse af delt drev med {displayName} fejlede",
"Transfer":"Overførsel",
"Add a new list":"Tilføj en ny kolonne",
"Archive all cards":"Arkivér alle kort",
"Delete list":"Slet liste",
@@ -140,7 +136,6 @@ OC.L10N.register(
"Share from Files":"Del fra Filer",
"Add this attachment":"Tilføj denne vedhæftning",
"Show in Files":"Vis i Filer",
"Download":"Download",
"Delete Attachment":"Slet vedhæftning",
"Restore Attachment":"Genskab vedhæftning",
"File to share":"Vælg fil til deling",
@@ -163,8 +158,6 @@ OC.L10N.register(
"Select Date":"Vælg dato",
"Today":"I dag",
"Tomorrow":"I morgen",
"Next week":"Næste uge",
"Next month":"Næste måned",
"Save":"Gem",
"The comment cannot be empty.":"Kommentaren kan ikke være tom.",
"The comment cannot be longer than 1000 characters.":"Kommentaren kan ikke være længere end 1000 tegn.",
@@ -216,6 +209,7 @@ OC.L10N.register(
"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!",
"(circle)":"(cirkel)",
"This week":"Denne uge"
"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!"
"Select the card to link to a project":"Vælg et kort at linke til et projekt",
"Link to card":"Link til kort",
@@ -118,10 +116,8 @@
"Can edit":"Kan redigere",
"Can share":"Kan dele",
"Can manage":"Kan administrere",
"Owner":"Ejer",
"Delete":"Slet",
"Failed to create share with {displayName}":"Oprettelse af delt drev med {displayName} fejlede",
"Transfer":"Overførsel",
"Add a new list":"Tilføj en ny kolonne",
"Archive all cards":"Arkivér alle kort",
"Delete list":"Slet liste",
@@ -138,7 +134,6 @@
"Share from Files":"Del fra Filer",
"Add this attachment":"Tilføj denne vedhæftning",
"Show in Files":"Vis i Filer",
"Download":"Download",
"Delete Attachment":"Slet vedhæftning",
"Restore Attachment":"Genskab vedhæftning",
"File to share":"Vælg fil til deling",
@@ -161,8 +156,6 @@
"Select Date":"Vælg dato",
"Today":"I dag",
"Tomorrow":"I morgen",
"Next week":"Næste uge",
"Next month":"Næste måned",
"Save":"Gem",
"The comment cannot be empty.":"Kommentaren kan ikke være tom.",
"The comment cannot be longer than 1000 characters.":"Kommentaren kan ikke være længere end 1000 tegn.",
@@ -214,6 +207,7 @@
"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!",
"(circle)":"(cirkel)",
"This week":"Denne uge"
"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} to {user}?":"Möchtest Du wirklich das Board {title} an {user} übertragen?",
"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",
"The board has been transferred to {user}":"Das Board wurde an {user} übertragen",
"Failed to transfer the board to {user}":"Das Board konnte nicht an {user} übertragen werden",
"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",
@@ -276,6 +276,7 @@ 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",
@@ -295,10 +296,6 @@ 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)",
"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?",
"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"
"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} to {user}?":"Möchtest Du wirklich das Board {title} an {user} übertragen?",
"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",
"The board has been transferred to {user}":"Das Board wurde an {user} übertragen",
"Failed to transfer the board to {user}":"Das Board konnte nicht an {user} übertragen werden",
"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",
@@ -274,6 +274,7 @@
"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",
@@ -293,10 +294,6 @@
"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)",
"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?",
"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"
"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} to {user}?":"Möchten Sie wirklich das Board {title} auf {user} übertragen?",
"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",
"The board has been transferred to {user}":"Das Board wurde auf {user} übertragen",
"Failed to transfer the board to {user}":"Das Board konnte nicht auf {user} übertragen werden",
"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",
@@ -276,6 +276,7 @@ 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",
@@ -295,10 +296,6 @@ 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)",
"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?",
"Transfer the board for {user} successfully":"Das Board wurde an {user} übertragen",
"Failed to transfer the board for {user}":"Board konnte nicht an {user} übertragen werden"
"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} to {user}?":"Möchten Sie wirklich das Board {title} auf {user} übertragen?",
"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",
"The board has been transferred to {user}":"Das Board wurde auf {user} übertragen",
"Failed to transfer the board to {user}":"Das Board konnte nicht auf {user} übertragen werden",
"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",
@@ -274,6 +274,7 @@
"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",
@@ -293,10 +294,6 @@
"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)",
"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?",
"Transfer the board for {user} successfully":"Das Board wurde an {user} übertragen",
"Failed to transfer the board for {user}":"Board konnte nicht an {user} übertragen werden"
"Failed to create share with {displayName}":"Αποτυχία δημιουργίας κοινής χρήσης με το {displayName}",
"Are you sure you want to transfer the board {title} for {user}?":"Είστε σίγουροι ότι θέλετε να μεταφέρετε τον πίνακα {title} για {user}? ",
"Transfer":"Μεταφορά",
"Add a new list":"Προσθήκη νέας λίστας",
"Archive all cards":"Αρχειοθέτηση όλων των καρτελών.",
@@ -272,6 +273,7 @@ OC.L10N.register(
"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":"Δεν βρέθηκαν αποτελέσματα",
@@ -291,7 +293,6 @@ 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 είναι ένα εργαλείο οργάνωσης τύπου kanban με στόχο τον προσωπικό προγραμματισμό και την οργάνωση έργων για ομάδες που έχουν ενσωματωθεί στο Nextcloud.\n\n\n- 📥 Προσθέστε τις εργασίες σας στις καρτέλες και βάλτε τες στη σειρά\n- 📄 Γράψτε τις πρόσθετες σημειώσεις\n- 🔖 Αντιστοιχίστε τις ετικέτες για ακόμη καλύτερη οργάνωση\n- 👥 Μοιραστείτε με την ομάδα, φίλους ή την οικογένειά σας\n- 📎 Συνδέστε αρχεία και ενσωματώστε τα στην περιγραφή\n- 💬 Συζητήστε με την ομάδα σας χρησιμοποιώντας σχόλια\n- ⚡ Παρακολουθήστε τις αλλαγές στη ροή δραστηριοτήτων\n- 🚀 Έχετε τα όλα οργανωμένα",
"Creating the new card…":"Δημιουργία νέας καρτέλας...",
"\"{card}\" was added to \"{board}\"":"\"{card}\" προστέθηκε στο \"{board}\"",
"Failed to create share with {displayName}":"Αποτυχία δημιουργίας κοινής χρήσης με το {displayName}",
"Are you sure you want to transfer the board {title} for {user}?":"Είστε σίγουροι ότι θέλετε να μεταφέρετε τον πίνακα {title} για {user}? ",
"Transfer":"Μεταφορά",
"Add a new list":"Προσθήκη νέας λίστας",
"Archive all cards":"Αρχειοθέτηση όλων των καρτελών.",
@@ -270,6 +271,7 @@
"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":"Δεν βρέθηκαν αποτελέσματα",
@@ -289,7 +291,6 @@
"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}\"",
"The card \"%s\" on \"%s\" has reached its due date.":"La karto „%s“ sur „%s“ atingis sian limdaton.",
"%s has mentioned you in a comment on \"%s\".":"%s menciis vin en komento ĉe „%s“.",
"The board \"%s\" has been shared with you by %s.":"La tabulo „%s“ estis kunhavigita kun vi de %s.",
"%s on %s":"%s el %s",
"No data was provided to create an attachment.":"Neniu datumo troviĝis por krei aldonaĵon.",
"Finished":"Finita",
"To review":"Reviziota",
@@ -70,11 +69,9 @@ OC.L10N.register(
"Could not write file to disk":"Ne eblis skribi dosieron sur diskon",
"A PHP extension stopped the file upload":"PHP-modulo haltigis la dosieralŝuton",
"No file uploaded or file size exceeds maximum of %s":"Neniu dosiero alŝutita, aŭ dosiergrando transpasas la maksimumon %s",
"Invalid date, date format must be YYYY-MM-DD":"Nevalida dato; datoformo estu JJJJ-MM-TT",
"Select the board to link to a project":"Elekti la tabulon ligotan al projekto",
"Select board":"Elekti tabulon",
"Cancel":"Nuligi",
"Close":"Malfermi",
"File already exists":"La dosiero jam ekzistas",
"Add card":"Aldoni karton",
"Archived cards":"Arĥivigitaj kartoj",
@@ -91,11 +88,9 @@ OC.L10N.register(
"(Group)":"(grupo)",
"Can edit":"Povas redakti",
"Can share":"Can share",
"Owner":"Posedanto",
"Delete":"Forigi",
"Edit":"Redakti",
"Members":"Membroj",
"Download":"Elŝuti",
"Attachments":"Dosieraj aldonaĵoj",
"Comments":"Komentoj",
"Modified":"Modifita",
@@ -119,15 +114,9 @@ OC.L10N.register(
"Shared with you":"Kunhavata kun vi",
"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.":"Limigo de Kartaro („Deck“) baros uzantojn, kiuj ne estas en tiuj grupoj, krei iliajn proprajn tabulojn. Uzantoj tamen eblos labori kun tabuloj kunhavigitaj kun ili.",
"Edit board":"Modifi tabulon",
"Unarchive board":"Elarĥivigi tabulon",
"Archive board":"Enarĥivigi tabulon",
"No notifications":"Neniu sciigo",
"Delete board":"Forigi tabulon",
"An error occurred":"Eraro okazis",
"Link to a board":"Ligilo al tabulo",
"Maximum file size of {size} exceeded":"Maksimuma dosiergrando {size} transpasita",
"Error creating the share":"Eraro dum kreo de la kunhavigo",
"Share":"Kunhavigi",
"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":"Kartaro („Deck“) estas kanban-eca organiza ilo por mastrumi sian vivon kaj teaman projektaron per Nextcloud.\n\n\n- 📥 Aldonu viajn taskojn al kartoj, kaj organizu ilin \n- 📄 Skribu pliajn notojn per marklingvo „Markdown“\n- 🔖 Uzu etikedojn por pli bone organiziĝi\n- 👥 Kunhavigu kun viaj teamo, amikoj, familio\n- 📎 Aldonu dosierojn, kaj enmetu ilin en via „Markdown“-a priskribo\n- 💬 Diskutu kun via teamo pere de la komentoj\n- ⚡ Sekvu la ŝanĝojn per la aktivaĵa fluo\n- 🚀 Organizu vian projekton"
"The card \"%s\" on \"%s\" has reached its due date.":"La karto „%s“ sur „%s“ atingis sian limdaton.",
"%s has mentioned you in a comment on \"%s\".":"%s menciis vin en komento ĉe „%s“.",
"The board \"%s\" has been shared with you by %s.":"La tabulo „%s“ estis kunhavigita kun vi de %s.",
"%s on %s":"%s el %s",
"No data was provided to create an attachment.":"Neniu datumo troviĝis por krei aldonaĵon.",
"Finished":"Finita",
"To review":"Reviziota",
@@ -68,11 +67,9 @@
"Could not write file to disk":"Ne eblis skribi dosieron sur diskon",
"A PHP extension stopped the file upload":"PHP-modulo haltigis la dosieralŝuton",
"No file uploaded or file size exceeds maximum of %s":"Neniu dosiero alŝutita, aŭ dosiergrando transpasas la maksimumon %s",
"Invalid date, date format must be YYYY-MM-DD":"Nevalida dato; datoformo estu JJJJ-MM-TT",
"Select the board to link to a project":"Elekti la tabulon ligotan al projekto",
"Select board":"Elekti tabulon",
"Cancel":"Nuligi",
"Close":"Malfermi",
"File already exists":"La dosiero jam ekzistas",
"Add card":"Aldoni karton",
"Archived cards":"Arĥivigitaj kartoj",
@@ -89,11 +86,9 @@
"(Group)":"(grupo)",
"Can edit":"Povas redakti",
"Can share":"Can share",
"Owner":"Posedanto",
"Delete":"Forigi",
"Edit":"Redakti",
"Members":"Membroj",
"Download":"Elŝuti",
"Attachments":"Dosieraj aldonaĵoj",
"Comments":"Komentoj",
"Modified":"Modifita",
@@ -117,15 +112,9 @@
"Shared with you":"Kunhavata kun vi",
"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.":"Limigo de Kartaro („Deck“) baros uzantojn, kiuj ne estas en tiuj grupoj, krei iliajn proprajn tabulojn. Uzantoj tamen eblos labori kun tabuloj kunhavigitaj kun ili.",
"Edit board":"Modifi tabulon",
"Unarchive board":"Elarĥivigi tabulon",
"Archive board":"Enarĥivigi tabulon",
"No notifications":"Neniu sciigo",
"Delete board":"Forigi tabulon",
"An error occurred":"Eraro okazis",
"Link to a board":"Ligilo al tabulo",
"Maximum file size of {size} exceeded":"Maksimuma dosiergrando {size} transpasita",
"Error creating the share":"Eraro dum kreo de la kunhavigo",
"Share":"Kunhavigi",
"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":"Kartaro („Deck“) estas kanban-eca organiza ilo por mastrumi sian vivon kaj teaman projektaron per Nextcloud.\n\n\n- 📥 Aldonu viajn taskojn al kartoj, kaj organizu ilin \n- 📄 Skribu pliajn notojn per marklingvo „Markdown“\n- 🔖 Uzu etikedojn por pli bone organiziĝi\n- 👥 Kunhavigu kun viaj teamo, amikoj, familio\n- 📎 Aldonu dosierojn, kaj enmetu ilin en via „Markdown“-a priskribo\n- 💬 Diskutu kun via teamo pere de la komentoj\n- ⚡ Sekvu la ŝanĝojn per la aktivaĵa fluo\n- 🚀 Organizu vian projekton"
"Failed to create share with {displayName}":"Fallo al crear el recurso compartido denominado {displayName}",
"Transfer":"Transferir",
"Add a new list":"Añadir una lista nueva",
"Archive all cards":"Archivar todas las tarjetas",
"Delete list":"Eliminar lista",
@@ -270,6 +268,7 @@ 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",
@@ -286,10 +285,6 @@ OC.L10N.register(
"Share with a Deck card":"Compartir con una tarjeta de Deck",
"Share {file} with a Deck card":"Compartir {file} con una tarjeta de Deck",
"Share":"Compartir",
"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",
"Creating the new card…":"Creando una nueva tarjeta...",
"\"{card}\" was added to \"{board}\"":"\"{card}\" ha sido añadida en \"{board}\"",
"(circle)":"(circle)",
"This week":"Esta semana"
"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}":"Fallo al crear el recurso compartido denominado {displayName}",
"Transfer":"Transferir",
"Add a new list":"Añadir una lista nueva",
"Archive all cards":"Archivar todas las tarjetas",
"Delete list":"Eliminar lista",
@@ -268,6 +266,7 @@
"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,10 +283,6 @@
"Share with a Deck card":"Compartir con una tarjeta de Deck",
"Share {file} with a Deck card":"Compartir {file} con una tarjeta de Deck",
"Share":"Compartir",
"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",
"Creating the new card…":"Creando una nueva tarjeta...",
"\"{card}\" was added to \"{board}\"":"\"{card}\" ha sido añadida en \"{board}\"",
"(circle)":"(circle)",
"This week":"Esta semana"
"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"
"The card \"%s\" on \"%s\" has reached its due date.":"La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
"The board \"%s\" has been shared with you by %s.":"El tablero \"%s\" ha sido compartido contigo por %s.",
"%s on %s":"%s en %s",
"Finished":"Terminado",
"To review":"Para revisar",
"Action needed":"Acción requerida",
@@ -15,9 +14,7 @@ OC.L10N.register(
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form":"El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML",
"No file was uploaded":"No se cargó el archivo",
"Missing a temporary folder":"Falta una carpeta temporal",
"Invalid date, date format must be YYYY-MM-DD":"La fecha es inválida, por favor sigue el formato AAAA-MM-DD",
"Cancel":"Cancelar",
"Close":"Cerrar",
"File already exists":"El archivo ya existe",
"Do you want to overwrite it?":"¿Deseas sobre escribirlo?",
"The card \"%s\" on \"%s\" has reached its due date.":"La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
"The board \"%s\" has been shared with you by %s.":"El tablero \"%s\" ha sido compartido contigo por %s.",
"%s on %s":"%s en %s",
"Finished":"Terminado",
"To review":"Para revisar",
"Action needed":"Acción requerida",
@@ -13,9 +12,7 @@
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form":"El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML",
"No file was uploaded":"No se cargó el archivo",
"Missing a temporary folder":"Falta una carpeta temporal",
"Invalid date, date format must be YYYY-MM-DD":"La fecha es inválida, por favor sigue el formato AAAA-MM-DD",
"Cancel":"Cancelar",
"Close":"Cerrar",
"File already exists":"El archivo ya existe",
"Do you want to overwrite it?":"¿Deseas sobre escribirlo?",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form":"El archivo subido sobrepasa el valor MAX_FILE_SIZE especificada en el formulario HTML",
"No file was uploaded":"No se subió ningún archivo ",
"Missing a temporary folder":"Falta un directorio temporal",
"Invalid date, date format must be YYYY-MM-DD":"La fecha es inválida, favor de seguir el formato AAAA-MM-DD",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form":"El archivo subido sobrepasa el valor MAX_FILE_SIZE especificada en el formulario HTML",
"No file was uploaded":"No se subió ningún archivo ",
"Missing a temporary folder":"Falta un directorio temporal",
"Invalid date, date format must be YYYY-MM-DD":"La fecha es inválida, favor de seguir el formato AAAA-MM-DD",
"The card \"%s\" on \"%s\" has reached its due date.":"La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
"The board \"%s\" has been shared with you by %s.":"El tablero \"%s\" ha sido compartido contigo por %s.",
"%s on %s":"%s en %s",
"Finished":"Terminado",
"To review":"Para revisar",
"Action needed":"Acción requerida",
@@ -15,9 +14,7 @@ OC.L10N.register(
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form":"El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML",
"No file was uploaded":"No se cargó el archivo",
"Missing a temporary folder":"Falta una carpeta temporal",
"Invalid date, date format must be YYYY-MM-DD":"La fecha es inválida, por favor sigue el formato AAAA-MM-DD",
"Cancel":"Cancelar",
"Close":"Cerrar",
"File already exists":"El archivo ya existe",
"Do you want to overwrite it?":"¿Deseas sobre escribirlo?",
"The card \"%s\" on \"%s\" has reached its due date.":"La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
"The board \"%s\" has been shared with you by %s.":"El tablero \"%s\" ha sido compartido contigo por %s.",
"%s on %s":"%s en %s",
"Finished":"Terminado",
"To review":"Para revisar",
"Action needed":"Acción requerida",
@@ -13,9 +12,7 @@
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form":"El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML",
"No file was uploaded":"No se cargó el archivo",
"Missing a temporary folder":"Falta una carpeta temporal",
"Invalid date, date format must be YYYY-MM-DD":"La fecha es inválida, por favor sigue el formato AAAA-MM-DD",
"Cancel":"Cancelar",
"Close":"Cerrar",
"File already exists":"El archivo ya existe",
"Do you want to overwrite it?":"¿Deseas sobre escribirlo?",
"The card \"%s\" on \"%s\" has reached its due date.":"La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
"The board \"%s\" has been shared with you by %s.":"El tablero \"%s\" ha sido compartido contigo por %s.",
"%s on %s":"%s en %s",
"Finished":"Terminado",
"To review":"Para revisar",
"Action needed":"Acción requerida",
@@ -15,9 +14,7 @@ OC.L10N.register(
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form":"El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML",
"No file was uploaded":"No se cargó el archivo",
"Missing a temporary folder":"Falta una carpeta temporal",
"Invalid date, date format must be YYYY-MM-DD":"La fecha es inválida, por favor sigue el formato AAAA-MM-DD",
"Cancel":"Cancelar",
"Close":"Cerrar",
"File already exists":"El archivo ya existe",
"Do you want to overwrite it?":"¿Deseas sobre escribirlo?",
"The card \"%s\" on \"%s\" has reached its due date.":"La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
"The board \"%s\" has been shared with you by %s.":"El tablero \"%s\" ha sido compartido contigo por %s.",
"%s on %s":"%s en %s",
"Finished":"Terminado",
"To review":"Para revisar",
"Action needed":"Acción requerida",
@@ -13,9 +12,7 @@
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form":"El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML",
"No file was uploaded":"No se cargó el archivo",
"Missing a temporary folder":"Falta una carpeta temporal",
"Invalid date, date format must be YYYY-MM-DD":"La fecha es inválida, por favor sigue el formato AAAA-MM-DD",
"Cancel":"Cancelar",
"Close":"Cerrar",
"File already exists":"El archivo ya existe",
"Do you want to overwrite it?":"¿Deseas sobre escribirlo?",
"The card \"%s\" on \"%s\" has reached its due date.":"La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
"The board \"%s\" has been shared with you by %s.":"El tablero \"%s\" ha sido compartido contigo por %s.",
"%s on %s":"%s en %s",
"Finished":"Terminado",
"To review":"Para revisar",
"Action needed":"Acción requerida",
@@ -15,9 +14,7 @@ OC.L10N.register(
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form":"El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML",
"No file was uploaded":"No se cargó el archivo",
"Missing a temporary folder":"Falta una carpeta temporal",
"Invalid date, date format must be YYYY-MM-DD":"La fecha es inválida, por favor sigue el formato AAAA-MM-DD",
"Cancel":"Cancelar",
"Close":"Cerrar",
"File already exists":"El archivo ya existe",
"Do you want to overwrite it?":"¿Deseas sobre escribirlo?",
"The card \"%s\" on \"%s\" has reached its due date.":"La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
"The board \"%s\" has been shared with you by %s.":"El tablero \"%s\" ha sido compartido contigo por %s.",
"%s on %s":"%s en %s",
"Finished":"Terminado",
"To review":"Para revisar",
"Action needed":"Acción requerida",
@@ -13,9 +12,7 @@
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form":"El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML",
"No file was uploaded":"No se cargó el archivo",
"Missing a temporary folder":"Falta una carpeta temporal",
"Invalid date, date format must be YYYY-MM-DD":"La fecha es inválida, por favor sigue el formato AAAA-MM-DD",
"Cancel":"Cancelar",
"Close":"Cerrar",
"File already exists":"El archivo ya existe",
"Do you want to overwrite it?":"¿Deseas sobre escribirlo?",
"The card \"%s\" on \"%s\" has reached its due date.":"La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
"The board \"%s\" has been shared with you by %s.":"El tablero \"%s\" ha sido compartido contigo por %s.",
"%s on %s":"%s en %s",
"Finished":"Terminado",
"To review":"Para revisar",
"Action needed":"Acción requerida",
@@ -15,9 +14,7 @@ OC.L10N.register(
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form":"El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML",
"No file was uploaded":"No se cargó el archivo",
"Missing a temporary folder":"Falta una carpeta temporal",
"Invalid date, date format must be YYYY-MM-DD":"La fecha es inválida, por favor sigue el formato AAAA-MM-DD",
"Cancel":"Cancelar",
"Close":"Cerrar",
"File already exists":"El archivo ya existe",
"Do you want to overwrite it?":"¿Deseas sobre escribirlo?",
"The card \"%s\" on \"%s\" has reached its due date.":"La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
"The board \"%s\" has been shared with you by %s.":"El tablero \"%s\" ha sido compartido contigo por %s.",
"%s on %s":"%s en %s",
"Finished":"Terminado",
"To review":"Para revisar",
"Action needed":"Acción requerida",
@@ -13,9 +12,7 @@
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form":"El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML",
"No file was uploaded":"No se cargó el archivo",
"Missing a temporary folder":"Falta una carpeta temporal",
"Invalid date, date format must be YYYY-MM-DD":"La fecha es inválida, por favor sigue el formato AAAA-MM-DD",
"Cancel":"Cancelar",
"Close":"Cerrar",
"File already exists":"El archivo ya existe",
"Do you want to overwrite it?":"¿Deseas sobre escribirlo?",
"The card \"%s\" on \"%s\" has reached its due date.":"La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
"The board \"%s\" has been shared with you by %s.":"El tablero \"%s\" ha sido compartido contigo por %s.",
"%s on %s":"%s en %s",
"Finished":"Terminado",
"To review":"Para revisar",
"Action needed":"Acción requerida",
@@ -15,9 +14,7 @@ OC.L10N.register(
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form":"El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML",
"No file was uploaded":"No se cargó el archivo",
"Missing a temporary folder":"Falta una carpeta temporal",
"Invalid date, date format must be YYYY-MM-DD":"La fecha es inválida, por favor sigue el formato AAAA-MM-DD",
"Cancel":"Cancelar",
"Close":"Cerrar",
"File already exists":"El archivo ya existe",
"Do you want to overwrite it?":"¿Deseas sobre escribirlo?",
"The card \"%s\" on \"%s\" has reached its due date.":"La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
"The board \"%s\" has been shared with you by %s.":"El tablero \"%s\" ha sido compartido contigo por %s.",
"%s on %s":"%s en %s",
"Finished":"Terminado",
"To review":"Para revisar",
"Action needed":"Acción requerida",
@@ -13,9 +12,7 @@
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form":"El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML",
"No file was uploaded":"No se cargó el archivo",
"Missing a temporary folder":"Falta una carpeta temporal",
"Invalid date, date format must be YYYY-MM-DD":"La fecha es inválida, por favor sigue el formato AAAA-MM-DD",
"Cancel":"Cancelar",
"Close":"Cerrar",
"File already exists":"El archivo ya existe",
"Do you want to overwrite it?":"¿Deseas sobre escribirlo?",
"The card \"%s\" on \"%s\" has reached its due date.":"La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
"The board \"%s\" has been shared with you by %s.":"El tablero \"%s\" ha sido compartido contigo por %s.",
"%s on %s":"%s en %s",
"Finished":"Terminado",
"To review":"Para revisar",
"Action needed":"Acción requerida",
@@ -16,9 +15,7 @@ OC.L10N.register(
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form":"El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML",
"No file was uploaded":"No se cargó el archivo",
"Missing a temporary folder":"Falta una carpeta temporal",
"Invalid date, date format must be YYYY-MM-DD":"La fecha es inválida, por favor sigue el formato AAAA-MM-DD",
"Cancel":"Cancelar",
"Close":"Cerrar",
"File already exists":"El archivo ya existe",
"Do you want to overwrite it?":"¿Deseas sobre escribirlo?",
"The card \"%s\" on \"%s\" has reached its due date.":"La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
"The board \"%s\" has been shared with you by %s.":"El tablero \"%s\" ha sido compartido contigo por %s.",
"%s on %s":"%s en %s",
"Finished":"Terminado",
"To review":"Para revisar",
"Action needed":"Acción requerida",
@@ -14,9 +13,7 @@
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form":"El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML",
"No file was uploaded":"No se cargó el archivo",
"Missing a temporary folder":"Falta una carpeta temporal",
"Invalid date, date format must be YYYY-MM-DD":"La fecha es inválida, por favor sigue el formato AAAA-MM-DD",
"Cancel":"Cancelar",
"Close":"Cerrar",
"File already exists":"El archivo ya existe",
"Do you want to overwrite it?":"¿Deseas sobre escribirlo?",
"The card \"%s\" on \"%s\" has reached its due date.":"La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
"The board \"%s\" has been shared with you by %s.":"El tablero \"%s\" ha sido compartido contigo por %s.",
"%s on %s":"%s en %s",
"Finished":"Terminado",
"To review":"Para revisar",
"Action needed":"Acción requerida",
@@ -15,9 +14,7 @@ OC.L10N.register(
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form":"El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML",
"No file was uploaded":"No se cargó el archivo",
"Missing a temporary folder":"Falta una carpeta temporal",
"Invalid date, date format must be YYYY-MM-DD":"La fecha es inválida, por favor sigue el formato AAAA-MM-DD",
"Cancel":"Cancelar",
"Close":"Cerrar",
"File already exists":"El archivo ya existe",
"Do you want to overwrite it?":"¿Deseas sobre escribirlo?",
"The card \"%s\" on \"%s\" has reached its due date.":"La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
"The board \"%s\" has been shared with you by %s.":"El tablero \"%s\" ha sido compartido contigo por %s.",
"%s on %s":"%s en %s",
"Finished":"Terminado",
"To review":"Para revisar",
"Action needed":"Acción requerida",
@@ -13,9 +12,7 @@
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form":"El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML",
"No file was uploaded":"No se cargó el archivo",
"Missing a temporary folder":"Falta una carpeta temporal",
"Invalid date, date format must be YYYY-MM-DD":"La fecha es inválida, por favor sigue el formato AAAA-MM-DD",
"Cancel":"Cancelar",
"Close":"Cerrar",
"File already exists":"El archivo ya existe",
"Do you want to overwrite it?":"¿Deseas sobre escribirlo?",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form":"Üleslaetud fail on suurem, kui MAX_FILE_SIZE atribuut, mis seadistati HTML vormis",
"No file was uploaded":"Ühtegi faili ei latud üles",
"Missing a temporary folder":"Ajutine kausta on puudu",
"Invalid date, date format must be YYYY-MM-DD":"Vigane kuupäev, formaat peab olema YYYY-MM-DD",
"Cancel":"Loobu",
"Close":"Sulge",
"Details":"Üksikasjad",
"Sharing":"Jagamine",
"Tags":"Sildid",
"Can edit":"Võib redigeerida",
"Can share":"Can share",
"Owner":"Omanik",
"Delete":"Kustuta",
"Edit":"Redigeeri",
"Download":"Lae alla",
"Comments":"Kommentaarid",
"Modified":"Muudetud",
"Created":"Loodud",
"Due date":"Tähtaeg",
"Today":"Täna",
"Tomorrow":"Homme",
"Next week":"Järgmine nädal",
"Next month":"Järgmine kuu",
"Save":"Salvesta",
"Reply":"Vasta",
"Update":"Uuenda",
@@ -37,8 +31,6 @@ OC.L10N.register(
"Delete card":"Kustuta kaart",
"seconds ago":"sekundit tagasi",
"Shared with you":"Sinuga jagatud",
"No notifications":"Märguandeid pole",
"An error occurred":"Tekkis tõrge",
"Share":"Jaga"
"An error occurred":"Tekkis tõrge"
},
"nplurals=2; plural=(n != 1);");
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.