Compare commits

..

1 Commits

Author SHA1 Message Date
Julius Härtl
3c241b3389 WIP: Edit card title inline
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2020-04-21 17:30:21 +02:00
352 changed files with 7534 additions and 12767 deletions

View File

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

View File

@@ -26,22 +26,6 @@ jobs:
- name: Lint
run: composer run lint
php-cs-fixer:
name: php-cs check
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@master
- name: Set up php
uses: shivammathur/setup-php@master
with:
php-version: 7.4
coverage: none
- name: Install dependencies
run: composer i
- name: Run coding standards check
run: composer run cs:check
node:
runs-on: ubuntu-latest
@@ -59,25 +43,3 @@ jobs:
run: npm ci
- name: ESLint
run: npm run lint
stylelint:
runs-on: ubuntu-latest
strategy:
matrix:
node-versions: [12.x]
name: stylelint node${{ matrix.node-versions }}
steps:
- uses: actions/checkout@v2
- name: Set up node ${{ matrix.node-versions }}
uses: actions/setup-node@v1
with:
node-versions: ${{ matrix.node-versions }}
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run stylelint

3
.gitignore vendored
View File

@@ -5,8 +5,7 @@ css/style.css
css/vendor.css
tests/integration/vendor/
tests/integration/composer.lock
tests/.phpunit.result.cache
vendor/
*.lock
.php_cs.cache
\.idea/

View File

@@ -1,18 +0,0 @@
<?php
declare(strict_types=1);
require_once './vendor/autoload.php';
use Nextcloud\CodingStandard\Config;
$config = new Config();
$config
->getFinder()
// ->ignoreVCSIgnored(true)
->notPath('build')
->notPath('l10n')
->notPath('src')
->notPath('vendor')
->in(__DIR__);
return $config;

View File

@@ -1,49 +1,9 @@
# Changelog
All notable changes to this project will be documented in this file.
## 1.0.2 - 2020-06-03
## 1.0.0 - unreleased
### Fixed
* [#1774](https://github.com/nextcloud/deck/pull/1774) Remove deprecated global API calls
* [#1918](https://github.com/nextcloud/deck/pull/1918) Save compact mode on localstorage @jakobroehrl
* [#1919](https://github.com/nextcloud/deck/pull/1919) Show sidebar after card creation @jakobroehrl
* [#1924](https://github.com/nextcloud/deck/pull/1924) Boards ordered in main page @jakobroehrl
* [#1925](https://github.com/nextcloud/deck/pull/1925) Fix generated fronted urls
* [#1944](https://github.com/nextcloud/deck/pull/1944) Move navigation to @nextcloud/vue components
* [#1945](https://github.com/nextcloud/deck/pull/1945) Fix datetime picker
* [#1946](https://github.com/nextcloud/deck/pull/1946) Fix translations
* [#1976](https://github.com/nextcloud/deck/pull/1976) Delete boards that users own once they are deleted
* [#1977](https://github.com/nextcloud/deck/pull/1977) Redirect from previously used routes to the current ones
## 1.0.1 - 2020-05-15
### Fixed
* Removes debug filter output
* Labels are now sorted
* Stack title doesn't break up
* Fix move card modal
* Sort boards in navigation
* Fixes the attachment modal
* Handle deleted boards better
* User can only clone a board on canManage permissions
* Fix modal imports
* Show menu in compact mode
* Added a filter reset button
* Add hover effect to board list
* New filter icon
* Improve hovering response in board
* Enable linkify in description renderer @icewind1991
* Enhance board selector
* Fix issue if card description might be null
* Revert markdown styles from old frontend
* Do not scroll cards into view
* Fix reodering performance
## 1.0.0 - 2020-05-06
### Added
## Added
- Completly rewritten frontend
- Better maintainability
@@ -65,15 +25,18 @@ Special thanks for contributing huge parts of the Vue.js migration:
Testers/reporters:
@cloud2018 @putt1ck @bpcurse
Calendar/Tasks integration help:
@raimund-schluessler @georgehrke
Android app team for helping to improve our REST API:
@desperateCoder @stefan-niedermann
## 0.8.0 - 2020-01-16
### Added
## Added
- Case insensitive search (@matchish)
### Fixed
## Fixed
- Fix reversed permissions for reordering stacks (@JLueke)
- Fix reversed visibility of 'add stack' field (@JLueke)
- Fix occ export command
@@ -83,7 +46,7 @@ Android app team for helping to improve our REST API:
## 0.7.0 - 2019-08-20
### Added
## Added
- Make deck compatible to Nextcloud 17
- Allow to set the description when creating cards though the REST API

View File

@@ -17,9 +17,9 @@ Deck is a kanban style organization tool aimed at personal planning and project
### 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)
- The [Nextcloud Deck app for Android](https://github.com/stefan-niedermann/nextcloud-deck) is available as [beta release in the Google Play Store](https://play.google.com/apps/testing/it.niedermann.nextcloud.deck.play)
![Deck - Manage cards on your board](http://download.bitgrid.net/nextcloud/deck/screenshots/1.0/Deck-2.png)
![Deck - Manage cards on your board](https://download.bitgrid.net/nextcloud/deck/screenshots/Deck.png)
## Installation/Update
@@ -56,27 +56,6 @@ Nothing to prepare, just dig into the code.
Deck requires running a `make build-js` to install npm dependencies and build the JavaScript code using webpack. While developing you can also use `make watch` to rebuild everytime the code changes.
#### Hot reloading
Enable debug mode in your config.php `'debug' => true,`
Without SSL:
```
npx webpack-dev-server --config webpack.hot.js \
--public localhost:3000 \
--output-public-path 'http://localhost:3000/js/'
```
With SSL:
```
npx webpack-dev-server --config webpack.dev.js --https \
--cert ~/repos/nextcloud/nc-dev/data/ssl/nextcloud.local.crt \
--key ~/repos/nextcloud/nc-dev/data/ssl/nextcloud.local.key \
--public nextcloud.local:3000 \
--output-public-path 'https://nextcloud.local:3000/js/'
```
### Running tests
You can use the provided Makefile to run all tests by using:

View File

@@ -1,28 +0,0 @@
# Security Policy
## Supported Versions
| Version | Nextcloud version | Supported |
| ------- | ----------------- | ------------------ |
| 0.8.x | 18, 19 | :white_check_mark: |
| 0.7.x | 17 | :x: |
## Reporting a Vulnerability
Security is very important to us. If you have discovered a security issue with Nextcloud,
please read our responsible disclosure guidelines and contact us at [hackerone.com/nextcloud](https://hackerone.com/nextcloud).
Your report should include:
- Product version
- A vulnerability description
- Reproduction steps
A member of the security team will confirm the vulnerability, determine its impact, and develop a fix.
The fix will be applied to the master branch, tested, and packaged in the next security release.
The vulnerability will be publicly announced after the release. Finally, your name will be added
to the [hall of fame](https://hackerone.com/nextcloud/thanks) as a thank you from the entire Nextcloud community. Note our
[threat model](https://nextcloud.com/security/threat-model) to know what is expected behavior.
Please visit https://nextcloud.com/security/ for further information about security.

View File

@@ -23,6 +23,8 @@
namespace OCA\Deck\AppInfo;
use OCP\AppFramework\App;
/**
* Additional autoloader registration, e.g. registering composer autoloaders
*/

View File

@@ -17,7 +17,7 @@
- 🚀 Get your project organized
</description>
<version>1.0.2</version>
<version>1.0.0-beta2</version>
<licence>agpl</licence>
<author>Julius Härtl</author>
<namespace>Deck</namespace>
@@ -29,14 +29,14 @@
<website>https://github.com/nextcloud/deck</website>
<bugs>https://github.com/nextcloud/deck/issues</bugs>
<repository type="git">https://github.com/nextcloud/deck.git</repository>
<screenshot>https://download.bitgrid.net/nextcloud/deck/screenshots/1.0/Deck-1.png</screenshot>
<screenshot>https://download.bitgrid.net/nextcloud/deck/screenshots/1.0/Deck-2.png</screenshot>
<screenshot>https://download.bitgrid.net/nextcloud/deck/screenshots/0.5/deck-notifications.png</screenshot>
<screenshot>https://download.bitgrid.net/nextcloud/deck/screenshots/0.5/deck-comment2.png</screenshot>
<dependencies>
<php min-version="5.6"/>
<database min-version="9.4">pgsql</database>
<database>sqlite</database>
<database min-version="5.5">mysql</database>
<nextcloud min-version="18" max-version="20" />
<nextcloud min-version="18" max-version="19" />
</dependencies>
<background-jobs>
<job>OCA\Deck\Cron\DeleteCron</job>

View File

@@ -15,16 +15,13 @@
"roave/security-advisories": "dev-master",
"christophwurst/nextcloud": "^17",
"jakub-onderka/php-parallel-lint": "^1.0.0",
"phpunit/phpunit": "^8",
"nextcloud/coding-standard": "^0.3.0"
"phpunit/phpunit": "^8"
},
"config": {
"optimize-autoloader": true,
"classmap-authoritative": true
},
"scripts": {
"lint": "find . -name \\*.php -not -path './vendor/*' -print0 | xargs -0 -n1 php -l",
"cs:check": "php-cs-fixer fix --dry-run --diff",
"cs:fix": "php-cs-fixer fix"
"lint": "find . -name \\*.php -not -path './vendor/*' -exec php -l \"{}\" \\;"
}
}

View File

@@ -1,11 +1,10 @@
.icon-deck {
background-image: url('../img/deck-dark.svg');
background-image: url('../img/deck-dark.svg');
}
.resource-type-deck img {
opacity: 0.4 !important;
opacity: 0.4 !important;
}
.resource-type-deck:hover img {
opacity: 0.7 !important;
opacity: 0.7 !important;
}

View File

@@ -2,67 +2,66 @@
* Custom icons
*/
.icon-deck {
background-image: url('../img/deck-dark.svg');
background-image: url('../img/deck-dark.svg');
}
.icon-help {
background-image: url('../../../settings/img/help.svg');
background-image: url('../../../settings/img/help.svg');
}
.icon-add-white {
background-image: url('../img/add-white.svg');
background-image: url('../img/add-white.svg');
}
.icon-attach {
background-image: url('../img/attach.svg');
background-image: url('../img/attach.svg');
}
.icon-archive {
background-image: url('../img/archive.svg');
background-image: url('../img/archive.svg');
}
.icon-archive-white {
background-image: url('../img/archive-white.svg');
background-image: url('../img/archive-white.svg');
}
.icon-details {
background-image: url('../img/details.svg');
background-image: url('../img/details.svg');
}
.icon-details-white {
background-image: url('../img/details-white.svg');
background-image: url('../img/details-white.svg');
}
.icon-home {
background-image: var(--icon-home-000, url('../../../core/img/places/home.svg'));
background-image: var(--icon-home-000, url('../../../core/img/places/home.svg'));
}
.icon-description {
background-image: var(--icon-text-000, url('../img/description.svg'));
background-image: var(--icon-text-000, url('../img/description.svg'));
}
.icon-badge {
background-image: url('../img/calendar-dark.svg');
background-image: url('../img/calendar-dark.svg');
}
.icon-toggle-compact-collapsed {
background-image: url('../img/toggle-view-expand.svg');
background-image: url('../img/toggle-view-expand.svg');
}
.icon-toggle-compact-expanded {
background-image: url('../img/toggle-view-collapse.svg');
background-image: url('../img/toggle-view-collapse.svg');
}
@if mixin-exists('icon-black-white') {
@include icon-black-white('deck', 'deck', 1);
@include icon-black-white('archive', 'deck', 1);
@include icon-black-white('circles', 'deck', 1);
@include icon-black-white('clone', 'deck', 1);
@include icon-black-white('filter', 'deck', 1);
@include icon-black-white('filter_set', 'deck', 1);
@include icon-black-white('attach', 'deck', 1);
@include icon-black-white('reply', 'deck', 1);
@include icon-black-white('deck', 'deck', 1);
@include icon-black-white('archive', 'deck', 1);
@include icon-black-white('circles', 'deck', 1);
@include icon-black-white('clone', 'deck', 1);
@include icon-black-white('filter', 'deck', 1);
@include icon-black-white('attach', 'deck', 1);
@include icon-black-white('reply', 'deck', 1);
.icon-toggle-compact-collapsed {
@include icon-color('toggle-view-expand', 'deck', $color-black);
@@ -77,15 +76,13 @@
}
.avatardiv.circles {
background: var(--color-primary);
background: var(--color-primary);
}
.icon-circles {
opacity: 1;
background-size: 20px;
background-position: center center;
opacity: 1;
background-size: 20px;
background-position: center center;
}
.icon-colorpicker {
background-image: url('../img/color_picker.svg');
}

View File

@@ -59,6 +59,8 @@
white-space: nowrap;
}
span.due { }
div.card-assigned-users {
margin-right:10px;
}
@@ -73,7 +75,7 @@
@page {
size: A4 landscape;
margin: 2cm;
}
}
div#innerBoard {
display:flex;

View File

@@ -1,5 +1,5 @@
The REST API provides access for authenticated users to their data inside the Deck app. To get a better understanding of Decks data models and their relations, please have a look at the [data structure](structure.md) documentation.
The REST API provides access for authenticated users to their data inside the Deck app. To get a better understand of Decks data models and their relations, please have a look at the [data structure](structure.md) documentation.
# Prequisited
@@ -62,13 +62,6 @@ curl -u admin:admin -X GET \
-H "If-Modified-Since: Mon, 05 Nov 2018 09:28:00 GMT"
```
# Changelog
## 1.0.0 (unreleased)
- 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
# Endpoints
## Boards
@@ -124,7 +117,7 @@ Returns an array of board items
| Parameter | Type | Description |
| --------- | ------ | ---------------------------------------------------- |
| title | String | The title of the new board, maximum length is limited to 100 characters |
| title | String | The title of the new board |
| color | String | The hexadecimal color of the new board (e.g. FF0000) |
```json
@@ -268,9 +261,9 @@ Returns an array of board items
| Parameter | Type | Description |
| --------- | ------ | ---------------------------------------------------- |
| title | String | The title of the board, maximum length is limited to 100 characters |
| color | String | The hexadecimal color of the board (e.g. FF0000) |
| archived | Bool | The hexadecimal color of the board (e.g. FF0000) |
| title | String | The title of the new board |
| color | String | The hexadecimal color of the new board (e.g. FF0000) |
| archived | Bool | The hexadecimal color of the new board (e.g. FF0000) |
```json
{
@@ -444,7 +437,7 @@ The board list endpoint supports setting an `If-Modified-Since` header to limit
| Parameter | Type | Description |
| --------- | ------- | ---------------------------------------------------- |
| title | String | The title of the new stack, maximum length is limited to 100 characters |
| title | String | The title of the new stack |
| order | Integer | Order for sorting the stacks |
#### Request parameters
@@ -470,7 +463,7 @@ The board list endpoint supports setting an `If-Modified-Since` header to limit
| Parameter | Type | Description |
| --------- | ------- | ---------------------------------------------------- |
| title | String | The title of the stack, maximum length is limited to 100 characters |
| title | String | The title of the new stack |
| order | Integer | Order for sorting the stacks |
#### Response
@@ -519,7 +512,7 @@ The board list endpoint supports setting an `If-Modified-Since` header to limit
| Parameter | Type | Description |
| --------- | ------- | ---------------------------------------------------- |
| title | String | The title of the card, maximum length is limited to 255 characters |
| title | String | The title of the new stack |
| type | String | Type of the card (for later use) use 'plain' for now |
| order | Integer | Order for sorting the stacks |
| description | String | _(optional)_ The markdown description of the card |
@@ -566,7 +559,7 @@ The board list endpoint supports setting an `If-Modified-Since` header to limit
| Parameter | Type | Description |
|-------------|-----------|------------------------------------------------------|
| title | String | The title of the card, maximum length is limited to 255 characters |
| title | String | The card title |
| description | String | The markdown description of the card |
| type | String | Type of the card (for later use) use 'plain' for now |
| order | Integer | Order for sorting the stacks |
@@ -687,7 +680,7 @@ The request can fail with a bad request response for the following reasons:
- The user is not part of the board
### PUT /boards/{boardId}/stacks/{stackId}/cards/{cardId}/unassignUser - Unassign a user from a card
### PUT /boards/{boardId}/stacks/{stackId}/cards/{cardId}/unassignUser - Assign a user to a card
#### Request parameters
@@ -701,7 +694,7 @@ The request can fail with a bad request response for the following reasons:
| Parameter | Type | Description |
| --------- | ------- | --------------------------------------- |
| userId | String | The user id to unassign from the card |
| userId | String | The user id to assign to the card |
#### Response
@@ -947,7 +940,7 @@ For now only `deck_file` is supported as an attachment type.
# OCS API
The following endpoints are available through the Nextcloud OCS endpoint, which is available at `/ocs/v2.php/apps/deck/api/v1.0/`.
The following endpoints are available tough the Nextcloud OCS endpoint, which is available at `/ocs/v2.php/apps/deck/api/v1.0/`.
This has the benefit that both the web UI as well as external integrations can use the same API.
## Comments

View File

@@ -1,3 +1,3 @@
.subnav ul {
padding-left: 20px;
padding-left: 20px;
}

View File

@@ -1 +1,78 @@
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 4.233 4.233"><g paint-order="stroke fill markers"><path d="M.52.465h3.283L2.631 1.918h-.99zM1.642 1.918h.992v1.866l-.996-.455z"/></g></svg>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="16"
height="16"
viewBox="0 0 4.2333332 4.2333335"
version="1.1"
id="svg4524"
inkscape:version="0.92.4 5da689c313, 2019-01-14"
sodipodi:docname="filter.svg">
<defs
id="defs4518" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="11.2"
inkscape:cx="-13.015771"
inkscape:cy="15.433087"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
units="px"
showguides="true"
inkscape:guide-bbox="true"
inkscape:window-width="1920"
inkscape:window-height="1017"
inkscape:window-x="0"
inkscape:window-y="26"
inkscape:window-maximized="1">
<sodipodi:guide
position="3.1773623,1.9016928"
orientation="0,1"
id="guide5088"
inkscape:locked="false" />
</sodipodi:namedview>
<metadata
id="metadata4521">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Ebene 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-292.76665)">
<path
style="opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.09337848;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
d="M 0.51971728,293.23203 H 3.8033853 l -1.1728849,1.45285 H 1.6418341 Z"
id="rect5069"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccc" />
<path
style="opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.05817544;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke fill markers"
d="m 1.6418341,294.68488 h 0.9921874 v 1.86627 L 1.637658,296.09596 Z"
id="rect5069-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="ccccc" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 216 B

After

Width:  |  Height:  |  Size: 2.6 KiB

View File

@@ -1 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4.233 4.233" height="16" width="16"><path d="M.52.465h3.283L2.631 1.918h-.99zm1.122 1.453h.992v1.866l-.996-.455z" paint-order="stroke fill markers"/><ellipse ry=".691" rx=".674" cy="3.461" cx="3.45" fill="#000"/></svg>

Before

Width:  |  Height:  |  Size: 272 B

View File

@@ -13,13 +13,13 @@ OC.L10N.register(
"A PHP extension stopped the file upload" : "n PHP-uitbreiding het die oplaai gestaak",
"Cancel" : "Kanselleer",
"File already exists" : "Lêer bestaan reeds",
"Today" : "Vandag",
"Details" : "Besonderhede",
"Tags" : "Etikette",
"Can edit" : "Kan redigeer",
"Can share" : "Kan deel",
"Delete" : "Skrap",
"Edit" : "Wysig",
"Title" : "Titel",
"Due date" : "Sperdatum",
"Description" : "Beskrywing",
"Comments" : "Kommentare",
@@ -29,7 +29,6 @@ OC.L10N.register(
"Reply" : "Antwoord",
"Update" : "Werk by",
"seconds ago" : "sekondes gelede",
"Shared with you" : "Met u gedeel",
"Settings" : "Instellings",
"An error occurred" : "'n Fout het voorgekom"
},

View File

@@ -11,13 +11,13 @@
"A PHP extension stopped the file upload" : "n PHP-uitbreiding het die oplaai gestaak",
"Cancel" : "Kanselleer",
"File already exists" : "Lêer bestaan reeds",
"Today" : "Vandag",
"Details" : "Besonderhede",
"Tags" : "Etikette",
"Can edit" : "Kan redigeer",
"Can share" : "Kan deel",
"Delete" : "Skrap",
"Edit" : "Wysig",
"Title" : "Titel",
"Due date" : "Sperdatum",
"Description" : "Beskrywing",
"Comments" : "Kommentare",
@@ -27,7 +27,6 @@
"Reply" : "Antwoord",
"Update" : "Werk by",
"seconds ago" : "sekondes gelede",
"Shared with you" : "Met u gedeel",
"Settings" : "Instellings",
"An error occurred" : "'n Fout het voorgekom"
},"pluralForm" :"nplurals=2; plural=(n != 1);"

View File

@@ -1,161 +1,36 @@
OC.L10N.register(
"deck",
{
"You have created a new board {board}" : "لقد قمت بانشاء لوح جديد {board}",
"{user} has created a new board {board}" : "{user} قام بانشاء لوح {board}",
"You have deleted the board {board}" : "قمت بمسح اللوح {board}",
"{user} has deleted the board {board}" : "{user} مَسحْ اللوح {board}",
"You have restored the board {board}" : "لقد استعدت اللوح {board}",
"{user} has restored the board {board}" : "{user} قام باسترجاع اللوح {board}",
"You have shared the board {board} with {acl}" : "قمت بمشاركة اللوح {board} مع {acl}",
"{user} has shared the board {board} with {acl}" : "{user} قام بمشاركة اللوح {board} مع {acl}",
"You have removed {acl} from the board {board}" : "قمت بازالة {acl} من اللوح {board}",
"{user} has removed {acl} from the board {board}" : "{user} قام بازالة {acl} من اللوح {board}",
"You have renamed the board {before} to {board}" : "قمت باعادة تسمية اللوح من {before} الى {board}",
"{user} has renamed the board {before} to {board}" : "{user} قام باعادة تسمية اللوح من {before} الى {board}",
"You have archived the board {board}" : "لقد ارشفت اللوح {board}",
"{user} has archived the board {before}" : "{user} قام بأرشفة اللوح {before}",
"You have unarchived the board {board}" : "قمت بالغاء ارشفة اللوح {board}",
"{user} has unarchived the board {before}" : "{user} قام بالغاء ارشفة اللوح {before}",
"You have created a new stack {stack} on board {board}" : "لقد قمت بانشاء حزمة جديدة {stack} على اللوح {board}",
"{user} has created a new stack {stack} on board {board}" : "{user} قام بانشاء حزمة جديدة {stack} على اللوح {board}",
"You have renamed stack {before} to {stack} on board {board}" : "قمت باعادة تسمية الحزمة من {before} الى {stack} على اللوح {board}",
"{user} has renamed stack {before} to {stack} on board {board}" : "{user} قام باعادة تسمية الحزمة {before} الى {stack} على اللوح {board}",
"You have deleted stack {stack} on board {board}" : "قمت بمسح الحزمة {stack} على اللوح {board}",
"{user} has deleted stack {stack} on board {board}" : "{user} قام بمسح الحزمة {stack} على اللوح {board}",
"You have created card {card} in stack {stack} on board {board}" : "لقد قمت بانشاء بطاقة {card} في الحزمة {stack} على اللوح {board}",
"{user} has created card {card} in stack {stack} on board {board}" : "{user} قام بانشاء بطاقة {card} في الحزمة {stack} على اللوح {board}",
"You have deleted card {card} in stack {stack} on board {board}" : "قمت بمسح بطاقة {card} في الحزمة {stack} على اللوح {board}",
"Personal" : "شخصي",
"No data was provided to create an attachment." : "لا بيانات تم تقديمها لانشاء مرفق",
"Finished" : "إكتمل",
"To review" : "لاعادة المراجعة",
"Action needed" : "يحتاج الى اجراء",
"Later" : "لاحقا",
"Finished" : "مكتملة",
"copy" : "أنسخ",
"To do" : "لفعله",
"Doing" : "تحت العمل",
"Done" : "أُنجز",
"Example Task 3" : "مثال المهمة 3",
"Example Task 2" : "مثال المهمة 2",
"Example Task 1" : "مثال المهمة 1",
"The file was uploaded" : "الملف تم رفعه",
"Done" : "تم",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "حجم الملف الذي تريد ترفيعه أعلى مما MAX_FILE_SIZE يسمح به في واجهة ال HTML.",
"The file was only partially uploaded" : "الملف قد رُفع جزءا منه فقط",
"No file was uploaded" : "لم يتم رفع أي ملف",
"Missing a temporary folder" : "المجلد المؤقت غير موجود",
"Could not write file to disk" : "لم يستطع كتابة ملف للقرص",
"A PHP extension stopped the file upload" : "اضافة البي اچ بي PHP اوقفت رفع الملف",
"Personal planning and team project organization" : "التخطيط الشخصي و تنظيم مشروع الفريق",
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "دك (Deck) هو أداة تنظيم باسلوب كانبان (kanban) تهدف إلى التخطيط الشخصي وتنظيم المشروع للفرق مع نيكست كلاود (Nextcloud).\n- 📥 إضافة مهامك إلى البطاقات وترتيبها\n- 📄 كتابة ملاحظات إضافية باستخدام مارك داون (markdown)\n- 🔖 تعيين تسميات لتنظيم أفضل\n- 👥 شارك مع فريقك أو أصدقائك أو عائلتك\n- 📎 إرفاق الملفات وتضمينها بالوصف المستخدم فيه مارك داون (markdown)\n- 💬 ناقش مع فريقك باستخدام التعليقات\n- ⚡ تتبع التغييرات في تيار النشاط\n- 🚀 اجعل مشروعك منظماً",
"Create new board" : "انشاء لوح جديد",
"new board" : "لوح جديد",
"Select the board to link to a project" : "تحديد اللوح لربطه بمشروع",
"Search by board title" : "بحث بواسطة عنوان اللوح",
"Select board" : "حدد لوح",
"Select the card to link to a project" : "حدد البطاقة لربطها بمشروع",
"Select a board" : "حدد لوح",
"Select a card" : "حدد بطاقة",
"Link to card" : "اربط بطاقة",
"Cancel" : "إلغاء",
"File already exists" : "الملف موجود مسبقاً",
"Do you want to overwrite it?" : "هل تريد تجاوزه؟",
"Overwrite file" : "تجاوز ملف",
"Keep existing file" : "ابقي الملف الموجود",
"This board is read only" : "هذا اللوح بوضع القراءة فقط",
"Drop your files to upload" : "افلت الملفات لرفعها",
"Archived cards" : "البطاقات المؤرشفة",
"Add new list" : "اضف قائمة جديدة",
"List name" : "قامة اسماء",
"Apply filter" : "تطبيق التصفية",
"Filter by tag" : "تصفية بواسطة الوسم",
"Filter by assigned user" : "تصفية بواسطة المستخدم الموكل اليه",
"Filter by due date" : "تصفية بواسطة تأريخ الانجاز",
"Overdue" : "تأخر",
"Next 24 hours" : "ال 24 ساعة القادمة",
"Next 7 days" : "ال 7 ايام القادمة",
"Next 30 days" : "ال 30 يوم القادمة",
"No due date" : "لا تأريخ انجاز",
"Clear filter" : "ازل التصفية",
"Show archived cards" : "اظهر البطاقات المؤرشفة",
"Today" : "اليوم",
"Details" : "التفاصيل",
"Loading board" : "اللوح يحمل..",
"Board not found" : "اللوح غير موجود",
"Sharing" : "المشاركة",
"Tags" : "الوسوم",
"Deleted items" : "العناصر الممسوحة",
"Timeline" : "الجدول الزمني",
"Deleted lists" : "القوائم المحذوفة",
"Timeline" : "الخيط الزمني",
"Undo" : "تراجع",
"Deleted cards" : "البطاقات المحذوفة",
"Share board with a user, group or circle …" : "مشاركة اللوح مع مستخدم،مجموعة او دائرة ..",
"Board owner" : "منشئ اللوح",
"(Group)" : "(مجموعة)",
"(Circle)" : "(دائرة)",
"Can edit" : "يمكن تعديله",
"Can share" : "يمكن مشاركته",
"Can manage" : "يمكن ادارته",
"Can edit" : "يمكنه التغيير",
"Can share" : "Can share",
"Delete" : "حذف ",
"Add a new stack" : "إضافة حزمة جديدة",
"Delete list" : "حذف القائمة",
"Add card" : "إضافة بطاقة",
"Add a new card" : "إضافة بطاقة جديدة",
"Edit" : "تعديل",
"Add a new tag" : "إضافة وسم جديد",
"title and color value must be provided" : "العنوان و قيمة اللون يجب تقديمها ",
"Title" : "العنوان",
"Members" : "الاعضاء",
"Add this attachment" : "إضافة هذا المرفق",
"Delete Attachment" : "مسح المرفق",
"Restore Attachment" : "استعادة المرفق",
"Assign a tag to this card…" : "انسب وسم الى هذه البطاقة..",
"Assign to users" : "انسب الى المتسخدمين",
"Assign to users/groups/circles" : "انسب الى المستخدمين،المجموعات،الدوائر",
"Assign a user to this card…" : "انسب مستخدم الى هذه البطاقة..",
"Due date" : "تاريخ الانجاز",
"Set a due date" : "تعيين تاريخ الانجاز",
"Remove due date" : "ازالة تاريخ الانجاز",
"Description" : "الوصف",
"(Unsaved)" : "(غير محفوظ)",
"(Saving…)" : "(يُحفظ..)",
"Add Attachment" : "أضف ملحق",
"Edit description" : "تعديل الوصف",
"View description" : "إظهار الوصف",
"Attachments" : "المرفقات",
"Comments" : "تعليقات",
"Choose attachment" : "اختيار مرفق",
"Modified" : "عُدل",
"Created" : "أُنشئ",
"Modified" : "آخر تعديل",
"Upload attachment" : "رفع المرفقات",
"No comments yet. Begin the discussion!" : "لا يوجد تعليقات بعد, ابدأ النقاش الآن!",
"Save" : "حفظ",
"The comment cannot be empty." : "التعليق لايمكن ان يكون فارغا.",
"The comment cannot be longer than 1000 characters." : "التعليق لا يمكن ان يكون اطول من 1000 حرف.",
"In reply to" : "يقوم بالرد على",
"Reply" : "رد",
"Update" : "تحديث",
"(group)" : "(مجموعة)",
"(circle)" : "(دائرة)",
"seconds ago" : "ثوانٍ مضت",
"Assign to me" : "ينسب لي",
"Delete card" : "حذف البطاقة",
"Move card" : "حرك البطاقة",
"Card details" : "تفاصيل البطاقة",
"Move card to another board" : "حرك البطاقة الى لوح اخر",
"Select a stack" : "حدد حزمة",
"All boards" : "جميع الالواح",
"Archived boards" : "الالواح المؤرشفة",
"Shared with you" : "شورك معك",
"Limit deck usage of groups" : "استخدام دك Deck محدود للمجاميع",
"seconds ago" : "ثوان مضت",
"Settings" : "الإعدادات",
"New board title" : "عنوان لوح جديد",
"Edit board" : "تعديل اللوح",
"Board details" : "تفاصيل لوح",
"An error occurred" : "طرأ هناك خطأ",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "هل انت متأكد تريد مسح اللوح {title}؟ هذا سوف يمسح جميع بيانات هذا اللوح.",
"Delete the board?" : "مسح اللوح؟",
"Link to a board" : "ربط بلوح",
"Link to a card" : "ربط ببطاقة",
"Something went wrong" : "شيئا ما خاطئ"
"An error occurred" : "طرأ هناك خطأ"
},
"nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;");

View File

@@ -1,159 +1,34 @@
{ "translations": {
"You have created a new board {board}" : "لقد قمت بانشاء لوح جديد {board}",
"{user} has created a new board {board}" : "{user} قام بانشاء لوح {board}",
"You have deleted the board {board}" : "قمت بمسح اللوح {board}",
"{user} has deleted the board {board}" : "{user} مَسحْ اللوح {board}",
"You have restored the board {board}" : "لقد استعدت اللوح {board}",
"{user} has restored the board {board}" : "{user} قام باسترجاع اللوح {board}",
"You have shared the board {board} with {acl}" : "قمت بمشاركة اللوح {board} مع {acl}",
"{user} has shared the board {board} with {acl}" : "{user} قام بمشاركة اللوح {board} مع {acl}",
"You have removed {acl} from the board {board}" : "قمت بازالة {acl} من اللوح {board}",
"{user} has removed {acl} from the board {board}" : "{user} قام بازالة {acl} من اللوح {board}",
"You have renamed the board {before} to {board}" : "قمت باعادة تسمية اللوح من {before} الى {board}",
"{user} has renamed the board {before} to {board}" : "{user} قام باعادة تسمية اللوح من {before} الى {board}",
"You have archived the board {board}" : "لقد ارشفت اللوح {board}",
"{user} has archived the board {before}" : "{user} قام بأرشفة اللوح {before}",
"You have unarchived the board {board}" : "قمت بالغاء ارشفة اللوح {board}",
"{user} has unarchived the board {before}" : "{user} قام بالغاء ارشفة اللوح {before}",
"You have created a new stack {stack} on board {board}" : "لقد قمت بانشاء حزمة جديدة {stack} على اللوح {board}",
"{user} has created a new stack {stack} on board {board}" : "{user} قام بانشاء حزمة جديدة {stack} على اللوح {board}",
"You have renamed stack {before} to {stack} on board {board}" : "قمت باعادة تسمية الحزمة من {before} الى {stack} على اللوح {board}",
"{user} has renamed stack {before} to {stack} on board {board}" : "{user} قام باعادة تسمية الحزمة {before} الى {stack} على اللوح {board}",
"You have deleted stack {stack} on board {board}" : "قمت بمسح الحزمة {stack} على اللوح {board}",
"{user} has deleted stack {stack} on board {board}" : "{user} قام بمسح الحزمة {stack} على اللوح {board}",
"You have created card {card} in stack {stack} on board {board}" : "لقد قمت بانشاء بطاقة {card} في الحزمة {stack} على اللوح {board}",
"{user} has created card {card} in stack {stack} on board {board}" : "{user} قام بانشاء بطاقة {card} في الحزمة {stack} على اللوح {board}",
"You have deleted card {card} in stack {stack} on board {board}" : "قمت بمسح بطاقة {card} في الحزمة {stack} على اللوح {board}",
"Personal" : "شخصي",
"No data was provided to create an attachment." : "لا بيانات تم تقديمها لانشاء مرفق",
"Finished" : "إكتمل",
"To review" : "لاعادة المراجعة",
"Action needed" : "يحتاج الى اجراء",
"Later" : "لاحقا",
"Finished" : "مكتملة",
"copy" : "أنسخ",
"To do" : "لفعله",
"Doing" : "تحت العمل",
"Done" : "أُنجز",
"Example Task 3" : "مثال المهمة 3",
"Example Task 2" : "مثال المهمة 2",
"Example Task 1" : "مثال المهمة 1",
"The file was uploaded" : "الملف تم رفعه",
"Done" : "تم",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "حجم الملف الذي تريد ترفيعه أعلى مما MAX_FILE_SIZE يسمح به في واجهة ال HTML.",
"The file was only partially uploaded" : "الملف قد رُفع جزءا منه فقط",
"No file was uploaded" : "لم يتم رفع أي ملف",
"Missing a temporary folder" : "المجلد المؤقت غير موجود",
"Could not write file to disk" : "لم يستطع كتابة ملف للقرص",
"A PHP extension stopped the file upload" : "اضافة البي اچ بي PHP اوقفت رفع الملف",
"Personal planning and team project organization" : "التخطيط الشخصي و تنظيم مشروع الفريق",
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "دك (Deck) هو أداة تنظيم باسلوب كانبان (kanban) تهدف إلى التخطيط الشخصي وتنظيم المشروع للفرق مع نيكست كلاود (Nextcloud).\n- 📥 إضافة مهامك إلى البطاقات وترتيبها\n- 📄 كتابة ملاحظات إضافية باستخدام مارك داون (markdown)\n- 🔖 تعيين تسميات لتنظيم أفضل\n- 👥 شارك مع فريقك أو أصدقائك أو عائلتك\n- 📎 إرفاق الملفات وتضمينها بالوصف المستخدم فيه مارك داون (markdown)\n- 💬 ناقش مع فريقك باستخدام التعليقات\n- ⚡ تتبع التغييرات في تيار النشاط\n- 🚀 اجعل مشروعك منظماً",
"Create new board" : "انشاء لوح جديد",
"new board" : "لوح جديد",
"Select the board to link to a project" : "تحديد اللوح لربطه بمشروع",
"Search by board title" : "بحث بواسطة عنوان اللوح",
"Select board" : "حدد لوح",
"Select the card to link to a project" : "حدد البطاقة لربطها بمشروع",
"Select a board" : "حدد لوح",
"Select a card" : "حدد بطاقة",
"Link to card" : "اربط بطاقة",
"Cancel" : "إلغاء",
"File already exists" : "الملف موجود مسبقاً",
"Do you want to overwrite it?" : "هل تريد تجاوزه؟",
"Overwrite file" : "تجاوز ملف",
"Keep existing file" : "ابقي الملف الموجود",
"This board is read only" : "هذا اللوح بوضع القراءة فقط",
"Drop your files to upload" : "افلت الملفات لرفعها",
"Archived cards" : "البطاقات المؤرشفة",
"Add new list" : "اضف قائمة جديدة",
"List name" : "قامة اسماء",
"Apply filter" : "تطبيق التصفية",
"Filter by tag" : "تصفية بواسطة الوسم",
"Filter by assigned user" : "تصفية بواسطة المستخدم الموكل اليه",
"Filter by due date" : "تصفية بواسطة تأريخ الانجاز",
"Overdue" : "تأخر",
"Next 24 hours" : "ال 24 ساعة القادمة",
"Next 7 days" : "ال 7 ايام القادمة",
"Next 30 days" : "ال 30 يوم القادمة",
"No due date" : "لا تأريخ انجاز",
"Clear filter" : "ازل التصفية",
"Show archived cards" : "اظهر البطاقات المؤرشفة",
"Today" : "اليوم",
"Details" : "التفاصيل",
"Loading board" : "اللوح يحمل..",
"Board not found" : "اللوح غير موجود",
"Sharing" : "المشاركة",
"Tags" : "الوسوم",
"Deleted items" : "العناصر الممسوحة",
"Timeline" : "الجدول الزمني",
"Deleted lists" : "القوائم المحذوفة",
"Timeline" : "الخيط الزمني",
"Undo" : "تراجع",
"Deleted cards" : "البطاقات المحذوفة",
"Share board with a user, group or circle …" : "مشاركة اللوح مع مستخدم،مجموعة او دائرة ..",
"Board owner" : "منشئ اللوح",
"(Group)" : "(مجموعة)",
"(Circle)" : "(دائرة)",
"Can edit" : "يمكن تعديله",
"Can share" : "يمكن مشاركته",
"Can manage" : "يمكن ادارته",
"Can edit" : "يمكنه التغيير",
"Can share" : "Can share",
"Delete" : "حذف ",
"Add a new stack" : "إضافة حزمة جديدة",
"Delete list" : "حذف القائمة",
"Add card" : "إضافة بطاقة",
"Add a new card" : "إضافة بطاقة جديدة",
"Edit" : "تعديل",
"Add a new tag" : "إضافة وسم جديد",
"title and color value must be provided" : "العنوان و قيمة اللون يجب تقديمها ",
"Title" : "العنوان",
"Members" : "الاعضاء",
"Add this attachment" : "إضافة هذا المرفق",
"Delete Attachment" : "مسح المرفق",
"Restore Attachment" : "استعادة المرفق",
"Assign a tag to this card…" : "انسب وسم الى هذه البطاقة..",
"Assign to users" : "انسب الى المتسخدمين",
"Assign to users/groups/circles" : "انسب الى المستخدمين،المجموعات،الدوائر",
"Assign a user to this card…" : "انسب مستخدم الى هذه البطاقة..",
"Due date" : "تاريخ الانجاز",
"Set a due date" : "تعيين تاريخ الانجاز",
"Remove due date" : "ازالة تاريخ الانجاز",
"Description" : "الوصف",
"(Unsaved)" : "(غير محفوظ)",
"(Saving…)" : "(يُحفظ..)",
"Add Attachment" : "أضف ملحق",
"Edit description" : "تعديل الوصف",
"View description" : "إظهار الوصف",
"Attachments" : "المرفقات",
"Comments" : "تعليقات",
"Choose attachment" : "اختيار مرفق",
"Modified" : "عُدل",
"Created" : "أُنشئ",
"Modified" : "آخر تعديل",
"Upload attachment" : "رفع المرفقات",
"No comments yet. Begin the discussion!" : "لا يوجد تعليقات بعد, ابدأ النقاش الآن!",
"Save" : "حفظ",
"The comment cannot be empty." : "التعليق لايمكن ان يكون فارغا.",
"The comment cannot be longer than 1000 characters." : "التعليق لا يمكن ان يكون اطول من 1000 حرف.",
"In reply to" : "يقوم بالرد على",
"Reply" : "رد",
"Update" : "تحديث",
"(group)" : "(مجموعة)",
"(circle)" : "(دائرة)",
"seconds ago" : "ثوانٍ مضت",
"Assign to me" : "ينسب لي",
"Delete card" : "حذف البطاقة",
"Move card" : "حرك البطاقة",
"Card details" : "تفاصيل البطاقة",
"Move card to another board" : "حرك البطاقة الى لوح اخر",
"Select a stack" : "حدد حزمة",
"All boards" : "جميع الالواح",
"Archived boards" : "الالواح المؤرشفة",
"Shared with you" : "شورك معك",
"Limit deck usage of groups" : "استخدام دك Deck محدود للمجاميع",
"seconds ago" : "ثوان مضت",
"Settings" : "الإعدادات",
"New board title" : "عنوان لوح جديد",
"Edit board" : "تعديل اللوح",
"Board details" : "تفاصيل لوح",
"An error occurred" : "طرأ هناك خطأ",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "هل انت متأكد تريد مسح اللوح {title}؟ هذا سوف يمسح جميع بيانات هذا اللوح.",
"Delete the board?" : "مسح اللوح؟",
"Link to a board" : "ربط بلوح",
"Link to a card" : "ربط ببطاقة",
"Something went wrong" : "شيئا ما خاطئ"
"An error occurred" : "طرأ هناك خطأ"
},"pluralForm" :"nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;"
}

View File

@@ -16,6 +16,7 @@ OC.L10N.register(
"A PHP extension stopped the file upload" : "Una estensión de PHP paró la xuba de ficheros",
"Cancel" : "Encaboxar",
"File already exists" : "Yá esiste'l ficheru",
"Today" : "Güei",
"Show archived cards" : "Amosar tarxetes archivaes",
"Details" : "Detalles",
"Sharing" : "Compartiendo",
@@ -25,8 +26,6 @@ OC.L10N.register(
"Can share" : "Can share",
"Delete" : "Desaniciar",
"Edit" : "Editar",
"Title" : "Títulu",
"Members" : "Miembros",
"Description" : "Descripción",
"Attachments" : "Axuntos",
"Comments" : "Comentarios",
@@ -37,7 +36,6 @@ OC.L10N.register(
"Update" : "Anovar",
"(group)" : "(grupu)",
"seconds ago" : "hai segundos",
"Shared with you" : "Shared with you",
"Settings" : "Settings"
},
"nplurals=2; plural=(n != 1);");

View File

@@ -14,6 +14,7 @@
"A PHP extension stopped the file upload" : "Una estensión de PHP paró la xuba de ficheros",
"Cancel" : "Encaboxar",
"File already exists" : "Yá esiste'l ficheru",
"Today" : "Güei",
"Show archived cards" : "Amosar tarxetes archivaes",
"Details" : "Detalles",
"Sharing" : "Compartiendo",
@@ -23,8 +24,6 @@
"Can share" : "Can share",
"Delete" : "Desaniciar",
"Edit" : "Editar",
"Title" : "Títulu",
"Members" : "Miembros",
"Description" : "Descripción",
"Attachments" : "Axuntos",
"Comments" : "Comentarios",
@@ -35,7 +34,6 @@
"Update" : "Anovar",
"(group)" : "(grupu)",
"seconds ago" : "hai segundos",
"Shared with you" : "Shared with you",
"Settings" : "Settings"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@@ -7,6 +7,7 @@ OC.L10N.register(
"No file was uploaded" : "Heç bir fayl yüklənilmədi",
"Missing a temporary folder" : "Müvəqqəti qovluq çatışmır",
"Cancel" : "Dayandır",
"Today" : "Bu gün",
"Details" : "Detallar",
"Sharing" : "Paylaşılır",
"Tags" : "Işarələr",
@@ -14,7 +15,6 @@ OC.L10N.register(
"Can share" : "Can share",
"Delete" : "Sil",
"Edit" : "Dəyişiklik et",
"Title" : "Başlıq",
"Description" : "Açıqlanma",
"Modified" : "Dəyişdirildi",
"Save" : "Saxla",
@@ -22,7 +22,6 @@ OC.L10N.register(
"Update" : "Yenilənmə",
"(group)" : "(qrup)",
"seconds ago" : "saniyələr öncə",
"Shared with you" : "Shared with you",
"Settings" : "Quraşdırmalar"
},
"nplurals=2; plural=(n != 1);");

View File

@@ -5,6 +5,7 @@
"No file was uploaded" : "Heç bir fayl yüklənilmədi",
"Missing a temporary folder" : "Müvəqqəti qovluq çatışmır",
"Cancel" : "Dayandır",
"Today" : "Bu gün",
"Details" : "Detallar",
"Sharing" : "Paylaşılır",
"Tags" : "Işarələr",
@@ -12,7 +13,6 @@
"Can share" : "Can share",
"Delete" : "Sil",
"Edit" : "Dəyişiklik et",
"Title" : "Başlıq",
"Description" : "Açıqlanma",
"Modified" : "Dəyişdirildi",
"Save" : "Saxla",
@@ -20,7 +20,6 @@
"Update" : "Yenilənmə",
"(group)" : "(qrup)",
"seconds ago" : "saniyələr öncə",
"Shared with you" : "Shared with you",
"Settings" : "Quraşdırmalar"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@@ -17,6 +17,7 @@ OC.L10N.register(
"File already exists" : "Файлът вече съществува",
"Do you want to overwrite it?" : "Искате ли да го презапишете?",
"Filter by tag" : "Филтрирай по маркер",
"Today" : "Днес",
"Details" : "Подробности",
"Sharing" : "Споделяне",
"Tags" : "Етикети",
@@ -25,8 +26,6 @@ OC.L10N.register(
"Can share" : "Може да споделя",
"Delete" : "Изтриване",
"Edit" : "Редакция",
"Title" : "Име",
"Members" : "Членове",
"Due date" : "Крайна дата",
"Remove due date" : "Премахни крайната дата",
"Description" : "Описание",
@@ -40,7 +39,6 @@ OC.L10N.register(
"Update" : "Обновяване",
"(group)" : "(група)",
"seconds ago" : "преди секунди",
"Shared with you" : "Споделени с вас",
"Settings" : "Настройки",
"An error occurred" : "Възникна грешка"
},

View File

@@ -15,6 +15,7 @@
"File already exists" : "Файлът вече съществува",
"Do you want to overwrite it?" : "Искате ли да го презапишете?",
"Filter by tag" : "Филтрирай по маркер",
"Today" : "Днес",
"Details" : "Подробности",
"Sharing" : "Споделяне",
"Tags" : "Етикети",
@@ -23,8 +24,6 @@
"Can share" : "Може да споделя",
"Delete" : "Изтриване",
"Edit" : "Редакция",
"Title" : "Име",
"Members" : "Членове",
"Due date" : "Крайна дата",
"Remove due date" : "Премахни крайната дата",
"Description" : "Описание",
@@ -38,7 +37,6 @@
"Update" : "Обновяване",
"(group)" : "(група)",
"seconds ago" : "преди секунди",
"Shared with you" : "Споделени с вас",
"Settings" : "Настройки",
"An error occurred" : "Възникна грешка"
},"pluralForm" :"nplurals=2; plural=(n != 1);"

View File

@@ -7,6 +7,7 @@ OC.L10N.register(
"No file was uploaded" : "কোন ফাইল আপলোড করা হয় নি",
"Missing a temporary folder" : "অস্থায়ী ফোল্ডারটি হারানো গিয়েছে",
"Cancel" : "বাতির",
"Today" : "আজ",
"Details" : "বিসতারিত",
"Sharing" : "ভাগাভাগিরত",
"Tags" : "ট্যাগ",
@@ -14,7 +15,6 @@ OC.L10N.register(
"Can share" : "Can share",
"Delete" : "মুছে",
"Edit" : "সম্পাদনা",
"Title" : "শিরোনাম",
"Description" : "বিবরণ",
"Modified" : "পরিবর্তিত",
"Save" : "সংরক্ষণ",
@@ -22,7 +22,6 @@ OC.L10N.register(
"Update" : "পরিবর্ধন",
"(group)" : "(গোষ্ঠি)",
"seconds ago" : "সেকেন্ড পূর্বে",
"Shared with you" : "Shared with you",
"Settings" : "সেটিংস"
},
"nplurals=2; plural=(n != 1);");

View File

@@ -5,6 +5,7 @@
"No file was uploaded" : "কোন ফাইল আপলোড করা হয় নি",
"Missing a temporary folder" : "অস্থায়ী ফোল্ডারটি হারানো গিয়েছে",
"Cancel" : "বাতির",
"Today" : "আজ",
"Details" : "বিসতারিত",
"Sharing" : "ভাগাভাগিরত",
"Tags" : "ট্যাগ",
@@ -12,7 +13,6 @@
"Can share" : "Can share",
"Delete" : "মুছে",
"Edit" : "সম্পাদনা",
"Title" : "শিরোনাম",
"Description" : "বিবরণ",
"Modified" : "পরিবর্তিত",
"Save" : "সংরক্ষণ",
@@ -20,7 +20,6 @@
"Update" : "পরিবর্ধন",
"(group)" : "(গোষ্ঠি)",
"seconds ago" : "সেকেন্ড পূর্বে",
"Shared with you" : "Shared with you",
"Settings" : "সেটিংস"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@@ -7,19 +7,17 @@ OC.L10N.register(
"No file was uploaded" : "Nijedna datoteka nije učitana.",
"Missing a temporary folder" : "Nedostaje privremeni direktorij.",
"Cancel" : "Otkaži",
"Today" : "Danas",
"Sharing" : "Dijeljenje",
"Can edit" : "Can edit",
"Can share" : "Can share",
"Delete" : "Obriši",
"Edit" : "Izmjeni",
"Title" : "Naslov",
"Members" : "Članovi",
"Description" : "Opis",
"Comments" : "Komentari",
"Modified" : "Izmijenjeno",
"Save" : "Spremi",
"Update" : "Ažuriraj",
"Shared with you" : "Shared with you",
"Settings" : "Podešavanje",
"Maximum file size of {size} exceeded" : "Maksimalna veličina datoteke prekoračena"
},

View File

@@ -5,19 +5,17 @@
"No file was uploaded" : "Nijedna datoteka nije učitana.",
"Missing a temporary folder" : "Nedostaje privremeni direktorij.",
"Cancel" : "Otkaži",
"Today" : "Danas",
"Sharing" : "Dijeljenje",
"Can edit" : "Can edit",
"Can share" : "Can share",
"Delete" : "Obriši",
"Edit" : "Izmjeni",
"Title" : "Naslov",
"Members" : "Članovi",
"Description" : "Opis",
"Comments" : "Komentari",
"Modified" : "Izmijenjeno",
"Save" : "Spremi",
"Update" : "Ažuriraj",
"Shared with you" : "Shared with you",
"Settings" : "Podešavanje",
"Maximum file size of {size} exceeded" : "Maksimalna veličina datoteke prekoračena"
},"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"

View File

@@ -56,9 +56,7 @@ OC.L10N.register(
"You have added the attachment {attachment} to card {card}" : "Heu afegit l'adjunt {attachment} a la targeta {card}",
"{user} has added the attachment {attachment} to card {card}" : "{user} ha afegit l'adjunt {attachment} a la targeta {card}",
"You have updated the attachment {attachment} on card {card}" : "Heu actualitzat l'adjunt {attachment} a la targeta {card}",
"{user} has updated the attachment {attachment} on card {card}" : "{user} ha actualitzat ladjunt {attachment} a la targeta {card}",
"You have deleted the attachment {attachment} from card {card}" : "Heu suprimit l'adjunt {attachment} de la targeta {card}",
"{user} has deleted the attachment {attachment} from card {card}" : "{user} ha suprimit l'adjunt {attachment} de la targeta {card}",
"You have restored the attachment {attachment} to card {card}" : "Heu restaurat l'adjunt {attachment} a la targeta {card}",
"{user} has restored the attachment {attachment} to card {card}" : "{user} ha restaurat l'adjunt {attachment} a la targeta {card}",
"You have commented on card {card}" : "Heu comentat la targeta {card}",
@@ -96,120 +94,58 @@ OC.L10N.register(
"Could not write file to disk" : "No sha pogut escriure el fitxer al disc",
"A PHP extension stopped the file upload" : "Una extensió del PHP ha aturat la carregada del fitxer",
"No file uploaded or file size exceeds maximum of %s" : "No s'ha carregat cap fitxer o la mida del fitxer sobrepassa el màxim de %s",
"Personal planning and team project organization" : "Planificació personal i organització de projectes en equip",
"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",
"Create new board" : "Crea un nou tauler",
"new board" : "nou tauler",
"Select the board to link to a project" : "Selecciona el tauler per enllaçar a un projecte",
"Select board" : "Selecciona un tauler",
"Select the card to link to a project" : "Selecciona la targeta per enllaçar a un projecte",
"Select a board" : "Selecciona un tauler",
"Select a card" : "Selecciona una targeta",
"Link to card" : "Enllaç a la targeta",
"Cancel" : "Cancel·la",
"File already exists" : "El fitxer ja existeix",
"A file with the name {filename} already exists." : "Ja existeix un fitxer amb el nom {filename}.",
"Do you want to overwrite it?" : "Voleu sobre-escriure'l?",
"Overwrite file" : "Sobreescriu el fitxer",
"Keep existing file" : "Mantén el fitxer existent",
"This board is read only" : "Aquest tauler és només de lectura",
"Drop your files to upload" : "Deixeu anar els fitxers per penjar-los",
"Archived cards" : "Targetes arxivades",
"Add new list" : "Afegeix una llista nova",
"List name" : "Nom de llista",
"Apply filter" : "Aplica el filtre",
"Filter by tag" : "Filtra per etiqueta",
"Filter by assigned user" : "Filtra per usuari assignat",
"Filter by due date" : "Filtra per data de venciment",
"Overdue" : "Endarrerit",
"Next 24 hours" : "Pròximes 24 hores",
"Next 7 days" : "Propers 7 dies",
"Next 30 days" : "Propers 30 dies",
"No due date" : "Sense venciment",
"Today" : "Avui",
"Show archived cards" : "Mostra les targetes arxivades",
"Toggle compact mode" : "Commuta el mode compacte",
"Details" : "Detalls",
"Loading board" : "Carregant tauler",
"Board not found" : "Tauler no trobat",
"Sharing" : "Compartició",
"Tags" : "Etiquetes",
"Deleted items" : "Elements suprimits",
"Timeline" : "Línia de temps",
"Deleted lists" : "Llistes suprimides",
"Undo" : "Desfés",
"Deleted cards" : "Targetes suprimides",
"Share board with a user, group or circle …" : "Compartir tauler amb un usuari, grup o cercle ...",
"Board owner" : "Propietari del tauler",
"(Group)" : "(Grup)",
"(Circle)" : "(Cercle)",
"Can edit" : "Pot editar",
"Can share" : "Pot compartir",
"Can manage" : "Pot gestionar",
"Delete" : "Eliminar",
"Add a new stack" : "Afegeix una nova pila",
"Delete list" : "Suprimeix la llista",
"Add card" : "Afegeix una targeta",
"Add a new card" : "Afegir una nova targeta",
"Edit" : "Edita",
"Add a new tag" : "Afegir una etiqueta nova",
"title and color value must be provided" : "sha de proporcionar el valor del títol i del color",
"Title" : "Títol",
"Members" : "Membres",
"Add this attachment" : "Afegeix aquest adjunt",
"Delete Attachment" : "Suprimeix ladjunt",
"Restore Attachment" : "Restaura l'adjunt",
"Assign a tag to this card…" : "Assigna una etiqueta a aquesta targeta...",
"Assign to users" : "Assigna als usuaris",
"Assign to users/groups/circles" : "Assigna a usuaris/grups/cercles",
"Assign a user to this card…" : "Assigneu un usuari a aquesta targeta...",
"Due date" : "Per la data",
"Set a due date" : "Definir una data de venciment",
"Remove due date" : "Elimina la data de venciment",
"Description" : "Descripció",
"(Unsaved)" : "(No desat)",
"(Saving…)" : "(Desant…)",
"Formatting help" : "Format d'ajuda",
"Add Attachment" : "Afegeix un adjunt",
"Edit description" : "Edita descripció",
"View description" : "Veure descripció",
"Attachments" : "Adjunts",
"Comments" : "Comentaris",
"Choose attachment" : "Triar adjunt",
"Modified" : "Darrera modificació",
"Created" : "Creat",
"Upload attachment" : "Carrega l'adjunt",
"No comments yet. Begin the discussion!" : "No hi ha comentaris encara. Començar la discussió!",
"Save" : "Desa",
"The comment cannot be empty." : "El comentari no pot estar buit.",
"The comment cannot be longer than 1000 characters." : "El comentari no pot ser més llarg que 1000 caràcters.",
"In reply to" : "En resposta a",
"Reply" : "Respon",
"Update" : "Actualitza",
"(group)" : "(grup)",
"(circle)" : "(cercle)",
"seconds ago" : "fa uns segons",
"Assign to me" : "Assigna'm a mi",
"Unarchive card" : "Desarxiva targeta",
"Archive card" : "Arxiva la targeta",
"Delete card" : "Suprimeix targeta",
"Move card" : "Mou la targeta",
"Card details" : "Dades de la targeta",
"Select a stack" : "Seleccioneu una pila",
"All boards" : "Tots els taulers",
"seconds ago" : "fa uns segons",
"Archived boards" : "Taulers arxivats",
"Shared with you" : "Us han compartit",
"Limit deck usage of groups" : "Limitar l'ús del tauler de grups",
"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." : "Limitant el Tauler bloquejarà la creació de taulers als usuaris que no són part d'aquests grups. Els usuaris podran seguir treballant en els taulers que hagin estat compartits amb ells.",
"Shared boards" : "Taulers compartits",
"Settings" : "Paràmetres",
"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." : "Limitant el Tauler bloquejarà la creació de taulers als usuaris que no són part d'aquests grups. Els usuaris podran seguir treballant en els taulers que hagin estat compartits amb ells.",
"New board title" : "Títol del nou tauler",
"Edit board" : "Edita el tauler",
"Board details" : "Detalls de la junta",
"An error occurred" : "S'ha produït un error",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Esteu segur que voleu suprimir el tauler {title}? Això eliminarà totes les dades d'aquest tauler.",
"Delete the board?" : "Suprimir el tauler?",
"Archive board" : "Arxiva tauler",
"Unarchive board" : "Desarxiva tauler",
"Delete board" : "Suprimeix tauler",
"Board details" : "Detalls de la junta",
"Link to a board" : "Enllaça a un tauler",
"Link to a card" : "Enllaç una targeta",
"Something went wrong" : "Alguna cosa ha anat malament",
"Maximum file size of {size} exceeded" : "S'ha superat la mida màxima per fitxer de {size}"
},
"nplurals=2; plural=(n != 1);");

View File

@@ -54,9 +54,7 @@
"You have added the attachment {attachment} to card {card}" : "Heu afegit l'adjunt {attachment} a la targeta {card}",
"{user} has added the attachment {attachment} to card {card}" : "{user} ha afegit l'adjunt {attachment} a la targeta {card}",
"You have updated the attachment {attachment} on card {card}" : "Heu actualitzat l'adjunt {attachment} a la targeta {card}",
"{user} has updated the attachment {attachment} on card {card}" : "{user} ha actualitzat ladjunt {attachment} a la targeta {card}",
"You have deleted the attachment {attachment} from card {card}" : "Heu suprimit l'adjunt {attachment} de la targeta {card}",
"{user} has deleted the attachment {attachment} from card {card}" : "{user} ha suprimit l'adjunt {attachment} de la targeta {card}",
"You have restored the attachment {attachment} to card {card}" : "Heu restaurat l'adjunt {attachment} a la targeta {card}",
"{user} has restored the attachment {attachment} to card {card}" : "{user} ha restaurat l'adjunt {attachment} a la targeta {card}",
"You have commented on card {card}" : "Heu comentat la targeta {card}",
@@ -94,120 +92,58 @@
"Could not write file to disk" : "No sha pogut escriure el fitxer al disc",
"A PHP extension stopped the file upload" : "Una extensió del PHP ha aturat la carregada del fitxer",
"No file uploaded or file size exceeds maximum of %s" : "No s'ha carregat cap fitxer o la mida del fitxer sobrepassa el màxim de %s",
"Personal planning and team project organization" : "Planificació personal i organització de projectes en equip",
"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",
"Create new board" : "Crea un nou tauler",
"new board" : "nou tauler",
"Select the board to link to a project" : "Selecciona el tauler per enllaçar a un projecte",
"Select board" : "Selecciona un tauler",
"Select the card to link to a project" : "Selecciona la targeta per enllaçar a un projecte",
"Select a board" : "Selecciona un tauler",
"Select a card" : "Selecciona una targeta",
"Link to card" : "Enllaç a la targeta",
"Cancel" : "Cancel·la",
"File already exists" : "El fitxer ja existeix",
"A file with the name {filename} already exists." : "Ja existeix un fitxer amb el nom {filename}.",
"Do you want to overwrite it?" : "Voleu sobre-escriure'l?",
"Overwrite file" : "Sobreescriu el fitxer",
"Keep existing file" : "Mantén el fitxer existent",
"This board is read only" : "Aquest tauler és només de lectura",
"Drop your files to upload" : "Deixeu anar els fitxers per penjar-los",
"Archived cards" : "Targetes arxivades",
"Add new list" : "Afegeix una llista nova",
"List name" : "Nom de llista",
"Apply filter" : "Aplica el filtre",
"Filter by tag" : "Filtra per etiqueta",
"Filter by assigned user" : "Filtra per usuari assignat",
"Filter by due date" : "Filtra per data de venciment",
"Overdue" : "Endarrerit",
"Next 24 hours" : "Pròximes 24 hores",
"Next 7 days" : "Propers 7 dies",
"Next 30 days" : "Propers 30 dies",
"No due date" : "Sense venciment",
"Today" : "Avui",
"Show archived cards" : "Mostra les targetes arxivades",
"Toggle compact mode" : "Commuta el mode compacte",
"Details" : "Detalls",
"Loading board" : "Carregant tauler",
"Board not found" : "Tauler no trobat",
"Sharing" : "Compartició",
"Tags" : "Etiquetes",
"Deleted items" : "Elements suprimits",
"Timeline" : "Línia de temps",
"Deleted lists" : "Llistes suprimides",
"Undo" : "Desfés",
"Deleted cards" : "Targetes suprimides",
"Share board with a user, group or circle …" : "Compartir tauler amb un usuari, grup o cercle ...",
"Board owner" : "Propietari del tauler",
"(Group)" : "(Grup)",
"(Circle)" : "(Cercle)",
"Can edit" : "Pot editar",
"Can share" : "Pot compartir",
"Can manage" : "Pot gestionar",
"Delete" : "Eliminar",
"Add a new stack" : "Afegeix una nova pila",
"Delete list" : "Suprimeix la llista",
"Add card" : "Afegeix una targeta",
"Add a new card" : "Afegir una nova targeta",
"Edit" : "Edita",
"Add a new tag" : "Afegir una etiqueta nova",
"title and color value must be provided" : "sha de proporcionar el valor del títol i del color",
"Title" : "Títol",
"Members" : "Membres",
"Add this attachment" : "Afegeix aquest adjunt",
"Delete Attachment" : "Suprimeix ladjunt",
"Restore Attachment" : "Restaura l'adjunt",
"Assign a tag to this card…" : "Assigna una etiqueta a aquesta targeta...",
"Assign to users" : "Assigna als usuaris",
"Assign to users/groups/circles" : "Assigna a usuaris/grups/cercles",
"Assign a user to this card…" : "Assigneu un usuari a aquesta targeta...",
"Due date" : "Per la data",
"Set a due date" : "Definir una data de venciment",
"Remove due date" : "Elimina la data de venciment",
"Description" : "Descripció",
"(Unsaved)" : "(No desat)",
"(Saving…)" : "(Desant…)",
"Formatting help" : "Format d'ajuda",
"Add Attachment" : "Afegeix un adjunt",
"Edit description" : "Edita descripció",
"View description" : "Veure descripció",
"Attachments" : "Adjunts",
"Comments" : "Comentaris",
"Choose attachment" : "Triar adjunt",
"Modified" : "Darrera modificació",
"Created" : "Creat",
"Upload attachment" : "Carrega l'adjunt",
"No comments yet. Begin the discussion!" : "No hi ha comentaris encara. Començar la discussió!",
"Save" : "Desa",
"The comment cannot be empty." : "El comentari no pot estar buit.",
"The comment cannot be longer than 1000 characters." : "El comentari no pot ser més llarg que 1000 caràcters.",
"In reply to" : "En resposta a",
"Reply" : "Respon",
"Update" : "Actualitza",
"(group)" : "(grup)",
"(circle)" : "(cercle)",
"seconds ago" : "fa uns segons",
"Assign to me" : "Assigna'm a mi",
"Unarchive card" : "Desarxiva targeta",
"Archive card" : "Arxiva la targeta",
"Delete card" : "Suprimeix targeta",
"Move card" : "Mou la targeta",
"Card details" : "Dades de la targeta",
"Select a stack" : "Seleccioneu una pila",
"All boards" : "Tots els taulers",
"seconds ago" : "fa uns segons",
"Archived boards" : "Taulers arxivats",
"Shared with you" : "Us han compartit",
"Limit deck usage of groups" : "Limitar l'ús del tauler de grups",
"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." : "Limitant el Tauler bloquejarà la creació de taulers als usuaris que no són part d'aquests grups. Els usuaris podran seguir treballant en els taulers que hagin estat compartits amb ells.",
"Shared boards" : "Taulers compartits",
"Settings" : "Paràmetres",
"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." : "Limitant el Tauler bloquejarà la creació de taulers als usuaris que no són part d'aquests grups. Els usuaris podran seguir treballant en els taulers que hagin estat compartits amb ells.",
"New board title" : "Títol del nou tauler",
"Edit board" : "Edita el tauler",
"Board details" : "Detalls de la junta",
"An error occurred" : "S'ha produït un error",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Esteu segur que voleu suprimir el tauler {title}? Això eliminarà totes les dades d'aquest tauler.",
"Delete the board?" : "Suprimir el tauler?",
"Archive board" : "Arxiva tauler",
"Unarchive board" : "Desarxiva tauler",
"Delete board" : "Suprimeix tauler",
"Board details" : "Detalls de la junta",
"Link to a board" : "Enllaça a un tauler",
"Link to a card" : "Enllaç una targeta",
"Something went wrong" : "Alguna cosa ha anat malament",
"Maximum file size of {size} exceeded" : "S'ha superat la mida màxima per fitxer de {size}"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@@ -101,7 +101,6 @@ OC.L10N.register(
"Create new board" : "Vytvořit novou tabuli",
"new board" : "nová tabule",
"Select the board to link to a project" : "Vyberte tabuli kterou propojit s projektem",
"Search by board title" : "Hledat podle názvu tabule",
"Select board" : "Vybrat tabuli",
"Select the card to link to a project" : "Vyberte kartu kterou propojit s projektem",
"Select a board" : "Vybrat tabuli",
@@ -123,11 +122,10 @@ OC.L10N.register(
"Filter by assigned user" : "Filtrovat podle uživatele, který je úkolem pověřen",
"Filter by due date" : "Filtrovat podle termínu",
"Overdue" : "Po termínu",
"Next 24 hours" : "Následujících 24 hodin",
"Today" : "Dnes",
"Next 7 days" : "Příštích 7 dnů",
"Next 30 days" : "Příštích 30 dnů",
"No due date" : "Žádný termín",
"Clear filter" : "Vyčistit filtr",
"Show archived cards" : "Zobrazit archivované karty",
"Toggle compact mode" : "Vyp/zap. kompaktní režim",
"Details" : "Podrobnosti",
@@ -155,11 +153,6 @@ OC.L10N.register(
"Edit" : "Upravit",
"Add a new tag" : "Přidat nový štítek",
"title and color value must be provided" : "je třeba zadat nadpis a zvolit barvu",
"Title" : "Nadpis",
"Members" : "Členové",
"Add this attachment" : "Přidat tuto přílohu",
"Delete Attachment" : "Smazat přílohu",
"Restore Attachment" : "Obnovit přílohu",
"Assign a tag to this card…" : "Přiřadit této kartě štítek…",
"Assign to users" : "Přiřadit k uživatelům",
"Assign to users/groups/circles" : "Přiřadit uživatelům/skupinám/okruhům",
@@ -171,15 +164,13 @@ OC.L10N.register(
"(Unsaved)" : "(Neuloženo)",
"(Saving…)" : "(Ukládání…)",
"Formatting help" : "Nápověda k formátování",
"Add Attachment" : "Přidat přílohu",
"Edit description" : "Upravit popis",
"View description" : "Zobrazit popis",
"Attachments" : "Přílohy",
"Comments" : "Komentáře",
"Choose attachment" : "Zvolte přílohu",
"Modified" : "Změněno",
"Created" : "Vytvořeno",
"Upload attachment" : "Nahrát přílohu",
"Delete Attachment" : "Smazat přílohu",
"Restore Attachment" : "Obnovit přílohu",
"No comments yet. Begin the discussion!" : "Zatím bez komentářů. Zahajte diskuzi!",
"Save" : "Uložit",
"The comment cannot be empty." : "Komentář je třeba vyplnit",
@@ -189,32 +180,25 @@ OC.L10N.register(
"Update" : "Aktualizovat",
"(group)" : "(skupina)",
"(circle)" : "(okruh)",
"seconds ago" : "před několika sekundami",
"Assign to me" : "Přiřadit mě",
"Unarchive card" : "Zrušit archivaci karty",
"Archive card" : "Archivovat kartu",
"Delete card" : "Smazat kartu",
"Move card" : "Přesunout kartu",
"Card details" : "Podrobnosti o kartě",
"Move card to another board" : "Přesunout kartu na jinou tabuli",
"Select a stack" : "Vybrat sloupec",
"seconds ago" : "před několika sekundami",
"All boards" : "Všechny tabule",
"Archived boards" : "Archivované tabule",
"Shared with you" : "Sdíleno s vámi",
"Limit deck usage of groups" : "Omezit využití deck na skupiny",
"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." : "Omezení nastavené pro Deck brání uživatelům, kteří nejsou součástí těchto skupin, ve vytváření vlastních tabulí. Nicméně i tak ale pořád budou moci pracovat na tabulích, které jsou jim nasdíleny.",
"Shared boards" : "Sdílené tabule",
"Settings" : "Nastavení",
"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." : "Omezení nastavené pro Deck brání uživatelům, kteří nejsou součástí těchto skupin, ve vytváření vlastních tabulí. Nicméně i tak ale pořád budou moci pracovat na tabulích, které jsou jim nasdíleny.",
"New board title" : "Název nové tabule",
"Edit board" : "Upravit tabuli",
"Clone board " : "Klonovat tabuli ",
"Unarchive board " : "Vrátit tabuli zpět z archivu ",
"Archive board " : "Archivovat tabuli ",
"Delete board " : "Smazat tabuli",
"Board details" : "Podrobnosti o desce",
"Board {0} deleted" : "Tabule {0} smazána",
"An error occurred" : "Došlo k chybě",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Opravdu chcete tabuly {title} smazat? Toto smaže veškerá data této tabule.",
"Delete the board?" : "Smazat tabuli?",
"Clone board" : "Klonovat tabuli",
"Archive board" : "Archivovat tabuli",
"Unarchive board" : "Vrátit tabuli zpět z archivu",
"Delete board" : "Smazat tabuli",
"Board details" : "Podrobnosti o desce",
"Link to a board" : "Propojit s tabulí",
"Link to a card" : "Propojit s kartou",
"Something went wrong" : "Něco se pokazilo",

View File

@@ -99,7 +99,6 @@
"Create new board" : "Vytvořit novou tabuli",
"new board" : "nová tabule",
"Select the board to link to a project" : "Vyberte tabuli kterou propojit s projektem",
"Search by board title" : "Hledat podle názvu tabule",
"Select board" : "Vybrat tabuli",
"Select the card to link to a project" : "Vyberte kartu kterou propojit s projektem",
"Select a board" : "Vybrat tabuli",
@@ -121,11 +120,10 @@
"Filter by assigned user" : "Filtrovat podle uživatele, který je úkolem pověřen",
"Filter by due date" : "Filtrovat podle termínu",
"Overdue" : "Po termínu",
"Next 24 hours" : "Následujících 24 hodin",
"Today" : "Dnes",
"Next 7 days" : "Příštích 7 dnů",
"Next 30 days" : "Příštích 30 dnů",
"No due date" : "Žádný termín",
"Clear filter" : "Vyčistit filtr",
"Show archived cards" : "Zobrazit archivované karty",
"Toggle compact mode" : "Vyp/zap. kompaktní režim",
"Details" : "Podrobnosti",
@@ -153,11 +151,6 @@
"Edit" : "Upravit",
"Add a new tag" : "Přidat nový štítek",
"title and color value must be provided" : "je třeba zadat nadpis a zvolit barvu",
"Title" : "Nadpis",
"Members" : "Členové",
"Add this attachment" : "Přidat tuto přílohu",
"Delete Attachment" : "Smazat přílohu",
"Restore Attachment" : "Obnovit přílohu",
"Assign a tag to this card…" : "Přiřadit této kartě štítek…",
"Assign to users" : "Přiřadit k uživatelům",
"Assign to users/groups/circles" : "Přiřadit uživatelům/skupinám/okruhům",
@@ -169,15 +162,13 @@
"(Unsaved)" : "(Neuloženo)",
"(Saving…)" : "(Ukládání…)",
"Formatting help" : "Nápověda k formátování",
"Add Attachment" : "Přidat přílohu",
"Edit description" : "Upravit popis",
"View description" : "Zobrazit popis",
"Attachments" : "Přílohy",
"Comments" : "Komentáře",
"Choose attachment" : "Zvolte přílohu",
"Modified" : "Změněno",
"Created" : "Vytvořeno",
"Upload attachment" : "Nahrát přílohu",
"Delete Attachment" : "Smazat přílohu",
"Restore Attachment" : "Obnovit přílohu",
"No comments yet. Begin the discussion!" : "Zatím bez komentářů. Zahajte diskuzi!",
"Save" : "Uložit",
"The comment cannot be empty." : "Komentář je třeba vyplnit",
@@ -187,32 +178,25 @@
"Update" : "Aktualizovat",
"(group)" : "(skupina)",
"(circle)" : "(okruh)",
"seconds ago" : "před několika sekundami",
"Assign to me" : "Přiřadit mě",
"Unarchive card" : "Zrušit archivaci karty",
"Archive card" : "Archivovat kartu",
"Delete card" : "Smazat kartu",
"Move card" : "Přesunout kartu",
"Card details" : "Podrobnosti o kartě",
"Move card to another board" : "Přesunout kartu na jinou tabuli",
"Select a stack" : "Vybrat sloupec",
"seconds ago" : "před několika sekundami",
"All boards" : "Všechny tabule",
"Archived boards" : "Archivované tabule",
"Shared with you" : "Sdíleno s vámi",
"Limit deck usage of groups" : "Omezit využití deck na skupiny",
"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." : "Omezení nastavené pro Deck brání uživatelům, kteří nejsou součástí těchto skupin, ve vytváření vlastních tabulí. Nicméně i tak ale pořád budou moci pracovat na tabulích, které jsou jim nasdíleny.",
"Shared boards" : "Sdílené tabule",
"Settings" : "Nastavení",
"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." : "Omezení nastavené pro Deck brání uživatelům, kteří nejsou součástí těchto skupin, ve vytváření vlastních tabulí. Nicméně i tak ale pořád budou moci pracovat na tabulích, které jsou jim nasdíleny.",
"New board title" : "Název nové tabule",
"Edit board" : "Upravit tabuli",
"Clone board " : "Klonovat tabuli ",
"Unarchive board " : "Vrátit tabuli zpět z archivu ",
"Archive board " : "Archivovat tabuli ",
"Delete board " : "Smazat tabuli",
"Board details" : "Podrobnosti o desce",
"Board {0} deleted" : "Tabule {0} smazána",
"An error occurred" : "Došlo k chybě",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Opravdu chcete tabuly {title} smazat? Toto smaže veškerá data této tabule.",
"Delete the board?" : "Smazat tabuli?",
"Clone board" : "Klonovat tabuli",
"Archive board" : "Archivovat tabuli",
"Unarchive board" : "Vrátit tabuli zpět z archivu",
"Delete board" : "Smazat tabuli",
"Board details" : "Podrobnosti o desce",
"Link to a board" : "Propojit s tabulí",
"Link to a card" : "Propojit s kartou",
"Something went wrong" : "Něco se pokazilo",

View File

@@ -7,6 +7,7 @@ OC.L10N.register(
"No file was uploaded" : "Ni lwythwyd ffeil i fyny",
"Missing a temporary folder" : "Plygell dros dro yn eisiau",
"Cancel" : "Diddymu",
"Today" : "Heddiw",
"Details" : "Manylion",
"Tags" : "Tagiau",
"Undo" : "Dadwneud",
@@ -14,14 +15,12 @@ OC.L10N.register(
"Can share" : "Can share",
"Delete" : "Dileu",
"Edit" : "Golygu",
"Title" : "Teitl",
"Description" : "Disgrifiad",
"Modified" : "Addaswyd",
"Upload attachment" : "Llwytho atodiad",
"Save" : "Cadw",
"Update" : "Diweddaru",
"seconds ago" : "eiliad yn ôl",
"Shared with you" : "Shared with you",
"Settings" : "Gosodiadau",
"An error occurred" : "Digwyddodd gwall"
},

View File

@@ -5,6 +5,7 @@
"No file was uploaded" : "Ni lwythwyd ffeil i fyny",
"Missing a temporary folder" : "Plygell dros dro yn eisiau",
"Cancel" : "Diddymu",
"Today" : "Heddiw",
"Details" : "Manylion",
"Tags" : "Tagiau",
"Undo" : "Dadwneud",
@@ -12,14 +13,12 @@
"Can share" : "Can share",
"Delete" : "Dileu",
"Edit" : "Golygu",
"Title" : "Teitl",
"Description" : "Disgrifiad",
"Modified" : "Addaswyd",
"Upload attachment" : "Llwytho atodiad",
"Save" : "Cadw",
"Update" : "Diweddaru",
"seconds ago" : "eiliad yn ôl",
"Shared with you" : "Shared with you",
"Settings" : "Gosodiadau",
"An error occurred" : "Digwyddodd gwall"
},"pluralForm" :"nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;"

View File

@@ -21,6 +21,7 @@ OC.L10N.register(
"File already exists" : "Fil findes allerede",
"Do you want to overwrite it?" : "Vil du overskrive den?",
"Drop your files to upload" : "Drop dine filer for at uploade",
"Today" : "I dag",
"Show archived cards" : "Vis arkiverede kort",
"Details" : "Detaljer",
"Sharing" : "Deling",
@@ -30,11 +31,8 @@ OC.L10N.register(
"Can share" : "Kan dele",
"Delete" : "Slet",
"Add a new stack" : "Tilføj en ny stak",
"Delete list" : "Slet liste",
"Add card" : "Tilføj kort",
"Edit" : "Redigér",
"Title" : "Titel",
"Members" : "Medlemmer",
"Due date" : "Forfaldsdato",
"Remove due date" : "Fjern forfaldsdato",
"Description" : "Beskrivelse",
@@ -48,16 +46,17 @@ OC.L10N.register(
"Reply" : "Besvar",
"Update" : "Opdatér",
"(group)" : "(gruppe)",
"seconds ago" : "sekunder siden",
"Archive card" : "Arkivér kort",
"Delete card" : "Slet kort",
"Move card" : "Flyt kort",
"seconds ago" : "sekunder siden",
"Archived boards" : "Arkiverede lister",
"Shared with you" : "Shared with you",
"Shared boards" : "Delte lister",
"Settings" : "Indstillinger",
"New board title" : "Ny titel på liste",
"Edit board" : "Rediger liste",
"Board details" : "Liste detaljer",
"An error occurred" : "Der var en fejl"
"An error occurred" : "Der var en fejl",
"Archive board" : "Arkivér liste",
"Unarchive board" : "Annuller arkivering af liste",
"Delete board" : "Slet liste",
"Board details" : "Liste detaljer"
},
"nplurals=2; plural=(n != 1);");

View File

@@ -19,6 +19,7 @@
"File already exists" : "Fil findes allerede",
"Do you want to overwrite it?" : "Vil du overskrive den?",
"Drop your files to upload" : "Drop dine filer for at uploade",
"Today" : "I dag",
"Show archived cards" : "Vis arkiverede kort",
"Details" : "Detaljer",
"Sharing" : "Deling",
@@ -28,11 +29,8 @@
"Can share" : "Kan dele",
"Delete" : "Slet",
"Add a new stack" : "Tilføj en ny stak",
"Delete list" : "Slet liste",
"Add card" : "Tilføj kort",
"Edit" : "Redigér",
"Title" : "Titel",
"Members" : "Medlemmer",
"Due date" : "Forfaldsdato",
"Remove due date" : "Fjern forfaldsdato",
"Description" : "Beskrivelse",
@@ -46,16 +44,17 @@
"Reply" : "Besvar",
"Update" : "Opdatér",
"(group)" : "(gruppe)",
"seconds ago" : "sekunder siden",
"Archive card" : "Arkivér kort",
"Delete card" : "Slet kort",
"Move card" : "Flyt kort",
"seconds ago" : "sekunder siden",
"Archived boards" : "Arkiverede lister",
"Shared with you" : "Shared with you",
"Shared boards" : "Delte lister",
"Settings" : "Indstillinger",
"New board title" : "Ny titel på liste",
"Edit board" : "Rediger liste",
"Board details" : "Liste detaljer",
"An error occurred" : "Der var en fejl"
"An error occurred" : "Der var en fejl",
"Archive board" : "Arkivér liste",
"Unarchive board" : "Annuller arkivering af liste",
"Delete board" : "Slet liste",
"Board details" : "Liste detaljer"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@@ -101,7 +101,6 @@ OC.L10N.register(
"Create new board" : "Neues Board",
"new board" : "Neues Board",
"Select the board to link to a project" : "Wähle ein Board aus, um dieses mit einem Projekt zu verknüpfen",
"Search by board title" : "Nach einem Board suchen",
"Select board" : "Board auswählen",
"Select the card to link to a project" : "Wähle die Karte aus, um diese mit einem Projekt zu verknüpfen",
"Select a board" : "Ein Board auswählen",
@@ -123,11 +122,10 @@ OC.L10N.register(
"Filter by assigned user" : "Nach zugewiesenem Benutzer filtern",
"Filter by due date" : "Nach Fälligkeitsdatum filtern",
"Overdue" : "Überfällig",
"Next 24 hours" : "Die nächsten 24 Stunden",
"Today" : "Heute",
"Next 7 days" : "Die nächsten 7 Tage",
"Next 30 days" : "Die nächsten 30 Tage",
"No due date" : "Kein Fälligkeitsdatum",
"Clear filter" : "Filter zurücksetzen",
"Show archived cards" : "Archivierte Karten anzeigen",
"Toggle compact mode" : "Kompaktmodus umschalten",
"Details" : "Details",
@@ -137,7 +135,7 @@ OC.L10N.register(
"Tags" : "Schlagworte",
"Deleted items" : "Gelöschte Objekte",
"Timeline" : "Zeitachse",
"Deleted lists" : "Gelöschte Listen",
"Deleted lists" : "Listen löschen",
"Undo" : "Rückgängig",
"Deleted cards" : "Gelöschte Karten",
"Share board with a user, group or circle …" : "Board mit Benutzer, Gruppe oder Kreis teilen …",
@@ -155,11 +153,6 @@ OC.L10N.register(
"Edit" : "Bearbeiten",
"Add a new tag" : "Neues Schlagwort hinzufügen",
"title and color value must be provided" : "Titel und Farbwert müssen angegeben werden",
"Title" : "Titel",
"Members" : "Mitglieder",
"Add this attachment" : "Diesen Anhang anhängen",
"Delete Attachment" : "Anhang löschen",
"Restore Attachment" : "Anhang wiederherstellen",
"Assign a tag to this card…" : "Dieser Karte ein Schlagwort zuweisen…",
"Assign to users" : "Benutzern zuweisen",
"Assign to users/groups/circles" : "An Benutzer, Gruppen oder Kreise zuweisen",
@@ -171,15 +164,13 @@ OC.L10N.register(
"(Unsaved)" : "(nicht gespeichert)",
"(Saving…)" : "(Speichere…)",
"Formatting help" : "Formatierungshilfe",
"Add Attachment" : "Anhang anhängen",
"Edit description" : "Beschreibung bearbeiten",
"View description" : "Beschreibung anzeigen",
"Attachments" : "Anhänge",
"Comments" : "Kommentare",
"Choose attachment" : "Anhang auswählen",
"Modified" : "Geändert",
"Created" : "Erstellt",
"Upload attachment" : "Anhang hochladen",
"Delete Attachment" : "Anhang löschen",
"Restore Attachment" : "Anhang wiederherstellen",
"No comments yet. Begin the discussion!" : "Bislang keine Kommentare. Beginne die Diskussion!",
"Save" : "Speichern",
"The comment cannot be empty." : "Der Kommentar darf nicht leer sein.",
@@ -189,32 +180,25 @@ OC.L10N.register(
"Update" : "Aktualisieren",
"(group)" : "(Gruppe)",
"(circle)" : "(Kreis)",
"seconds ago" : "Gerade eben",
"Assign to me" : "Mir zuweisen",
"Unarchive card" : "Karte dearchivieren",
"Archive card" : "Karte archivieren",
"Delete card" : "Karte löschen",
"Move card" : "Karte verschieben",
"Card details" : "Kartendetails",
"Move card to another board" : "Karte auf ein anderes Board verschieben",
"Select a stack" : "Stapel auswählen",
"seconds ago" : "Gerade eben",
"All boards" : "Alle Boards",
"Archived boards" : "Archivierte Boards",
"Shared with you" : "Benötigt keine Übersetzung. Für iOS wird nur die formelle Übersetzung verwendet (de_DE).",
"Limit deck usage of groups" : "Nutzung von Deck auf Gruppen einschränken",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Durch die Begrenzung von Deck werden Benutzer, die nicht Teil dieser Gruppen sind, daran gehindert, eigene Boards zu erstellen. Benutzer können weiterhin an Boards arbeiten, die für sie freigegeben wurden.",
"Shared boards" : "Geteilte Boards",
"Settings" : "Einstellungen",
"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." : "Durch die Begrenzung von Deck werden Benutzer, die nicht Teil dieser Gruppen sind, daran gehindert, eigene Boards zu erstellen. Benutzer können weiterhin an Boards arbeiten, die für sie freigegeben wurden.",
"New board title" : "Board-Titel",
"Edit board" : "Board bearbeiten",
"Clone board " : "Board duplizieren",
"Unarchive board " : "Board dearchivieren",
"Archive board " : "Board archivieren",
"Delete board " : "Board löschen",
"Board details" : "Board-Details",
"Board {0} deleted" : "Board {0} gelöscht",
"An error occurred" : "Es ist ein Fehler aufgetreten",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Möchtest Du wirklich dieses Board {title} mit all seinen Daten löschen?",
"Delete the board?" : "Das Board löschen?",
"Clone board" : "Board klonen",
"Archive board" : "Board archivieren",
"Unarchive board" : "Board dearchivieren",
"Delete board" : "Board löschen",
"Board details" : "Board-Details",
"Link to a board" : "Mit einem Board verknüpfen",
"Link to a card" : "Mit einer Karte verknüpfen",
"Something went wrong" : "Etwas ist schiefgelaufen",

View File

@@ -99,7 +99,6 @@
"Create new board" : "Neues Board",
"new board" : "Neues Board",
"Select the board to link to a project" : "Wähle ein Board aus, um dieses mit einem Projekt zu verknüpfen",
"Search by board title" : "Nach einem Board suchen",
"Select board" : "Board auswählen",
"Select the card to link to a project" : "Wähle die Karte aus, um diese mit einem Projekt zu verknüpfen",
"Select a board" : "Ein Board auswählen",
@@ -121,11 +120,10 @@
"Filter by assigned user" : "Nach zugewiesenem Benutzer filtern",
"Filter by due date" : "Nach Fälligkeitsdatum filtern",
"Overdue" : "Überfällig",
"Next 24 hours" : "Die nächsten 24 Stunden",
"Today" : "Heute",
"Next 7 days" : "Die nächsten 7 Tage",
"Next 30 days" : "Die nächsten 30 Tage",
"No due date" : "Kein Fälligkeitsdatum",
"Clear filter" : "Filter zurücksetzen",
"Show archived cards" : "Archivierte Karten anzeigen",
"Toggle compact mode" : "Kompaktmodus umschalten",
"Details" : "Details",
@@ -135,7 +133,7 @@
"Tags" : "Schlagworte",
"Deleted items" : "Gelöschte Objekte",
"Timeline" : "Zeitachse",
"Deleted lists" : "Gelöschte Listen",
"Deleted lists" : "Listen löschen",
"Undo" : "Rückgängig",
"Deleted cards" : "Gelöschte Karten",
"Share board with a user, group or circle …" : "Board mit Benutzer, Gruppe oder Kreis teilen …",
@@ -153,11 +151,6 @@
"Edit" : "Bearbeiten",
"Add a new tag" : "Neues Schlagwort hinzufügen",
"title and color value must be provided" : "Titel und Farbwert müssen angegeben werden",
"Title" : "Titel",
"Members" : "Mitglieder",
"Add this attachment" : "Diesen Anhang anhängen",
"Delete Attachment" : "Anhang löschen",
"Restore Attachment" : "Anhang wiederherstellen",
"Assign a tag to this card…" : "Dieser Karte ein Schlagwort zuweisen…",
"Assign to users" : "Benutzern zuweisen",
"Assign to users/groups/circles" : "An Benutzer, Gruppen oder Kreise zuweisen",
@@ -169,15 +162,13 @@
"(Unsaved)" : "(nicht gespeichert)",
"(Saving…)" : "(Speichere…)",
"Formatting help" : "Formatierungshilfe",
"Add Attachment" : "Anhang anhängen",
"Edit description" : "Beschreibung bearbeiten",
"View description" : "Beschreibung anzeigen",
"Attachments" : "Anhänge",
"Comments" : "Kommentare",
"Choose attachment" : "Anhang auswählen",
"Modified" : "Geändert",
"Created" : "Erstellt",
"Upload attachment" : "Anhang hochladen",
"Delete Attachment" : "Anhang löschen",
"Restore Attachment" : "Anhang wiederherstellen",
"No comments yet. Begin the discussion!" : "Bislang keine Kommentare. Beginne die Diskussion!",
"Save" : "Speichern",
"The comment cannot be empty." : "Der Kommentar darf nicht leer sein.",
@@ -187,32 +178,25 @@
"Update" : "Aktualisieren",
"(group)" : "(Gruppe)",
"(circle)" : "(Kreis)",
"seconds ago" : "Gerade eben",
"Assign to me" : "Mir zuweisen",
"Unarchive card" : "Karte dearchivieren",
"Archive card" : "Karte archivieren",
"Delete card" : "Karte löschen",
"Move card" : "Karte verschieben",
"Card details" : "Kartendetails",
"Move card to another board" : "Karte auf ein anderes Board verschieben",
"Select a stack" : "Stapel auswählen",
"seconds ago" : "Gerade eben",
"All boards" : "Alle Boards",
"Archived boards" : "Archivierte Boards",
"Shared with you" : "Benötigt keine Übersetzung. Für iOS wird nur die formelle Übersetzung verwendet (de_DE).",
"Limit deck usage of groups" : "Nutzung von Deck auf Gruppen einschränken",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Durch die Begrenzung von Deck werden Benutzer, die nicht Teil dieser Gruppen sind, daran gehindert, eigene Boards zu erstellen. Benutzer können weiterhin an Boards arbeiten, die für sie freigegeben wurden.",
"Shared boards" : "Geteilte Boards",
"Settings" : "Einstellungen",
"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." : "Durch die Begrenzung von Deck werden Benutzer, die nicht Teil dieser Gruppen sind, daran gehindert, eigene Boards zu erstellen. Benutzer können weiterhin an Boards arbeiten, die für sie freigegeben wurden.",
"New board title" : "Board-Titel",
"Edit board" : "Board bearbeiten",
"Clone board " : "Board duplizieren",
"Unarchive board " : "Board dearchivieren",
"Archive board " : "Board archivieren",
"Delete board " : "Board löschen",
"Board details" : "Board-Details",
"Board {0} deleted" : "Board {0} gelöscht",
"An error occurred" : "Es ist ein Fehler aufgetreten",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Möchtest Du wirklich dieses Board {title} mit all seinen Daten löschen?",
"Delete the board?" : "Das Board löschen?",
"Clone board" : "Board klonen",
"Archive board" : "Board archivieren",
"Unarchive board" : "Board dearchivieren",
"Delete board" : "Board löschen",
"Board details" : "Board-Details",
"Link to a board" : "Mit einem Board verknüpfen",
"Link to a card" : "Mit einer Karte verknüpfen",
"Something went wrong" : "Etwas ist schiefgelaufen",

View File

@@ -101,7 +101,6 @@ OC.L10N.register(
"Create new board" : "Neues Board",
"new board" : "Neues Board",
"Select the board to link to a project" : "Wählen Sie ein Board aus, um dieses mit einem Projekt zu verknüpfen",
"Search by board title" : "Nach einem Board suchen",
"Select board" : "Board auswählen",
"Select the card to link to a project" : "Wählen Sie die Karte aus, um diese mit einem Projekt zu verknüpfen",
"Select a board" : "Ein Board auswählen",
@@ -123,11 +122,10 @@ OC.L10N.register(
"Filter by assigned user" : "Nach zugewiesenem Benutzer filtern",
"Filter by due date" : "Nach Fälligkeitsdatum filtern",
"Overdue" : "Überfällig",
"Next 24 hours" : "Die nächsten 24 Stunden",
"Today" : "Heute",
"Next 7 days" : "Die nächsten 7 Tage",
"Next 30 days" : "Die nächsten 30 Tage",
"No due date" : "Kein Fälligkeitsdatum",
"Clear filter" : "Filter zurücksetzen",
"Show archived cards" : "Archivierte Karten anzeigen",
"Toggle compact mode" : "Kompaktmodus umschalten",
"Details" : "Details",
@@ -137,7 +135,7 @@ OC.L10N.register(
"Tags" : "Schlagworte",
"Deleted items" : "Gelöschte Objekte",
"Timeline" : "Zeitachse",
"Deleted lists" : "Gelöschte Listen",
"Deleted lists" : "Listen löschen",
"Undo" : "Rückgängig",
"Deleted cards" : "Gelöschte Karten",
"Share board with a user, group or circle …" : "Board mit Benutzer, Gruppe oder Kreis teilen …",
@@ -155,11 +153,6 @@ OC.L10N.register(
"Edit" : "Bearbeiten",
"Add a new tag" : "Neues Schlagwort hinzufügen",
"title and color value must be provided" : "Titel und Farbwert müssen angegeben werden",
"Title" : "Titel",
"Members" : "Mitglieder",
"Add this attachment" : "Diesen Anhang anhängen",
"Delete Attachment" : "Anhang löschen",
"Restore Attachment" : "Anhang wiederherstellen",
"Assign a tag to this card…" : "Dieser Karte ein Schlagwort zuweisen…",
"Assign to users" : "Benutzern zuweisen",
"Assign to users/groups/circles" : "An Benutzer, Gruppen oder Kreise zuweisen",
@@ -171,15 +164,13 @@ OC.L10N.register(
"(Unsaved)" : "(nicht gespeichert)",
"(Saving…)" : "(Speichere…)",
"Formatting help" : "Formatierungshilfe",
"Add Attachment" : "Anhang anhängen",
"Edit description" : "Beschreibung bearbeiten",
"View description" : "Beschreibung anzeigen",
"Attachments" : "Anhänge",
"Comments" : "Kommentare",
"Choose attachment" : "Anhang auswählen",
"Modified" : "Geändert",
"Created" : "Erstellt",
"Upload attachment" : "Anhang hochladen",
"Delete Attachment" : "Anhang löschen",
"Restore Attachment" : "Anhang wiederherstellen",
"No comments yet. Begin the discussion!" : "Bislang keine Kommentare. Beginnen Sie die Diskussion!",
"Save" : "Speichern",
"The comment cannot be empty." : "Der Kommentar darf nicht leer sein.",
@@ -189,32 +180,25 @@ OC.L10N.register(
"Update" : "Aktualisieren",
"(group)" : "(Gruppe)",
"(circle)" : "(Kreis)",
"seconds ago" : "Gerade eben",
"Assign to me" : "Mir zuweisen",
"Unarchive card" : "Karte dearchivieren",
"Archive card" : "Karte archivieren",
"Delete card" : "Karte löschen",
"Move card" : "Karte verschieben",
"Card details" : "Kartendetails",
"Move card to another board" : "Karte auf ein anderes Board verschieben",
"Select a stack" : "Stapel auswählen",
"seconds ago" : "Gerade eben",
"All boards" : "Alle Boards",
"Archived boards" : "Archivierte Boards",
"Shared with you" : "Mit Ihnen geteilt",
"Limit deck usage of groups" : "Nutzung von Deck auf Gruppen einschränken",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Durch die Begrenzung von Deck werden Benutzer, die nicht Teil dieser Gruppen sind, daran gehindert, eigene Boards zu erstellen. Benutzer können weiterhin an Boards arbeiten, die für sie freigegeben wurden.",
"Shared boards" : "Geteilte Boards",
"Settings" : "Einstellungen",
"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." : "Durch die Begrenzung von Deck werden Benutzer, die nicht Teil dieser Gruppen sind, daran gehindert, eigene Boards zu erstellen. Benutzer können weiterhin an Boards arbeiten, die für sie freigegeben wurden.",
"New board title" : "Board-Titel",
"Edit board" : "Board bearbeiten",
"Clone board " : "Board duplizieren",
"Unarchive board " : "Board dearchivieren",
"Archive board " : "Board archivieren",
"Delete board " : "Board löschen",
"Board details" : "Board-Details",
"Board {0} deleted" : "Board {0} gelöscht",
"An error occurred" : "Es ist ein Fehler aufgetreten",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Möchten Sie wirklich dieses Board {title} mit all dessen Daten löschen?",
"Delete the board?" : "Das Board löschen?",
"Clone board" : "Board klonen",
"Archive board" : "Board archivieren",
"Unarchive board" : "Board dearchivieren",
"Delete board" : "Board löschen",
"Board details" : "Board-Details",
"Link to a board" : "Mit einem Board verknüpfen",
"Link to a card" : "Mit einer Karte verknüpfen",
"Something went wrong" : "Etwas ist schiefgelaufen",

View File

@@ -99,7 +99,6 @@
"Create new board" : "Neues Board",
"new board" : "Neues Board",
"Select the board to link to a project" : "Wählen Sie ein Board aus, um dieses mit einem Projekt zu verknüpfen",
"Search by board title" : "Nach einem Board suchen",
"Select board" : "Board auswählen",
"Select the card to link to a project" : "Wählen Sie die Karte aus, um diese mit einem Projekt zu verknüpfen",
"Select a board" : "Ein Board auswählen",
@@ -121,11 +120,10 @@
"Filter by assigned user" : "Nach zugewiesenem Benutzer filtern",
"Filter by due date" : "Nach Fälligkeitsdatum filtern",
"Overdue" : "Überfällig",
"Next 24 hours" : "Die nächsten 24 Stunden",
"Today" : "Heute",
"Next 7 days" : "Die nächsten 7 Tage",
"Next 30 days" : "Die nächsten 30 Tage",
"No due date" : "Kein Fälligkeitsdatum",
"Clear filter" : "Filter zurücksetzen",
"Show archived cards" : "Archivierte Karten anzeigen",
"Toggle compact mode" : "Kompaktmodus umschalten",
"Details" : "Details",
@@ -135,7 +133,7 @@
"Tags" : "Schlagworte",
"Deleted items" : "Gelöschte Objekte",
"Timeline" : "Zeitachse",
"Deleted lists" : "Gelöschte Listen",
"Deleted lists" : "Listen löschen",
"Undo" : "Rückgängig",
"Deleted cards" : "Gelöschte Karten",
"Share board with a user, group or circle …" : "Board mit Benutzer, Gruppe oder Kreis teilen …",
@@ -153,11 +151,6 @@
"Edit" : "Bearbeiten",
"Add a new tag" : "Neues Schlagwort hinzufügen",
"title and color value must be provided" : "Titel und Farbwert müssen angegeben werden",
"Title" : "Titel",
"Members" : "Mitglieder",
"Add this attachment" : "Diesen Anhang anhängen",
"Delete Attachment" : "Anhang löschen",
"Restore Attachment" : "Anhang wiederherstellen",
"Assign a tag to this card…" : "Dieser Karte ein Schlagwort zuweisen…",
"Assign to users" : "Benutzern zuweisen",
"Assign to users/groups/circles" : "An Benutzer, Gruppen oder Kreise zuweisen",
@@ -169,15 +162,13 @@
"(Unsaved)" : "(nicht gespeichert)",
"(Saving…)" : "(Speichere…)",
"Formatting help" : "Formatierungshilfe",
"Add Attachment" : "Anhang anhängen",
"Edit description" : "Beschreibung bearbeiten",
"View description" : "Beschreibung anzeigen",
"Attachments" : "Anhänge",
"Comments" : "Kommentare",
"Choose attachment" : "Anhang auswählen",
"Modified" : "Geändert",
"Created" : "Erstellt",
"Upload attachment" : "Anhang hochladen",
"Delete Attachment" : "Anhang löschen",
"Restore Attachment" : "Anhang wiederherstellen",
"No comments yet. Begin the discussion!" : "Bislang keine Kommentare. Beginnen Sie die Diskussion!",
"Save" : "Speichern",
"The comment cannot be empty." : "Der Kommentar darf nicht leer sein.",
@@ -187,32 +178,25 @@
"Update" : "Aktualisieren",
"(group)" : "(Gruppe)",
"(circle)" : "(Kreis)",
"seconds ago" : "Gerade eben",
"Assign to me" : "Mir zuweisen",
"Unarchive card" : "Karte dearchivieren",
"Archive card" : "Karte archivieren",
"Delete card" : "Karte löschen",
"Move card" : "Karte verschieben",
"Card details" : "Kartendetails",
"Move card to another board" : "Karte auf ein anderes Board verschieben",
"Select a stack" : "Stapel auswählen",
"seconds ago" : "Gerade eben",
"All boards" : "Alle Boards",
"Archived boards" : "Archivierte Boards",
"Shared with you" : "Mit Ihnen geteilt",
"Limit deck usage of groups" : "Nutzung von Deck auf Gruppen einschränken",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Durch die Begrenzung von Deck werden Benutzer, die nicht Teil dieser Gruppen sind, daran gehindert, eigene Boards zu erstellen. Benutzer können weiterhin an Boards arbeiten, die für sie freigegeben wurden.",
"Shared boards" : "Geteilte Boards",
"Settings" : "Einstellungen",
"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." : "Durch die Begrenzung von Deck werden Benutzer, die nicht Teil dieser Gruppen sind, daran gehindert, eigene Boards zu erstellen. Benutzer können weiterhin an Boards arbeiten, die für sie freigegeben wurden.",
"New board title" : "Board-Titel",
"Edit board" : "Board bearbeiten",
"Clone board " : "Board duplizieren",
"Unarchive board " : "Board dearchivieren",
"Archive board " : "Board archivieren",
"Delete board " : "Board löschen",
"Board details" : "Board-Details",
"Board {0} deleted" : "Board {0} gelöscht",
"An error occurred" : "Es ist ein Fehler aufgetreten",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Möchten Sie wirklich dieses Board {title} mit all dessen Daten löschen?",
"Delete the board?" : "Das Board löschen?",
"Clone board" : "Board klonen",
"Archive board" : "Board archivieren",
"Unarchive board" : "Board dearchivieren",
"Delete board" : "Board löschen",
"Board details" : "Board-Details",
"Link to a board" : "Mit einem Board verknüpfen",
"Link to a card" : "Mit einer Karte verknüpfen",
"Something went wrong" : "Etwas ist schiefgelaufen",

View File

@@ -101,7 +101,6 @@ OC.L10N.register(
"Create new board" : "Δημιουργία νέου πίνακα",
"new board" : "νέος πίνακας",
"Select the board to link to a project" : "Επιλέξτε πίνακα και συνδέστε τον σε έργο",
"Search by board title" : "Αναζήτηση με το όνομα πίνακα",
"Select board" : "Επιλογή πίνακα",
"Select the card to link to a project" : "Επιλογή καρτέλας για σύνδεση στο έργο",
"Select a board" : "Επιλογή ενός πίνακα",
@@ -123,11 +122,10 @@ OC.L10N.register(
"Filter by assigned user" : "Φίλτρο ανά χρήστη",
"Filter by due date" : "Φίλτρο ανά ημερομηνία λήξης",
"Overdue" : "Εκπρόθεσμος",
"Next 24 hours" : "Επόμενες 24 ώρες",
"Today" : "Σήμερα",
"Next 7 days" : "Επόμενες 7 ημέρες",
"Next 30 days" : "Επόμενες 30 ημέρες",
"No due date" : "Χωρίς ημερομηνία λήξης",
"Clear filter" : "Εκκαθάριση φίλτρου",
"Show archived cards" : "Εμφάνιση καρτελών που αρχειοθετήθηκαν",
"Toggle compact mode" : "Εναλλαγή λειτουργίας μικρού μεγέθους",
"Details" : "Λεπτομέρειες",
@@ -155,11 +153,6 @@ OC.L10N.register(
"Edit" : "Επεξεργασία",
"Add a new tag" : "Προσθήκη νέας ετικέτας",
"title and color value must be provided" : "ο τίτλος και η τιμή χρώματος πρέπει να παρέχονται",
"Title" : "Τίτλος",
"Members" : "Μέλη",
"Add this attachment" : "Προσθήκη αυτού του συνημμένου",
"Delete Attachment" : "Διαγραφή Συνημμένου",
"Restore Attachment" : "Επαναφορά Συνημμένου",
"Assign a tag to this card…" : "Ορίστε μια ετικέτα σε αυτήν την καρτέλα...",
"Assign to users" : "Αναθέστε στους χρήστες",
"Assign to users/groups/circles" : "Ανάθεση σε χρήστες/ομάδες/κύκλους",
@@ -171,15 +164,13 @@ OC.L10N.register(
"(Unsaved)" : "(Δεν αποθηκεύτηκε)",
"(Saving…)" : "(Αποθήκευση...)",
"Formatting help" : "Βοήθεια μορφοποίησης",
"Add Attachment" : "Προσθήκη συνημμένου",
"Edit description" : "Επεξεργασία περιγραφής",
"View description" : "Εμφάνιση περιγραφής",
"Attachments" : "Συνημμένα",
"Comments" : "Σχόλια",
"Choose attachment" : "Επιλογή συνημμένου",
"Modified" : "Τροποποιήθηκε",
"Created" : "Δημιουργήθηκε",
"Upload attachment" : "Μεταφόρτωση συνημμένων",
"Delete Attachment" : "Διαγραφή Συνημμένου",
"Restore Attachment" : "Επαναφορά Συνημμένου",
"No comments yet. Begin the discussion!" : "Χωρίς σχόλια ακόμη. Ξεκινήστε την συζήτηση!",
"Save" : "Αποθήκευση",
"The comment cannot be empty." : "Το σχόλιο δεν μπορεί να είναι κενό.",
@@ -189,32 +180,25 @@ OC.L10N.register(
"Update" : "Ενημέρωση",
"(group)" : "(ομάδα)",
"(circle)" : "(κύκλος)",
"seconds ago" : " δευτερόλεπτα πριν ",
"Assign to me" : "Ανάθεση σε εμένα",
"Unarchive card" : "Αναίρεση αρχειοθέτησης κάρτας",
"Archive card" : "Αρχειοθέτηση κάρτας",
"Delete card" : "Διαγραφή κάρτας",
"Move card" : "Μετακίνηση κάρτας",
"Card details" : "Λεπτομέρειες καρτέλας",
"Move card to another board" : "Μετακίνηση καρτέλας σε άλλο πίνακα",
"Select a stack" : "Επιλέξτε στοίβα",
"seconds ago" : " δευτερόλεπτα πριν ",
"All boards" : "Όλοι οι πίνακες",
"Archived boards" : "Αρχειοθέτηση πινάκων ",
"Shared with you" : "Διαμοιρασμένα μαζί σας",
"Limit deck usage of groups" : "Περιορίστε τη χρήση της εφαρμογής σε ομάδες",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Ο περιορισμός του Deck θα εμποδίσει τους χρήστες που δεν είναι μέρος αυτών των ομάδων να δημιουργούν δικούς τους πίνακες. Οι χρήστες θα εξακολουθήσουν να εργάζονται σε πίνακες που έχουν διαμοιραστεί μαζί τους.",
"Shared boards" : "Διαμοιρασμένοι πίνακες",
"Settings" : "Ρυθμίσεις",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Ο περιορισμός του Deck θα εμποδίσει τους χρήστες που δεν είναι μέρος αυτών των ομάδων να δημιουργούν δικούς τους πίνακες. Οι χρήστες θα εξακολουθήσουν να εργάζονται σε πίνακες που έχουν διαμοιραστεί μαζί τους.",
"New board title" : "Νέος τίτλος πίνακα",
"Edit board" : "Επεξεργασία πίνακα",
"Clone board " : "Κλωνοποίηση πίνακα",
"Unarchive board " : "Αναίρεση αρχειοθέτησης πίνακα",
"Archive board " : "Αρχειοθέτηση πίνακα",
"Delete board " : "Διαγραφή πίνακα",
"Board details" : "Λεπτομέριες πίνακα",
"Board {0} deleted" : "Διαγράφηκε {0} πίνακας",
"An error occurred" : "Παρουσιάστηκε σφάλμα",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Είστε βέβαιοι ότι θέλετε να διαγράψετε τον πίνακα {title}; Θα διαγραφούν όλα τα δεδομένα.",
"Delete the board?" : "Διαγραφή πίνακα;",
"Clone board" : "Κλωνοποίηση πίνακα",
"Archive board" : "Αρχειοθέτηση πίνακα",
"Unarchive board" : "Αναίρεση αρχειοθέτησης πίνακα",
"Delete board" : "Διαγραφή πίνακα",
"Board details" : "Λεπτομέριες πίνακα",
"Link to a board" : "Σύνδεσμος στον πίνακα",
"Link to a card" : "Σύνδεσμος σε καρτέλα",
"Something went wrong" : "Κάτι πήγε στραβά",

View File

@@ -99,7 +99,6 @@
"Create new board" : "Δημιουργία νέου πίνακα",
"new board" : "νέος πίνακας",
"Select the board to link to a project" : "Επιλέξτε πίνακα και συνδέστε τον σε έργο",
"Search by board title" : "Αναζήτηση με το όνομα πίνακα",
"Select board" : "Επιλογή πίνακα",
"Select the card to link to a project" : "Επιλογή καρτέλας για σύνδεση στο έργο",
"Select a board" : "Επιλογή ενός πίνακα",
@@ -121,11 +120,10 @@
"Filter by assigned user" : "Φίλτρο ανά χρήστη",
"Filter by due date" : "Φίλτρο ανά ημερομηνία λήξης",
"Overdue" : "Εκπρόθεσμος",
"Next 24 hours" : "Επόμενες 24 ώρες",
"Today" : "Σήμερα",
"Next 7 days" : "Επόμενες 7 ημέρες",
"Next 30 days" : "Επόμενες 30 ημέρες",
"No due date" : "Χωρίς ημερομηνία λήξης",
"Clear filter" : "Εκκαθάριση φίλτρου",
"Show archived cards" : "Εμφάνιση καρτελών που αρχειοθετήθηκαν",
"Toggle compact mode" : "Εναλλαγή λειτουργίας μικρού μεγέθους",
"Details" : "Λεπτομέρειες",
@@ -153,11 +151,6 @@
"Edit" : "Επεξεργασία",
"Add a new tag" : "Προσθήκη νέας ετικέτας",
"title and color value must be provided" : "ο τίτλος και η τιμή χρώματος πρέπει να παρέχονται",
"Title" : "Τίτλος",
"Members" : "Μέλη",
"Add this attachment" : "Προσθήκη αυτού του συνημμένου",
"Delete Attachment" : "Διαγραφή Συνημμένου",
"Restore Attachment" : "Επαναφορά Συνημμένου",
"Assign a tag to this card…" : "Ορίστε μια ετικέτα σε αυτήν την καρτέλα...",
"Assign to users" : "Αναθέστε στους χρήστες",
"Assign to users/groups/circles" : "Ανάθεση σε χρήστες/ομάδες/κύκλους",
@@ -169,15 +162,13 @@
"(Unsaved)" : "(Δεν αποθηκεύτηκε)",
"(Saving…)" : "(Αποθήκευση...)",
"Formatting help" : "Βοήθεια μορφοποίησης",
"Add Attachment" : "Προσθήκη συνημμένου",
"Edit description" : "Επεξεργασία περιγραφής",
"View description" : "Εμφάνιση περιγραφής",
"Attachments" : "Συνημμένα",
"Comments" : "Σχόλια",
"Choose attachment" : "Επιλογή συνημμένου",
"Modified" : "Τροποποιήθηκε",
"Created" : "Δημιουργήθηκε",
"Upload attachment" : "Μεταφόρτωση συνημμένων",
"Delete Attachment" : "Διαγραφή Συνημμένου",
"Restore Attachment" : "Επαναφορά Συνημμένου",
"No comments yet. Begin the discussion!" : "Χωρίς σχόλια ακόμη. Ξεκινήστε την συζήτηση!",
"Save" : "Αποθήκευση",
"The comment cannot be empty." : "Το σχόλιο δεν μπορεί να είναι κενό.",
@@ -187,32 +178,25 @@
"Update" : "Ενημέρωση",
"(group)" : "(ομάδα)",
"(circle)" : "(κύκλος)",
"seconds ago" : " δευτερόλεπτα πριν ",
"Assign to me" : "Ανάθεση σε εμένα",
"Unarchive card" : "Αναίρεση αρχειοθέτησης κάρτας",
"Archive card" : "Αρχειοθέτηση κάρτας",
"Delete card" : "Διαγραφή κάρτας",
"Move card" : "Μετακίνηση κάρτας",
"Card details" : "Λεπτομέρειες καρτέλας",
"Move card to another board" : "Μετακίνηση καρτέλας σε άλλο πίνακα",
"Select a stack" : "Επιλέξτε στοίβα",
"seconds ago" : " δευτερόλεπτα πριν ",
"All boards" : "Όλοι οι πίνακες",
"Archived boards" : "Αρχειοθέτηση πινάκων ",
"Shared with you" : "Διαμοιρασμένα μαζί σας",
"Limit deck usage of groups" : "Περιορίστε τη χρήση της εφαρμογής σε ομάδες",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Ο περιορισμός του Deck θα εμποδίσει τους χρήστες που δεν είναι μέρος αυτών των ομάδων να δημιουργούν δικούς τους πίνακες. Οι χρήστες θα εξακολουθήσουν να εργάζονται σε πίνακες που έχουν διαμοιραστεί μαζί τους.",
"Shared boards" : "Διαμοιρασμένοι πίνακες",
"Settings" : "Ρυθμίσεις",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Ο περιορισμός του Deck θα εμποδίσει τους χρήστες που δεν είναι μέρος αυτών των ομάδων να δημιουργούν δικούς τους πίνακες. Οι χρήστες θα εξακολουθήσουν να εργάζονται σε πίνακες που έχουν διαμοιραστεί μαζί τους.",
"New board title" : "Νέος τίτλος πίνακα",
"Edit board" : "Επεξεργασία πίνακα",
"Clone board " : "Κλωνοποίηση πίνακα",
"Unarchive board " : "Αναίρεση αρχειοθέτησης πίνακα",
"Archive board " : "Αρχειοθέτηση πίνακα",
"Delete board " : "Διαγραφή πίνακα",
"Board details" : "Λεπτομέριες πίνακα",
"Board {0} deleted" : "Διαγράφηκε {0} πίνακας",
"An error occurred" : "Παρουσιάστηκε σφάλμα",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Είστε βέβαιοι ότι θέλετε να διαγράψετε τον πίνακα {title}; Θα διαγραφούν όλα τα δεδομένα.",
"Delete the board?" : "Διαγραφή πίνακα;",
"Clone board" : "Κλωνοποίηση πίνακα",
"Archive board" : "Αρχειοθέτηση πίνακα",
"Unarchive board" : "Αναίρεση αρχειοθέτησης πίνακα",
"Delete board" : "Διαγραφή πίνακα",
"Board details" : "Λεπτομέριες πίνακα",
"Link to a board" : "Σύνδεσμος στον πίνακα",
"Link to a card" : "Σύνδεσμος σε καρτέλα",
"Something went wrong" : "Κάτι πήγε στραβά",

View File

@@ -24,6 +24,7 @@ OC.L10N.register(
"File already exists" : "File already exists",
"Do you want to overwrite it?" : "Do you want to overwrite it?",
"Filter by tag" : "Filter by tag",
"Today" : "Today",
"Show archived cards" : "Show archived cards",
"Details" : "Details",
"Sharing" : "Sharing",
@@ -35,8 +36,6 @@ OC.L10N.register(
"Add a new stack" : "Add a new stack",
"Add card" : "Add card",
"Edit" : "Edit",
"Title" : "Title",
"Members" : "Members",
"Due date" : "Due date",
"Remove due date" : "Remove due date",
"Description" : "Description",
@@ -50,14 +49,16 @@ OC.L10N.register(
"Reply" : "Reply",
"Update" : "Update",
"(group)" : "(group)",
"seconds ago" : "seconds ago",
"Archive card" : "Archive card",
"Delete card" : "Delete card",
"seconds ago" : "seconds ago",
"Archived boards" : "Archived boards",
"Shared with you" : "Shared with you",
"Shared boards" : "Shared boards",
"Settings" : "Settings",
"New board title" : "New board title",
"Edit board" : "Edit board",
"Archive board" : "Archive board",
"Unarchive board" : "Unarchive board",
"Delete board" : "Delete board",
"Board details" : "Board details"
},
"nplurals=2; plural=(n != 1);");

View File

@@ -22,6 +22,7 @@
"File already exists" : "File already exists",
"Do you want to overwrite it?" : "Do you want to overwrite it?",
"Filter by tag" : "Filter by tag",
"Today" : "Today",
"Show archived cards" : "Show archived cards",
"Details" : "Details",
"Sharing" : "Sharing",
@@ -33,8 +34,6 @@
"Add a new stack" : "Add a new stack",
"Add card" : "Add card",
"Edit" : "Edit",
"Title" : "Title",
"Members" : "Members",
"Due date" : "Due date",
"Remove due date" : "Remove due date",
"Description" : "Description",
@@ -48,14 +47,16 @@
"Reply" : "Reply",
"Update" : "Update",
"(group)" : "(group)",
"seconds ago" : "seconds ago",
"Archive card" : "Archive card",
"Delete card" : "Delete card",
"seconds ago" : "seconds ago",
"Archived boards" : "Archived boards",
"Shared with you" : "Shared with you",
"Shared boards" : "Shared boards",
"Settings" : "Settings",
"New board title" : "New board title",
"Edit board" : "Edit board",
"Archive board" : "Archive board",
"Unarchive board" : "Unarchive board",
"Delete board" : "Delete board",
"Board details" : "Board details"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@@ -102,7 +102,7 @@ OC.L10N.register(
"Select board" : "Elekti tabulon",
"Cancel" : "Nuligi",
"File already exists" : "La dosiero jam ekzistas",
"Archived cards" : "Arĥivigitaj kartoj",
"Today" : "Hodiaŭ",
"Show archived cards" : "Montri arĥivigitajn kartojn",
"Toggle compact mode" : "Baskuligi densigan vidon",
"Details" : "Detaloj",
@@ -119,8 +119,6 @@ OC.L10N.register(
"Add a new stack" : "Aldoni novan stakon",
"Add card" : "Aldoni karton",
"Edit" : "Redakti",
"Title" : "Titolo",
"Members" : "Membroj",
"Due date" : "Limdato",
"Remove due date" : "Viŝi limdaton",
"Description" : "Priskribo",
@@ -134,17 +132,18 @@ OC.L10N.register(
"Reply" : "Respondi",
"Update" : "Ĝisdatigi",
"(group)" : "(grupo)",
"seconds ago" : "antaŭ kelkaj sekundoj",
"Unarchive card" : "Malarĥivigi karton",
"Archive card" : "Arĥivigi karton",
"Delete card" : "Forigi karton",
"seconds ago" : "antaŭ kelkaj sekundoj",
"Archived boards" : "Arĥivigitaj tabuloj",
"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.",
"Shared boards" : "Kunhavigitaj tabuloj",
"Settings" : "Agordo",
"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.",
"New board title" : "Nova tabultitolo",
"Edit board" : "Modifi tabulon",
"An error occurred" : "Eraro okazis",
"Archive board" : "Enarĥivigi tabulon",
"Unarchive board" : "Elarĥivigi tabulon",
"Delete board" : "Forigi tabulon",
"Link to a board" : "Ligilo al tabulo",
"Maximum file size of {size} exceeded" : "Maksimuma dosiergrando {size} transpasita"
},

View File

@@ -100,7 +100,7 @@
"Select board" : "Elekti tabulon",
"Cancel" : "Nuligi",
"File already exists" : "La dosiero jam ekzistas",
"Archived cards" : "Arĥivigitaj kartoj",
"Today" : "Hodiaŭ",
"Show archived cards" : "Montri arĥivigitajn kartojn",
"Toggle compact mode" : "Baskuligi densigan vidon",
"Details" : "Detaloj",
@@ -117,8 +117,6 @@
"Add a new stack" : "Aldoni novan stakon",
"Add card" : "Aldoni karton",
"Edit" : "Redakti",
"Title" : "Titolo",
"Members" : "Membroj",
"Due date" : "Limdato",
"Remove due date" : "Viŝi limdaton",
"Description" : "Priskribo",
@@ -132,17 +130,18 @@
"Reply" : "Respondi",
"Update" : "Ĝisdatigi",
"(group)" : "(grupo)",
"seconds ago" : "antaŭ kelkaj sekundoj",
"Unarchive card" : "Malarĥivigi karton",
"Archive card" : "Arĥivigi karton",
"Delete card" : "Forigi karton",
"seconds ago" : "antaŭ kelkaj sekundoj",
"Archived boards" : "Arĥivigitaj tabuloj",
"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.",
"Shared boards" : "Kunhavigitaj tabuloj",
"Settings" : "Agordo",
"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.",
"New board title" : "Nova tabultitolo",
"Edit board" : "Modifi tabulon",
"An error occurred" : "Eraro okazis",
"Archive board" : "Enarĥivigi tabulon",
"Unarchive board" : "Elarĥivigi tabulon",
"Delete board" : "Forigi tabulon",
"Link to a board" : "Ligilo al tabulo",
"Maximum file size of {size} exceeded" : "Maksimuma dosiergrando {size} transpasita"
},"pluralForm" :"nplurals=2; plural=(n != 1);"

View File

@@ -101,7 +101,6 @@ OC.L10N.register(
"Create new board" : "Crear nuevo tablero",
"new board" : "nuevo tablero",
"Select the board to link to a project" : "Selecciona el tablero que enlazar a un proyecto",
"Search by board title" : "Buscar por título de tablero",
"Select board" : "Selecciona tablero",
"Select the card to link to a project" : "Selecciona la tarjeta que enlazar a un proyecto",
"Select a board" : "Selecciona un tablero",
@@ -123,11 +122,10 @@ OC.L10N.register(
"Filter by assigned user" : "Filtrar por usuario asignado",
"Filter by due date" : "Filtrar por fecha de finalización",
"Overdue" : "Demorado",
"Next 24 hours" : "Próximas 24 horas",
"Today" : "Hoy",
"Next 7 days" : "Siguientes 7 días",
"Next 30 days" : "Siguientes 30 días",
"No due date" : "Sin fecha de vencimiento",
"Clear filter" : "Borrar filtro",
"Show archived cards" : "Mostrar tarjetas archivadas",
"Toggle compact mode" : "Mostrar/ocultar modo compacto",
"Details" : "Detalles",
@@ -155,11 +153,6 @@ OC.L10N.register(
"Edit" : "Editar",
"Add a new tag" : "Añade una nueva etiqueta",
"title and color value must be provided" : "Se debe indicar un valor para título y color ",
"Title" : "Título",
"Members" : "Miembros",
"Add this attachment" : "Añadir este adjunto",
"Delete Attachment" : "Borrar adjunto",
"Restore Attachment" : "Restaurar Adjunto",
"Assign a tag to this card…" : "Asignar una etiqueta a esta tarjeta...",
"Assign to users" : "Asignar a usuarios",
"Assign to users/groups/circles" : "Asignar a usuarios/grupos/círculos",
@@ -171,15 +164,13 @@ OC.L10N.register(
"(Unsaved)" : "(Sin salvar)",
"(Saving…)" : "(Guardando...)",
"Formatting help" : "Ayuda de formato",
"Add Attachment" : "Añadir adjunto",
"Edit description" : "Editar descripción",
"View description" : "Ver descripción",
"Attachments" : "Adjuntos",
"Comments" : "Comentarios",
"Choose attachment" : "Escoger adjunto",
"Modified" : "Modificado",
"Created" : "Creado",
"Upload attachment" : "Subir adjunto",
"Delete Attachment" : "Eliminar adjunto",
"Restore Attachment" : "Restaurar Adjunto",
"No comments yet. Begin the discussion!" : "Todavía no hay comentarios. ¡Comienza la discusión!",
"Save" : "Guardar",
"The comment cannot be empty." : "El comentario no puede estar vacío.",
@@ -189,32 +180,25 @@ OC.L10N.register(
"Update" : "Actualizar",
"(group)" : "(grupo)",
"(circle)" : "(circle)",
"seconds ago" : "hace unos segundos",
"Assign to me" : "Asignarme a mí",
"Unarchive card" : "Desarchivar tarjeta",
"Archive card" : "Archivar tarjeta",
"Delete card" : "Eliminar tarjeta",
"Move card" : "Mover tarjeta",
"Card details" : "Detalles de la tarjeta",
"Move card to another board" : "Mover la tarjeta a otro tablero",
"Select a stack" : "Seleccionar una pila",
"seconds ago" : "hace unos segundos",
"All boards" : "Todos los tableros",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido contigo",
"Limit deck usage of groups" : "Limitar el uso de Deck a grupos",
"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." : "Limitar Deck impedirá que usuarios que no formen parte de esos grupos creen sus propios tableros. Los usuarios todavía podrán trabajar en tableros que hayan sido compartidos con ellos.",
"Shared boards" : "Tableros compartidos",
"Settings" : "Ajustes",
"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." : "Limitar Deck impedirá que usuarios que no formen parte de esos grupos creen sus propios tableros. Los usuarios todavía podrán trabajar en tableros que hayan sido compartidos con ellos.",
"New board title" : "Nuevo título de tablero",
"Edit board" : "Editar tablero",
"Clone board " : "Clonar tablero",
"Unarchive board " : "Desarchivar tablero",
"Archive board " : "Archivar tablero",
"Delete board " : "Eliminar tablero",
"Board details" : "Detalles del tablero",
"Board {0} deleted" : "Tablero {0} eliminado",
"An error occurred" : "Ocurrió un error",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "¿Estas seguro de que quieres eliminar el tablero {title}? Esto eliminará todos los datos del tablero.",
"Delete the board?" : "¿Borrar el tablero?",
"Clone board" : "Clonar tablero",
"Archive board" : "Archivar tablero",
"Unarchive board" : "Desarchivar tablero",
"Delete board" : "Eliminar tablero",
"Board details" : "Detalles del tablero",
"Link to a board" : "Enlace a un tablero",
"Link to a card" : "Enlace a una tarjeta",
"Something went wrong" : "Algo ha ido mal",

View File

@@ -99,7 +99,6 @@
"Create new board" : "Crear nuevo tablero",
"new board" : "nuevo tablero",
"Select the board to link to a project" : "Selecciona el tablero que enlazar a un proyecto",
"Search by board title" : "Buscar por título de tablero",
"Select board" : "Selecciona tablero",
"Select the card to link to a project" : "Selecciona la tarjeta que enlazar a un proyecto",
"Select a board" : "Selecciona un tablero",
@@ -121,11 +120,10 @@
"Filter by assigned user" : "Filtrar por usuario asignado",
"Filter by due date" : "Filtrar por fecha de finalización",
"Overdue" : "Demorado",
"Next 24 hours" : "Próximas 24 horas",
"Today" : "Hoy",
"Next 7 days" : "Siguientes 7 días",
"Next 30 days" : "Siguientes 30 días",
"No due date" : "Sin fecha de vencimiento",
"Clear filter" : "Borrar filtro",
"Show archived cards" : "Mostrar tarjetas archivadas",
"Toggle compact mode" : "Mostrar/ocultar modo compacto",
"Details" : "Detalles",
@@ -153,11 +151,6 @@
"Edit" : "Editar",
"Add a new tag" : "Añade una nueva etiqueta",
"title and color value must be provided" : "Se debe indicar un valor para título y color ",
"Title" : "Título",
"Members" : "Miembros",
"Add this attachment" : "Añadir este adjunto",
"Delete Attachment" : "Borrar adjunto",
"Restore Attachment" : "Restaurar Adjunto",
"Assign a tag to this card…" : "Asignar una etiqueta a esta tarjeta...",
"Assign to users" : "Asignar a usuarios",
"Assign to users/groups/circles" : "Asignar a usuarios/grupos/círculos",
@@ -169,15 +162,13 @@
"(Unsaved)" : "(Sin salvar)",
"(Saving…)" : "(Guardando...)",
"Formatting help" : "Ayuda de formato",
"Add Attachment" : "Añadir adjunto",
"Edit description" : "Editar descripción",
"View description" : "Ver descripción",
"Attachments" : "Adjuntos",
"Comments" : "Comentarios",
"Choose attachment" : "Escoger adjunto",
"Modified" : "Modificado",
"Created" : "Creado",
"Upload attachment" : "Subir adjunto",
"Delete Attachment" : "Eliminar adjunto",
"Restore Attachment" : "Restaurar Adjunto",
"No comments yet. Begin the discussion!" : "Todavía no hay comentarios. ¡Comienza la discusión!",
"Save" : "Guardar",
"The comment cannot be empty." : "El comentario no puede estar vacío.",
@@ -187,32 +178,25 @@
"Update" : "Actualizar",
"(group)" : "(grupo)",
"(circle)" : "(circle)",
"seconds ago" : "hace unos segundos",
"Assign to me" : "Asignarme a mí",
"Unarchive card" : "Desarchivar tarjeta",
"Archive card" : "Archivar tarjeta",
"Delete card" : "Eliminar tarjeta",
"Move card" : "Mover tarjeta",
"Card details" : "Detalles de la tarjeta",
"Move card to another board" : "Mover la tarjeta a otro tablero",
"Select a stack" : "Seleccionar una pila",
"seconds ago" : "hace unos segundos",
"All boards" : "Todos los tableros",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido contigo",
"Limit deck usage of groups" : "Limitar el uso de Deck a grupos",
"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." : "Limitar Deck impedirá que usuarios que no formen parte de esos grupos creen sus propios tableros. Los usuarios todavía podrán trabajar en tableros que hayan sido compartidos con ellos.",
"Shared boards" : "Tableros compartidos",
"Settings" : "Ajustes",
"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." : "Limitar Deck impedirá que usuarios que no formen parte de esos grupos creen sus propios tableros. Los usuarios todavía podrán trabajar en tableros que hayan sido compartidos con ellos.",
"New board title" : "Nuevo título de tablero",
"Edit board" : "Editar tablero",
"Clone board " : "Clonar tablero",
"Unarchive board " : "Desarchivar tablero",
"Archive board " : "Archivar tablero",
"Delete board " : "Eliminar tablero",
"Board details" : "Detalles del tablero",
"Board {0} deleted" : "Tablero {0} eliminado",
"An error occurred" : "Ocurrió un error",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "¿Estas seguro de que quieres eliminar el tablero {title}? Esto eliminará todos los datos del tablero.",
"Delete the board?" : "¿Borrar el tablero?",
"Clone board" : "Clonar tablero",
"Archive board" : "Archivar tablero",
"Unarchive board" : "Desarchivar tablero",
"Delete board" : "Eliminar tablero",
"Board details" : "Detalles del tablero",
"Link to a board" : "Enlace a un tablero",
"Link to a card" : "Enlace a una tarjeta",
"Something went wrong" : "Algo ha ido mal",

View File

@@ -20,6 +20,7 @@ OC.L10N.register(
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Filter by tag" : "Filtrar por etiqueta",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles",
"Sharing" : "Compartiendo",
@@ -31,8 +32,6 @@ OC.L10N.register(
"Add a new stack" : "Agregar una nueva pila",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción",
@@ -47,10 +46,13 @@ OC.L10N.register(
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ",
"New board title" : "Nuevo título del tablero",
"Edit board" : "Editar el tablero",
"Archive board" : "Archivar tablero",
"Unarchive board" : "Desarchivar tablero",
"Delete board" : "Borrar tableros",
"Board details" : "Detalles del tablero"
},
"nplurals=2; plural=(n != 1);");

View File

@@ -18,6 +18,7 @@
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Filter by tag" : "Filtrar por etiqueta",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles",
"Sharing" : "Compartiendo",
@@ -29,8 +30,6 @@
"Add a new stack" : "Agregar una nueva pila",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción",
@@ -45,10 +44,13 @@
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ",
"New board title" : "Nuevo título del tablero",
"Edit board" : "Editar el tablero",
"Archive board" : "Archivar tablero",
"Unarchive board" : "Desarchivar tablero",
"Delete board" : "Borrar tableros",
"Board details" : "Detalles del tablero"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@@ -14,6 +14,7 @@ OC.L10N.register(
"Missing a temporary folder" : "Falta un directorio temporal",
"Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles",
"Sharing" : "Compartiendo",
@@ -23,8 +24,6 @@ OC.L10N.register(
"Can share" : "Puede compartir",
"Delete" : "Eliminar",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Due date" : "Fecha de vencimiento",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
@@ -37,10 +36,9 @@ OC.L10N.register(
"Update" : "Actualizar",
"(group)" : "(grupo)",
"seconds ago" : "segundos",
"Shared with you" : "Compartido con usted",
"Settings" : "Ajustes",
"New board title" : "Nuevo título de tablero",
"Board details" : "Detalles del tablero",
"An error occurred" : "Ocurrió un error"
"An error occurred" : "Ocurrió un error",
"Board details" : "Detalles del tablero"
},
"nplurals=2; plural=(n != 1);");

View File

@@ -12,6 +12,7 @@
"Missing a temporary folder" : "Falta un directorio temporal",
"Create new board" : "Crear un nuevo tablero",
"Cancel" : "Cancelar",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles",
"Sharing" : "Compartiendo",
@@ -21,8 +22,6 @@
"Can share" : "Puede compartir",
"Delete" : "Eliminar",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Due date" : "Fecha de vencimiento",
"Description" : "Descripción",
"Formatting help" : "Ayuda de formato",
@@ -35,10 +34,9 @@
"Update" : "Actualizar",
"(group)" : "(grupo)",
"seconds ago" : "segundos",
"Shared with you" : "Compartido con usted",
"Settings" : "Ajustes",
"New board title" : "Nuevo título de tablero",
"Board details" : "Detalles del tablero",
"An error occurred" : "Ocurrió un error"
"An error occurred" : "Ocurrió un error",
"Board details" : "Detalles del tablero"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@@ -23,6 +23,7 @@ OC.L10N.register(
"Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles",
"Sharing" : "Compartiendo",
@@ -34,8 +35,6 @@ OC.L10N.register(
"Add a new stack" : "Agregar una nueva pila",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción",
@@ -50,10 +49,13 @@ OC.L10N.register(
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ",
"New board title" : "Nuevo título del tablero",
"Edit board" : "Editar el tablero",
"Archive board" : "Archivar tablero",
"Unarchive board" : "Desarchivar tablero",
"Delete board" : "Borrar tableros",
"Board details" : "Detalles del tablero"
},
"nplurals=2; plural=(n != 1);");

View File

@@ -21,6 +21,7 @@
"Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles",
"Sharing" : "Compartiendo",
@@ -32,8 +33,6 @@
"Add a new stack" : "Agregar una nueva pila",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción",
@@ -48,10 +47,13 @@
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ",
"New board title" : "Nuevo título del tablero",
"Edit board" : "Editar el tablero",
"Archive board" : "Archivar tablero",
"Unarchive board" : "Desarchivar tablero",
"Delete board" : "Borrar tableros",
"Board details" : "Detalles del tablero"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@@ -10,7 +10,6 @@ OC.L10N.register(
"To review" : "Para revisar",
"Action needed" : "Acción requerida",
"Later" : "Después",
"copy" : "Copiar",
"Done" : "Terminado",
"The file was uploaded" : "El archivo fue cargado",
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El archivo cargado excede el valor establecido en la directiva upload_max_filesize en el archivo php.ini",
@@ -24,6 +23,7 @@ OC.L10N.register(
"Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles",
"Sharing" : "Compartiendo",
@@ -35,8 +35,6 @@ OC.L10N.register(
"Add a new stack" : "Agregar una nueva pila",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción",
@@ -51,10 +49,13 @@ OC.L10N.register(
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ",
"New board title" : "Nuevo título del tablero",
"Edit board" : "Editar el tablero",
"Archive board" : "Archivar tablero",
"Unarchive board" : "Desarchivar tablero",
"Delete board" : "Borrar tableros",
"Board details" : "Detalles del tablero"
},
"nplurals=2; plural=(n != 1);");

View File

@@ -8,7 +8,6 @@
"To review" : "Para revisar",
"Action needed" : "Acción requerida",
"Later" : "Después",
"copy" : "Copiar",
"Done" : "Terminado",
"The file was uploaded" : "El archivo fue cargado",
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El archivo cargado excede el valor establecido en la directiva upload_max_filesize en el archivo php.ini",
@@ -22,6 +21,7 @@
"Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles",
"Sharing" : "Compartiendo",
@@ -33,8 +33,6 @@
"Add a new stack" : "Agregar una nueva pila",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción",
@@ -49,10 +47,13 @@
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ",
"New board title" : "Nuevo título del tablero",
"Edit board" : "Editar el tablero",
"Archive board" : "Archivar tablero",
"Unarchive board" : "Desarchivar tablero",
"Delete board" : "Borrar tableros",
"Board details" : "Detalles del tablero"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@@ -23,6 +23,7 @@ OC.L10N.register(
"Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles",
"Sharing" : "Compartiendo",
@@ -34,8 +35,6 @@ OC.L10N.register(
"Add a new stack" : "Agregar una nueva pila",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción",
@@ -50,10 +49,13 @@ OC.L10N.register(
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ",
"New board title" : "Nuevo título del tablero",
"Edit board" : "Editar el tablero",
"Archive board" : "Archivar tablero",
"Unarchive board" : "Desarchivar tablero",
"Delete board" : "Borrar tableros",
"Board details" : "Detalles del tablero"
},
"nplurals=2; plural=(n != 1);");

View File

@@ -21,6 +21,7 @@
"Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles",
"Sharing" : "Compartiendo",
@@ -32,8 +33,6 @@
"Add a new stack" : "Agregar una nueva pila",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción",
@@ -48,10 +47,13 @@
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ",
"New board title" : "Nuevo título del tablero",
"Edit board" : "Editar el tablero",
"Archive board" : "Archivar tablero",
"Unarchive board" : "Desarchivar tablero",
"Delete board" : "Borrar tableros",
"Board details" : "Detalles del tablero"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@@ -23,6 +23,7 @@ OC.L10N.register(
"Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles",
"Sharing" : "Compartiendo",
@@ -34,8 +35,6 @@ OC.L10N.register(
"Add a new stack" : "Agregar una nueva pila",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción",
@@ -50,10 +49,13 @@ OC.L10N.register(
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ",
"New board title" : "Nuevo título del tablero",
"Edit board" : "Editar el tablero",
"Archive board" : "Archivar tablero",
"Unarchive board" : "Desarchivar tablero",
"Delete board" : "Borrar tableros",
"Board details" : "Detalles del tablero"
},
"nplurals=2; plural=(n != 1);");

View File

@@ -21,6 +21,7 @@
"Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles",
"Sharing" : "Compartiendo",
@@ -32,8 +33,6 @@
"Add a new stack" : "Agregar una nueva pila",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción",
@@ -48,10 +47,13 @@
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ",
"New board title" : "Nuevo título del tablero",
"Edit board" : "Editar el tablero",
"Archive board" : "Archivar tablero",
"Unarchive board" : "Desarchivar tablero",
"Delete board" : "Borrar tableros",
"Board details" : "Detalles del tablero"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@@ -23,6 +23,7 @@ OC.L10N.register(
"Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles",
"Sharing" : "Compartiendo",
@@ -34,8 +35,6 @@ OC.L10N.register(
"Add a new stack" : "Agregar una nueva pila",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción",
@@ -50,10 +49,13 @@ OC.L10N.register(
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ",
"New board title" : "Nuevo título del tablero",
"Edit board" : "Editar el tablero",
"Archive board" : "Archivar tablero",
"Unarchive board" : "Desarchivar tablero",
"Delete board" : "Borrar tableros",
"Board details" : "Detalles del tablero"
},
"nplurals=2; plural=(n != 1);");

View File

@@ -21,6 +21,7 @@
"Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles",
"Sharing" : "Compartiendo",
@@ -32,8 +33,6 @@
"Add a new stack" : "Agregar una nueva pila",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción",
@@ -48,10 +47,13 @@
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ",
"New board title" : "Nuevo título del tablero",
"Edit board" : "Editar el tablero",
"Archive board" : "Archivar tablero",
"Unarchive board" : "Desarchivar tablero",
"Delete board" : "Borrar tableros",
"Board details" : "Detalles del tablero"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@@ -23,6 +23,7 @@ OC.L10N.register(
"Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles",
"Sharing" : "Compartiendo",
@@ -34,8 +35,6 @@ OC.L10N.register(
"Add a new stack" : "Agregar una nueva pila",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción",
@@ -50,10 +49,13 @@ OC.L10N.register(
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ",
"New board title" : "Nuevo título del tablero",
"Edit board" : "Editar el tablero",
"Archive board" : "Archivar tablero",
"Unarchive board" : "Desarchivar tablero",
"Delete board" : "Borrar tableros",
"Board details" : "Detalles del tablero"
},
"nplurals=2; plural=(n != 1);");

View File

@@ -21,6 +21,7 @@
"Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles",
"Sharing" : "Compartiendo",
@@ -32,8 +33,6 @@
"Add a new stack" : "Agregar una nueva pila",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción",
@@ -48,10 +47,13 @@
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ",
"New board title" : "Nuevo título del tablero",
"Edit board" : "Editar el tablero",
"Archive board" : "Archivar tablero",
"Unarchive board" : "Desarchivar tablero",
"Delete board" : "Borrar tableros",
"Board details" : "Detalles del tablero"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@@ -19,6 +19,7 @@ OC.L10N.register(
"Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles",
"Sharing" : "Compartiendo",
@@ -30,8 +31,6 @@ OC.L10N.register(
"Add a new stack" : "Agregar una nueva pila",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción",
@@ -46,10 +45,13 @@ OC.L10N.register(
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ",
"New board title" : "Nuevo título del tablero",
"Edit board" : "Editar el tablero",
"Archive board" : "Archivar tablero",
"Unarchive board" : "Desarchivar tablero",
"Delete board" : "Borrar tableros",
"Board details" : "Detalles del tablero"
},
"nplurals=2; plural=(n != 1);");

View File

@@ -17,6 +17,7 @@
"Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles",
"Sharing" : "Compartiendo",
@@ -28,8 +29,6 @@
"Add a new stack" : "Agregar una nueva pila",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción",
@@ -44,10 +43,13 @@
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ",
"New board title" : "Nuevo título del tablero",
"Edit board" : "Editar el tablero",
"Archive board" : "Archivar tablero",
"Unarchive board" : "Desarchivar tablero",
"Delete board" : "Borrar tableros",
"Board details" : "Detalles del tablero"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@@ -24,6 +24,7 @@ OC.L10N.register(
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Filter by tag" : "Filtrar por etiqueta",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles",
"Sharing" : "Compartiendo",
@@ -35,8 +36,6 @@ OC.L10N.register(
"Add a new stack" : "Agregar una nueva pila",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción",
@@ -52,11 +51,14 @@ OC.L10N.register(
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ",
"New board title" : "Nuevo título del tablero",
"Edit board" : "Editar el tablero",
"Board details" : "Detalles del tablero",
"An error occurred" : "Ha ocurrido un error"
"An error occurred" : "Ha ocurrido un error",
"Archive board" : "Archivar tablero",
"Unarchive board" : "Desarchivar tablero",
"Delete board" : "Borrar tableros",
"Board details" : "Detalles del tablero"
},
"nplurals=2; plural=(n != 1);");

View File

@@ -22,6 +22,7 @@
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Filter by tag" : "Filtrar por etiqueta",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles",
"Sharing" : "Compartiendo",
@@ -33,8 +34,6 @@
"Add a new stack" : "Agregar una nueva pila",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción",
@@ -50,11 +49,14 @@
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ",
"New board title" : "Nuevo título del tablero",
"Edit board" : "Editar el tablero",
"Board details" : "Detalles del tablero",
"An error occurred" : "Ha ocurrido un error"
"An error occurred" : "Ha ocurrido un error",
"Archive board" : "Archivar tablero",
"Unarchive board" : "Desarchivar tablero",
"Delete board" : "Borrar tableros",
"Board details" : "Detalles del tablero"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@@ -19,6 +19,7 @@ OC.L10N.register(
"Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles",
"Sharing" : "Compartiendo",
@@ -30,8 +31,6 @@ OC.L10N.register(
"Add a new stack" : "Agregar una nueva pila",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción",
@@ -46,10 +45,13 @@ OC.L10N.register(
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ",
"New board title" : "Nuevo título del tablero",
"Edit board" : "Editar el tablero",
"Archive board" : "Archivar tablero",
"Unarchive board" : "Desarchivar tablero",
"Delete board" : "Borrar tableros",
"Board details" : "Detalles del tablero"
},
"nplurals=2; plural=(n != 1);");

View File

@@ -17,6 +17,7 @@
"Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles",
"Sharing" : "Compartiendo",
@@ -28,8 +29,6 @@
"Add a new stack" : "Agregar una nueva pila",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción",
@@ -44,10 +43,13 @@
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ",
"New board title" : "Nuevo título del tablero",
"Edit board" : "Editar el tablero",
"Archive board" : "Archivar tablero",
"Unarchive board" : "Desarchivar tablero",
"Delete board" : "Borrar tableros",
"Board details" : "Detalles del tablero"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@@ -19,6 +19,7 @@ OC.L10N.register(
"Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles",
"Sharing" : "Compartiendo",
@@ -30,8 +31,6 @@ OC.L10N.register(
"Add a new stack" : "Agregar una nueva pila",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción",
@@ -46,10 +45,13 @@ OC.L10N.register(
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ",
"New board title" : "Nuevo título del tablero",
"Edit board" : "Editar el tablero",
"Archive board" : "Archivar tablero",
"Unarchive board" : "Desarchivar tablero",
"Delete board" : "Borrar tableros",
"Board details" : "Detalles del tablero"
},
"nplurals=2; plural=(n != 1);");

View File

@@ -17,6 +17,7 @@
"Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles",
"Sharing" : "Compartiendo",
@@ -28,8 +29,6 @@
"Add a new stack" : "Agregar una nueva pila",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción",
@@ -44,10 +43,13 @@
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ",
"New board title" : "Nuevo título del tablero",
"Edit board" : "Editar el tablero",
"Archive board" : "Archivar tablero",
"Unarchive board" : "Desarchivar tablero",
"Delete board" : "Borrar tableros",
"Board details" : "Detalles del tablero"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@@ -19,6 +19,7 @@ OC.L10N.register(
"Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles",
"Sharing" : "Compartiendo",
@@ -30,8 +31,6 @@ OC.L10N.register(
"Add a new stack" : "Agregar una nueva pila",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción",
@@ -46,10 +45,13 @@ OC.L10N.register(
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ",
"New board title" : "Nuevo título del tablero",
"Edit board" : "Editar el tablero",
"Archive board" : "Archivar tablero",
"Unarchive board" : "Desarchivar tablero",
"Delete board" : "Borrar tableros",
"Board details" : "Detalles del tablero"
},
"nplurals=2; plural=(n != 1);");

View File

@@ -17,6 +17,7 @@
"Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles",
"Sharing" : "Compartiendo",
@@ -28,8 +29,6 @@
"Add a new stack" : "Agregar una nueva pila",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción",
@@ -44,10 +43,13 @@
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ",
"New board title" : "Nuevo título del tablero",
"Edit board" : "Editar el tablero",
"Archive board" : "Archivar tablero",
"Unarchive board" : "Desarchivar tablero",
"Delete board" : "Borrar tableros",
"Board details" : "Detalles del tablero"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@@ -19,6 +19,7 @@ OC.L10N.register(
"Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles",
"Sharing" : "Compartiendo",
@@ -30,8 +31,6 @@ OC.L10N.register(
"Add a new stack" : "Agregar una nueva pila",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción",
@@ -46,10 +45,13 @@ OC.L10N.register(
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ",
"New board title" : "Nuevo título del tablero",
"Edit board" : "Editar el tablero",
"Archive board" : "Archivar tablero",
"Unarchive board" : "Desarchivar tablero",
"Delete board" : "Borrar tableros",
"Board details" : "Detalles del tablero"
},
"nplurals=2; plural=(n != 1);");

View File

@@ -17,6 +17,7 @@
"Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles",
"Sharing" : "Compartiendo",
@@ -28,8 +29,6 @@
"Add a new stack" : "Agregar una nueva pila",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción",
@@ -44,10 +43,13 @@
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ",
"New board title" : "Nuevo título del tablero",
"Edit board" : "Editar el tablero",
"Archive board" : "Archivar tablero",
"Unarchive board" : "Desarchivar tablero",
"Delete board" : "Borrar tableros",
"Board details" : "Detalles del tablero"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@@ -19,6 +19,7 @@ OC.L10N.register(
"Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles",
"Sharing" : "Compartiendo",
@@ -30,8 +31,6 @@ OC.L10N.register(
"Add a new stack" : "Agregar una nueva pila",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción",
@@ -46,10 +45,13 @@ OC.L10N.register(
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ",
"New board title" : "Nuevo título del tablero",
"Edit board" : "Editar el tablero",
"Archive board" : "Archivar tablero",
"Unarchive board" : "Desarchivar tablero",
"Delete board" : "Borrar tableros",
"Board details" : "Detalles del tablero"
},
"nplurals=2; plural=(n != 1);");

View File

@@ -17,6 +17,7 @@
"Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles",
"Sharing" : "Compartiendo",
@@ -28,8 +29,6 @@
"Add a new stack" : "Agregar una nueva pila",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción",
@@ -44,10 +43,13 @@
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ",
"New board title" : "Nuevo título del tablero",
"Edit board" : "Editar el tablero",
"Archive board" : "Archivar tablero",
"Unarchive board" : "Desarchivar tablero",
"Delete board" : "Borrar tableros",
"Board details" : "Detalles del tablero"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@@ -23,6 +23,7 @@ OC.L10N.register(
"Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles",
"Sharing" : "Compartiendo",
@@ -34,8 +35,6 @@ OC.L10N.register(
"Add a new stack" : "Agregar una nueva pila",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción",
@@ -50,10 +49,13 @@ OC.L10N.register(
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ",
"New board title" : "Nuevo título del tablero",
"Edit board" : "Editar el tablero",
"Archive board" : "Archivar tablero",
"Unarchive board" : "Desarchivar tablero",
"Delete board" : "Borrar tableros",
"Board details" : "Detalles del tablero"
},
"nplurals=2; plural=(n != 1);");

View File

@@ -21,6 +21,7 @@
"Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles",
"Sharing" : "Compartiendo",
@@ -32,8 +33,6 @@
"Add a new stack" : "Agregar una nueva pila",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción",
@@ -48,10 +47,13 @@
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ",
"New board title" : "Nuevo título del tablero",
"Edit board" : "Editar el tablero",
"Archive board" : "Archivar tablero",
"Unarchive board" : "Desarchivar tablero",
"Delete board" : "Borrar tableros",
"Board details" : "Detalles del tablero"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@@ -19,6 +19,7 @@ OC.L10N.register(
"Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles",
"Sharing" : "Compartiendo",
@@ -30,8 +31,6 @@ OC.L10N.register(
"Add a new stack" : "Agregar una nueva pila",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción",
@@ -46,10 +45,13 @@ OC.L10N.register(
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ",
"New board title" : "Nuevo título del tablero",
"Edit board" : "Editar el tablero",
"Archive board" : "Archivar tablero",
"Unarchive board" : "Desarchivar tablero",
"Delete board" : "Borrar tableros",
"Board details" : "Detalles del tablero"
},
"nplurals=2; plural=(n != 1);");

View File

@@ -17,6 +17,7 @@
"Cancel" : "Cancelar",
"File already exists" : "El archivo ya existe",
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
"Today" : "Hoy",
"Show archived cards" : "Mostrar tarjetas archivadas",
"Details" : "Detalles",
"Sharing" : "Compartiendo",
@@ -28,8 +29,6 @@
"Add a new stack" : "Agregar una nueva pila",
"Add card" : "Agregar tarjeta",
"Edit" : "Editar",
"Title" : "Título",
"Members" : "Miembros",
"Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración",
"Description" : "Descripción",
@@ -44,10 +43,13 @@
"(group)" : "(grupo)",
"seconds ago" : "hace segundos",
"Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido con usted",
"Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ",
"New board title" : "Nuevo título del tablero",
"Edit board" : "Editar el tablero",
"Archive board" : "Archivar tablero",
"Unarchive board" : "Desarchivar tablero",
"Delete board" : "Borrar tableros",
"Board details" : "Detalles del tablero"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View File

@@ -10,6 +10,7 @@ OC.L10N.register(
"No file was uploaded" : "Ühtegi faili ei latud üles",
"Missing a temporary folder" : "Ajutine kausta on puudu",
"Cancel" : "Loobu",
"Today" : "Täna",
"Details" : "Üksikasjad",
"Sharing" : "Jagamine",
"Tags" : "Sildid",
@@ -17,7 +18,6 @@ OC.L10N.register(
"Can share" : "Can share",
"Delete" : "Kustuta",
"Edit" : "Redigeeri",
"Title" : "Pealkiri",
"Due date" : "Tähtaeg",
"Description" : "Kirjeldus",
"Comments" : "Kommentaarid",
@@ -28,7 +28,6 @@ OC.L10N.register(
"Update" : "Uuenda",
"(group)" : "(grupp)",
"seconds ago" : "sekundit tagasi",
"Shared with you" : "Sinuga jagatud",
"Settings" : "Seaded",
"An error occurred" : "Tekkis tõrge"
},

View File

@@ -8,6 +8,7 @@
"No file was uploaded" : "Ühtegi faili ei latud üles",
"Missing a temporary folder" : "Ajutine kausta on puudu",
"Cancel" : "Loobu",
"Today" : "Täna",
"Details" : "Üksikasjad",
"Sharing" : "Jagamine",
"Tags" : "Sildid",
@@ -15,7 +16,6 @@
"Can share" : "Can share",
"Delete" : "Kustuta",
"Edit" : "Redigeeri",
"Title" : "Pealkiri",
"Due date" : "Tähtaeg",
"Description" : "Kirjeldus",
"Comments" : "Kommentaarid",
@@ -26,7 +26,6 @@
"Update" : "Uuenda",
"(group)" : "(grupp)",
"seconds ago" : "sekundit tagasi",
"Shared with you" : "Sinuga jagatud",
"Settings" : "Seaded",
"An error occurred" : "Tekkis tõrge"
},"pluralForm" :"nplurals=2; plural=(n != 1);"

View File

@@ -101,7 +101,6 @@ OC.L10N.register(
"Create new board" : "Sortu taula berri bat",
"new board" : "taula berria",
"Select the board to link to a project" : "Hautatu taula proiektu bati estekatzeko",
"Search by board title" : "Bilatu mahai izenez",
"Select board" : "Hautatu taula",
"Select the card to link to a project" : "Hautatu proiektu bati estekatzeko txartela",
"Select a board" : "Hautatu taula bat",
@@ -123,11 +122,10 @@ OC.L10N.register(
"Filter by assigned user" : "Iragazi esleitutako erabiltzailez",
"Filter by due date" : "Iragazi epe-mugaz",
"Overdue" : "Atzeratuta",
"Next 24 hours" : "Hurrengo 24 orduak",
"Today" : "Gaur",
"Next 7 days" : "Hurrengo 7 egunetan",
"Next 30 days" : "Hurrengo 30 egunetan",
"No due date" : "Epe-mugarik gabe",
"Clear filter" : "Garbitu iragazia",
"Show archived cards" : "Erakutsi artxibatutako txartelak",
"Toggle compact mode" : "Txandakatu modu trinkoa",
"Details" : "Xehetasunak",
@@ -155,11 +153,6 @@ OC.L10N.register(
"Edit" : "Editatu",
"Add a new tag" : "Gehitu etiketa berri bat",
"title and color value must be provided" : "izenburu eta kolore balioak hornitu behar dira",
"Title" : "Izenburua",
"Members" : "Partaideak",
"Add this attachment" : "Gehitu eranskin hau",
"Delete Attachment" : "Ezabatu eranskina",
"Restore Attachment" : "Berezarri eranskina",
"Assign a tag to this card…" : "Esleitu etiketa bat txartel honi...",
"Assign to users" : "Esleitu erabiltzaileei",
"Assign to users/groups/circles" : "Esleitu erabiltzaile/talde/zirkuluei",
@@ -171,15 +164,13 @@ OC.L10N.register(
"(Unsaved)" : "(Gorde gabe)",
"(Saving…)" : "(Gordetzen...)",
"Formatting help" : "Formatua emateko laguntza",
"Add Attachment" : "Gehitu eranskina",
"Edit description" : "Editatu azalpena",
"View description" : "Ikusi deskribapena",
"Attachments" : "Eranskinak",
"Comments" : "Iruzkinak",
"Choose attachment" : "Aukeratu eranskina",
"Modified" : "Aldatua",
"Created" : "Sortua",
"Upload attachment" : "Igo eranskina",
"Delete Attachment" : "Ezabatu eranskina",
"Restore Attachment" : "Berezarri eranskina",
"No comments yet. Begin the discussion!" : "Ez dago iruzkinik oraindik. Hasi eztabaidatzen!",
"Save" : "Gorde",
"The comment cannot be empty." : "Iruzkina ezin da hutsik egon.",
@@ -189,29 +180,25 @@ OC.L10N.register(
"Update" : "Eguneratu",
"(group)" : "(taldea)",
"(circle)" : "(zirkulua)",
"seconds ago" : "segundo lehenago",
"Assign to me" : "Esleitu niri",
"Unarchive card" : "Berreskuratu txartela artxibotik",
"Archive card" : "Artxibatu txartela",
"Delete card" : "Ezabatu txartela",
"Move card" : "Mugitu txartela",
"Card details" : "Txartelaren xehetasunak",
"Move card to another board" : "Mugitu txartela beste mahai batera",
"Select a stack" : "Hautatu pila bat",
"seconds ago" : "segundo lehenago",
"All boards" : "Taula guztiak",
"Archived boards" : "Artxibatutako taulak",
"Shared with you" : "Zurekin partekatua",
"Limit deck usage of groups" : "Mugatu taldeen deck erabilera",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Deck mugatzeak taldeetako kide ez diren erabiltzaileei bere arbel propioak sortzea eragotziko die. Erabiltzaileek beraiekin partekatu diren arbeletan lan egin ahalko dute.",
"Shared boards" : "Partekatutako taulak",
"Settings" : "Ezarpenak",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Deck mugatzeak taldeetako kide ez diren erabiltzaileei bere arbel propioak sortzea eragotziko die. Erabiltzaileek beraiekin partekatu diren arbeletan lan egin ahalko dute.",
"New board title" : "Taula berriaren izenburua",
"Edit board" : "Editatu taula",
"Clone board " : "Klonatu mahaia",
"Archive board " : "Artxibatu mahaia",
"Board details" : "Mahaigainaren xehetasunak",
"An error occurred" : "Errore bat gertatu da",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Ziur zaude «{title}» mahaia ezabatu nahi duzula? Honek mahai honen datu guztiak ezabatuko ditu.",
"Delete the board?" : "Mahaia ezabatu?",
"Clone board" : "Klonatu taula",
"Archive board" : "Artxibatu taula",
"Unarchive board" : "Atera taula artxibotik",
"Delete board" : "Ezabatu taula",
"Board details" : "Mahaigainaren xehetasunak",
"Link to a board" : "Estekatu taula batera",
"Link to a card" : "Estekatu txartel batera",
"Something went wrong" : "Zerbait gaizki joan da",

View File

@@ -99,7 +99,6 @@
"Create new board" : "Sortu taula berri bat",
"new board" : "taula berria",
"Select the board to link to a project" : "Hautatu taula proiektu bati estekatzeko",
"Search by board title" : "Bilatu mahai izenez",
"Select board" : "Hautatu taula",
"Select the card to link to a project" : "Hautatu proiektu bati estekatzeko txartela",
"Select a board" : "Hautatu taula bat",
@@ -121,11 +120,10 @@
"Filter by assigned user" : "Iragazi esleitutako erabiltzailez",
"Filter by due date" : "Iragazi epe-mugaz",
"Overdue" : "Atzeratuta",
"Next 24 hours" : "Hurrengo 24 orduak",
"Today" : "Gaur",
"Next 7 days" : "Hurrengo 7 egunetan",
"Next 30 days" : "Hurrengo 30 egunetan",
"No due date" : "Epe-mugarik gabe",
"Clear filter" : "Garbitu iragazia",
"Show archived cards" : "Erakutsi artxibatutako txartelak",
"Toggle compact mode" : "Txandakatu modu trinkoa",
"Details" : "Xehetasunak",
@@ -153,11 +151,6 @@
"Edit" : "Editatu",
"Add a new tag" : "Gehitu etiketa berri bat",
"title and color value must be provided" : "izenburu eta kolore balioak hornitu behar dira",
"Title" : "Izenburua",
"Members" : "Partaideak",
"Add this attachment" : "Gehitu eranskin hau",
"Delete Attachment" : "Ezabatu eranskina",
"Restore Attachment" : "Berezarri eranskina",
"Assign a tag to this card…" : "Esleitu etiketa bat txartel honi...",
"Assign to users" : "Esleitu erabiltzaileei",
"Assign to users/groups/circles" : "Esleitu erabiltzaile/talde/zirkuluei",
@@ -169,15 +162,13 @@
"(Unsaved)" : "(Gorde gabe)",
"(Saving…)" : "(Gordetzen...)",
"Formatting help" : "Formatua emateko laguntza",
"Add Attachment" : "Gehitu eranskina",
"Edit description" : "Editatu azalpena",
"View description" : "Ikusi deskribapena",
"Attachments" : "Eranskinak",
"Comments" : "Iruzkinak",
"Choose attachment" : "Aukeratu eranskina",
"Modified" : "Aldatua",
"Created" : "Sortua",
"Upload attachment" : "Igo eranskina",
"Delete Attachment" : "Ezabatu eranskina",
"Restore Attachment" : "Berezarri eranskina",
"No comments yet. Begin the discussion!" : "Ez dago iruzkinik oraindik. Hasi eztabaidatzen!",
"Save" : "Gorde",
"The comment cannot be empty." : "Iruzkina ezin da hutsik egon.",
@@ -187,29 +178,25 @@
"Update" : "Eguneratu",
"(group)" : "(taldea)",
"(circle)" : "(zirkulua)",
"seconds ago" : "segundo lehenago",
"Assign to me" : "Esleitu niri",
"Unarchive card" : "Berreskuratu txartela artxibotik",
"Archive card" : "Artxibatu txartela",
"Delete card" : "Ezabatu txartela",
"Move card" : "Mugitu txartela",
"Card details" : "Txartelaren xehetasunak",
"Move card to another board" : "Mugitu txartela beste mahai batera",
"Select a stack" : "Hautatu pila bat",
"seconds ago" : "segundo lehenago",
"All boards" : "Taula guztiak",
"Archived boards" : "Artxibatutako taulak",
"Shared with you" : "Zurekin partekatua",
"Limit deck usage of groups" : "Mugatu taldeen deck erabilera",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Deck mugatzeak taldeetako kide ez diren erabiltzaileei bere arbel propioak sortzea eragotziko die. Erabiltzaileek beraiekin partekatu diren arbeletan lan egin ahalko dute.",
"Shared boards" : "Partekatutako taulak",
"Settings" : "Ezarpenak",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Deck mugatzeak taldeetako kide ez diren erabiltzaileei bere arbel propioak sortzea eragotziko die. Erabiltzaileek beraiekin partekatu diren arbeletan lan egin ahalko dute.",
"New board title" : "Taula berriaren izenburua",
"Edit board" : "Editatu taula",
"Clone board " : "Klonatu mahaia",
"Archive board " : "Artxibatu mahaia",
"Board details" : "Mahaigainaren xehetasunak",
"An error occurred" : "Errore bat gertatu da",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Ziur zaude «{title}» mahaia ezabatu nahi duzula? Honek mahai honen datu guztiak ezabatuko ditu.",
"Delete the board?" : "Mahaia ezabatu?",
"Clone board" : "Klonatu taula",
"Archive board" : "Artxibatu taula",
"Unarchive board" : "Atera taula artxibotik",
"Delete board" : "Ezabatu taula",
"Board details" : "Mahaigainaren xehetasunak",
"Link to a board" : "Estekatu taula batera",
"Link to a card" : "Estekatu txartel batera",
"Something went wrong" : "Zerbait gaizki joan da",

View File

@@ -1,136 +1,44 @@
OC.L10N.register(
"deck",
{
"You have created a new board {board}" : "تختهٔ جدیدی به نام {board} ایجاد کردید",
"{user} has created a new board {board}" : "{user} یک تخته جدیدی به نام {board} ایجاد کرد",
"You have deleted the board {board}" : "تختهٔ {board} را حذف کردید",
"{user} has deleted the board {board}" : "{user} تختهٔ {board} را حذف کرد",
"You have restored the board {board}" : "تختهٔ {board} را بازیابی کردید",
"{user} has restored the board {board}" : "{user} تختهٔ {board} را بازیابی کرد",
"You have shared the board {board} with {acl}" : "تختهٔ {board} را با {acl} هم‌رسانی کردید",
"{user} has shared the board {board} with {acl}" : "{user} تختهٔ {board} را با {acl} هم‌رسانی کرد",
"You have removed {acl} from the board {board}" : "شما {acl} را از تختهٔ {board} حذف کردید",
"{user} has removed {acl} from the board {board}" : "{user} اقدام به حذف {acl} از تختهٔ {board} کرد",
"You have renamed the board {before} to {board}" : "نام تخته را از {before} به {board} تغییر دادید",
"{user} has renamed the board {before} to {board}" : "{user} نام تخته را از {before} به {board} تغییر داد",
"You have archived the board {board}" : "تختهٔ {board} را بایگانی کردید",
"{user} has archived the board {before}" : "{user} تختهٔ {board} را بایگانی کرد",
"You have unarchived the board {board}" : "تختهٔ {board} را از بایگانی خارج کردید",
"{user} has unarchived the board {before}" : "{user} تختهٔ {board} را از بایگانی خارج کرد",
"Personal" : "شخصی",
"Finished" : "تمام شده",
"To review" : "برای بازبینی",
"Action needed" : "نیازمند اقدام",
"Later" : "بعدا",
"copy" : "کپی",
"To do" : "برای انجام",
"Doing" : "در حال انجام",
"Done" : "انجام شد",
"Example Task 3" : "نمونه کار ۳",
"Example Task 2" : "نمونه کار ۲",
"Example Task 1" : "نمونه کار ۱",
"The file was uploaded" : "پرونده بارگذاری شد",
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "حجم پرونده بارگذاری شده بیشتر از تنظیمات upload_max_filesize در پرونده php.ini است",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "حداکثر حجم قابل بار گذاری از طریق HTML MAX_FILE_SIZE است",
"The file was only partially uploaded" : "پرونده فقط به صورت جزئی و ناقص بارگذاری شد",
"No file was uploaded" : "هیچ پرونده‌ای بارگذاری نشد",
"No file was uploaded" : "هیچ پروندهای بارگذاری نشده",
"Missing a temporary folder" : "یک پوشه موقت گم شده",
"Could not write file to disk" : "عدم موفقیت در نوشتن پرونده روی حافظه",
"A PHP extension stopped the file upload" : "یک افزونه پی‌اچ‌پی مانع بارگذاری پرونده شد",
"No file uploaded or file size exceeds maximum of %s" : "پرونده‌ای بارگذاری نشد و یا حجم پرونده بیش از بیشینه مجاز %s بود",
"Create new board" : "ایجاد تختهٔ جدید",
"new board" : "تختهٔ جدید",
"Select the board to link to a project" : "تخته‌ای را برای ایجاد پیوند با یک پروژه انتخاب کنید",
"Search by board title" : "جستجو بر اساس عنوان تخته",
"Select board" : "انتخاب تخته",
"Select the card to link to a project" : "کارتی را برای ایجاد پیوند با یک پروژه انتخاب کنید",
"Select a board" : "انتخاب یک تخته",
"Select a card" : "انتخاب یک کارت",
"Link to card" : "پیوند به کارت",
"Cancel" : "لغو",
"File already exists" : "پرونده از قبل موجود است",
"A file with the name {filename} already exists." : "پرونده‌ای با نام {filename} از قبل موجود است.",
"Do you want to overwrite it?" : "می‌خواهید روی آن بازنویسی شود؟",
"Overwrite file" : "بازنویسی پرونده",
"Keep existing file" : "پرونده موجود حفظ شود",
"This board is read only" : "تخته، فقط خواندنی است",
"Drop your files to upload" : "برای بارگذاری، پرونده‌ها را اینجا رها کنید",
"Archived cards" : "کارت‌های بایگانی‌شده",
"Add new list" : "افزودن فهرست جدید",
"List name" : "نام فهرست",
"Apply filter" : "اعمال پالایه",
"Filter by tag" : "پالایش برحسب برچسب",
"Overdue" : "تاریخ گذشته",
"Next 24 hours" : "۲۴ ساعت آینده",
"Next 7 days" : "۷ روز آینده",
"Next 30 days" : "۳۰ روز آینده",
"Clear filter" : "پاک کردن پالایه",
"Show archived cards" : "نمایش کارت‌های بایگانی شده",
"Toggle compact mode" : "تغییر حالت فشرده",
"File already exists" : "فایل از قبل موجود میباشد",
"Today" : "Today",
"Details" : "جزئیات",
"Loading board" : "بارکردن تخته",
"Board not found" : "تخته یافت نشد",
"Sharing" : "هم‌رسانی",
"Sharing" : "اشتراک گذاری",
"Tags" : "برچسب‌ها",
"Deleted items" : "موارد حذف شده",
"Timeline" : "خط زمانی",
"Deleted lists" : "فهرست‌های پاک شده",
"Undo" : "برگرداندن",
"Deleted cards" : "کارت‌های پاک شده",
"Share board with a user, group or circle …" : "هم‌رسانی تخته با کاربر، گروه یا حلقه...",
"Board owner" : "مالک تخته",
"(Group)" : "(گروه)",
"(Circle)" : "(حلقه)",
"Can edit" : "میتواند ویرایش کند",
"Can share" : "می‌تواند هم‌رسانی کند",
"Can manage" : "می‌تواند مدیریت کند",
"Can edit" : "می توانید ویرایش کنید",
"Can share" : "میتوانید به اشتراک بگذارید",
"Delete" : "حذف",
"Delete list" : "حذف فهرست",
"Add card" : "افزودن کارت",
"Add a new card" : "افزودن یک کارت جدید",
"Add card" : "کارت اضافه کنید",
"Edit" : "ویرایش",
"Add a new tag" : "افزودن یک برچسب جدید",
"title and color value must be provided" : "نام و رنگ باید مشخص شود",
"Title" : "عنوان",
"Members" : "اعضا",
"Add this attachment" : "افزودن این پیوست",
"Delete Attachment" : "حذف پیوست",
"Restore Attachment" : "بازیابی پیوست",
"Due date" : "موعد مقرر",
"Description" : "توضیحات",
"(Unsaved)" : "(ذخیره نشده)",
"(Saving…)" : "(در حال ذخیره...)",
"Formatting help" : "راهنمای قالب‌بندی",
"Add Attachment" : "افزودن پیوست",
"Edit description" : "ویرایش توضیحات",
"View description" : "نمایش توضیحات",
"Attachments" : "پیوست‌ها",
"Attachments" : "پیوست ها",
"Comments" : "نظرات",
"Choose attachment" : "انتخاب پیوست",
"Modified" : "تغییر یافته",
"Created" : "ایجاد شده",
"Upload attachment" : "بارگذاری پیوست",
"No comments yet. Begin the discussion!" : "هنوز نظری وجود ندارد. بحثی را آغاز کنید!",
"Upload attachment" : "پیوست را بارگیری کنید",
"Save" : "ذخیره",
"The comment cannot be empty." : "نظر نمی‌تواند خالی باشد.",
"The comment cannot be longer than 1000 characters." : "نظر نمی‌تواند طولانی‌تر از ۱۰۰۰ حرف باشد.",
"In reply to" : "در پاسخ به",
"Reply" : "پاسخ",
"Update" : "بهروزرسانی",
"Update" : "به روز رسانی",
"(group)" : "(گروه)",
"(circle)" : "(حلقه)",
"seconds ago" : "ثانیه‌هایی پیش",
"Archive card" : "کارت بایگانی",
"Delete card" : "حذف کارت",
"Move card" : "انتقال کارت",
"Card details" : "جزئیات کارت",
"Move card to another board" : "انتقال کارت به تخته‌ای دیگر",
"All boards" : "همه تخته‌ها",
"Archived boards" : "تخته‌های بایگانی شده",
"Shared with you" : "با شما به اشتراک گذاشته شده است",
"seconds ago" : "ثانیه‌هایی پیش",
"Settings" : "تنظیمات",
"New board title" : "عنوان تختهٔ جدید",
"Edit board" : "ویرایش تخته",
"An error occurred" : "خطایی روی داد"
"Edit board" : "ویرایش تخته ها",
"An error occurred" : "خطایی روی داد",
"Archive board" : " بایگانی تابلو",
"Delete board" : "حذف تابلو"
},
"nplurals=2; plural=(n > 1);");

View File

@@ -1,134 +1,42 @@
{ "translations": {
"You have created a new board {board}" : "تختهٔ جدیدی به نام {board} ایجاد کردید",
"{user} has created a new board {board}" : "{user} یک تخته جدیدی به نام {board} ایجاد کرد",
"You have deleted the board {board}" : "تختهٔ {board} را حذف کردید",
"{user} has deleted the board {board}" : "{user} تختهٔ {board} را حذف کرد",
"You have restored the board {board}" : "تختهٔ {board} را بازیابی کردید",
"{user} has restored the board {board}" : "{user} تختهٔ {board} را بازیابی کرد",
"You have shared the board {board} with {acl}" : "تختهٔ {board} را با {acl} هم‌رسانی کردید",
"{user} has shared the board {board} with {acl}" : "{user} تختهٔ {board} را با {acl} هم‌رسانی کرد",
"You have removed {acl} from the board {board}" : "شما {acl} را از تختهٔ {board} حذف کردید",
"{user} has removed {acl} from the board {board}" : "{user} اقدام به حذف {acl} از تختهٔ {board} کرد",
"You have renamed the board {before} to {board}" : "نام تخته را از {before} به {board} تغییر دادید",
"{user} has renamed the board {before} to {board}" : "{user} نام تخته را از {before} به {board} تغییر داد",
"You have archived the board {board}" : "تختهٔ {board} را بایگانی کردید",
"{user} has archived the board {before}" : "{user} تختهٔ {board} را بایگانی کرد",
"You have unarchived the board {board}" : "تختهٔ {board} را از بایگانی خارج کردید",
"{user} has unarchived the board {before}" : "{user} تختهٔ {board} را از بایگانی خارج کرد",
"Personal" : "شخصی",
"Finished" : "تمام شده",
"To review" : "برای بازبینی",
"Action needed" : "نیازمند اقدام",
"Later" : "بعدا",
"copy" : "کپی",
"To do" : "برای انجام",
"Doing" : "در حال انجام",
"Done" : "انجام شد",
"Example Task 3" : "نمونه کار ۳",
"Example Task 2" : "نمونه کار ۲",
"Example Task 1" : "نمونه کار ۱",
"The file was uploaded" : "پرونده بارگذاری شد",
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "حجم پرونده بارگذاری شده بیشتر از تنظیمات upload_max_filesize در پرونده php.ini است",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "حداکثر حجم قابل بار گذاری از طریق HTML MAX_FILE_SIZE است",
"The file was only partially uploaded" : "پرونده فقط به صورت جزئی و ناقص بارگذاری شد",
"No file was uploaded" : "هیچ پرونده‌ای بارگذاری نشد",
"No file was uploaded" : "هیچ پروندهای بارگذاری نشده",
"Missing a temporary folder" : "یک پوشه موقت گم شده",
"Could not write file to disk" : "عدم موفقیت در نوشتن پرونده روی حافظه",
"A PHP extension stopped the file upload" : "یک افزونه پی‌اچ‌پی مانع بارگذاری پرونده شد",
"No file uploaded or file size exceeds maximum of %s" : "پرونده‌ای بارگذاری نشد و یا حجم پرونده بیش از بیشینه مجاز %s بود",
"Create new board" : "ایجاد تختهٔ جدید",
"new board" : "تختهٔ جدید",
"Select the board to link to a project" : "تخته‌ای را برای ایجاد پیوند با یک پروژه انتخاب کنید",
"Search by board title" : "جستجو بر اساس عنوان تخته",
"Select board" : "انتخاب تخته",
"Select the card to link to a project" : "کارتی را برای ایجاد پیوند با یک پروژه انتخاب کنید",
"Select a board" : "انتخاب یک تخته",
"Select a card" : "انتخاب یک کارت",
"Link to card" : "پیوند به کارت",
"Cancel" : "لغو",
"File already exists" : "پرونده از قبل موجود است",
"A file with the name {filename} already exists." : "پرونده‌ای با نام {filename} از قبل موجود است.",
"Do you want to overwrite it?" : "می‌خواهید روی آن بازنویسی شود؟",
"Overwrite file" : "بازنویسی پرونده",
"Keep existing file" : "پرونده موجود حفظ شود",
"This board is read only" : "تخته، فقط خواندنی است",
"Drop your files to upload" : "برای بارگذاری، پرونده‌ها را اینجا رها کنید",
"Archived cards" : "کارت‌های بایگانی‌شده",
"Add new list" : "افزودن فهرست جدید",
"List name" : "نام فهرست",
"Apply filter" : "اعمال پالایه",
"Filter by tag" : "پالایش برحسب برچسب",
"Overdue" : "تاریخ گذشته",
"Next 24 hours" : "۲۴ ساعت آینده",
"Next 7 days" : "۷ روز آینده",
"Next 30 days" : "۳۰ روز آینده",
"Clear filter" : "پاک کردن پالایه",
"Show archived cards" : "نمایش کارت‌های بایگانی شده",
"Toggle compact mode" : "تغییر حالت فشرده",
"File already exists" : "فایل از قبل موجود میباشد",
"Today" : "Today",
"Details" : "جزئیات",
"Loading board" : "بارکردن تخته",
"Board not found" : "تخته یافت نشد",
"Sharing" : "هم‌رسانی",
"Sharing" : "اشتراک گذاری",
"Tags" : "برچسب‌ها",
"Deleted items" : "موارد حذف شده",
"Timeline" : "خط زمانی",
"Deleted lists" : "فهرست‌های پاک شده",
"Undo" : "برگرداندن",
"Deleted cards" : "کارت‌های پاک شده",
"Share board with a user, group or circle …" : "هم‌رسانی تخته با کاربر، گروه یا حلقه...",
"Board owner" : "مالک تخته",
"(Group)" : "(گروه)",
"(Circle)" : "(حلقه)",
"Can edit" : "میتواند ویرایش کند",
"Can share" : "می‌تواند هم‌رسانی کند",
"Can manage" : "می‌تواند مدیریت کند",
"Can edit" : "می توانید ویرایش کنید",
"Can share" : "میتوانید به اشتراک بگذارید",
"Delete" : "حذف",
"Delete list" : "حذف فهرست",
"Add card" : "افزودن کارت",
"Add a new card" : "افزودن یک کارت جدید",
"Add card" : "کارت اضافه کنید",
"Edit" : "ویرایش",
"Add a new tag" : "افزودن یک برچسب جدید",
"title and color value must be provided" : "نام و رنگ باید مشخص شود",
"Title" : "عنوان",
"Members" : "اعضا",
"Add this attachment" : "افزودن این پیوست",
"Delete Attachment" : "حذف پیوست",
"Restore Attachment" : "بازیابی پیوست",
"Due date" : "موعد مقرر",
"Description" : "توضیحات",
"(Unsaved)" : "(ذخیره نشده)",
"(Saving…)" : "(در حال ذخیره...)",
"Formatting help" : "راهنمای قالب‌بندی",
"Add Attachment" : "افزودن پیوست",
"Edit description" : "ویرایش توضیحات",
"View description" : "نمایش توضیحات",
"Attachments" : "پیوست‌ها",
"Attachments" : "پیوست ها",
"Comments" : "نظرات",
"Choose attachment" : "انتخاب پیوست",
"Modified" : "تغییر یافته",
"Created" : "ایجاد شده",
"Upload attachment" : "بارگذاری پیوست",
"No comments yet. Begin the discussion!" : "هنوز نظری وجود ندارد. بحثی را آغاز کنید!",
"Upload attachment" : "پیوست را بارگیری کنید",
"Save" : "ذخیره",
"The comment cannot be empty." : "نظر نمی‌تواند خالی باشد.",
"The comment cannot be longer than 1000 characters." : "نظر نمی‌تواند طولانی‌تر از ۱۰۰۰ حرف باشد.",
"In reply to" : "در پاسخ به",
"Reply" : "پاسخ",
"Update" : "بهروزرسانی",
"Update" : "به روز رسانی",
"(group)" : "(گروه)",
"(circle)" : "(حلقه)",
"seconds ago" : "ثانیه‌هایی پیش",
"Archive card" : "کارت بایگانی",
"Delete card" : "حذف کارت",
"Move card" : "انتقال کارت",
"Card details" : "جزئیات کارت",
"Move card to another board" : "انتقال کارت به تخته‌ای دیگر",
"All boards" : "همه تخته‌ها",
"Archived boards" : "تخته‌های بایگانی شده",
"Shared with you" : "با شما به اشتراک گذاشته شده است",
"seconds ago" : "ثانیه‌هایی پیش",
"Settings" : "تنظیمات",
"New board title" : "عنوان تختهٔ جدید",
"Edit board" : "ویرایش تخته",
"An error occurred" : "خطایی روی داد"
"Edit board" : "ویرایش تخته ها",
"An error occurred" : "خطایی روی داد",
"Archive board" : " بایگانی تابلو",
"Delete board" : "حذف تابلو"
},"pluralForm" :"nplurals=2; plural=(n > 1);"
}

View File

@@ -111,12 +111,12 @@ OC.L10N.register(
"Keep existing file" : "Pidä nykyinen tiedosto",
"This board is read only" : "Tämä taulu on kirjoitussuojattu",
"Drop your files to upload" : "Pudota tiedostot lähettääksesi ne",
"Archived cards" : "Arkistoidut kortit",
"Add new list" : "Lisää uusi lista",
"List name" : "Listan nimi",
"Apply filter" : "Toteuta suodatus",
"Filter by tag" : "Suodata tunnisteen perusteella",
"Overdue" : "Myöhässä",
"Today" : "Tänään",
"Next 7 days" : "Seuraavat 7 päivää",
"Next 30 days" : "Seuraavat 30 päivää",
"No due date" : "Ei eräpäivää",
@@ -145,10 +145,6 @@ OC.L10N.register(
"Add a new card" : "Lisää uusi kortti",
"Edit" : "Muokkaa",
"title and color value must be provided" : "tunnisteella on oltava nimi ja väri",
"Title" : "Otsikko",
"Members" : "Jäsenet",
"Delete Attachment" : "Poista liite",
"Restore Attachment" : "Palauta liite",
"Assign a tag to this card…" : "Lisää kortille tunniste...",
"Due date" : "Eräpäivä",
"Set a due date" : "Aseta eräpäivä",
@@ -160,6 +156,8 @@ OC.L10N.register(
"Modified" : "Muokattu",
"Created" : "Luotu",
"Upload attachment" : "Lähetä liite",
"Delete Attachment" : "Poista liite",
"Restore Attachment" : "Palauta liite",
"No comments yet. Begin the discussion!" : "Ei vielä kommentteja. Aloita keskustelu!",
"Save" : "Tallenna",
"The comment cannot be empty." : "Kommentti ei voi olla tyhjä.",
@@ -167,22 +165,24 @@ OC.L10N.register(
"Reply" : "Vastaa",
"Update" : "Päivitä",
"(group)" : "(ryhmä)",
"seconds ago" : "sekuntia sitten",
"Unarchive card" : "Poista kortti arkistosta",
"Archive card" : "Arkistoi kortti",
"Delete card" : "Poista kortti",
"Move card" : "Siirrä kortti",
"Card details" : "Näytä kortin sisältö",
"Select a stack" : "Valitse pino",
"seconds ago" : "sekuntia sitten",
"All boards" : "Kaikki taulut",
"Archived boards" : "Arkistoidut taulut",
"Shared with you" : "Jaettu kanssasi",
"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." : "Pakan käytön rajoittaminen estää merkittyjen ryhmien jäseniä luomasta omia taulujaan, mutta käyttäjät pystyvät silti käyttämään heidän kanssaan jaettuja tauluja.",
"Shared boards" : "Jaetut taulut",
"Settings" : "Asetukset",
"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." : "Pakan käytön rajoittaminen estää merkittyjen ryhmien jäseniä luomasta omia taulujaan, mutta käyttäjät pystyvät silti käyttämään heidän kanssaan jaettuja tauluja.",
"New board title" : "Uusi taulun otsikko",
"Edit board" : "Muokkaa taulua",
"Board details" : "Taulun tiedot",
"An error occurred" : "Tapahtui virhe",
"Clone board" : "Monista taulu",
"Archive board" : "Arkistoi taulu",
"Unarchive board" : "Kumoa taulun arkistointi",
"Delete board" : "Poista taulu",
"Board details" : "Taulun tiedot",
"Link to a board" : "Linkki taululle",
"Link to a card" : "Linkitä korttiin",
"Something went wrong" : "Jokin meni vikaan",

View File

@@ -109,12 +109,12 @@
"Keep existing file" : "Pidä nykyinen tiedosto",
"This board is read only" : "Tämä taulu on kirjoitussuojattu",
"Drop your files to upload" : "Pudota tiedostot lähettääksesi ne",
"Archived cards" : "Arkistoidut kortit",
"Add new list" : "Lisää uusi lista",
"List name" : "Listan nimi",
"Apply filter" : "Toteuta suodatus",
"Filter by tag" : "Suodata tunnisteen perusteella",
"Overdue" : "Myöhässä",
"Today" : "Tänään",
"Next 7 days" : "Seuraavat 7 päivää",
"Next 30 days" : "Seuraavat 30 päivää",
"No due date" : "Ei eräpäivää",
@@ -143,10 +143,6 @@
"Add a new card" : "Lisää uusi kortti",
"Edit" : "Muokkaa",
"title and color value must be provided" : "tunnisteella on oltava nimi ja väri",
"Title" : "Otsikko",
"Members" : "Jäsenet",
"Delete Attachment" : "Poista liite",
"Restore Attachment" : "Palauta liite",
"Assign a tag to this card…" : "Lisää kortille tunniste...",
"Due date" : "Eräpäivä",
"Set a due date" : "Aseta eräpäivä",
@@ -158,6 +154,8 @@
"Modified" : "Muokattu",
"Created" : "Luotu",
"Upload attachment" : "Lähetä liite",
"Delete Attachment" : "Poista liite",
"Restore Attachment" : "Palauta liite",
"No comments yet. Begin the discussion!" : "Ei vielä kommentteja. Aloita keskustelu!",
"Save" : "Tallenna",
"The comment cannot be empty." : "Kommentti ei voi olla tyhjä.",
@@ -165,22 +163,24 @@
"Reply" : "Vastaa",
"Update" : "Päivitä",
"(group)" : "(ryhmä)",
"seconds ago" : "sekuntia sitten",
"Unarchive card" : "Poista kortti arkistosta",
"Archive card" : "Arkistoi kortti",
"Delete card" : "Poista kortti",
"Move card" : "Siirrä kortti",
"Card details" : "Näytä kortin sisältö",
"Select a stack" : "Valitse pino",
"seconds ago" : "sekuntia sitten",
"All boards" : "Kaikki taulut",
"Archived boards" : "Arkistoidut taulut",
"Shared with you" : "Jaettu kanssasi",
"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." : "Pakan käytön rajoittaminen estää merkittyjen ryhmien jäseniä luomasta omia taulujaan, mutta käyttäjät pystyvät silti käyttämään heidän kanssaan jaettuja tauluja.",
"Shared boards" : "Jaetut taulut",
"Settings" : "Asetukset",
"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." : "Pakan käytön rajoittaminen estää merkittyjen ryhmien jäseniä luomasta omia taulujaan, mutta käyttäjät pystyvät silti käyttämään heidän kanssaan jaettuja tauluja.",
"New board title" : "Uusi taulun otsikko",
"Edit board" : "Muokkaa taulua",
"Board details" : "Taulun tiedot",
"An error occurred" : "Tapahtui virhe",
"Clone board" : "Monista taulu",
"Archive board" : "Arkistoi taulu",
"Unarchive board" : "Kumoa taulun arkistointi",
"Delete board" : "Poista taulu",
"Board details" : "Taulun tiedot",
"Link to a board" : "Linkki taululle",
"Link to a card" : "Linkitä korttiin",
"Something went wrong" : "Jokin meni vikaan",

View File

@@ -101,7 +101,6 @@ OC.L10N.register(
"Create new board" : "Créer un nouveau tableau",
"new board" : "nouveau tableau",
"Select the board to link to a project" : "Sélection le tableau pour faire le lien avec un projet.",
"Search by board title" : "Rechercher par titre du tableau",
"Select board" : "Sélectionner le tableau",
"Select the card to link to a project" : "Sélectionner la carte à relier à un projet",
"Select a board" : "Sélectionner un tableau",
@@ -115,7 +114,6 @@ OC.L10N.register(
"Keep existing file" : "Conserver le fichier existant",
"This board is read only" : "Ce tableau est en lecture seule",
"Drop your files to upload" : "Glissez vos fichiers pour les envoyer",
"Archived cards" : "Cartes archivées",
"Add new list" : "Ajouter une nouvelle liste",
"List name" : "Nom de la liste",
"Apply filter" : "Filtrer",
@@ -123,11 +121,10 @@ OC.L10N.register(
"Filter by assigned user" : "Filtrer par utilisateur",
"Filter by due date" : "Filtrer par échéance",
"Overdue" : "En retard",
"Next 24 hours" : "prochaines 24 heures",
"Today" : "Aujourd'hui",
"Next 7 days" : "7 prochains jours",
"Next 30 days" : "30 prochains jours",
"No due date" : "Sans échéance",
"Clear filter" : "Supprimer le filtre",
"Show archived cards" : "Afficher les cartes archivées",
"Toggle compact mode" : "Basculer le mode compact",
"Details" : "Détails",
@@ -155,11 +152,6 @@ OC.L10N.register(
"Edit" : "Modifier",
"Add a new tag" : "Ajouter une nouvelle étiquette",
"title and color value must be provided" : "le titre et la couleur doivent être renseignés",
"Title" : "Titre",
"Members" : "Membres",
"Add this attachment" : "Ajouter cette pièce jointe",
"Delete Attachment" : "Supprimer la pièce jointe",
"Restore Attachment" : "Restaurer la pièce jointe",
"Assign a tag to this card…" : "Associer une étiquette à cette carte…",
"Assign to users" : "Attribuer aux utilisateurs",
"Assign to users/groups/circles" : "Attribuer à des utilisateurs / groupes / cercles",
@@ -171,15 +163,13 @@ OC.L10N.register(
"(Unsaved)" : "(Non enregistré)",
"(Saving…)" : "(Enregistrement ...)",
"Formatting help" : "Aide sur la mise en forme",
"Add Attachment" : "Ajouter une pièce jointe",
"Edit description" : "Modifier la description",
"View description" : "Afficher la description",
"Attachments" : "Pièces jointes",
"Comments" : "Commentaires",
"Choose attachment" : "Choisir une pièce jointe",
"Modified" : "Modifié",
"Created" : "Créé",
"Upload attachment" : "Envoyer une pièce jointe",
"Delete Attachment" : "Supprimer la pièce jointe",
"Restore Attachment" : "Restaurer la pièce jointe",
"No comments yet. Begin the discussion!" : "Aucun commentaire pour l'instant, démarrez la discussion !",
"Save" : "Enregistrer",
"The comment cannot be empty." : "Un commentaire ne peut pas être vide.",
@@ -189,27 +179,25 @@ OC.L10N.register(
"Update" : "Mettre à jour",
"(group)" : "(groupe)",
"(circle)" : "(cercle)",
"seconds ago" : "à l'instant",
"Assign to me" : "Me l'assigner",
"Unarchive card" : "Sortir la carte des archives",
"Archive card" : "Archiver la carte",
"Delete card" : "Supprimer la carte",
"Move card" : "Déplacer la carte",
"Card details" : "Détails de la carte",
"Move card to another board" : "Déplacer la carte vers un autre tableau ",
"Select a stack" : "Sélectionner une pile",
"seconds ago" : "à l'instant",
"All boards" : "Tous les tableaux",
"Archived boards" : "Tableaux archivés",
"Shared with you" : "Partagés avec vous",
"Limit deck usage of groups" : "Limiter l'utilisation du tableau aux groupes",
"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." : "Limiter Deck empêchera les utilisateurs ne faisant pas partie de ces groupes de créer leurs propres tableaux. Ces utilisateurs pourront toujours travailler sur les tableaux qui ont été partagés avec eux.",
"Shared boards" : "Tableaux partagés",
"Settings" : "Paramètres",
"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." : "Limiter Deck empêchera les utilisateurs ne faisant pas partie de ces groupes de créer leurs propres tableaux. Ces utilisateurs pourront toujours travailler sur les tableaux qui ont été partagés avec eux.",
"New board title" : "Nouveau titre pour le tableau",
"Edit board" : "Modifier le tableau",
"Board details" : "Détails du tableau",
"An error occurred" : "Une erreur est survenue",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Êtes-vous certain de vouloir supprimer le tableau {title} ? Cela supprimera l'ensemble des données de ce tableau.",
"Delete the board?" : "Supprimer le tableau ?",
"Clone board" : "Dupliquer le tableau",
"Archive board" : "Archiver le tableau",
"Unarchive board" : "Désarchiver le tableau",
"Delete board" : "Supprimer le tableau",
"Board details" : "Détails du tableau",
"Link to a board" : "Relier à un tableau",
"Link to a card" : "Relier à une carte",
"Something went wrong" : "Quelque chose s'est mal passé",

View File

@@ -99,7 +99,6 @@
"Create new board" : "Créer un nouveau tableau",
"new board" : "nouveau tableau",
"Select the board to link to a project" : "Sélection le tableau pour faire le lien avec un projet.",
"Search by board title" : "Rechercher par titre du tableau",
"Select board" : "Sélectionner le tableau",
"Select the card to link to a project" : "Sélectionner la carte à relier à un projet",
"Select a board" : "Sélectionner un tableau",
@@ -113,7 +112,6 @@
"Keep existing file" : "Conserver le fichier existant",
"This board is read only" : "Ce tableau est en lecture seule",
"Drop your files to upload" : "Glissez vos fichiers pour les envoyer",
"Archived cards" : "Cartes archivées",
"Add new list" : "Ajouter une nouvelle liste",
"List name" : "Nom de la liste",
"Apply filter" : "Filtrer",
@@ -121,11 +119,10 @@
"Filter by assigned user" : "Filtrer par utilisateur",
"Filter by due date" : "Filtrer par échéance",
"Overdue" : "En retard",
"Next 24 hours" : "prochaines 24 heures",
"Today" : "Aujourd'hui",
"Next 7 days" : "7 prochains jours",
"Next 30 days" : "30 prochains jours",
"No due date" : "Sans échéance",
"Clear filter" : "Supprimer le filtre",
"Show archived cards" : "Afficher les cartes archivées",
"Toggle compact mode" : "Basculer le mode compact",
"Details" : "Détails",
@@ -153,11 +150,6 @@
"Edit" : "Modifier",
"Add a new tag" : "Ajouter une nouvelle étiquette",
"title and color value must be provided" : "le titre et la couleur doivent être renseignés",
"Title" : "Titre",
"Members" : "Membres",
"Add this attachment" : "Ajouter cette pièce jointe",
"Delete Attachment" : "Supprimer la pièce jointe",
"Restore Attachment" : "Restaurer la pièce jointe",
"Assign a tag to this card…" : "Associer une étiquette à cette carte…",
"Assign to users" : "Attribuer aux utilisateurs",
"Assign to users/groups/circles" : "Attribuer à des utilisateurs / groupes / cercles",
@@ -169,15 +161,13 @@
"(Unsaved)" : "(Non enregistré)",
"(Saving…)" : "(Enregistrement ...)",
"Formatting help" : "Aide sur la mise en forme",
"Add Attachment" : "Ajouter une pièce jointe",
"Edit description" : "Modifier la description",
"View description" : "Afficher la description",
"Attachments" : "Pièces jointes",
"Comments" : "Commentaires",
"Choose attachment" : "Choisir une pièce jointe",
"Modified" : "Modifié",
"Created" : "Créé",
"Upload attachment" : "Envoyer une pièce jointe",
"Delete Attachment" : "Supprimer la pièce jointe",
"Restore Attachment" : "Restaurer la pièce jointe",
"No comments yet. Begin the discussion!" : "Aucun commentaire pour l'instant, démarrez la discussion !",
"Save" : "Enregistrer",
"The comment cannot be empty." : "Un commentaire ne peut pas être vide.",
@@ -187,27 +177,25 @@
"Update" : "Mettre à jour",
"(group)" : "(groupe)",
"(circle)" : "(cercle)",
"seconds ago" : "à l'instant",
"Assign to me" : "Me l'assigner",
"Unarchive card" : "Sortir la carte des archives",
"Archive card" : "Archiver la carte",
"Delete card" : "Supprimer la carte",
"Move card" : "Déplacer la carte",
"Card details" : "Détails de la carte",
"Move card to another board" : "Déplacer la carte vers un autre tableau ",
"Select a stack" : "Sélectionner une pile",
"seconds ago" : "à l'instant",
"All boards" : "Tous les tableaux",
"Archived boards" : "Tableaux archivés",
"Shared with you" : "Partagés avec vous",
"Limit deck usage of groups" : "Limiter l'utilisation du tableau aux groupes",
"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." : "Limiter Deck empêchera les utilisateurs ne faisant pas partie de ces groupes de créer leurs propres tableaux. Ces utilisateurs pourront toujours travailler sur les tableaux qui ont été partagés avec eux.",
"Shared boards" : "Tableaux partagés",
"Settings" : "Paramètres",
"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." : "Limiter Deck empêchera les utilisateurs ne faisant pas partie de ces groupes de créer leurs propres tableaux. Ces utilisateurs pourront toujours travailler sur les tableaux qui ont été partagés avec eux.",
"New board title" : "Nouveau titre pour le tableau",
"Edit board" : "Modifier le tableau",
"Board details" : "Détails du tableau",
"An error occurred" : "Une erreur est survenue",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Êtes-vous certain de vouloir supprimer le tableau {title} ? Cela supprimera l'ensemble des données de ce tableau.",
"Delete the board?" : "Supprimer le tableau ?",
"Clone board" : "Dupliquer le tableau",
"Archive board" : "Archiver le tableau",
"Unarchive board" : "Désarchiver le tableau",
"Delete board" : "Supprimer le tableau",
"Board details" : "Détails du tableau",
"Link to a board" : "Relier à un tableau",
"Link to a card" : "Relier à une carte",
"Something went wrong" : "Quelque chose s'est mal passé",

View File

@@ -101,7 +101,6 @@ OC.L10N.register(
"Create new board" : "Crear un novo taboleiro",
"new board" : "novo taboleiro",
"Select the board to link to a project" : "Seleccione o taboleiro para ligar a un proxecto",
"Search by board title" : "Buscar polo título do taboleiro",
"Select board" : "Seleccionar taboleiro",
"Select the card to link to a project" : "Seleccione a tarxeta para ligar a un proxecto",
"Select a board" : "Seleccione un taboleiro",
@@ -123,11 +122,10 @@ OC.L10N.register(
"Filter by assigned user" : "Filtrar polo usuario asignado",
"Filter by due date" : "Filtrar pola data de caducidade",
"Overdue" : "Caducado",
"Next 24 hours" : "Próximas 24 horas",
"Today" : "Hoxe",
"Next 7 days" : "Próximos 7 días",
"Next 30 days" : "Próximos 30 días",
"No due date" : "Sen data de caducidade",
"Clear filter" : "Limpar o filtro",
"Show archived cards" : "Amosar as tarxetas arquivadas",
"Toggle compact mode" : "Alternar o modo compacto",
"Details" : "Detalles",
@@ -155,11 +153,6 @@ OC.L10N.register(
"Edit" : "Editar",
"Add a new tag" : "Engadir unha nova etiqueta",
"title and color value must be provided" : "debe indicar o título e o valor da cor",
"Title" : "Título",
"Members" : "Membros",
"Add this attachment" : "Engadir este anexo",
"Delete Attachment" : "Eliminar o anexo",
"Restore Attachment" : "Restaurar o anexo",
"Assign a tag to this card…" : "Asignar unha etiqueta a esta tarxeta…",
"Assign to users" : "Asignar a usuarios",
"Assign to users/groups/circles" : "Asignar a usuarios/grupos/círculos",
@@ -171,15 +164,13 @@ OC.L10N.register(
"(Unsaved)" : "(Sen gardar)",
"(Saving…)" : "(Gardando…)",
"Formatting help" : "Axuda de formatado",
"Add Attachment" : "Engadir o anexo",
"Edit description" : "Editar a descrición",
"View description" : "Ver a descrición",
"Attachments" : "Anexos",
"Comments" : "Comentarios",
"Choose attachment" : "Escoller o anexo",
"Modified" : "Modificado",
"Created" : "Creado",
"Upload attachment" : "Enviar anexos",
"Delete Attachment" : "Eliminar anexo",
"Restore Attachment" : "Restaurar anexo",
"No comments yet. Begin the discussion!" : "Aínda non hai comentarios. Comece o debate!",
"Save" : "Gardar",
"The comment cannot be empty." : "O comentario non pode estar baleiro",
@@ -189,32 +180,25 @@ OC.L10N.register(
"Update" : "Actualizar",
"(group)" : "(grupo)",
"(circle)" : "(círculo)",
"seconds ago" : "segundos atrás",
"Assign to me" : "Asignarme",
"Unarchive card" : "Desarquivar a tarxeta",
"Archive card" : "Arquivar a tarxeta",
"Delete card" : "Eliminar tarxeta",
"Move card" : "Mover a tarxeta",
"Card details" : "Detalles da tarxeta",
"Move card to another board" : "Mover a tarxeta a outro taboleiro",
"Select a stack" : "Seleccione unha rima",
"seconds ago" : "segundos atrás",
"All boards" : "Todos os taboleiros",
"Archived boards" : "Taboleiros arquivados",
"Shared with you" : "Compartido con vostede",
"Limit deck usage of groups" : "Limitar o uso da plataforma a grupos",
"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." : "Limitando Deck bloqueará os usuarios que non formen parte destes grupos, para crear os seus propios taboleiros. Os usuarios aínda así poderán traballar en taboleiros compartidos con eles.",
"Shared boards" : "Taboleiros compartidos",
"Settings" : "Axustes",
"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." : "Limitando Deck bloqueará os usuarios que non formen parte destes grupos, para crear os seus propios taboleiros. Os usuarios aínda así poderán traballar en taboleiros compartidos con eles.",
"New board title" : "Novo título do taboleiro",
"Edit board" : "Editar taboleiro",
"Clone board " : "Clonar taboleiro",
"Unarchive board " : "Desarquivar taboleiro",
"Archive board " : "Arquivar taboleiro",
"Delete board " : "Eliminar taboleiro",
"Board details" : "Detalles do taboleiro",
"Board {0} deleted" : "Eliminouse o taboleiro {0}",
"An error occurred" : "Produciuse un erro",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Confirma que quere eliminar o taboleiro {title}? Isto eliminará todos os datos deste taboleiro.",
"Delete the board?" : "Eliminar o taboleiro?",
"Clone board" : "Clonar taboleiro",
"Archive board" : "Arquivar taboleiro",
"Unarchive board" : "Desarquivar taboleiro",
"Delete board" : "Eliminar taboleiro",
"Board details" : "Detalles do taboleiro",
"Link to a board" : "Ligar a un taboleiro",
"Link to a card" : "Ligar a unha tarxeta",
"Something went wrong" : "Algo foi mal",

View File

@@ -99,7 +99,6 @@
"Create new board" : "Crear un novo taboleiro",
"new board" : "novo taboleiro",
"Select the board to link to a project" : "Seleccione o taboleiro para ligar a un proxecto",
"Search by board title" : "Buscar polo título do taboleiro",
"Select board" : "Seleccionar taboleiro",
"Select the card to link to a project" : "Seleccione a tarxeta para ligar a un proxecto",
"Select a board" : "Seleccione un taboleiro",
@@ -121,11 +120,10 @@
"Filter by assigned user" : "Filtrar polo usuario asignado",
"Filter by due date" : "Filtrar pola data de caducidade",
"Overdue" : "Caducado",
"Next 24 hours" : "Próximas 24 horas",
"Today" : "Hoxe",
"Next 7 days" : "Próximos 7 días",
"Next 30 days" : "Próximos 30 días",
"No due date" : "Sen data de caducidade",
"Clear filter" : "Limpar o filtro",
"Show archived cards" : "Amosar as tarxetas arquivadas",
"Toggle compact mode" : "Alternar o modo compacto",
"Details" : "Detalles",
@@ -153,11 +151,6 @@
"Edit" : "Editar",
"Add a new tag" : "Engadir unha nova etiqueta",
"title and color value must be provided" : "debe indicar o título e o valor da cor",
"Title" : "Título",
"Members" : "Membros",
"Add this attachment" : "Engadir este anexo",
"Delete Attachment" : "Eliminar o anexo",
"Restore Attachment" : "Restaurar o anexo",
"Assign a tag to this card…" : "Asignar unha etiqueta a esta tarxeta…",
"Assign to users" : "Asignar a usuarios",
"Assign to users/groups/circles" : "Asignar a usuarios/grupos/círculos",
@@ -169,15 +162,13 @@
"(Unsaved)" : "(Sen gardar)",
"(Saving…)" : "(Gardando…)",
"Formatting help" : "Axuda de formatado",
"Add Attachment" : "Engadir o anexo",
"Edit description" : "Editar a descrición",
"View description" : "Ver a descrición",
"Attachments" : "Anexos",
"Comments" : "Comentarios",
"Choose attachment" : "Escoller o anexo",
"Modified" : "Modificado",
"Created" : "Creado",
"Upload attachment" : "Enviar anexos",
"Delete Attachment" : "Eliminar anexo",
"Restore Attachment" : "Restaurar anexo",
"No comments yet. Begin the discussion!" : "Aínda non hai comentarios. Comece o debate!",
"Save" : "Gardar",
"The comment cannot be empty." : "O comentario non pode estar baleiro",
@@ -187,32 +178,25 @@
"Update" : "Actualizar",
"(group)" : "(grupo)",
"(circle)" : "(círculo)",
"seconds ago" : "segundos atrás",
"Assign to me" : "Asignarme",
"Unarchive card" : "Desarquivar a tarxeta",
"Archive card" : "Arquivar a tarxeta",
"Delete card" : "Eliminar tarxeta",
"Move card" : "Mover a tarxeta",
"Card details" : "Detalles da tarxeta",
"Move card to another board" : "Mover a tarxeta a outro taboleiro",
"Select a stack" : "Seleccione unha rima",
"seconds ago" : "segundos atrás",
"All boards" : "Todos os taboleiros",
"Archived boards" : "Taboleiros arquivados",
"Shared with you" : "Compartido con vostede",
"Limit deck usage of groups" : "Limitar o uso da plataforma a grupos",
"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." : "Limitando Deck bloqueará os usuarios que non formen parte destes grupos, para crear os seus propios taboleiros. Os usuarios aínda así poderán traballar en taboleiros compartidos con eles.",
"Shared boards" : "Taboleiros compartidos",
"Settings" : "Axustes",
"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." : "Limitando Deck bloqueará os usuarios que non formen parte destes grupos, para crear os seus propios taboleiros. Os usuarios aínda así poderán traballar en taboleiros compartidos con eles.",
"New board title" : "Novo título do taboleiro",
"Edit board" : "Editar taboleiro",
"Clone board " : "Clonar taboleiro",
"Unarchive board " : "Desarquivar taboleiro",
"Archive board " : "Arquivar taboleiro",
"Delete board " : "Eliminar taboleiro",
"Board details" : "Detalles do taboleiro",
"Board {0} deleted" : "Eliminouse o taboleiro {0}",
"An error occurred" : "Produciuse un erro",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Confirma que quere eliminar o taboleiro {title}? Isto eliminará todos os datos deste taboleiro.",
"Delete the board?" : "Eliminar o taboleiro?",
"Clone board" : "Clonar taboleiro",
"Archive board" : "Arquivar taboleiro",
"Unarchive board" : "Desarquivar taboleiro",
"Delete board" : "Eliminar taboleiro",
"Board details" : "Detalles do taboleiro",
"Link to a board" : "Ligar a un taboleiro",
"Link to a card" : "Ligar a unha tarxeta",
"Something went wrong" : "Algo foi mal",

View File

@@ -1,39 +1,9 @@
OC.L10N.register(
"deck",
{
"You have created a new board {board}" : "יצרת לוח חדש {board}",
"{user} has created a new board {board}" : "נוצר לוח חדש {board} על ידי {user}",
"You have deleted the board {board}" : "מחקת את הלוח {board}",
"{user} has deleted the board {board}" : "הלוח {board} נמחק על ידי {user}",
"You have restored the board {board}" : "שחזרת את הלוח {board}",
"{user} has restored the board {board}" : "הלוח {board} שוחזר על ידי {user}",
"You have shared the board {board} with {acl}" : "שיתפת את הלוח {board} עם {acl}",
"{user} has shared the board {board} with {acl}" : "הלוח {board} שותף עם {acl} על ידי {user}",
"You have removed {acl} from the board {board}" : "הסרת את {acl} מהלוח {board}",
"{user} has removed {acl} from the board {board}" : "בוצעה הסרה של {acl} מהלוח {board} על ידי {user}",
"You have renamed the board {before} to {board}" : "שינית את שם הלוח {before} לשם {board}",
"{user} has renamed the board {before} to {board}" : "השם של הלוח {before} השתנה לשם {board} על ידי {user}",
"You have archived the board {board}" : "העברת את הלוח {board} לארכיון",
"{user} has archived the board {before}" : "הארכיון {before} הועבר לארכיון על ידי {user}",
"You have unarchived the board {board}" : "הוצאת את הלוח {board} מהארכיון",
"{user} has unarchived the board {before}" : "הלוח {before} הוצא מהארכיון על ידי {user}",
"You have created a new stack {stack} on board {board}" : "יצרת ערימה חדשה {stack} בלוח {board}",
"{user} has created a new stack {stack} on board {board}" : "נוצרה ערימה חדשה {stack} בלוח {board} על ידי {user}",
"You have renamed stack {before} to {stack} on board {board}" : "שינית את שם הערימה {before} לשם {stack} בלוח {board}",
"You have removed the due date of card {card}" : "הסרת את מועד היעד מהכרטיס {card}",
"{user} has removed the due date of card {card}" : "מועד היעד של הכרטיס {card} הוסר על ידי {user}",
"You have commented on card {card}" : "הגבת על הכרטיס {cart}",
"{user} has commented on card {card}" : "נוספה תגובה מאת {user} על הכרטיס {card}",
"A <strong>card description</strong> inside the Deck app has been changed" : "<strong>תיאור של כרטיס</strong> בתוך יישומון החבילה נערך",
"Deck" : "חפיסה",
"Changes in the <strong>Deck app</strong>" : "שינויים ל<strong>יישומון החבילה</strong>",
"A <strong>comment</strong> was created on a card" : "נוצרה <strong>הערה</strong> על כרטיס",
"Personal" : "אישי",
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "הכרטיס \"%s\" שב־„%s” הוקצה אליך על ידי %s.",
"{user} has assigned the card \"%s\" on \"%s\" to you." : "הכרטיס „%s” שב„%s” הוקצה לך על ידי {user}.",
"The card \"%s\" on \"%s\" has reached its due date." : "הכרטיס „%s” שתחת „%s” הגיע למועד התפוגה שלו.",
"%s has mentioned you in a comment on \"%s\"." : "אוזכרת על ידי %s בתגובה על „%s”.",
"{user} has mentioned you in a comment on \"%s\"." : "אוזכרת על ידי {user} בתגובה על „%s”.",
"The board \"%s\" has been shared with you by %s." : "הלוח „%s” שותף אתך על ידי %s.",
"{user} has shared the board %s with you." : "הלוח %s שותף אתך על ידי {user}",
"No data was provided to create an attachment." : "לא סופקו נתונים ליצירת קובץ מצורף",
@@ -42,12 +12,7 @@ OC.L10N.register(
"Action needed" : "נדרשת פעולה",
"Later" : "מאוחר יותר",
"copy" : "עותק",
"To do" : "לעשות",
"Doing" : "בביצוע",
"Done" : "הסתיים",
"Example Task 3" : "משימה לדוגמה 3",
"Example Task 2" : "משימה לדוגמה 2",
"Example Task 1" : "משימה לדוגמה 1",
"The file was uploaded" : "הקובץ הועלה",
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "הקובץ שהועלה חורג מההנחיה upload_max_filesize ב־php.ini",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "הקובץ שהועלה חורג מההנחיה MAX_FILE_SIZE שצוינה בטופס ה־HTML",
@@ -57,127 +22,49 @@ OC.L10N.register(
"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",
"Personal planning and team project organization" : "ארגון אישי וקבוצתי של מיזמים",
"Create new board" : "יצירת לוח חדש",
"new board" : "לוח חדש",
"Select the board to link to a project" : "נא לבחור את הלוח לקישור למיזם",
"Search by board title" : "חיפוש לפי כותרת לו",
"Select board" : "בחירת לוח",
"Select the card to link to a project" : "נא לבחור את הכרטיס לקישור למיזם",
"Select a board" : "נא לבחור לוח",
"Select a card" : "נא לבחור כרטיס",
"Link to card" : "קישור לכרטיס",
"Cancel" : "ביטול",
"File already exists" : "הקובץ כבר קיים",
"A file with the name {filename} already exists." : "כבר קיים קובץ עם השם {filename}.",
"Do you want to overwrite it?" : "לשכתב עליו?",
"Overwrite file" : "דריסת קובץ",
"Keep existing file" : "לשמור על הקובץ הקיים",
"This board is read only" : "הלוח הזה הוא לקריאה בלבד",
"Drop your files to upload" : "יש לגרור לכאן קבצים כדי להעלות",
"Archived cards" : "כרטיסים בארכיון",
"Add new list" : "הוספת רשימה חדשה",
"List name" : "שם הרשימה",
"Apply filter" : "החלת מסנן",
"Filter by tag" : "סינון לפי תגית",
"Filter by assigned user" : "סינון לפי משתמש מוקצה",
"Filter by due date" : "סינון לפי תאריך יעד",
"Overdue" : "באיחור",
"Next 24 hours" : "ב־24 השעות הבאות",
"Next 7 days" : "ב־7 הימים הבאים",
"Next 30 days" : "ב־30 הימים הבאים",
"No due date" : "ללא תאריך יעד",
"Clear filter" : "מחיקת מסנן",
"Today" : "היום",
"Show archived cards" : "הצגת כרטיסים בארכיון",
"Toggle compact mode" : "החלפת מצב חסכוני",
"Details" : "פרטים",
"Loading board" : "הלוח נטען",
"Board not found" : "הלוח לא נמצא",
"Sharing" : "שיתוף",
"Tags" : "תגיות",
"Deleted items" : "פריטים שנמחקו",
"Timeline" : "ציר זמן",
"Deleted lists" : "רשימות שנמחקו",
"Undo" : "ביטול",
"Deleted cards" : "כרטיסים שנמחקו",
"Share board with a user, group or circle …" : "שיתוף לוח עם משתמש, קבוצה או מעגל…",
"Board owner" : "בעלות על הלוח",
"(Group)" : "(קבוצה)",
"(Circle)" : "(מעגל)",
"Can edit" : "ניתן לערוך",
"Can share" : "Can share",
"Can manage" : "הרשאת ניהול",
"Delete" : "מחיקה",
"Add a new stack" : "הוספת ערימה חדשה",
"Delete list" : "מחיקת רשימה",
"Add card" : "הוספת כרטיס",
"Add a new card" : "הוספת כרטיס חדש",
"Edit" : "עריכה",
"Add a new tag" : "הוספת תגית חדשה",
"title and color value must be provided" : "יש לספק כותרת וערך צבע",
"Title" : "תפקיד",
"Members" : "חברים",
"Add this attachment" : "הוספת קובץ מצורף זה",
"Delete Attachment" : "מחיקת קובץ מצורף",
"Restore Attachment" : "שחזור קובץ מצורף",
"Assign a tag to this card…" : "הקצאת תגית לכרטיס זה…",
"Assign to users" : "הקצאה למשתמשים",
"Assign to users/groups/circles" : "הקצאה למשתמשים/קבוצות/מעגלים",
"Assign a user to this card…" : "הקצאת משתמש לכרטיס זה…",
"Due date" : "מועד תפוגה",
"Set a due date" : "הגדרת תאריך יעד",
"Remove due date" : "הסרת מועד התפוגה",
"Description" : "תיאוג",
"(Unsaved)" : "(לא נשמר)",
"(Saving…)" : "(מתבצעת שמירה…)",
"Formatting help" : "עזרה בסידור בתבנית",
"Add Attachment" : "הוספת קובץ מצורף",
"Edit description" : "עריכת תיאור",
"View description" : "הצגת תיאור",
"Attachments" : "קבצים מצורפים",
"Comments" : "תגובות",
"Choose attachment" : "בחירת קובץ מצורף",
"Modified" : "מועד שינוי",
"Created" : "מועד היצירה",
"Upload attachment" : "העלאת קבצים מצורפים",
"No comments yet. Begin the discussion!" : "אין עדיין הערות. אפשר להתחיל לדון!",
"Save" : "שמור",
"The comment cannot be empty." : "ההערה לא יכולה להיות ריקה.",
"The comment cannot be longer than 1000 characters." : "אורך ההערה לא יכול לחצות את רף 1000 התווים.",
"In reply to" : "בתגובה אל",
"Reply" : "תגובה",
"Update" : "עדכון",
"(group)" : "(קבוצה)",
"(circle)" : "(מעגל)",
"seconds ago" : "לפני מספר שניות",
"Assign to me" : "הקצאה אלי",
"Unarchive card" : "הוצאת הכרטיס מהארכיון",
"Archive card" : "העברת כרטיס לארכיון",
"Delete card" : "מחיקת כרטיס לארכיון",
"Move card" : "העברת כרטיס",
"Card details" : "פרטי הכרטיס",
"Move card to another board" : "העברת כרטיס ללוח אחר",
"Select a stack" : "בחירת ערימה",
"All boards" : "כל הלוחות",
"seconds ago" : "לפני מספר שניות",
"Archived boards" : "לוחות שנשמרו בארכיון",
"Shared with you" : "משותף אתך",
"Limit deck usage of groups" : "הגבלת השימוש בחבילה לקבוצות",
"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." : "הגבלת חבילה תחסום משתמשים שאינם חלק מקבוצות אלו מיצירת לוחות משלהם. משתמשים עדיין יוכלו לעבור על לוחות ששותפו אתם.",
"Shared boards" : "לוחות משותפים",
"Settings" : "הגדרות",
"New board title" : "כותרת לוח חדשה",
"Edit board" : "עריכת לוח",
"Clone board " : "שכפול לוח",
"Unarchive board " : "הוצאת הלוח מהארכיון",
"Archive board " : "העברת הלוח לארכיון",
"Delete board " : "מחיקת לוח",
"Board details" : "פרטי לוח",
"Board {0} deleted" : "הלוח {0} נמחק",
"An error occurred" : "אירעה שגיאה",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "למחוק את הלוח {title}? פעולה זו תמחק את כל הנתונים של הלוח הזה.",
"Delete the board?" : "למחוק את הלוח הזה?",
"Link to a board" : "קישור ללוח",
"Link to a card" : "קישור לכרטיס",
"Something went wrong" : "משהו השתבש",
"Archive board" : "העברת לוח לארכיון",
"Unarchive board" : "הוצאת ארכיון מהלוח",
"Delete board" : "מחיקת לו",
"Board details" : "פרטי לוח",
"Maximum file size of {size} exceeded" : "גודל הקבצים המרבי {size} הושג"
},
"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;");

View File

@@ -1,37 +1,7 @@
{ "translations": {
"You have created a new board {board}" : "יצרת לוח חדש {board}",
"{user} has created a new board {board}" : "נוצר לוח חדש {board} על ידי {user}",
"You have deleted the board {board}" : "מחקת את הלוח {board}",
"{user} has deleted the board {board}" : "הלוח {board} נמחק על ידי {user}",
"You have restored the board {board}" : "שחזרת את הלוח {board}",
"{user} has restored the board {board}" : "הלוח {board} שוחזר על ידי {user}",
"You have shared the board {board} with {acl}" : "שיתפת את הלוח {board} עם {acl}",
"{user} has shared the board {board} with {acl}" : "הלוח {board} שותף עם {acl} על ידי {user}",
"You have removed {acl} from the board {board}" : "הסרת את {acl} מהלוח {board}",
"{user} has removed {acl} from the board {board}" : "בוצעה הסרה של {acl} מהלוח {board} על ידי {user}",
"You have renamed the board {before} to {board}" : "שינית את שם הלוח {before} לשם {board}",
"{user} has renamed the board {before} to {board}" : "השם של הלוח {before} השתנה לשם {board} על ידי {user}",
"You have archived the board {board}" : "העברת את הלוח {board} לארכיון",
"{user} has archived the board {before}" : "הארכיון {before} הועבר לארכיון על ידי {user}",
"You have unarchived the board {board}" : "הוצאת את הלוח {board} מהארכיון",
"{user} has unarchived the board {before}" : "הלוח {before} הוצא מהארכיון על ידי {user}",
"You have created a new stack {stack} on board {board}" : "יצרת ערימה חדשה {stack} בלוח {board}",
"{user} has created a new stack {stack} on board {board}" : "נוצרה ערימה חדשה {stack} בלוח {board} על ידי {user}",
"You have renamed stack {before} to {stack} on board {board}" : "שינית את שם הערימה {before} לשם {stack} בלוח {board}",
"You have removed the due date of card {card}" : "הסרת את מועד היעד מהכרטיס {card}",
"{user} has removed the due date of card {card}" : "מועד היעד של הכרטיס {card} הוסר על ידי {user}",
"You have commented on card {card}" : "הגבת על הכרטיס {cart}",
"{user} has commented on card {card}" : "נוספה תגובה מאת {user} על הכרטיס {card}",
"A <strong>card description</strong> inside the Deck app has been changed" : "<strong>תיאור של כרטיס</strong> בתוך יישומון החבילה נערך",
"Deck" : "חפיסה",
"Changes in the <strong>Deck app</strong>" : "שינויים ל<strong>יישומון החבילה</strong>",
"A <strong>comment</strong> was created on a card" : "נוצרה <strong>הערה</strong> על כרטיס",
"Personal" : "אישי",
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "הכרטיס \"%s\" שב־„%s” הוקצה אליך על ידי %s.",
"{user} has assigned the card \"%s\" on \"%s\" to you." : "הכרטיס „%s” שב„%s” הוקצה לך על ידי {user}.",
"The card \"%s\" on \"%s\" has reached its due date." : "הכרטיס „%s” שתחת „%s” הגיע למועד התפוגה שלו.",
"%s has mentioned you in a comment on \"%s\"." : "אוזכרת על ידי %s בתגובה על „%s”.",
"{user} has mentioned you in a comment on \"%s\"." : "אוזכרת על ידי {user} בתגובה על „%s”.",
"The board \"%s\" has been shared with you by %s." : "הלוח „%s” שותף אתך על ידי %s.",
"{user} has shared the board %s with you." : "הלוח %s שותף אתך על ידי {user}",
"No data was provided to create an attachment." : "לא סופקו נתונים ליצירת קובץ מצורף",
@@ -40,12 +10,7 @@
"Action needed" : "נדרשת פעולה",
"Later" : "מאוחר יותר",
"copy" : "עותק",
"To do" : "לעשות",
"Doing" : "בביצוע",
"Done" : "הסתיים",
"Example Task 3" : "משימה לדוגמה 3",
"Example Task 2" : "משימה לדוגמה 2",
"Example Task 1" : "משימה לדוגמה 1",
"The file was uploaded" : "הקובץ הועלה",
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "הקובץ שהועלה חורג מההנחיה upload_max_filesize ב־php.ini",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "הקובץ שהועלה חורג מההנחיה MAX_FILE_SIZE שצוינה בטופס ה־HTML",
@@ -55,127 +20,49 @@
"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",
"Personal planning and team project organization" : "ארגון אישי וקבוצתי של מיזמים",
"Create new board" : "יצירת לוח חדש",
"new board" : "לוח חדש",
"Select the board to link to a project" : "נא לבחור את הלוח לקישור למיזם",
"Search by board title" : "חיפוש לפי כותרת לו",
"Select board" : "בחירת לוח",
"Select the card to link to a project" : "נא לבחור את הכרטיס לקישור למיזם",
"Select a board" : "נא לבחור לוח",
"Select a card" : "נא לבחור כרטיס",
"Link to card" : "קישור לכרטיס",
"Cancel" : "ביטול",
"File already exists" : "הקובץ כבר קיים",
"A file with the name {filename} already exists." : "כבר קיים קובץ עם השם {filename}.",
"Do you want to overwrite it?" : "לשכתב עליו?",
"Overwrite file" : "דריסת קובץ",
"Keep existing file" : "לשמור על הקובץ הקיים",
"This board is read only" : "הלוח הזה הוא לקריאה בלבד",
"Drop your files to upload" : "יש לגרור לכאן קבצים כדי להעלות",
"Archived cards" : "כרטיסים בארכיון",
"Add new list" : "הוספת רשימה חדשה",
"List name" : "שם הרשימה",
"Apply filter" : "החלת מסנן",
"Filter by tag" : "סינון לפי תגית",
"Filter by assigned user" : "סינון לפי משתמש מוקצה",
"Filter by due date" : "סינון לפי תאריך יעד",
"Overdue" : "באיחור",
"Next 24 hours" : "ב־24 השעות הבאות",
"Next 7 days" : "ב־7 הימים הבאים",
"Next 30 days" : "ב־30 הימים הבאים",
"No due date" : "ללא תאריך יעד",
"Clear filter" : "מחיקת מסנן",
"Today" : "היום",
"Show archived cards" : "הצגת כרטיסים בארכיון",
"Toggle compact mode" : "החלפת מצב חסכוני",
"Details" : "פרטים",
"Loading board" : "הלוח נטען",
"Board not found" : "הלוח לא נמצא",
"Sharing" : "שיתוף",
"Tags" : "תגיות",
"Deleted items" : "פריטים שנמחקו",
"Timeline" : "ציר זמן",
"Deleted lists" : "רשימות שנמחקו",
"Undo" : "ביטול",
"Deleted cards" : "כרטיסים שנמחקו",
"Share board with a user, group or circle …" : "שיתוף לוח עם משתמש, קבוצה או מעגל…",
"Board owner" : "בעלות על הלוח",
"(Group)" : "(קבוצה)",
"(Circle)" : "(מעגל)",
"Can edit" : "ניתן לערוך",
"Can share" : "Can share",
"Can manage" : "הרשאת ניהול",
"Delete" : "מחיקה",
"Add a new stack" : "הוספת ערימה חדשה",
"Delete list" : "מחיקת רשימה",
"Add card" : "הוספת כרטיס",
"Add a new card" : "הוספת כרטיס חדש",
"Edit" : "עריכה",
"Add a new tag" : "הוספת תגית חדשה",
"title and color value must be provided" : "יש לספק כותרת וערך צבע",
"Title" : "תפקיד",
"Members" : "חברים",
"Add this attachment" : "הוספת קובץ מצורף זה",
"Delete Attachment" : "מחיקת קובץ מצורף",
"Restore Attachment" : "שחזור קובץ מצורף",
"Assign a tag to this card…" : "הקצאת תגית לכרטיס זה…",
"Assign to users" : "הקצאה למשתמשים",
"Assign to users/groups/circles" : "הקצאה למשתמשים/קבוצות/מעגלים",
"Assign a user to this card…" : "הקצאת משתמש לכרטיס זה…",
"Due date" : "מועד תפוגה",
"Set a due date" : "הגדרת תאריך יעד",
"Remove due date" : "הסרת מועד התפוגה",
"Description" : "תיאוג",
"(Unsaved)" : "(לא נשמר)",
"(Saving…)" : "(מתבצעת שמירה…)",
"Formatting help" : "עזרה בסידור בתבנית",
"Add Attachment" : "הוספת קובץ מצורף",
"Edit description" : "עריכת תיאור",
"View description" : "הצגת תיאור",
"Attachments" : "קבצים מצורפים",
"Comments" : "תגובות",
"Choose attachment" : "בחירת קובץ מצורף",
"Modified" : "מועד שינוי",
"Created" : "מועד היצירה",
"Upload attachment" : "העלאת קבצים מצורפים",
"No comments yet. Begin the discussion!" : "אין עדיין הערות. אפשר להתחיל לדון!",
"Save" : "שמור",
"The comment cannot be empty." : "ההערה לא יכולה להיות ריקה.",
"The comment cannot be longer than 1000 characters." : "אורך ההערה לא יכול לחצות את רף 1000 התווים.",
"In reply to" : "בתגובה אל",
"Reply" : "תגובה",
"Update" : "עדכון",
"(group)" : "(קבוצה)",
"(circle)" : "(מעגל)",
"seconds ago" : "לפני מספר שניות",
"Assign to me" : "הקצאה אלי",
"Unarchive card" : "הוצאת הכרטיס מהארכיון",
"Archive card" : "העברת כרטיס לארכיון",
"Delete card" : "מחיקת כרטיס לארכיון",
"Move card" : "העברת כרטיס",
"Card details" : "פרטי הכרטיס",
"Move card to another board" : "העברת כרטיס ללוח אחר",
"Select a stack" : "בחירת ערימה",
"All boards" : "כל הלוחות",
"seconds ago" : "לפני מספר שניות",
"Archived boards" : "לוחות שנשמרו בארכיון",
"Shared with you" : "משותף אתך",
"Limit deck usage of groups" : "הגבלת השימוש בחבילה לקבוצות",
"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." : "הגבלת חבילה תחסום משתמשים שאינם חלק מקבוצות אלו מיצירת לוחות משלהם. משתמשים עדיין יוכלו לעבור על לוחות ששותפו אתם.",
"Shared boards" : "לוחות משותפים",
"Settings" : "הגדרות",
"New board title" : "כותרת לוח חדשה",
"Edit board" : "עריכת לוח",
"Clone board " : "שכפול לוח",
"Unarchive board " : "הוצאת הלוח מהארכיון",
"Archive board " : "העברת הלוח לארכיון",
"Delete board " : "מחיקת לוח",
"Board details" : "פרטי לוח",
"Board {0} deleted" : "הלוח {0} נמחק",
"An error occurred" : "אירעה שגיאה",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "למחוק את הלוח {title}? פעולה זו תמחק את כל הנתונים של הלוח הזה.",
"Delete the board?" : "למחוק את הלוח הזה?",
"Link to a board" : "קישור ללוח",
"Link to a card" : "קישור לכרטיס",
"Something went wrong" : "משהו השתבש",
"Archive board" : "העברת לוח לארכיון",
"Unarchive board" : "הוצאת ארכיון מהלוח",
"Delete board" : "מחיקת לו",
"Board details" : "פרטי לוח",
"Maximum file size of {size} exceeded" : "גודל הקבצים המרבי {size} הושג"
},"pluralForm" :"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;"
}

View File

@@ -114,7 +114,6 @@ OC.L10N.register(
"Keep existing file" : "Zadrži postojeću datoteku",
"This board is read only" : "Ova je ploča samo za čitanje",
"Drop your files to upload" : "Ispustite datoteke za otpremu",
"Archived cards" : "Arhivirane kartice",
"Add new list" : "Dodaj novi popis",
"List name" : "Naziv popisa",
"Apply filter" : "Primijeni filtar",
@@ -122,7 +121,7 @@ OC.L10N.register(
"Filter by assigned user" : "Filtriraj prema dodijeljenom korisniku",
"Filter by due date" : "Filtriraj prema datumu dospijeća",
"Overdue" : "Kasni",
"Next 24 hours" : "Sljedeća 24 sata",
"Today" : "Danas",
"Next 7 days" : "Sljedećih 7 dana",
"Next 30 days" : "Sljedećih 30 dana",
"No due date" : "Nema datuma dospijeća",
@@ -135,7 +134,6 @@ OC.L10N.register(
"Tags" : "Oznake",
"Deleted items" : "Izbrisane stavke",
"Timeline" : "Vremenska crta",
"Deleted lists" : "Izbrisani popisi",
"Undo" : "Poništi",
"Deleted cards" : "Izbrisane kartice",
"Share board with a user, group or circle …" : "Dijelite ploču s korisnikom, grupom ili krugom...",
@@ -151,33 +149,22 @@ OC.L10N.register(
"Add card" : "Dodaj karticu",
"Add a new card" : "Dodaj novu karticu",
"Edit" : "Uredi",
"Add a new tag" : "Dodaj novu oznaku",
"title and color value must be provided" : "potrebno je odabrati naziv i vrijednost boje",
"Title" : "Naslov",
"Members" : "Članovi",
"Add this attachment" : "Dodajte ovaj privitak",
"Delete Attachment" : "Izbriši privitak",
"Restore Attachment" : "Vrati privitak",
"Assign a tag to this card…" : "Dodijeli oznaku ovoj kartici...",
"Assign to users" : "Dodijeli korisnicima",
"Assign to users/groups/circles" : "Dodijeli korisnicima/grupama/krugovima",
"Assign a user to this card…" : "Dodijeli korisnika ovoj kartici...",
"Due date" : "Datum dospijeća",
"Set a due date" : "Postavi datum dospijeća",
"Remove due date" : "Ukloni datum dospijeća",
"Description" : "Opis",
"(Unsaved)" : "(Nije spremljeno)",
"(Saving…)" : "(Spremanje…)",
"Formatting help" : "Pomoć pri oblikovanju",
"Add Attachment" : "Dodaj privitak",
"Edit description" : "Uredi opis",
"View description" : "Prikaži opis",
"Attachments" : "Privici",
"Comments" : "Komentari",
"Choose attachment" : "Odaberi privitak",
"Modified" : "Promijenjeno",
"Created" : "Stvoreno",
"Upload attachment" : "Otpremi privitak",
"Delete Attachment" : "Izbriši privitak",
"Restore Attachment" : "Vrati privitak",
"No comments yet. Begin the discussion!" : "Nema komentara. Započnite raspravu!",
"Save" : "Spremi",
"The comment cannot be empty." : "Komentar ne može biti prazan.",
@@ -186,27 +173,25 @@ OC.L10N.register(
"Reply" : "Odgovori",
"Update" : "Ažuriraj",
"(group)" : "(grupa)",
"(circle)" : "(krug)",
"seconds ago" : "prije nekoliko sekundi",
"Assign to me" : "Dodijeli meni",
"Unarchive card" : "Dearhiviraj karticu",
"Archive card" : "Arhiviraj karticu",
"Delete card" : "Izbriši karticu",
"Move card" : "Premjesti karticu",
"Card details" : "Pojedinosti o kartici",
"Select a stack" : "Odaberi stog",
"seconds ago" : "prije nekoliko sekundi",
"All boards" : "Sve ploče",
"Archived boards" : "Arhivirane ploče",
"Shared with you" : "Podijeljeno s vama",
"Limit deck usage of groups" : "Ograniči uporabu decka grupama",
"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." : "Ograničenjem Decka možete spriječiti korisnike koji ne sudjeluju u tim grupama da stvaraju vlastite ploče. Korisnici će i dalje moći raditi na pločama koje su dijeljene s njima.",
"Shared boards" : "Dijeljene ploče",
"Settings" : "Postavke",
"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." : "Ograničenjem Decka možete spriječiti korisnike koji ne sudjeluju u tim grupama da stvaraju vlastite ploče. Korisnici će i dalje moći raditi na pločama koje su dijeljene s njima.",
"New board title" : "Novi naslov ploče",
"Edit board" : "Uredi ploču",
"Board details" : "Pojedinosti o ploči",
"An error occurred" : "Došlo je do pogreške",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Jeste li sigurni da želite izbrisati ploču {title}? Time ćete izbrisati sve podatke ploče.",
"Delete the board?" : "Želite li izbrisati ploču?",
"Clone board" : "Kloniraj ploču",
"Archive board" : "Arhiviraj ploču",
"Unarchive board" : "Dearhiviraj ploču",
"Delete board" : "Izbriši ploču",
"Board details" : "Pojedinosti o ploči",
"Link to a board" : "Poveznica na ploču",
"Link to a card" : "Poveznica na karticu",
"Something went wrong" : "Nešto je pošlo po krivu",

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