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 = { module.exports = {
extends: [ extends: [
'@nextcloud' 'nextcloud'
], ],
rules: { rules: {
'valid-jsdoc': ['off'], 'valid-jsdoc': ['off'],

View File

@@ -26,22 +26,6 @@ jobs:
- name: Lint - name: Lint
run: composer run 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: node:
runs-on: ubuntu-latest runs-on: ubuntu-latest
@@ -59,25 +43,3 @@ jobs:
run: npm ci run: npm ci
- name: ESLint - name: ESLint
run: npm run lint 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 css/vendor.css
tests/integration/vendor/ tests/integration/vendor/
tests/integration/composer.lock tests/integration/composer.lock
tests/.phpunit.result.cache
vendor/ vendor/
*.lock *.lock
.php_cs.cache
\.idea/ \.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 # Changelog
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
## 1.0.2 - 2020-06-03 ## 1.0.0 - unreleased
### Fixed ## Added
* [#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
- Completly rewritten frontend - Completly rewritten frontend
- Better maintainability - Better maintainability
@@ -65,15 +25,18 @@ Special thanks for contributing huge parts of the Vue.js migration:
Testers/reporters: Testers/reporters:
@cloud2018 @putt1ck @bpcurse @cloud2018 @putt1ck @bpcurse
Calendar/Tasks integration help:
@raimund-schluessler @georgehrke
Android app team for helping to improve our REST API: Android app team for helping to improve our REST API:
@desperateCoder @stefan-niedermann @desperateCoder @stefan-niedermann
## 0.8.0 - 2020-01-16 ## 0.8.0 - 2020-01-16
### Added ## Added
- Case insensitive search (@matchish) - Case insensitive search (@matchish)
### Fixed ## Fixed
- Fix reversed permissions for reordering stacks (@JLueke) - Fix reversed permissions for reordering stacks (@JLueke)
- Fix reversed visibility of 'add stack' field (@JLueke) - Fix reversed visibility of 'add stack' field (@JLueke)
- Fix occ export command - Fix occ export command
@@ -83,7 +46,7 @@ Android app team for helping to improve our REST API:
## 0.7.0 - 2019-08-20 ## 0.7.0 - 2019-08-20
### Added ## Added
- Make deck compatible to Nextcloud 17 - Make deck compatible to Nextcloud 17
- Allow to set the description when creating cards though the REST API - 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 ### 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 ## 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. 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 ### Running tests
You can use the provided Makefile to run all tests by using: 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; namespace OCA\Deck\AppInfo;
use OCP\AppFramework\App;
/** /**
* Additional autoloader registration, e.g. registering composer autoloaders * Additional autoloader registration, e.g. registering composer autoloaders
*/ */

View File

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

View File

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

View File

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

View File

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

View File

@@ -59,6 +59,8 @@
white-space: nowrap; white-space: nowrap;
} }
span.due { }
div.card-assigned-users { div.card-assigned-users {
margin-right:10px; margin-right:10px;
} }
@@ -73,7 +75,7 @@
@page { @page {
size: A4 landscape; size: A4 landscape;
margin: 2cm; margin: 2cm;
} }
div#innerBoard { div#innerBoard {
display:flex; 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 # Prequisited
@@ -62,13 +62,6 @@ curl -u admin:admin -X GET \
-H "If-Modified-Since: Mon, 05 Nov 2018 09:28:00 GMT" -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 # Endpoints
## Boards ## Boards
@@ -124,7 +117,7 @@ Returns an array of board items
| Parameter | Type | Description | | 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) | | color | String | The hexadecimal color of the new board (e.g. FF0000) |
```json ```json
@@ -268,9 +261,9 @@ Returns an array of board items
| Parameter | Type | Description | | Parameter | Type | Description |
| --------- | ------ | ---------------------------------------------------- | | --------- | ------ | ---------------------------------------------------- |
| title | String | The title of the board, maximum length is limited to 100 characters | | title | String | The title of the new board |
| color | String | The hexadecimal color of the board (e.g. FF0000) | | color | String | The hexadecimal color of the new board (e.g. FF0000) |
| archived | Bool | The hexadecimal color of the board (e.g. FF0000) | | archived | Bool | The hexadecimal color of the new board (e.g. FF0000) |
```json ```json
{ {
@@ -444,7 +437,7 @@ The board list endpoint supports setting an `If-Modified-Since` header to limit
| Parameter | Type | Description | | 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 | | order | Integer | Order for sorting the stacks |
#### Request parameters #### Request parameters
@@ -470,7 +463,7 @@ The board list endpoint supports setting an `If-Modified-Since` header to limit
| Parameter | Type | Description | | 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 | | order | Integer | Order for sorting the stacks |
#### Response #### Response
@@ -519,7 +512,7 @@ The board list endpoint supports setting an `If-Modified-Since` header to limit
| Parameter | Type | Description | | 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 | | type | String | Type of the card (for later use) use 'plain' for now |
| order | Integer | Order for sorting the stacks | | order | Integer | Order for sorting the stacks |
| description | String | _(optional)_ The markdown description of the card | | 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 | | 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 | | description | String | The markdown description of the card |
| type | String | Type of the card (for later use) use 'plain' for now | | type | String | Type of the card (for later use) use 'plain' for now |
| order | Integer | Order for sorting the stacks | | 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 - 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 #### Request parameters
@@ -701,7 +694,7 @@ The request can fail with a bad request response for the following reasons:
| Parameter | Type | Description | | Parameter | Type | Description |
| --------- | ------- | --------------------------------------- | | --------- | ------- | --------------------------------------- |
| userId | String | The user id to unassign from the card | | userId | String | The user id to assign to the card |
#### Response #### Response
@@ -947,7 +940,7 @@ For now only `deck_file` is supported as an attachment type.
# OCS API # 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. This has the benefit that both the web UI as well as external integrations can use the same API.
## Comments ## Comments

View File

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

View File

@@ -1,161 +1,36 @@
OC.L10N.register( OC.L10N.register(
"deck", "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" : "شخصي", "Personal" : "شخصي",
"No data was provided to create an attachment." : "لا بيانات تم تقديمها لانشاء مرفق", "Finished" : "مكتملة",
"Finished" : "إكتمل",
"To review" : "لاعادة المراجعة",
"Action needed" : "يحتاج الى اجراء",
"Later" : "لاحقا",
"copy" : "أنسخ", "copy" : "أنسخ",
"To do" : "لفعله", "Done" : "تم",
"Doing" : "تحت العمل",
"Done" : "أُنجز",
"Example Task 3" : "مثال المهمة 3",
"Example Task 2" : "مثال المهمة 2",
"Example Task 1" : "مثال المهمة 1",
"The file was uploaded" : "الملف تم رفعه",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "حجم الملف الذي تريد ترفيعه أعلى مما MAX_FILE_SIZE يسمح به في واجهة ال HTML.", "The uploaded file exceeds the 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" : "لم يتم رفع أي ملف", "No file was uploaded" : "لم يتم رفع أي ملف",
"Missing a temporary folder" : "المجلد المؤقت غير موجود", "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" : "إلغاء", "Cancel" : "إلغاء",
"File already exists" : "الملف موجود مسبقاً", "File already exists" : "الملف موجود مسبقاً",
"Do you want to overwrite it?" : "هل تريد تجاوزه؟", "Today" : "اليوم",
"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" : "اظهر البطاقات المؤرشفة",
"Details" : "التفاصيل", "Details" : "التفاصيل",
"Loading board" : "اللوح يحمل..",
"Board not found" : "اللوح غير موجود",
"Sharing" : "المشاركة", "Sharing" : "المشاركة",
"Tags" : "الوسوم", "Tags" : "الوسوم",
"Deleted items" : "العناصر الممسوحة", "Timeline" : "الخيط الزمني",
"Timeline" : "الجدول الزمني",
"Deleted lists" : "القوائم المحذوفة",
"Undo" : "تراجع", "Undo" : "تراجع",
"Deleted cards" : "البطاقات المحذوفة", "Can edit" : "يمكنه التغيير",
"Share board with a user, group or circle …" : "مشاركة اللوح مع مستخدم،مجموعة او دائرة ..", "Can share" : "Can share",
"Board owner" : "منشئ اللوح",
"(Group)" : "(مجموعة)",
"(Circle)" : "(دائرة)",
"Can edit" : "يمكن تعديله",
"Can share" : "يمكن مشاركته",
"Can manage" : "يمكن ادارته",
"Delete" : "حذف ", "Delete" : "حذف ",
"Add a new stack" : "إضافة حزمة جديدة",
"Delete list" : "حذف القائمة",
"Add card" : "إضافة بطاقة",
"Add a new card" : "إضافة بطاقة جديدة",
"Edit" : "تعديل", "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" : "الوصف", "Description" : "الوصف",
"(Unsaved)" : "(غير محفوظ)",
"(Saving…)" : "(يُحفظ..)",
"Add Attachment" : "أضف ملحق",
"Edit description" : "تعديل الوصف",
"View description" : "إظهار الوصف",
"Attachments" : "المرفقات", "Attachments" : "المرفقات",
"Comments" : "تعليقات", "Comments" : "تعليقات",
"Choose attachment" : "اختيار مرفق", "Modified" : "آخر تعديل",
"Modified" : "عُدل",
"Created" : "أُنشئ",
"Upload attachment" : "رفع المرفقات", "Upload attachment" : "رفع المرفقات",
"No comments yet. Begin the discussion!" : "لا يوجد تعليقات بعد, ابدأ النقاش الآن!",
"Save" : "حفظ", "Save" : "حفظ",
"The comment cannot be empty." : "التعليق لايمكن ان يكون فارغا.",
"The comment cannot be longer than 1000 characters." : "التعليق لا يمكن ان يكون اطول من 1000 حرف.",
"In reply to" : "يقوم بالرد على",
"Reply" : "رد", "Reply" : "رد",
"Update" : "تحديث", "Update" : "تحديث",
"(group)" : "(مجموعة)",
"(circle)" : "(دائرة)",
"seconds ago" : "ثوانٍ مضت",
"Assign to me" : "ينسب لي",
"Delete card" : "حذف البطاقة", "Delete card" : "حذف البطاقة",
"Move card" : "حرك البطاقة", "seconds ago" : "ثوان مضت",
"Card details" : "تفاصيل البطاقة",
"Move card to another board" : "حرك البطاقة الى لوح اخر",
"Select a stack" : "حدد حزمة",
"All boards" : "جميع الالواح",
"Archived boards" : "الالواح المؤرشفة",
"Shared with you" : "شورك معك",
"Limit deck usage of groups" : "استخدام دك Deck محدود للمجاميع",
"Settings" : "الإعدادات", "Settings" : "الإعدادات",
"New board title" : "عنوان لوح جديد", "An error occurred" : "طرأ هناك خطأ"
"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" : "شيئا ما خاطئ"
}, },
"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;"); "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": { { "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" : "شخصي", "Personal" : "شخصي",
"No data was provided to create an attachment." : "لا بيانات تم تقديمها لانشاء مرفق", "Finished" : "مكتملة",
"Finished" : "إكتمل",
"To review" : "لاعادة المراجعة",
"Action needed" : "يحتاج الى اجراء",
"Later" : "لاحقا",
"copy" : "أنسخ", "copy" : "أنسخ",
"To do" : "لفعله", "Done" : "تم",
"Doing" : "تحت العمل",
"Done" : "أُنجز",
"Example Task 3" : "مثال المهمة 3",
"Example Task 2" : "مثال المهمة 2",
"Example Task 1" : "مثال المهمة 1",
"The file was uploaded" : "الملف تم رفعه",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "حجم الملف الذي تريد ترفيعه أعلى مما MAX_FILE_SIZE يسمح به في واجهة ال HTML.", "The uploaded file exceeds the 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" : "لم يتم رفع أي ملف", "No file was uploaded" : "لم يتم رفع أي ملف",
"Missing a temporary folder" : "المجلد المؤقت غير موجود", "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" : "إلغاء", "Cancel" : "إلغاء",
"File already exists" : "الملف موجود مسبقاً", "File already exists" : "الملف موجود مسبقاً",
"Do you want to overwrite it?" : "هل تريد تجاوزه؟", "Today" : "اليوم",
"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" : "اظهر البطاقات المؤرشفة",
"Details" : "التفاصيل", "Details" : "التفاصيل",
"Loading board" : "اللوح يحمل..",
"Board not found" : "اللوح غير موجود",
"Sharing" : "المشاركة", "Sharing" : "المشاركة",
"Tags" : "الوسوم", "Tags" : "الوسوم",
"Deleted items" : "العناصر الممسوحة", "Timeline" : "الخيط الزمني",
"Timeline" : "الجدول الزمني",
"Deleted lists" : "القوائم المحذوفة",
"Undo" : "تراجع", "Undo" : "تراجع",
"Deleted cards" : "البطاقات المحذوفة", "Can edit" : "يمكنه التغيير",
"Share board with a user, group or circle …" : "مشاركة اللوح مع مستخدم،مجموعة او دائرة ..", "Can share" : "Can share",
"Board owner" : "منشئ اللوح",
"(Group)" : "(مجموعة)",
"(Circle)" : "(دائرة)",
"Can edit" : "يمكن تعديله",
"Can share" : "يمكن مشاركته",
"Can manage" : "يمكن ادارته",
"Delete" : "حذف ", "Delete" : "حذف ",
"Add a new stack" : "إضافة حزمة جديدة",
"Delete list" : "حذف القائمة",
"Add card" : "إضافة بطاقة",
"Add a new card" : "إضافة بطاقة جديدة",
"Edit" : "تعديل", "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" : "الوصف", "Description" : "الوصف",
"(Unsaved)" : "(غير محفوظ)",
"(Saving…)" : "(يُحفظ..)",
"Add Attachment" : "أضف ملحق",
"Edit description" : "تعديل الوصف",
"View description" : "إظهار الوصف",
"Attachments" : "المرفقات", "Attachments" : "المرفقات",
"Comments" : "تعليقات", "Comments" : "تعليقات",
"Choose attachment" : "اختيار مرفق", "Modified" : "آخر تعديل",
"Modified" : "عُدل",
"Created" : "أُنشئ",
"Upload attachment" : "رفع المرفقات", "Upload attachment" : "رفع المرفقات",
"No comments yet. Begin the discussion!" : "لا يوجد تعليقات بعد, ابدأ النقاش الآن!",
"Save" : "حفظ", "Save" : "حفظ",
"The comment cannot be empty." : "التعليق لايمكن ان يكون فارغا.",
"The comment cannot be longer than 1000 characters." : "التعليق لا يمكن ان يكون اطول من 1000 حرف.",
"In reply to" : "يقوم بالرد على",
"Reply" : "رد", "Reply" : "رد",
"Update" : "تحديث", "Update" : "تحديث",
"(group)" : "(مجموعة)",
"(circle)" : "(دائرة)",
"seconds ago" : "ثوانٍ مضت",
"Assign to me" : "ينسب لي",
"Delete card" : "حذف البطاقة", "Delete card" : "حذف البطاقة",
"Move card" : "حرك البطاقة", "seconds ago" : "ثوان مضت",
"Card details" : "تفاصيل البطاقة",
"Move card to another board" : "حرك البطاقة الى لوح اخر",
"Select a stack" : "حدد حزمة",
"All boards" : "جميع الالواح",
"Archived boards" : "الالواح المؤرشفة",
"Shared with you" : "شورك معك",
"Limit deck usage of groups" : "استخدام دك Deck محدود للمجاميع",
"Settings" : "الإعدادات", "Settings" : "الإعدادات",
"New board title" : "عنوان لوح جديد", "An error occurred" : "طرأ هناك خطأ"
"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" : "شيئا ما خاطئ"
},"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;" },"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", "A PHP extension stopped the file upload" : "Una estensión de PHP paró la xuba de ficheros",
"Cancel" : "Encaboxar", "Cancel" : "Encaboxar",
"File already exists" : "Yá esiste'l ficheru", "File already exists" : "Yá esiste'l ficheru",
"Today" : "Güei",
"Show archived cards" : "Amosar tarxetes archivaes", "Show archived cards" : "Amosar tarxetes archivaes",
"Details" : "Detalles", "Details" : "Detalles",
"Sharing" : "Compartiendo", "Sharing" : "Compartiendo",
@@ -25,8 +26,6 @@ OC.L10N.register(
"Can share" : "Can share", "Can share" : "Can share",
"Delete" : "Desaniciar", "Delete" : "Desaniciar",
"Edit" : "Editar", "Edit" : "Editar",
"Title" : "Títulu",
"Members" : "Miembros",
"Description" : "Descripción", "Description" : "Descripción",
"Attachments" : "Axuntos", "Attachments" : "Axuntos",
"Comments" : "Comentarios", "Comments" : "Comentarios",
@@ -37,7 +36,6 @@ OC.L10N.register(
"Update" : "Anovar", "Update" : "Anovar",
"(group)" : "(grupu)", "(group)" : "(grupu)",
"seconds ago" : "hai segundos", "seconds ago" : "hai segundos",
"Shared with you" : "Shared with you",
"Settings" : "Settings" "Settings" : "Settings"
}, },
"nplurals=2; plural=(n != 1);"); "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", "A PHP extension stopped the file upload" : "Una estensión de PHP paró la xuba de ficheros",
"Cancel" : "Encaboxar", "Cancel" : "Encaboxar",
"File already exists" : "Yá esiste'l ficheru", "File already exists" : "Yá esiste'l ficheru",
"Today" : "Güei",
"Show archived cards" : "Amosar tarxetes archivaes", "Show archived cards" : "Amosar tarxetes archivaes",
"Details" : "Detalles", "Details" : "Detalles",
"Sharing" : "Compartiendo", "Sharing" : "Compartiendo",
@@ -23,8 +24,6 @@
"Can share" : "Can share", "Can share" : "Can share",
"Delete" : "Desaniciar", "Delete" : "Desaniciar",
"Edit" : "Editar", "Edit" : "Editar",
"Title" : "Títulu",
"Members" : "Miembros",
"Description" : "Descripción", "Description" : "Descripción",
"Attachments" : "Axuntos", "Attachments" : "Axuntos",
"Comments" : "Comentarios", "Comments" : "Comentarios",
@@ -35,7 +34,6 @@
"Update" : "Anovar", "Update" : "Anovar",
"(group)" : "(grupu)", "(group)" : "(grupu)",
"seconds ago" : "hai segundos", "seconds ago" : "hai segundos",
"Shared with you" : "Shared with you",
"Settings" : "Settings" "Settings" : "Settings"
},"pluralForm" :"nplurals=2; plural=(n != 1);" },"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", "No file was uploaded" : "Heç bir fayl yüklənilmədi",
"Missing a temporary folder" : "Müvəqqəti qovluq çatışmır", "Missing a temporary folder" : "Müvəqqəti qovluq çatışmır",
"Cancel" : "Dayandır", "Cancel" : "Dayandır",
"Today" : "Bu gün",
"Details" : "Detallar", "Details" : "Detallar",
"Sharing" : "Paylaşılır", "Sharing" : "Paylaşılır",
"Tags" : "Işarələr", "Tags" : "Işarələr",
@@ -14,7 +15,6 @@ OC.L10N.register(
"Can share" : "Can share", "Can share" : "Can share",
"Delete" : "Sil", "Delete" : "Sil",
"Edit" : "Dəyişiklik et", "Edit" : "Dəyişiklik et",
"Title" : "Başlıq",
"Description" : "Açıqlanma", "Description" : "Açıqlanma",
"Modified" : "Dəyişdirildi", "Modified" : "Dəyişdirildi",
"Save" : "Saxla", "Save" : "Saxla",
@@ -22,7 +22,6 @@ OC.L10N.register(
"Update" : "Yenilənmə", "Update" : "Yenilənmə",
"(group)" : "(qrup)", "(group)" : "(qrup)",
"seconds ago" : "saniyələr öncə", "seconds ago" : "saniyələr öncə",
"Shared with you" : "Shared with you",
"Settings" : "Quraşdırmalar" "Settings" : "Quraşdırmalar"
}, },
"nplurals=2; plural=(n != 1);"); "nplurals=2; plural=(n != 1);");

View File

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

View File

@@ -17,6 +17,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" : "Днес",
"Details" : "Подробности", "Details" : "Подробности",
"Sharing" : "Споделяне", "Sharing" : "Споделяне",
"Tags" : "Етикети", "Tags" : "Етикети",
@@ -25,8 +26,6 @@ OC.L10N.register(
"Can share" : "Може да споделя", "Can share" : "Може да споделя",
"Delete" : "Изтриване", "Delete" : "Изтриване",
"Edit" : "Редакция", "Edit" : "Редакция",
"Title" : "Име",
"Members" : "Членове",
"Due date" : "Крайна дата", "Due date" : "Крайна дата",
"Remove due date" : "Премахни крайната дата", "Remove due date" : "Премахни крайната дата",
"Description" : "Описание", "Description" : "Описание",
@@ -40,7 +39,6 @@ OC.L10N.register(
"Update" : "Обновяване", "Update" : "Обновяване",
"(group)" : "(група)", "(group)" : "(група)",
"seconds ago" : "преди секунди", "seconds ago" : "преди секунди",
"Shared with you" : "Споделени с вас",
"Settings" : "Настройки", "Settings" : "Настройки",
"An error occurred" : "Възникна грешка" "An error occurred" : "Възникна грешка"
}, },

View File

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

View File

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

View File

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

View File

@@ -7,19 +7,17 @@ OC.L10N.register(
"No file was uploaded" : "Nijedna datoteka nije učitana.", "No file was uploaded" : "Nijedna datoteka nije učitana.",
"Missing a temporary folder" : "Nedostaje privremeni direktorij.", "Missing a temporary folder" : "Nedostaje privremeni direktorij.",
"Cancel" : "Otkaži", "Cancel" : "Otkaži",
"Today" : "Danas",
"Sharing" : "Dijeljenje", "Sharing" : "Dijeljenje",
"Can edit" : "Can edit", "Can edit" : "Can edit",
"Can share" : "Can share", "Can share" : "Can share",
"Delete" : "Obriši", "Delete" : "Obriši",
"Edit" : "Izmjeni", "Edit" : "Izmjeni",
"Title" : "Naslov",
"Members" : "Članovi",
"Description" : "Opis", "Description" : "Opis",
"Comments" : "Komentari", "Comments" : "Komentari",
"Modified" : "Izmijenjeno", "Modified" : "Izmijenjeno",
"Save" : "Spremi", "Save" : "Spremi",
"Update" : "Ažuriraj", "Update" : "Ažuriraj",
"Shared with you" : "Shared with you",
"Settings" : "Podešavanje", "Settings" : "Podešavanje",
"Maximum file size of {size} exceeded" : "Maksimalna veličina datoteke prekoračena" "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.", "No file was uploaded" : "Nijedna datoteka nije učitana.",
"Missing a temporary folder" : "Nedostaje privremeni direktorij.", "Missing a temporary folder" : "Nedostaje privremeni direktorij.",
"Cancel" : "Otkaži", "Cancel" : "Otkaži",
"Today" : "Danas",
"Sharing" : "Dijeljenje", "Sharing" : "Dijeljenje",
"Can edit" : "Can edit", "Can edit" : "Can edit",
"Can share" : "Can share", "Can share" : "Can share",
"Delete" : "Obriši", "Delete" : "Obriši",
"Edit" : "Izmjeni", "Edit" : "Izmjeni",
"Title" : "Naslov",
"Members" : "Članovi",
"Description" : "Opis", "Description" : "Opis",
"Comments" : "Komentari", "Comments" : "Komentari",
"Modified" : "Izmijenjeno", "Modified" : "Izmijenjeno",
"Save" : "Spremi", "Save" : "Spremi",
"Update" : "Ažuriraj", "Update" : "Ažuriraj",
"Shared with you" : "Shared with you",
"Settings" : "Podešavanje", "Settings" : "Podešavanje",
"Maximum file size of {size} exceeded" : "Maksimalna veličina datoteke prekoračena" "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);" },"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}", "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}", "{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}", "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}", "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}", "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}", "{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}", "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", "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", "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", "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", "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", "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 the board to link to a project" : "Selecciona el tauler per enllaçar a un projecte",
"Select board" : "Selecciona un tauler", "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", "Cancel" : "Cancel·la",
"File already exists" : "El fitxer ja existeix", "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?", "Do you want to overwrite it?" : "Voleu sobre-escriure'l?",
"Overwrite file" : "Sobreescriu el fitxer", "Today" : "Avui",
"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",
"Show archived cards" : "Mostra les targetes arxivades", "Show archived cards" : "Mostra les targetes arxivades",
"Toggle compact mode" : "Commuta el mode compacte", "Toggle compact mode" : "Commuta el mode compacte",
"Details" : "Detalls", "Details" : "Detalls",
"Loading board" : "Carregant tauler",
"Board not found" : "Tauler no trobat",
"Sharing" : "Compartició", "Sharing" : "Compartició",
"Tags" : "Etiquetes", "Tags" : "Etiquetes",
"Deleted items" : "Elements suprimits", "Deleted items" : "Elements suprimits",
"Timeline" : "Línia de temps", "Timeline" : "Línia de temps",
"Deleted lists" : "Llistes suprimides",
"Undo" : "Desfés", "Undo" : "Desfés",
"Deleted cards" : "Targetes suprimides", "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)", "(Group)" : "(Grup)",
"(Circle)" : "(Cercle)",
"Can edit" : "Pot editar", "Can edit" : "Pot editar",
"Can share" : "Pot compartir", "Can share" : "Pot compartir",
"Can manage" : "Pot gestionar",
"Delete" : "Eliminar", "Delete" : "Eliminar",
"Add a new stack" : "Afegeix una nova pila", "Add a new stack" : "Afegeix una nova pila",
"Delete list" : "Suprimeix la llista",
"Add card" : "Afegeix una targeta", "Add card" : "Afegeix una targeta",
"Add a new card" : "Afegir una nova targeta",
"Edit" : "Edita", "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", "Due date" : "Per la data",
"Set a due date" : "Definir una data de venciment",
"Remove due date" : "Elimina la data de venciment", "Remove due date" : "Elimina la data de venciment",
"Description" : "Descripció", "Description" : "Descripció",
"(Unsaved)" : "(No desat)",
"(Saving…)" : "(Desant…)",
"Formatting help" : "Format d'ajuda", "Formatting help" : "Format d'ajuda",
"Add Attachment" : "Afegeix un adjunt",
"Edit description" : "Edita descripció",
"View description" : "Veure descripció",
"Attachments" : "Adjunts", "Attachments" : "Adjunts",
"Comments" : "Comentaris", "Comments" : "Comentaris",
"Choose attachment" : "Triar adjunt",
"Modified" : "Darrera modificació", "Modified" : "Darrera modificació",
"Created" : "Creat", "Created" : "Creat",
"Upload attachment" : "Carrega l'adjunt", "Upload attachment" : "Carrega l'adjunt",
"No comments yet. Begin the discussion!" : "No hi ha comentaris encara. Començar la discussió!",
"Save" : "Desa", "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", "Reply" : "Respon",
"Update" : "Actualitza", "Update" : "Actualitza",
"(group)" : "(grup)", "(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", "Delete card" : "Suprimeix targeta",
"Move card" : "Mou la targeta", "Move card" : "Mou la targeta",
"Card details" : "Dades de la targeta", "seconds ago" : "fa uns segons",
"Select a stack" : "Seleccioneu una pila",
"All boards" : "Tots els taulers",
"Archived boards" : "Taulers arxivats", "Archived boards" : "Taulers arxivats",
"Shared with you" : "Us han compartit", "Shared boards" : "Taulers compartits",
"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.",
"Settings" : "Paràmetres", "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", "New board title" : "Títol del nou tauler",
"Edit board" : "Edita el tauler", "Edit board" : "Edita el tauler",
"Board details" : "Detalls de la junta",
"An error occurred" : "S'ha produït un error", "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.", "Archive board" : "Arxiva tauler",
"Delete the board?" : "Suprimir el 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 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}" "Maximum file size of {size} exceeded" : "S'ha superat la mida màxima per fitxer de {size}"
}, },
"nplurals=2; plural=(n != 1);"); "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}", "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}", "{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}", "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}", "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}", "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}", "{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}", "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", "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", "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", "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", "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", "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 the board to link to a project" : "Selecciona el tauler per enllaçar a un projecte",
"Select board" : "Selecciona un tauler", "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", "Cancel" : "Cancel·la",
"File already exists" : "El fitxer ja existeix", "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?", "Do you want to overwrite it?" : "Voleu sobre-escriure'l?",
"Overwrite file" : "Sobreescriu el fitxer", "Today" : "Avui",
"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",
"Show archived cards" : "Mostra les targetes arxivades", "Show archived cards" : "Mostra les targetes arxivades",
"Toggle compact mode" : "Commuta el mode compacte", "Toggle compact mode" : "Commuta el mode compacte",
"Details" : "Detalls", "Details" : "Detalls",
"Loading board" : "Carregant tauler",
"Board not found" : "Tauler no trobat",
"Sharing" : "Compartició", "Sharing" : "Compartició",
"Tags" : "Etiquetes", "Tags" : "Etiquetes",
"Deleted items" : "Elements suprimits", "Deleted items" : "Elements suprimits",
"Timeline" : "Línia de temps", "Timeline" : "Línia de temps",
"Deleted lists" : "Llistes suprimides",
"Undo" : "Desfés", "Undo" : "Desfés",
"Deleted cards" : "Targetes suprimides", "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)", "(Group)" : "(Grup)",
"(Circle)" : "(Cercle)",
"Can edit" : "Pot editar", "Can edit" : "Pot editar",
"Can share" : "Pot compartir", "Can share" : "Pot compartir",
"Can manage" : "Pot gestionar",
"Delete" : "Eliminar", "Delete" : "Eliminar",
"Add a new stack" : "Afegeix una nova pila", "Add a new stack" : "Afegeix una nova pila",
"Delete list" : "Suprimeix la llista",
"Add card" : "Afegeix una targeta", "Add card" : "Afegeix una targeta",
"Add a new card" : "Afegir una nova targeta",
"Edit" : "Edita", "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", "Due date" : "Per la data",
"Set a due date" : "Definir una data de venciment",
"Remove due date" : "Elimina la data de venciment", "Remove due date" : "Elimina la data de venciment",
"Description" : "Descripció", "Description" : "Descripció",
"(Unsaved)" : "(No desat)",
"(Saving…)" : "(Desant…)",
"Formatting help" : "Format d'ajuda", "Formatting help" : "Format d'ajuda",
"Add Attachment" : "Afegeix un adjunt",
"Edit description" : "Edita descripció",
"View description" : "Veure descripció",
"Attachments" : "Adjunts", "Attachments" : "Adjunts",
"Comments" : "Comentaris", "Comments" : "Comentaris",
"Choose attachment" : "Triar adjunt",
"Modified" : "Darrera modificació", "Modified" : "Darrera modificació",
"Created" : "Creat", "Created" : "Creat",
"Upload attachment" : "Carrega l'adjunt", "Upload attachment" : "Carrega l'adjunt",
"No comments yet. Begin the discussion!" : "No hi ha comentaris encara. Començar la discussió!",
"Save" : "Desa", "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", "Reply" : "Respon",
"Update" : "Actualitza", "Update" : "Actualitza",
"(group)" : "(grup)", "(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", "Delete card" : "Suprimeix targeta",
"Move card" : "Mou la targeta", "Move card" : "Mou la targeta",
"Card details" : "Dades de la targeta", "seconds ago" : "fa uns segons",
"Select a stack" : "Seleccioneu una pila",
"All boards" : "Tots els taulers",
"Archived boards" : "Taulers arxivats", "Archived boards" : "Taulers arxivats",
"Shared with you" : "Us han compartit", "Shared boards" : "Taulers compartits",
"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.",
"Settings" : "Paràmetres", "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", "New board title" : "Títol del nou tauler",
"Edit board" : "Edita el tauler", "Edit board" : "Edita el tauler",
"Board details" : "Detalls de la junta",
"An error occurred" : "S'ha produït un error", "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.", "Archive board" : "Arxiva tauler",
"Delete the board?" : "Suprimir el 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 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}" "Maximum file size of {size} exceeded" : "S'ha superat la mida màxima per fitxer de {size}"
},"pluralForm" :"nplurals=2; plural=(n != 1);" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@@ -101,7 +101,6 @@ OC.L10N.register(
"Create new board" : "Vytvořit novou tabuli", "Create new board" : "Vytvořit novou tabuli",
"new board" : "nová tabule", "new board" : "nová tabule",
"Select the board to link to a project" : "Vyberte tabuli kterou propojit s projektem", "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 board" : "Vybrat tabuli",
"Select the card to link to a project" : "Vyberte kartu kterou propojit s projektem", "Select the card to link to a project" : "Vyberte kartu kterou propojit s projektem",
"Select a board" : "Vybrat tabuli", "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 assigned user" : "Filtrovat podle uživatele, který je úkolem pověřen",
"Filter by due date" : "Filtrovat podle termínu", "Filter by due date" : "Filtrovat podle termínu",
"Overdue" : "Po 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 7 days" : "Příštích 7 dnů",
"Next 30 days" : "Příštích 30 dnů", "Next 30 days" : "Příštích 30 dnů",
"No due date" : "Žádný termín", "No due date" : "Žádný termín",
"Clear filter" : "Vyčistit filtr",
"Show archived cards" : "Zobrazit archivované karty", "Show archived cards" : "Zobrazit archivované karty",
"Toggle compact mode" : "Vyp/zap. kompaktní režim", "Toggle compact mode" : "Vyp/zap. kompaktní režim",
"Details" : "Podrobnosti", "Details" : "Podrobnosti",
@@ -155,11 +153,6 @@ OC.L10N.register(
"Edit" : "Upravit", "Edit" : "Upravit",
"Add a new tag" : "Přidat nový štítek", "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 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 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" : "Přiřadit k uživatelům",
"Assign to users/groups/circles" : "Přiřadit uživatelům/skupinám/okruhů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)", "(Unsaved)" : "(Neuloženo)",
"(Saving…)" : "(Ukládání…)", "(Saving…)" : "(Ukládání…)",
"Formatting help" : "Nápověda k formátová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", "Attachments" : "Přílohy",
"Comments" : "Komentáře", "Comments" : "Komentáře",
"Choose attachment" : "Zvolte přílohu",
"Modified" : "Změněno", "Modified" : "Změněno",
"Created" : "Vytvořeno", "Created" : "Vytvořeno",
"Upload attachment" : "Nahrát přílohu", "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!", "No comments yet. Begin the discussion!" : "Zatím bez komentářů. Zahajte diskuzi!",
"Save" : "Uložit", "Save" : "Uložit",
"The comment cannot be empty." : "Komentář je třeba vyplnit", "The comment cannot be empty." : "Komentář je třeba vyplnit",
@@ -189,32 +180,25 @@ OC.L10N.register(
"Update" : "Aktualizovat", "Update" : "Aktualizovat",
"(group)" : "(skupina)", "(group)" : "(skupina)",
"(circle)" : "(okruh)", "(circle)" : "(okruh)",
"seconds ago" : "před několika sekundami",
"Assign to me" : "Přiřadit mě", "Assign to me" : "Přiřadit mě",
"Unarchive card" : "Zrušit archivaci karty",
"Archive card" : "Archivovat kartu",
"Delete card" : "Smazat kartu", "Delete card" : "Smazat kartu",
"Move card" : "Přesunout kartu", "Move card" : "Přesunout kartu",
"Card details" : "Podrobnosti o kartě", "Card details" : "Podrobnosti o kartě",
"Move card to another board" : "Přesunout kartu na jinou tabuli",
"Select a stack" : "Vybrat sloupec", "Select a stack" : "Vybrat sloupec",
"seconds ago" : "před několika sekundami",
"All boards" : "Všechny tabule", "All boards" : "Všechny tabule",
"Archived boards" : "Archivované tabule", "Archived boards" : "Archivované tabule",
"Shared with you" : "Sdíleno s vámi", "Shared boards" : "Sdílené tabule",
"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.",
"Settings" : "Nastavení", "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", "New board title" : "Název nové tabule",
"Edit board" : "Upravit tabuli", "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ě", "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.", "Clone board" : "Klonovat tabuli",
"Delete the board?" : "Smazat 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 board" : "Propojit s tabulí",
"Link to a card" : "Propojit s kartou", "Link to a card" : "Propojit s kartou",
"Something went wrong" : "Něco se pokazilo", "Something went wrong" : "Něco se pokazilo",

View File

@@ -99,7 +99,6 @@
"Create new board" : "Vytvořit novou tabuli", "Create new board" : "Vytvořit novou tabuli",
"new board" : "nová tabule", "new board" : "nová tabule",
"Select the board to link to a project" : "Vyberte tabuli kterou propojit s projektem", "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 board" : "Vybrat tabuli",
"Select the card to link to a project" : "Vyberte kartu kterou propojit s projektem", "Select the card to link to a project" : "Vyberte kartu kterou propojit s projektem",
"Select a board" : "Vybrat tabuli", "Select a board" : "Vybrat tabuli",
@@ -121,11 +120,10 @@
"Filter by assigned user" : "Filtrovat podle uživatele, který je úkolem pověřen", "Filter by assigned user" : "Filtrovat podle uživatele, který je úkolem pověřen",
"Filter by due date" : "Filtrovat podle termínu", "Filter by due date" : "Filtrovat podle termínu",
"Overdue" : "Po 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 7 days" : "Příštích 7 dnů",
"Next 30 days" : "Příštích 30 dnů", "Next 30 days" : "Příštích 30 dnů",
"No due date" : "Žádný termín", "No due date" : "Žádný termín",
"Clear filter" : "Vyčistit filtr",
"Show archived cards" : "Zobrazit archivované karty", "Show archived cards" : "Zobrazit archivované karty",
"Toggle compact mode" : "Vyp/zap. kompaktní režim", "Toggle compact mode" : "Vyp/zap. kompaktní režim",
"Details" : "Podrobnosti", "Details" : "Podrobnosti",
@@ -153,11 +151,6 @@
"Edit" : "Upravit", "Edit" : "Upravit",
"Add a new tag" : "Přidat nový štítek", "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 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 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" : "Přiřadit k uživatelům",
"Assign to users/groups/circles" : "Přiřadit uživatelům/skupinám/okruhům", "Assign to users/groups/circles" : "Přiřadit uživatelům/skupinám/okruhům",
@@ -169,15 +162,13 @@
"(Unsaved)" : "(Neuloženo)", "(Unsaved)" : "(Neuloženo)",
"(Saving…)" : "(Ukládání…)", "(Saving…)" : "(Ukládání…)",
"Formatting help" : "Nápověda k formátová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", "Attachments" : "Přílohy",
"Comments" : "Komentáře", "Comments" : "Komentáře",
"Choose attachment" : "Zvolte přílohu",
"Modified" : "Změněno", "Modified" : "Změněno",
"Created" : "Vytvořeno", "Created" : "Vytvořeno",
"Upload attachment" : "Nahrát přílohu", "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!", "No comments yet. Begin the discussion!" : "Zatím bez komentářů. Zahajte diskuzi!",
"Save" : "Uložit", "Save" : "Uložit",
"The comment cannot be empty." : "Komentář je třeba vyplnit", "The comment cannot be empty." : "Komentář je třeba vyplnit",
@@ -187,32 +178,25 @@
"Update" : "Aktualizovat", "Update" : "Aktualizovat",
"(group)" : "(skupina)", "(group)" : "(skupina)",
"(circle)" : "(okruh)", "(circle)" : "(okruh)",
"seconds ago" : "před několika sekundami",
"Assign to me" : "Přiřadit mě", "Assign to me" : "Přiřadit mě",
"Unarchive card" : "Zrušit archivaci karty",
"Archive card" : "Archivovat kartu",
"Delete card" : "Smazat kartu", "Delete card" : "Smazat kartu",
"Move card" : "Přesunout kartu", "Move card" : "Přesunout kartu",
"Card details" : "Podrobnosti o kartě", "Card details" : "Podrobnosti o kartě",
"Move card to another board" : "Přesunout kartu na jinou tabuli",
"Select a stack" : "Vybrat sloupec", "Select a stack" : "Vybrat sloupec",
"seconds ago" : "před několika sekundami",
"All boards" : "Všechny tabule", "All boards" : "Všechny tabule",
"Archived boards" : "Archivované tabule", "Archived boards" : "Archivované tabule",
"Shared with you" : "Sdíleno s vámi", "Shared boards" : "Sdílené tabule",
"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.",
"Settings" : "Nastavení", "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", "New board title" : "Název nové tabule",
"Edit board" : "Upravit tabuli", "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ě", "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.", "Clone board" : "Klonovat tabuli",
"Delete the board?" : "Smazat 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 board" : "Propojit s tabulí",
"Link to a card" : "Propojit s kartou", "Link to a card" : "Propojit s kartou",
"Something went wrong" : "Něco se pokazilo", "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", "No file was uploaded" : "Ni lwythwyd ffeil i fyny",
"Missing a temporary folder" : "Plygell dros dro yn eisiau", "Missing a temporary folder" : "Plygell dros dro yn eisiau",
"Cancel" : "Diddymu", "Cancel" : "Diddymu",
"Today" : "Heddiw",
"Details" : "Manylion", "Details" : "Manylion",
"Tags" : "Tagiau", "Tags" : "Tagiau",
"Undo" : "Dadwneud", "Undo" : "Dadwneud",
@@ -14,14 +15,12 @@ OC.L10N.register(
"Can share" : "Can share", "Can share" : "Can share",
"Delete" : "Dileu", "Delete" : "Dileu",
"Edit" : "Golygu", "Edit" : "Golygu",
"Title" : "Teitl",
"Description" : "Disgrifiad", "Description" : "Disgrifiad",
"Modified" : "Addaswyd", "Modified" : "Addaswyd",
"Upload attachment" : "Llwytho atodiad", "Upload attachment" : "Llwytho atodiad",
"Save" : "Cadw", "Save" : "Cadw",
"Update" : "Diweddaru", "Update" : "Diweddaru",
"seconds ago" : "eiliad yn ôl", "seconds ago" : "eiliad yn ôl",
"Shared with you" : "Shared with you",
"Settings" : "Gosodiadau", "Settings" : "Gosodiadau",
"An error occurred" : "Digwyddodd gwall" "An error occurred" : "Digwyddodd gwall"
}, },

View File

@@ -5,6 +5,7 @@
"No file was uploaded" : "Ni lwythwyd ffeil i fyny", "No file was uploaded" : "Ni lwythwyd ffeil i fyny",
"Missing a temporary folder" : "Plygell dros dro yn eisiau", "Missing a temporary folder" : "Plygell dros dro yn eisiau",
"Cancel" : "Diddymu", "Cancel" : "Diddymu",
"Today" : "Heddiw",
"Details" : "Manylion", "Details" : "Manylion",
"Tags" : "Tagiau", "Tags" : "Tagiau",
"Undo" : "Dadwneud", "Undo" : "Dadwneud",
@@ -12,14 +13,12 @@
"Can share" : "Can share", "Can share" : "Can share",
"Delete" : "Dileu", "Delete" : "Dileu",
"Edit" : "Golygu", "Edit" : "Golygu",
"Title" : "Teitl",
"Description" : "Disgrifiad", "Description" : "Disgrifiad",
"Modified" : "Addaswyd", "Modified" : "Addaswyd",
"Upload attachment" : "Llwytho atodiad", "Upload attachment" : "Llwytho atodiad",
"Save" : "Cadw", "Save" : "Cadw",
"Update" : "Diweddaru", "Update" : "Diweddaru",
"seconds ago" : "eiliad yn ôl", "seconds ago" : "eiliad yn ôl",
"Shared with you" : "Shared with you",
"Settings" : "Gosodiadau", "Settings" : "Gosodiadau",
"An error occurred" : "Digwyddodd gwall" "An error occurred" : "Digwyddodd gwall"
},"pluralForm" :"nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;" },"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", "File already exists" : "Fil findes allerede",
"Do you want to overwrite it?" : "Vil du overskrive den?", "Do you want to overwrite it?" : "Vil du overskrive den?",
"Drop your files to upload" : "Drop dine filer for at uploade", "Drop your files to upload" : "Drop dine filer for at uploade",
"Today" : "I dag",
"Show archived cards" : "Vis arkiverede kort", "Show archived cards" : "Vis arkiverede kort",
"Details" : "Detaljer", "Details" : "Detaljer",
"Sharing" : "Deling", "Sharing" : "Deling",
@@ -30,11 +31,8 @@ OC.L10N.register(
"Can share" : "Kan dele", "Can share" : "Kan dele",
"Delete" : "Slet", "Delete" : "Slet",
"Add a new stack" : "Tilføj en ny stak", "Add a new stack" : "Tilføj en ny stak",
"Delete list" : "Slet liste",
"Add card" : "Tilføj kort", "Add card" : "Tilføj kort",
"Edit" : "Redigér", "Edit" : "Redigér",
"Title" : "Titel",
"Members" : "Medlemmer",
"Due date" : "Forfaldsdato", "Due date" : "Forfaldsdato",
"Remove due date" : "Fjern forfaldsdato", "Remove due date" : "Fjern forfaldsdato",
"Description" : "Beskrivelse", "Description" : "Beskrivelse",
@@ -48,16 +46,17 @@ OC.L10N.register(
"Reply" : "Besvar", "Reply" : "Besvar",
"Update" : "Opdatér", "Update" : "Opdatér",
"(group)" : "(gruppe)", "(group)" : "(gruppe)",
"seconds ago" : "sekunder siden",
"Archive card" : "Arkivér kort",
"Delete card" : "Slet kort", "Delete card" : "Slet kort",
"Move card" : "Flyt kort", "seconds ago" : "sekunder siden",
"Archived boards" : "Arkiverede lister", "Archived boards" : "Arkiverede lister",
"Shared with you" : "Shared with you", "Shared boards" : "Delte lister",
"Settings" : "Indstillinger", "Settings" : "Indstillinger",
"New board title" : "Ny titel på liste", "New board title" : "Ny titel på liste",
"Edit board" : "Rediger 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);"); "nplurals=2; plural=(n != 1);");

View File

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

View File

@@ -101,7 +101,6 @@ OC.L10N.register(
"Create new board" : "Neues Board", "Create new board" : "Neues Board",
"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", "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 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 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", "Select a board" : "Ein Board auswählen",
@@ -123,11 +122,10 @@ OC.L10N.register(
"Filter by assigned user" : "Nach zugewiesenem Benutzer filtern", "Filter by assigned user" : "Nach zugewiesenem Benutzer filtern",
"Filter by due date" : "Nach Fälligkeitsdatum filtern", "Filter by due date" : "Nach Fälligkeitsdatum filtern",
"Overdue" : "Überfällig", "Overdue" : "Überfällig",
"Next 24 hours" : "Die nächsten 24 Stunden", "Today" : "Heute",
"Next 7 days" : "Die nächsten 7 Tage", "Next 7 days" : "Die nächsten 7 Tage",
"Next 30 days" : "Die nächsten 30 Tage", "Next 30 days" : "Die nächsten 30 Tage",
"No due date" : "Kein Fälligkeitsdatum", "No due date" : "Kein Fälligkeitsdatum",
"Clear filter" : "Filter zurücksetzen",
"Show archived cards" : "Archivierte Karten anzeigen", "Show archived cards" : "Archivierte Karten anzeigen",
"Toggle compact mode" : "Kompaktmodus umschalten", "Toggle compact mode" : "Kompaktmodus umschalten",
"Details" : "Details", "Details" : "Details",
@@ -137,7 +135,7 @@ OC.L10N.register(
"Tags" : "Schlagworte", "Tags" : "Schlagworte",
"Deleted items" : "Gelöschte Objekte", "Deleted items" : "Gelöschte Objekte",
"Timeline" : "Zeitachse", "Timeline" : "Zeitachse",
"Deleted lists" : "Gelöschte Listen", "Deleted lists" : "Listen löschen",
"Undo" : "Rückgängig", "Undo" : "Rückgängig",
"Deleted cards" : "Gelöschte Karten", "Deleted cards" : "Gelöschte Karten",
"Share board with a user, group or circle …" : "Board mit Benutzer, Gruppe oder Kreis teilen …", "Share board with a user, group or circle …" : "Board mit Benutzer, Gruppe oder Kreis teilen …",
@@ -155,11 +153,6 @@ OC.L10N.register(
"Edit" : "Bearbeiten", "Edit" : "Bearbeiten",
"Add a new tag" : "Neues Schlagwort hinzufügen", "Add a new tag" : "Neues Schlagwort hinzufügen",
"title and color value must be provided" : "Titel und Farbwert müssen angegeben werden", "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 a tag to this card…" : "Dieser Karte ein Schlagwort zuweisen…",
"Assign to users" : "Benutzern zuweisen", "Assign to users" : "Benutzern zuweisen",
"Assign to users/groups/circles" : "An Benutzer, Gruppen oder Kreise zuweisen", "Assign to users/groups/circles" : "An Benutzer, Gruppen oder Kreise zuweisen",
@@ -171,15 +164,13 @@ OC.L10N.register(
"(Unsaved)" : "(nicht gespeichert)", "(Unsaved)" : "(nicht gespeichert)",
"(Saving…)" : "(Speichere…)", "(Saving…)" : "(Speichere…)",
"Formatting help" : "Formatierungshilfe", "Formatting help" : "Formatierungshilfe",
"Add Attachment" : "Anhang anhängen",
"Edit description" : "Beschreibung bearbeiten",
"View description" : "Beschreibung anzeigen",
"Attachments" : "Anhänge", "Attachments" : "Anhänge",
"Comments" : "Kommentare", "Comments" : "Kommentare",
"Choose attachment" : "Anhang auswählen",
"Modified" : "Geändert", "Modified" : "Geändert",
"Created" : "Erstellt", "Created" : "Erstellt",
"Upload attachment" : "Anhang hochladen", "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!", "No comments yet. Begin the discussion!" : "Bislang keine Kommentare. Beginne die Diskussion!",
"Save" : "Speichern", "Save" : "Speichern",
"The comment cannot be empty." : "Der Kommentar darf nicht leer sein.", "The comment cannot be empty." : "Der Kommentar darf nicht leer sein.",
@@ -189,32 +180,25 @@ OC.L10N.register(
"Update" : "Aktualisieren", "Update" : "Aktualisieren",
"(group)" : "(Gruppe)", "(group)" : "(Gruppe)",
"(circle)" : "(Kreis)", "(circle)" : "(Kreis)",
"seconds ago" : "Gerade eben",
"Assign to me" : "Mir zuweisen", "Assign to me" : "Mir zuweisen",
"Unarchive card" : "Karte dearchivieren",
"Archive card" : "Karte archivieren",
"Delete card" : "Karte löschen", "Delete card" : "Karte löschen",
"Move card" : "Karte verschieben", "Move card" : "Karte verschieben",
"Card details" : "Kartendetails", "Card details" : "Kartendetails",
"Move card to another board" : "Karte auf ein anderes Board verschieben",
"Select a stack" : "Stapel auswählen", "Select a stack" : "Stapel auswählen",
"seconds ago" : "Gerade eben",
"All boards" : "Alle Boards", "All boards" : "Alle Boards",
"Archived boards" : "Archivierte Boards", "Archived boards" : "Archivierte Boards",
"Shared with you" : "Benötigt keine Übersetzung. Für iOS wird nur die formelle Übersetzung verwendet (de_DE).", "Shared boards" : "Geteilte Boards",
"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.",
"Settings" : "Einstellungen", "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", "New board title" : "Board-Titel",
"Edit board" : "Board bearbeiten", "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", "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?", "Clone board" : "Board klonen",
"Delete the board?" : "Das Board löschen?", "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 board" : "Mit einem Board verknüpfen",
"Link to a card" : "Mit einer Karte verknüpfen", "Link to a card" : "Mit einer Karte verknüpfen",
"Something went wrong" : "Etwas ist schiefgelaufen", "Something went wrong" : "Etwas ist schiefgelaufen",

View File

@@ -99,7 +99,6 @@
"Create new board" : "Neues Board", "Create new board" : "Neues Board",
"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", "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 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 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", "Select a board" : "Ein Board auswählen",
@@ -121,11 +120,10 @@
"Filter by assigned user" : "Nach zugewiesenem Benutzer filtern", "Filter by assigned user" : "Nach zugewiesenem Benutzer filtern",
"Filter by due date" : "Nach Fälligkeitsdatum filtern", "Filter by due date" : "Nach Fälligkeitsdatum filtern",
"Overdue" : "Überfällig", "Overdue" : "Überfällig",
"Next 24 hours" : "Die nächsten 24 Stunden", "Today" : "Heute",
"Next 7 days" : "Die nächsten 7 Tage", "Next 7 days" : "Die nächsten 7 Tage",
"Next 30 days" : "Die nächsten 30 Tage", "Next 30 days" : "Die nächsten 30 Tage",
"No due date" : "Kein Fälligkeitsdatum", "No due date" : "Kein Fälligkeitsdatum",
"Clear filter" : "Filter zurücksetzen",
"Show archived cards" : "Archivierte Karten anzeigen", "Show archived cards" : "Archivierte Karten anzeigen",
"Toggle compact mode" : "Kompaktmodus umschalten", "Toggle compact mode" : "Kompaktmodus umschalten",
"Details" : "Details", "Details" : "Details",
@@ -135,7 +133,7 @@
"Tags" : "Schlagworte", "Tags" : "Schlagworte",
"Deleted items" : "Gelöschte Objekte", "Deleted items" : "Gelöschte Objekte",
"Timeline" : "Zeitachse", "Timeline" : "Zeitachse",
"Deleted lists" : "Gelöschte Listen", "Deleted lists" : "Listen löschen",
"Undo" : "Rückgängig", "Undo" : "Rückgängig",
"Deleted cards" : "Gelöschte Karten", "Deleted cards" : "Gelöschte Karten",
"Share board with a user, group or circle …" : "Board mit Benutzer, Gruppe oder Kreis teilen …", "Share board with a user, group or circle …" : "Board mit Benutzer, Gruppe oder Kreis teilen …",
@@ -153,11 +151,6 @@
"Edit" : "Bearbeiten", "Edit" : "Bearbeiten",
"Add a new tag" : "Neues Schlagwort hinzufügen", "Add a new tag" : "Neues Schlagwort hinzufügen",
"title and color value must be provided" : "Titel und Farbwert müssen angegeben werden", "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 a tag to this card…" : "Dieser Karte ein Schlagwort zuweisen…",
"Assign to users" : "Benutzern zuweisen", "Assign to users" : "Benutzern zuweisen",
"Assign to users/groups/circles" : "An Benutzer, Gruppen oder Kreise zuweisen", "Assign to users/groups/circles" : "An Benutzer, Gruppen oder Kreise zuweisen",
@@ -169,15 +162,13 @@
"(Unsaved)" : "(nicht gespeichert)", "(Unsaved)" : "(nicht gespeichert)",
"(Saving…)" : "(Speichere…)", "(Saving…)" : "(Speichere…)",
"Formatting help" : "Formatierungshilfe", "Formatting help" : "Formatierungshilfe",
"Add Attachment" : "Anhang anhängen",
"Edit description" : "Beschreibung bearbeiten",
"View description" : "Beschreibung anzeigen",
"Attachments" : "Anhänge", "Attachments" : "Anhänge",
"Comments" : "Kommentare", "Comments" : "Kommentare",
"Choose attachment" : "Anhang auswählen",
"Modified" : "Geändert", "Modified" : "Geändert",
"Created" : "Erstellt", "Created" : "Erstellt",
"Upload attachment" : "Anhang hochladen", "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!", "No comments yet. Begin the discussion!" : "Bislang keine Kommentare. Beginne die Diskussion!",
"Save" : "Speichern", "Save" : "Speichern",
"The comment cannot be empty." : "Der Kommentar darf nicht leer sein.", "The comment cannot be empty." : "Der Kommentar darf nicht leer sein.",
@@ -187,32 +178,25 @@
"Update" : "Aktualisieren", "Update" : "Aktualisieren",
"(group)" : "(Gruppe)", "(group)" : "(Gruppe)",
"(circle)" : "(Kreis)", "(circle)" : "(Kreis)",
"seconds ago" : "Gerade eben",
"Assign to me" : "Mir zuweisen", "Assign to me" : "Mir zuweisen",
"Unarchive card" : "Karte dearchivieren",
"Archive card" : "Karte archivieren",
"Delete card" : "Karte löschen", "Delete card" : "Karte löschen",
"Move card" : "Karte verschieben", "Move card" : "Karte verschieben",
"Card details" : "Kartendetails", "Card details" : "Kartendetails",
"Move card to another board" : "Karte auf ein anderes Board verschieben",
"Select a stack" : "Stapel auswählen", "Select a stack" : "Stapel auswählen",
"seconds ago" : "Gerade eben",
"All boards" : "Alle Boards", "All boards" : "Alle Boards",
"Archived boards" : "Archivierte Boards", "Archived boards" : "Archivierte Boards",
"Shared with you" : "Benötigt keine Übersetzung. Für iOS wird nur die formelle Übersetzung verwendet (de_DE).", "Shared boards" : "Geteilte Boards",
"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.",
"Settings" : "Einstellungen", "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", "New board title" : "Board-Titel",
"Edit board" : "Board bearbeiten", "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", "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?", "Clone board" : "Board klonen",
"Delete the board?" : "Das Board löschen?", "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 board" : "Mit einem Board verknüpfen",
"Link to a card" : "Mit einer Karte verknüpfen", "Link to a card" : "Mit einer Karte verknüpfen",
"Something went wrong" : "Etwas ist schiefgelaufen", "Something went wrong" : "Etwas ist schiefgelaufen",

View File

@@ -101,7 +101,6 @@ OC.L10N.register(
"Create new board" : "Neues Board", "Create new board" : "Neues Board",
"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", "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 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 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", "Select a board" : "Ein Board auswählen",
@@ -123,11 +122,10 @@ OC.L10N.register(
"Filter by assigned user" : "Nach zugewiesenem Benutzer filtern", "Filter by assigned user" : "Nach zugewiesenem Benutzer filtern",
"Filter by due date" : "Nach Fälligkeitsdatum filtern", "Filter by due date" : "Nach Fälligkeitsdatum filtern",
"Overdue" : "Überfällig", "Overdue" : "Überfällig",
"Next 24 hours" : "Die nächsten 24 Stunden", "Today" : "Heute",
"Next 7 days" : "Die nächsten 7 Tage", "Next 7 days" : "Die nächsten 7 Tage",
"Next 30 days" : "Die nächsten 30 Tage", "Next 30 days" : "Die nächsten 30 Tage",
"No due date" : "Kein Fälligkeitsdatum", "No due date" : "Kein Fälligkeitsdatum",
"Clear filter" : "Filter zurücksetzen",
"Show archived cards" : "Archivierte Karten anzeigen", "Show archived cards" : "Archivierte Karten anzeigen",
"Toggle compact mode" : "Kompaktmodus umschalten", "Toggle compact mode" : "Kompaktmodus umschalten",
"Details" : "Details", "Details" : "Details",
@@ -137,7 +135,7 @@ OC.L10N.register(
"Tags" : "Schlagworte", "Tags" : "Schlagworte",
"Deleted items" : "Gelöschte Objekte", "Deleted items" : "Gelöschte Objekte",
"Timeline" : "Zeitachse", "Timeline" : "Zeitachse",
"Deleted lists" : "Gelöschte Listen", "Deleted lists" : "Listen löschen",
"Undo" : "Rückgängig", "Undo" : "Rückgängig",
"Deleted cards" : "Gelöschte Karten", "Deleted cards" : "Gelöschte Karten",
"Share board with a user, group or circle …" : "Board mit Benutzer, Gruppe oder Kreis teilen …", "Share board with a user, group or circle …" : "Board mit Benutzer, Gruppe oder Kreis teilen …",
@@ -155,11 +153,6 @@ OC.L10N.register(
"Edit" : "Bearbeiten", "Edit" : "Bearbeiten",
"Add a new tag" : "Neues Schlagwort hinzufügen", "Add a new tag" : "Neues Schlagwort hinzufügen",
"title and color value must be provided" : "Titel und Farbwert müssen angegeben werden", "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 a tag to this card…" : "Dieser Karte ein Schlagwort zuweisen…",
"Assign to users" : "Benutzern zuweisen", "Assign to users" : "Benutzern zuweisen",
"Assign to users/groups/circles" : "An Benutzer, Gruppen oder Kreise zuweisen", "Assign to users/groups/circles" : "An Benutzer, Gruppen oder Kreise zuweisen",
@@ -171,15 +164,13 @@ OC.L10N.register(
"(Unsaved)" : "(nicht gespeichert)", "(Unsaved)" : "(nicht gespeichert)",
"(Saving…)" : "(Speichere…)", "(Saving…)" : "(Speichere…)",
"Formatting help" : "Formatierungshilfe", "Formatting help" : "Formatierungshilfe",
"Add Attachment" : "Anhang anhängen",
"Edit description" : "Beschreibung bearbeiten",
"View description" : "Beschreibung anzeigen",
"Attachments" : "Anhänge", "Attachments" : "Anhänge",
"Comments" : "Kommentare", "Comments" : "Kommentare",
"Choose attachment" : "Anhang auswählen",
"Modified" : "Geändert", "Modified" : "Geändert",
"Created" : "Erstellt", "Created" : "Erstellt",
"Upload attachment" : "Anhang hochladen", "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!", "No comments yet. Begin the discussion!" : "Bislang keine Kommentare. Beginnen Sie die Diskussion!",
"Save" : "Speichern", "Save" : "Speichern",
"The comment cannot be empty." : "Der Kommentar darf nicht leer sein.", "The comment cannot be empty." : "Der Kommentar darf nicht leer sein.",
@@ -189,32 +180,25 @@ OC.L10N.register(
"Update" : "Aktualisieren", "Update" : "Aktualisieren",
"(group)" : "(Gruppe)", "(group)" : "(Gruppe)",
"(circle)" : "(Kreis)", "(circle)" : "(Kreis)",
"seconds ago" : "Gerade eben",
"Assign to me" : "Mir zuweisen", "Assign to me" : "Mir zuweisen",
"Unarchive card" : "Karte dearchivieren",
"Archive card" : "Karte archivieren",
"Delete card" : "Karte löschen", "Delete card" : "Karte löschen",
"Move card" : "Karte verschieben", "Move card" : "Karte verschieben",
"Card details" : "Kartendetails", "Card details" : "Kartendetails",
"Move card to another board" : "Karte auf ein anderes Board verschieben",
"Select a stack" : "Stapel auswählen", "Select a stack" : "Stapel auswählen",
"seconds ago" : "Gerade eben",
"All boards" : "Alle Boards", "All boards" : "Alle Boards",
"Archived boards" : "Archivierte Boards", "Archived boards" : "Archivierte Boards",
"Shared with you" : "Mit Ihnen geteilt", "Shared boards" : "Geteilte Boards",
"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.",
"Settings" : "Einstellungen", "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", "New board title" : "Board-Titel",
"Edit board" : "Board bearbeiten", "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", "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?", "Clone board" : "Board klonen",
"Delete the board?" : "Das Board löschen?", "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 board" : "Mit einem Board verknüpfen",
"Link to a card" : "Mit einer Karte verknüpfen", "Link to a card" : "Mit einer Karte verknüpfen",
"Something went wrong" : "Etwas ist schiefgelaufen", "Something went wrong" : "Etwas ist schiefgelaufen",

View File

@@ -99,7 +99,6 @@
"Create new board" : "Neues Board", "Create new board" : "Neues Board",
"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", "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 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 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", "Select a board" : "Ein Board auswählen",
@@ -121,11 +120,10 @@
"Filter by assigned user" : "Nach zugewiesenem Benutzer filtern", "Filter by assigned user" : "Nach zugewiesenem Benutzer filtern",
"Filter by due date" : "Nach Fälligkeitsdatum filtern", "Filter by due date" : "Nach Fälligkeitsdatum filtern",
"Overdue" : "Überfällig", "Overdue" : "Überfällig",
"Next 24 hours" : "Die nächsten 24 Stunden", "Today" : "Heute",
"Next 7 days" : "Die nächsten 7 Tage", "Next 7 days" : "Die nächsten 7 Tage",
"Next 30 days" : "Die nächsten 30 Tage", "Next 30 days" : "Die nächsten 30 Tage",
"No due date" : "Kein Fälligkeitsdatum", "No due date" : "Kein Fälligkeitsdatum",
"Clear filter" : "Filter zurücksetzen",
"Show archived cards" : "Archivierte Karten anzeigen", "Show archived cards" : "Archivierte Karten anzeigen",
"Toggle compact mode" : "Kompaktmodus umschalten", "Toggle compact mode" : "Kompaktmodus umschalten",
"Details" : "Details", "Details" : "Details",
@@ -135,7 +133,7 @@
"Tags" : "Schlagworte", "Tags" : "Schlagworte",
"Deleted items" : "Gelöschte Objekte", "Deleted items" : "Gelöschte Objekte",
"Timeline" : "Zeitachse", "Timeline" : "Zeitachse",
"Deleted lists" : "Gelöschte Listen", "Deleted lists" : "Listen löschen",
"Undo" : "Rückgängig", "Undo" : "Rückgängig",
"Deleted cards" : "Gelöschte Karten", "Deleted cards" : "Gelöschte Karten",
"Share board with a user, group or circle …" : "Board mit Benutzer, Gruppe oder Kreis teilen …", "Share board with a user, group or circle …" : "Board mit Benutzer, Gruppe oder Kreis teilen …",
@@ -153,11 +151,6 @@
"Edit" : "Bearbeiten", "Edit" : "Bearbeiten",
"Add a new tag" : "Neues Schlagwort hinzufügen", "Add a new tag" : "Neues Schlagwort hinzufügen",
"title and color value must be provided" : "Titel und Farbwert müssen angegeben werden", "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 a tag to this card…" : "Dieser Karte ein Schlagwort zuweisen…",
"Assign to users" : "Benutzern zuweisen", "Assign to users" : "Benutzern zuweisen",
"Assign to users/groups/circles" : "An Benutzer, Gruppen oder Kreise zuweisen", "Assign to users/groups/circles" : "An Benutzer, Gruppen oder Kreise zuweisen",
@@ -169,15 +162,13 @@
"(Unsaved)" : "(nicht gespeichert)", "(Unsaved)" : "(nicht gespeichert)",
"(Saving…)" : "(Speichere…)", "(Saving…)" : "(Speichere…)",
"Formatting help" : "Formatierungshilfe", "Formatting help" : "Formatierungshilfe",
"Add Attachment" : "Anhang anhängen",
"Edit description" : "Beschreibung bearbeiten",
"View description" : "Beschreibung anzeigen",
"Attachments" : "Anhänge", "Attachments" : "Anhänge",
"Comments" : "Kommentare", "Comments" : "Kommentare",
"Choose attachment" : "Anhang auswählen",
"Modified" : "Geändert", "Modified" : "Geändert",
"Created" : "Erstellt", "Created" : "Erstellt",
"Upload attachment" : "Anhang hochladen", "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!", "No comments yet. Begin the discussion!" : "Bislang keine Kommentare. Beginnen Sie die Diskussion!",
"Save" : "Speichern", "Save" : "Speichern",
"The comment cannot be empty." : "Der Kommentar darf nicht leer sein.", "The comment cannot be empty." : "Der Kommentar darf nicht leer sein.",
@@ -187,32 +178,25 @@
"Update" : "Aktualisieren", "Update" : "Aktualisieren",
"(group)" : "(Gruppe)", "(group)" : "(Gruppe)",
"(circle)" : "(Kreis)", "(circle)" : "(Kreis)",
"seconds ago" : "Gerade eben",
"Assign to me" : "Mir zuweisen", "Assign to me" : "Mir zuweisen",
"Unarchive card" : "Karte dearchivieren",
"Archive card" : "Karte archivieren",
"Delete card" : "Karte löschen", "Delete card" : "Karte löschen",
"Move card" : "Karte verschieben", "Move card" : "Karte verschieben",
"Card details" : "Kartendetails", "Card details" : "Kartendetails",
"Move card to another board" : "Karte auf ein anderes Board verschieben",
"Select a stack" : "Stapel auswählen", "Select a stack" : "Stapel auswählen",
"seconds ago" : "Gerade eben",
"All boards" : "Alle Boards", "All boards" : "Alle Boards",
"Archived boards" : "Archivierte Boards", "Archived boards" : "Archivierte Boards",
"Shared with you" : "Mit Ihnen geteilt", "Shared boards" : "Geteilte Boards",
"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.",
"Settings" : "Einstellungen", "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", "New board title" : "Board-Titel",
"Edit board" : "Board bearbeiten", "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", "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?", "Clone board" : "Board klonen",
"Delete the board?" : "Das Board löschen?", "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 board" : "Mit einem Board verknüpfen",
"Link to a card" : "Mit einer Karte verknüpfen", "Link to a card" : "Mit einer Karte verknüpfen",
"Something went wrong" : "Etwas ist schiefgelaufen", "Something went wrong" : "Etwas ist schiefgelaufen",

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@@ -101,7 +101,6 @@ OC.L10N.register(
"Create new board" : "Crear nuevo tablero", "Create new board" : "Crear nuevo tablero",
"new board" : "nuevo tablero", "new board" : "nuevo tablero",
"Select the board to link to a project" : "Selecciona el tablero que enlazar a un proyecto", "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 board" : "Selecciona tablero",
"Select the card to link to a project" : "Selecciona la tarjeta que enlazar a un proyecto", "Select the card to link to a project" : "Selecciona la tarjeta que enlazar a un proyecto",
"Select a board" : "Selecciona un tablero", "Select a board" : "Selecciona un tablero",
@@ -123,11 +122,10 @@ OC.L10N.register(
"Filter by assigned user" : "Filtrar por usuario asignado", "Filter by assigned user" : "Filtrar por usuario asignado",
"Filter by due date" : "Filtrar por fecha de finalización", "Filter by due date" : "Filtrar por fecha de finalización",
"Overdue" : "Demorado", "Overdue" : "Demorado",
"Next 24 hours" : "Próximas 24 horas", "Today" : "Hoy",
"Next 7 days" : "Siguientes 7 días", "Next 7 days" : "Siguientes 7 días",
"Next 30 days" : "Siguientes 30 días", "Next 30 days" : "Siguientes 30 días",
"No due date" : "Sin fecha de vencimiento", "No due date" : "Sin fecha de vencimiento",
"Clear filter" : "Borrar filtro",
"Show archived cards" : "Mostrar tarjetas archivadas", "Show archived cards" : "Mostrar tarjetas archivadas",
"Toggle compact mode" : "Mostrar/ocultar modo compacto", "Toggle compact mode" : "Mostrar/ocultar modo compacto",
"Details" : "Detalles", "Details" : "Detalles",
@@ -155,11 +153,6 @@ OC.L10N.register(
"Edit" : "Editar", "Edit" : "Editar",
"Add a new tag" : "Añade una nueva etiqueta", "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 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 a tag to this card…" : "Asignar una etiqueta a esta tarjeta...",
"Assign to users" : "Asignar a usuarios", "Assign to users" : "Asignar a usuarios",
"Assign to users/groups/circles" : "Asignar a usuarios/grupos/círculos", "Assign to users/groups/circles" : "Asignar a usuarios/grupos/círculos",
@@ -171,15 +164,13 @@ OC.L10N.register(
"(Unsaved)" : "(Sin salvar)", "(Unsaved)" : "(Sin salvar)",
"(Saving…)" : "(Guardando...)", "(Saving…)" : "(Guardando...)",
"Formatting help" : "Ayuda de formato", "Formatting help" : "Ayuda de formato",
"Add Attachment" : "Añadir adjunto",
"Edit description" : "Editar descripción",
"View description" : "Ver descripción",
"Attachments" : "Adjuntos", "Attachments" : "Adjuntos",
"Comments" : "Comentarios", "Comments" : "Comentarios",
"Choose attachment" : "Escoger adjunto",
"Modified" : "Modificado", "Modified" : "Modificado",
"Created" : "Creado", "Created" : "Creado",
"Upload attachment" : "Subir adjunto", "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!", "No comments yet. Begin the discussion!" : "Todavía no hay comentarios. ¡Comienza la discusión!",
"Save" : "Guardar", "Save" : "Guardar",
"The comment cannot be empty." : "El comentario no puede estar vacío.", "The comment cannot be empty." : "El comentario no puede estar vacío.",
@@ -189,32 +180,25 @@ OC.L10N.register(
"Update" : "Actualizar", "Update" : "Actualizar",
"(group)" : "(grupo)", "(group)" : "(grupo)",
"(circle)" : "(circle)", "(circle)" : "(circle)",
"seconds ago" : "hace unos segundos",
"Assign to me" : "Asignarme a mí", "Assign to me" : "Asignarme a mí",
"Unarchive card" : "Desarchivar tarjeta",
"Archive card" : "Archivar tarjeta",
"Delete card" : "Eliminar tarjeta", "Delete card" : "Eliminar tarjeta",
"Move card" : "Mover tarjeta", "Move card" : "Mover tarjeta",
"Card details" : "Detalles de la tarjeta", "Card details" : "Detalles de la tarjeta",
"Move card to another board" : "Mover la tarjeta a otro tablero",
"Select a stack" : "Seleccionar una pila", "Select a stack" : "Seleccionar una pila",
"seconds ago" : "hace unos segundos",
"All boards" : "Todos los tableros", "All boards" : "Todos los tableros",
"Archived boards" : "Tableros archivados", "Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido contigo", "Shared boards" : "Tableros compartidos",
"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.",
"Settings" : "Ajustes", "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", "New board title" : "Nuevo título de tablero",
"Edit board" : "Editar 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", "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.", "Clone board" : "Clonar tablero",
"Delete the board?" : "¿Borrar el 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 board" : "Enlace a un tablero",
"Link to a card" : "Enlace a una tarjeta", "Link to a card" : "Enlace a una tarjeta",
"Something went wrong" : "Algo ha ido mal", "Something went wrong" : "Algo ha ido mal",

View File

@@ -99,7 +99,6 @@
"Create new board" : "Crear nuevo tablero", "Create new board" : "Crear nuevo tablero",
"new board" : "nuevo tablero", "new board" : "nuevo tablero",
"Select the board to link to a project" : "Selecciona el tablero que enlazar a un proyecto", "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 board" : "Selecciona tablero",
"Select the card to link to a project" : "Selecciona la tarjeta que enlazar a un proyecto", "Select the card to link to a project" : "Selecciona la tarjeta que enlazar a un proyecto",
"Select a board" : "Selecciona un tablero", "Select a board" : "Selecciona un tablero",
@@ -121,11 +120,10 @@
"Filter by assigned user" : "Filtrar por usuario asignado", "Filter by assigned user" : "Filtrar por usuario asignado",
"Filter by due date" : "Filtrar por fecha de finalización", "Filter by due date" : "Filtrar por fecha de finalización",
"Overdue" : "Demorado", "Overdue" : "Demorado",
"Next 24 hours" : "Próximas 24 horas", "Today" : "Hoy",
"Next 7 days" : "Siguientes 7 días", "Next 7 days" : "Siguientes 7 días",
"Next 30 days" : "Siguientes 30 días", "Next 30 days" : "Siguientes 30 días",
"No due date" : "Sin fecha de vencimiento", "No due date" : "Sin fecha de vencimiento",
"Clear filter" : "Borrar filtro",
"Show archived cards" : "Mostrar tarjetas archivadas", "Show archived cards" : "Mostrar tarjetas archivadas",
"Toggle compact mode" : "Mostrar/ocultar modo compacto", "Toggle compact mode" : "Mostrar/ocultar modo compacto",
"Details" : "Detalles", "Details" : "Detalles",
@@ -153,11 +151,6 @@
"Edit" : "Editar", "Edit" : "Editar",
"Add a new tag" : "Añade una nueva etiqueta", "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 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 a tag to this card…" : "Asignar una etiqueta a esta tarjeta...",
"Assign to users" : "Asignar a usuarios", "Assign to users" : "Asignar a usuarios",
"Assign to users/groups/circles" : "Asignar a usuarios/grupos/círculos", "Assign to users/groups/circles" : "Asignar a usuarios/grupos/círculos",
@@ -169,15 +162,13 @@
"(Unsaved)" : "(Sin salvar)", "(Unsaved)" : "(Sin salvar)",
"(Saving…)" : "(Guardando...)", "(Saving…)" : "(Guardando...)",
"Formatting help" : "Ayuda de formato", "Formatting help" : "Ayuda de formato",
"Add Attachment" : "Añadir adjunto",
"Edit description" : "Editar descripción",
"View description" : "Ver descripción",
"Attachments" : "Adjuntos", "Attachments" : "Adjuntos",
"Comments" : "Comentarios", "Comments" : "Comentarios",
"Choose attachment" : "Escoger adjunto",
"Modified" : "Modificado", "Modified" : "Modificado",
"Created" : "Creado", "Created" : "Creado",
"Upload attachment" : "Subir adjunto", "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!", "No comments yet. Begin the discussion!" : "Todavía no hay comentarios. ¡Comienza la discusión!",
"Save" : "Guardar", "Save" : "Guardar",
"The comment cannot be empty." : "El comentario no puede estar vacío.", "The comment cannot be empty." : "El comentario no puede estar vacío.",
@@ -187,32 +178,25 @@
"Update" : "Actualizar", "Update" : "Actualizar",
"(group)" : "(grupo)", "(group)" : "(grupo)",
"(circle)" : "(circle)", "(circle)" : "(circle)",
"seconds ago" : "hace unos segundos",
"Assign to me" : "Asignarme a mí", "Assign to me" : "Asignarme a mí",
"Unarchive card" : "Desarchivar tarjeta",
"Archive card" : "Archivar tarjeta",
"Delete card" : "Eliminar tarjeta", "Delete card" : "Eliminar tarjeta",
"Move card" : "Mover tarjeta", "Move card" : "Mover tarjeta",
"Card details" : "Detalles de la tarjeta", "Card details" : "Detalles de la tarjeta",
"Move card to another board" : "Mover la tarjeta a otro tablero",
"Select a stack" : "Seleccionar una pila", "Select a stack" : "Seleccionar una pila",
"seconds ago" : "hace unos segundos",
"All boards" : "Todos los tableros", "All boards" : "Todos los tableros",
"Archived boards" : "Tableros archivados", "Archived boards" : "Tableros archivados",
"Shared with you" : "Compartido contigo", "Shared boards" : "Tableros compartidos",
"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.",
"Settings" : "Ajustes", "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", "New board title" : "Nuevo título de tablero",
"Edit board" : "Editar 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", "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.", "Clone board" : "Clonar tablero",
"Delete the board?" : "¿Borrar el 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 board" : "Enlace a un tablero",
"Link to a card" : "Enlace a una tarjeta", "Link to a card" : "Enlace a una tarjeta",
"Something went wrong" : "Algo ha ido mal", "Something went wrong" : "Algo ha ido mal",

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@@ -101,7 +101,6 @@ OC.L10N.register(
"Create new board" : "Sortu taula berri bat", "Create new board" : "Sortu taula berri bat",
"new board" : "taula berria", "new board" : "taula berria",
"Select the board to link to a project" : "Hautatu taula proiektu bati estekatzeko", "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 board" : "Hautatu taula",
"Select the card to link to a project" : "Hautatu proiektu bati estekatzeko txartela", "Select the card to link to a project" : "Hautatu proiektu bati estekatzeko txartela",
"Select a board" : "Hautatu taula bat", "Select a board" : "Hautatu taula bat",
@@ -123,11 +122,10 @@ OC.L10N.register(
"Filter by assigned user" : "Iragazi esleitutako erabiltzailez", "Filter by assigned user" : "Iragazi esleitutako erabiltzailez",
"Filter by due date" : "Iragazi epe-mugaz", "Filter by due date" : "Iragazi epe-mugaz",
"Overdue" : "Atzeratuta", "Overdue" : "Atzeratuta",
"Next 24 hours" : "Hurrengo 24 orduak", "Today" : "Gaur",
"Next 7 days" : "Hurrengo 7 egunetan", "Next 7 days" : "Hurrengo 7 egunetan",
"Next 30 days" : "Hurrengo 30 egunetan", "Next 30 days" : "Hurrengo 30 egunetan",
"No due date" : "Epe-mugarik gabe", "No due date" : "Epe-mugarik gabe",
"Clear filter" : "Garbitu iragazia",
"Show archived cards" : "Erakutsi artxibatutako txartelak", "Show archived cards" : "Erakutsi artxibatutako txartelak",
"Toggle compact mode" : "Txandakatu modu trinkoa", "Toggle compact mode" : "Txandakatu modu trinkoa",
"Details" : "Xehetasunak", "Details" : "Xehetasunak",
@@ -155,11 +153,6 @@ OC.L10N.register(
"Edit" : "Editatu", "Edit" : "Editatu",
"Add a new tag" : "Gehitu etiketa berri bat", "Add a new tag" : "Gehitu etiketa berri bat",
"title and color value must be provided" : "izenburu eta kolore balioak hornitu behar dira", "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 a tag to this card…" : "Esleitu etiketa bat txartel honi...",
"Assign to users" : "Esleitu erabiltzaileei", "Assign to users" : "Esleitu erabiltzaileei",
"Assign to users/groups/circles" : "Esleitu erabiltzaile/talde/zirkuluei", "Assign to users/groups/circles" : "Esleitu erabiltzaile/talde/zirkuluei",
@@ -171,15 +164,13 @@ OC.L10N.register(
"(Unsaved)" : "(Gorde gabe)", "(Unsaved)" : "(Gorde gabe)",
"(Saving…)" : "(Gordetzen...)", "(Saving…)" : "(Gordetzen...)",
"Formatting help" : "Formatua emateko laguntza", "Formatting help" : "Formatua emateko laguntza",
"Add Attachment" : "Gehitu eranskina",
"Edit description" : "Editatu azalpena",
"View description" : "Ikusi deskribapena",
"Attachments" : "Eranskinak", "Attachments" : "Eranskinak",
"Comments" : "Iruzkinak", "Comments" : "Iruzkinak",
"Choose attachment" : "Aukeratu eranskina",
"Modified" : "Aldatua", "Modified" : "Aldatua",
"Created" : "Sortua", "Created" : "Sortua",
"Upload attachment" : "Igo eranskina", "Upload attachment" : "Igo eranskina",
"Delete Attachment" : "Ezabatu eranskina",
"Restore Attachment" : "Berezarri eranskina",
"No comments yet. Begin the discussion!" : "Ez dago iruzkinik oraindik. Hasi eztabaidatzen!", "No comments yet. Begin the discussion!" : "Ez dago iruzkinik oraindik. Hasi eztabaidatzen!",
"Save" : "Gorde", "Save" : "Gorde",
"The comment cannot be empty." : "Iruzkina ezin da hutsik egon.", "The comment cannot be empty." : "Iruzkina ezin da hutsik egon.",
@@ -189,29 +180,25 @@ OC.L10N.register(
"Update" : "Eguneratu", "Update" : "Eguneratu",
"(group)" : "(taldea)", "(group)" : "(taldea)",
"(circle)" : "(zirkulua)", "(circle)" : "(zirkulua)",
"seconds ago" : "segundo lehenago",
"Assign to me" : "Esleitu niri", "Assign to me" : "Esleitu niri",
"Unarchive card" : "Berreskuratu txartela artxibotik",
"Archive card" : "Artxibatu txartela",
"Delete card" : "Ezabatu txartela", "Delete card" : "Ezabatu txartela",
"Move card" : "Mugitu txartela", "Move card" : "Mugitu txartela",
"Card details" : "Txartelaren xehetasunak", "Card details" : "Txartelaren xehetasunak",
"Move card to another board" : "Mugitu txartela beste mahai batera",
"Select a stack" : "Hautatu pila bat", "Select a stack" : "Hautatu pila bat",
"seconds ago" : "segundo lehenago",
"All boards" : "Taula guztiak", "All boards" : "Taula guztiak",
"Archived boards" : "Artxibatutako taulak", "Archived boards" : "Artxibatutako taulak",
"Shared with you" : "Zurekin partekatua", "Shared boards" : "Partekatutako taulak",
"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.",
"Settings" : "Ezarpenak", "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", "New board title" : "Taula berriaren izenburua",
"Edit board" : "Editatu taula", "Edit board" : "Editatu taula",
"Clone board " : "Klonatu mahaia",
"Archive board " : "Artxibatu mahaia",
"Board details" : "Mahaigainaren xehetasunak",
"An error occurred" : "Errore bat gertatu da", "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.", "Clone board" : "Klonatu taula",
"Delete the board?" : "Mahaia ezabatu?", "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 board" : "Estekatu taula batera",
"Link to a card" : "Estekatu txartel batera", "Link to a card" : "Estekatu txartel batera",
"Something went wrong" : "Zerbait gaizki joan da", "Something went wrong" : "Zerbait gaizki joan da",

View File

@@ -99,7 +99,6 @@
"Create new board" : "Sortu taula berri bat", "Create new board" : "Sortu taula berri bat",
"new board" : "taula berria", "new board" : "taula berria",
"Select the board to link to a project" : "Hautatu taula proiektu bati estekatzeko", "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 board" : "Hautatu taula",
"Select the card to link to a project" : "Hautatu proiektu bati estekatzeko txartela", "Select the card to link to a project" : "Hautatu proiektu bati estekatzeko txartela",
"Select a board" : "Hautatu taula bat", "Select a board" : "Hautatu taula bat",
@@ -121,11 +120,10 @@
"Filter by assigned user" : "Iragazi esleitutako erabiltzailez", "Filter by assigned user" : "Iragazi esleitutako erabiltzailez",
"Filter by due date" : "Iragazi epe-mugaz", "Filter by due date" : "Iragazi epe-mugaz",
"Overdue" : "Atzeratuta", "Overdue" : "Atzeratuta",
"Next 24 hours" : "Hurrengo 24 orduak", "Today" : "Gaur",
"Next 7 days" : "Hurrengo 7 egunetan", "Next 7 days" : "Hurrengo 7 egunetan",
"Next 30 days" : "Hurrengo 30 egunetan", "Next 30 days" : "Hurrengo 30 egunetan",
"No due date" : "Epe-mugarik gabe", "No due date" : "Epe-mugarik gabe",
"Clear filter" : "Garbitu iragazia",
"Show archived cards" : "Erakutsi artxibatutako txartelak", "Show archived cards" : "Erakutsi artxibatutako txartelak",
"Toggle compact mode" : "Txandakatu modu trinkoa", "Toggle compact mode" : "Txandakatu modu trinkoa",
"Details" : "Xehetasunak", "Details" : "Xehetasunak",
@@ -153,11 +151,6 @@
"Edit" : "Editatu", "Edit" : "Editatu",
"Add a new tag" : "Gehitu etiketa berri bat", "Add a new tag" : "Gehitu etiketa berri bat",
"title and color value must be provided" : "izenburu eta kolore balioak hornitu behar dira", "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 a tag to this card…" : "Esleitu etiketa bat txartel honi...",
"Assign to users" : "Esleitu erabiltzaileei", "Assign to users" : "Esleitu erabiltzaileei",
"Assign to users/groups/circles" : "Esleitu erabiltzaile/talde/zirkuluei", "Assign to users/groups/circles" : "Esleitu erabiltzaile/talde/zirkuluei",
@@ -169,15 +162,13 @@
"(Unsaved)" : "(Gorde gabe)", "(Unsaved)" : "(Gorde gabe)",
"(Saving…)" : "(Gordetzen...)", "(Saving…)" : "(Gordetzen...)",
"Formatting help" : "Formatua emateko laguntza", "Formatting help" : "Formatua emateko laguntza",
"Add Attachment" : "Gehitu eranskina",
"Edit description" : "Editatu azalpena",
"View description" : "Ikusi deskribapena",
"Attachments" : "Eranskinak", "Attachments" : "Eranskinak",
"Comments" : "Iruzkinak", "Comments" : "Iruzkinak",
"Choose attachment" : "Aukeratu eranskina",
"Modified" : "Aldatua", "Modified" : "Aldatua",
"Created" : "Sortua", "Created" : "Sortua",
"Upload attachment" : "Igo eranskina", "Upload attachment" : "Igo eranskina",
"Delete Attachment" : "Ezabatu eranskina",
"Restore Attachment" : "Berezarri eranskina",
"No comments yet. Begin the discussion!" : "Ez dago iruzkinik oraindik. Hasi eztabaidatzen!", "No comments yet. Begin the discussion!" : "Ez dago iruzkinik oraindik. Hasi eztabaidatzen!",
"Save" : "Gorde", "Save" : "Gorde",
"The comment cannot be empty." : "Iruzkina ezin da hutsik egon.", "The comment cannot be empty." : "Iruzkina ezin da hutsik egon.",
@@ -187,29 +178,25 @@
"Update" : "Eguneratu", "Update" : "Eguneratu",
"(group)" : "(taldea)", "(group)" : "(taldea)",
"(circle)" : "(zirkulua)", "(circle)" : "(zirkulua)",
"seconds ago" : "segundo lehenago",
"Assign to me" : "Esleitu niri", "Assign to me" : "Esleitu niri",
"Unarchive card" : "Berreskuratu txartela artxibotik",
"Archive card" : "Artxibatu txartela",
"Delete card" : "Ezabatu txartela", "Delete card" : "Ezabatu txartela",
"Move card" : "Mugitu txartela", "Move card" : "Mugitu txartela",
"Card details" : "Txartelaren xehetasunak", "Card details" : "Txartelaren xehetasunak",
"Move card to another board" : "Mugitu txartela beste mahai batera",
"Select a stack" : "Hautatu pila bat", "Select a stack" : "Hautatu pila bat",
"seconds ago" : "segundo lehenago",
"All boards" : "Taula guztiak", "All boards" : "Taula guztiak",
"Archived boards" : "Artxibatutako taulak", "Archived boards" : "Artxibatutako taulak",
"Shared with you" : "Zurekin partekatua", "Shared boards" : "Partekatutako taulak",
"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.",
"Settings" : "Ezarpenak", "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", "New board title" : "Taula berriaren izenburua",
"Edit board" : "Editatu taula", "Edit board" : "Editatu taula",
"Clone board " : "Klonatu mahaia",
"Archive board " : "Artxibatu mahaia",
"Board details" : "Mahaigainaren xehetasunak",
"An error occurred" : "Errore bat gertatu da", "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.", "Clone board" : "Klonatu taula",
"Delete the board?" : "Mahaia ezabatu?", "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 board" : "Estekatu taula batera",
"Link to a card" : "Estekatu txartel batera", "Link to a card" : "Estekatu txartel batera",
"Something went wrong" : "Zerbait gaizki joan da", "Something went wrong" : "Zerbait gaizki joan da",

View File

@@ -1,136 +1,44 @@
OC.L10N.register( OC.L10N.register(
"deck", "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" : "شخصی", "Personal" : "شخصی",
"Finished" : "تمام شده", "Finished" : "تمام شده",
"To review" : "برای بازبینی",
"Action needed" : "نیازمند اقدام",
"Later" : "بعدا",
"copy" : "کپی", "copy" : "کپی",
"To do" : "برای انجام",
"Doing" : "در حال انجام",
"Done" : "انجام شد", "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 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" : "یک پوشه موقت گم شده", "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" : "لغو", "Cancel" : "لغو",
"File already exists" : "پرونده از قبل موجود است", "File already exists" : "فایل از قبل موجود میباشد",
"A file with the name {filename} already exists." : "پرونده‌ای با نام {filename} از قبل موجود است.", "Today" : "Today",
"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" : "تغییر حالت فشرده",
"Details" : "جزئیات", "Details" : "جزئیات",
"Loading board" : "بارکردن تخته", "Sharing" : "اشتراک گذاری",
"Board not found" : "تخته یافت نشد",
"Sharing" : "هم‌رسانی",
"Tags" : "برچسب‌ها", "Tags" : "برچسب‌ها",
"Deleted items" : "موارد حذف شده",
"Timeline" : "خط زمانی",
"Deleted lists" : "فهرست‌های پاک شده",
"Undo" : "برگرداندن", "Undo" : "برگرداندن",
"Deleted cards" : "کارت‌های پاک شده",
"Share board with a user, group or circle …" : "هم‌رسانی تخته با کاربر، گروه یا حلقه...",
"Board owner" : "مالک تخته",
"(Group)" : "(گروه)", "(Group)" : "(گروه)",
"(Circle)" : "(حلقه)", "Can edit" : "می توانید ویرایش کنید",
"Can edit" : "میتواند ویرایش کند", "Can share" : "میتوانید به اشتراک بگذارید",
"Can share" : "می‌تواند هم‌رسانی کند",
"Can manage" : "می‌تواند مدیریت کند",
"Delete" : "حذف", "Delete" : "حذف",
"Delete list" : "حذف فهرست", "Add card" : "کارت اضافه کنید",
"Add card" : "افزودن کارت",
"Add a new card" : "افزودن یک کارت جدید",
"Edit" : "ویرایش", "Edit" : "ویرایش",
"Add a new tag" : "افزودن یک برچسب جدید",
"title and color value must be provided" : "نام و رنگ باید مشخص شود",
"Title" : "عنوان",
"Members" : "اعضا",
"Add this attachment" : "افزودن این پیوست",
"Delete Attachment" : "حذف پیوست",
"Restore Attachment" : "بازیابی پیوست",
"Due date" : "موعد مقرر", "Due date" : "موعد مقرر",
"Description" : "توضیحات", "Description" : "توضیحات",
"(Unsaved)" : "(ذخیره نشده)", "Attachments" : "پیوست ها",
"(Saving…)" : "(در حال ذخیره...)",
"Formatting help" : "راهنمای قالب‌بندی",
"Add Attachment" : "افزودن پیوست",
"Edit description" : "ویرایش توضیحات",
"View description" : "نمایش توضیحات",
"Attachments" : "پیوست‌ها",
"Comments" : "نظرات", "Comments" : "نظرات",
"Choose attachment" : "انتخاب پیوست",
"Modified" : "تغییر یافته", "Modified" : "تغییر یافته",
"Created" : "ایجاد شده", "Created" : "ایجاد شده",
"Upload attachment" : "بارگذاری پیوست", "Upload attachment" : "پیوست را بارگیری کنید",
"No comments yet. Begin the discussion!" : "هنوز نظری وجود ندارد. بحثی را آغاز کنید!",
"Save" : "ذخیره", "Save" : "ذخیره",
"The comment cannot be empty." : "نظر نمی‌تواند خالی باشد.",
"The comment cannot be longer than 1000 characters." : "نظر نمی‌تواند طولانی‌تر از ۱۰۰۰ حرف باشد.",
"In reply to" : "در پاسخ به",
"Reply" : "پاسخ", "Reply" : "پاسخ",
"Update" : "بهروزرسانی", "Update" : "به روز رسانی",
"(group)" : "(گروه)", "(group)" : "(گروه)",
"(circle)" : "(حلقه)",
"seconds ago" : "ثانیه‌هایی پیش",
"Archive card" : "کارت بایگانی",
"Delete card" : "حذف کارت", "Delete card" : "حذف کارت",
"Move card" : "انتقال کارت", "Move card" : "انتقال کارت",
"Card details" : "جزئیات کارت", "seconds ago" : "ثانیه‌هایی پیش",
"Move card to another board" : "انتقال کارت به تخته‌ای دیگر",
"All boards" : "همه تخته‌ها",
"Archived boards" : "تخته‌های بایگانی شده",
"Shared with you" : "با شما به اشتراک گذاشته شده است",
"Settings" : "تنظیمات", "Settings" : "تنظیمات",
"New board title" : "عنوان تختهٔ جدید", "Edit board" : "ویرایش تخته ها",
"Edit board" : "ویرایش تخته", "An error occurred" : "خطایی روی داد",
"An error occurred" : "خطایی روی داد" "Archive board" : " بایگانی تابلو",
"Delete board" : "حذف تابلو"
}, },
"nplurals=2; plural=(n > 1);"); "nplurals=2; plural=(n > 1);");

View File

@@ -1,134 +1,42 @@
{ "translations": { { "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" : "شخصی", "Personal" : "شخصی",
"Finished" : "تمام شده", "Finished" : "تمام شده",
"To review" : "برای بازبینی",
"Action needed" : "نیازمند اقدام",
"Later" : "بعدا",
"copy" : "کپی", "copy" : "کپی",
"To do" : "برای انجام",
"Doing" : "در حال انجام",
"Done" : "انجام شد", "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 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" : "یک پوشه موقت گم شده", "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" : "لغو", "Cancel" : "لغو",
"File already exists" : "پرونده از قبل موجود است", "File already exists" : "فایل از قبل موجود میباشد",
"A file with the name {filename} already exists." : "پرونده‌ای با نام {filename} از قبل موجود است.", "Today" : "Today",
"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" : "تغییر حالت فشرده",
"Details" : "جزئیات", "Details" : "جزئیات",
"Loading board" : "بارکردن تخته", "Sharing" : "اشتراک گذاری",
"Board not found" : "تخته یافت نشد",
"Sharing" : "هم‌رسانی",
"Tags" : "برچسب‌ها", "Tags" : "برچسب‌ها",
"Deleted items" : "موارد حذف شده",
"Timeline" : "خط زمانی",
"Deleted lists" : "فهرست‌های پاک شده",
"Undo" : "برگرداندن", "Undo" : "برگرداندن",
"Deleted cards" : "کارت‌های پاک شده",
"Share board with a user, group or circle …" : "هم‌رسانی تخته با کاربر، گروه یا حلقه...",
"Board owner" : "مالک تخته",
"(Group)" : "(گروه)", "(Group)" : "(گروه)",
"(Circle)" : "(حلقه)", "Can edit" : "می توانید ویرایش کنید",
"Can edit" : "میتواند ویرایش کند", "Can share" : "میتوانید به اشتراک بگذارید",
"Can share" : "می‌تواند هم‌رسانی کند",
"Can manage" : "می‌تواند مدیریت کند",
"Delete" : "حذف", "Delete" : "حذف",
"Delete list" : "حذف فهرست", "Add card" : "کارت اضافه کنید",
"Add card" : "افزودن کارت",
"Add a new card" : "افزودن یک کارت جدید",
"Edit" : "ویرایش", "Edit" : "ویرایش",
"Add a new tag" : "افزودن یک برچسب جدید",
"title and color value must be provided" : "نام و رنگ باید مشخص شود",
"Title" : "عنوان",
"Members" : "اعضا",
"Add this attachment" : "افزودن این پیوست",
"Delete Attachment" : "حذف پیوست",
"Restore Attachment" : "بازیابی پیوست",
"Due date" : "موعد مقرر", "Due date" : "موعد مقرر",
"Description" : "توضیحات", "Description" : "توضیحات",
"(Unsaved)" : "(ذخیره نشده)", "Attachments" : "پیوست ها",
"(Saving…)" : "(در حال ذخیره...)",
"Formatting help" : "راهنمای قالب‌بندی",
"Add Attachment" : "افزودن پیوست",
"Edit description" : "ویرایش توضیحات",
"View description" : "نمایش توضیحات",
"Attachments" : "پیوست‌ها",
"Comments" : "نظرات", "Comments" : "نظرات",
"Choose attachment" : "انتخاب پیوست",
"Modified" : "تغییر یافته", "Modified" : "تغییر یافته",
"Created" : "ایجاد شده", "Created" : "ایجاد شده",
"Upload attachment" : "بارگذاری پیوست", "Upload attachment" : "پیوست را بارگیری کنید",
"No comments yet. Begin the discussion!" : "هنوز نظری وجود ندارد. بحثی را آغاز کنید!",
"Save" : "ذخیره", "Save" : "ذخیره",
"The comment cannot be empty." : "نظر نمی‌تواند خالی باشد.",
"The comment cannot be longer than 1000 characters." : "نظر نمی‌تواند طولانی‌تر از ۱۰۰۰ حرف باشد.",
"In reply to" : "در پاسخ به",
"Reply" : "پاسخ", "Reply" : "پاسخ",
"Update" : "بهروزرسانی", "Update" : "به روز رسانی",
"(group)" : "(گروه)", "(group)" : "(گروه)",
"(circle)" : "(حلقه)",
"seconds ago" : "ثانیه‌هایی پیش",
"Archive card" : "کارت بایگانی",
"Delete card" : "حذف کارت", "Delete card" : "حذف کارت",
"Move card" : "انتقال کارت", "Move card" : "انتقال کارت",
"Card details" : "جزئیات کارت", "seconds ago" : "ثانیه‌هایی پیش",
"Move card to another board" : "انتقال کارت به تخته‌ای دیگر",
"All boards" : "همه تخته‌ها",
"Archived boards" : "تخته‌های بایگانی شده",
"Shared with you" : "با شما به اشتراک گذاشته شده است",
"Settings" : "تنظیمات", "Settings" : "تنظیمات",
"New board title" : "عنوان تختهٔ جدید", "Edit board" : "ویرایش تخته ها",
"Edit board" : "ویرایش تخته", "An error occurred" : "خطایی روی داد",
"An error occurred" : "خطایی روی داد" "Archive board" : " بایگانی تابلو",
"Delete board" : "حذف تابلو"
},"pluralForm" :"nplurals=2; plural=(n > 1);" },"pluralForm" :"nplurals=2; plural=(n > 1);"
} }

View File

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

View File

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

View File

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

View File

@@ -99,7 +99,6 @@
"Create new board" : "Créer un nouveau tableau", "Create new board" : "Créer un nouveau tableau",
"new board" : "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.", "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 board" : "Sélectionner le tableau",
"Select the card to link to a project" : "Sélectionner la carte à relier à un projet", "Select the card to link to a project" : "Sélectionner la carte à relier à un projet",
"Select a board" : "Sélectionner un tableau", "Select a board" : "Sélectionner un tableau",
@@ -113,7 +112,6 @@
"Keep existing file" : "Conserver le fichier existant", "Keep existing file" : "Conserver le fichier existant",
"This board is read only" : "Ce tableau est en lecture seule", "This board is read only" : "Ce tableau est en lecture seule",
"Drop your files to upload" : "Glissez vos fichiers pour les envoyer", "Drop your files to upload" : "Glissez vos fichiers pour les envoyer",
"Archived cards" : "Cartes archivées",
"Add new list" : "Ajouter une nouvelle liste", "Add new list" : "Ajouter une nouvelle liste",
"List name" : "Nom de la liste", "List name" : "Nom de la liste",
"Apply filter" : "Filtrer", "Apply filter" : "Filtrer",
@@ -121,11 +119,10 @@
"Filter by assigned user" : "Filtrer par utilisateur", "Filter by assigned user" : "Filtrer par utilisateur",
"Filter by due date" : "Filtrer par échéance", "Filter by due date" : "Filtrer par échéance",
"Overdue" : "En retard", "Overdue" : "En retard",
"Next 24 hours" : "prochaines 24 heures", "Today" : "Aujourd'hui",
"Next 7 days" : "7 prochains jours", "Next 7 days" : "7 prochains jours",
"Next 30 days" : "30 prochains jours", "Next 30 days" : "30 prochains jours",
"No due date" : "Sans échéance", "No due date" : "Sans échéance",
"Clear filter" : "Supprimer le filtre",
"Show archived cards" : "Afficher les cartes archivées", "Show archived cards" : "Afficher les cartes archivées",
"Toggle compact mode" : "Basculer le mode compact", "Toggle compact mode" : "Basculer le mode compact",
"Details" : "Détails", "Details" : "Détails",
@@ -153,11 +150,6 @@
"Edit" : "Modifier", "Edit" : "Modifier",
"Add a new tag" : "Ajouter une nouvelle étiquette", "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 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 a tag to this card…" : "Associer une étiquette à cette carte…",
"Assign to users" : "Attribuer aux utilisateurs", "Assign to users" : "Attribuer aux utilisateurs",
"Assign to users/groups/circles" : "Attribuer à des utilisateurs / groupes / cercles", "Assign to users/groups/circles" : "Attribuer à des utilisateurs / groupes / cercles",
@@ -169,15 +161,13 @@
"(Unsaved)" : "(Non enregistré)", "(Unsaved)" : "(Non enregistré)",
"(Saving…)" : "(Enregistrement ...)", "(Saving…)" : "(Enregistrement ...)",
"Formatting help" : "Aide sur la mise en forme", "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", "Attachments" : "Pièces jointes",
"Comments" : "Commentaires", "Comments" : "Commentaires",
"Choose attachment" : "Choisir une pièce jointe",
"Modified" : "Modifié", "Modified" : "Modifié",
"Created" : "Créé", "Created" : "Créé",
"Upload attachment" : "Envoyer une pièce jointe", "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 !", "No comments yet. Begin the discussion!" : "Aucun commentaire pour l'instant, démarrez la discussion !",
"Save" : "Enregistrer", "Save" : "Enregistrer",
"The comment cannot be empty." : "Un commentaire ne peut pas être vide.", "The comment cannot be empty." : "Un commentaire ne peut pas être vide.",
@@ -187,27 +177,25 @@
"Update" : "Mettre à jour", "Update" : "Mettre à jour",
"(group)" : "(groupe)", "(group)" : "(groupe)",
"(circle)" : "(cercle)", "(circle)" : "(cercle)",
"seconds ago" : "à l'instant",
"Assign to me" : "Me l'assigner", "Assign to me" : "Me l'assigner",
"Unarchive card" : "Sortir la carte des archives",
"Archive card" : "Archiver la carte",
"Delete card" : "Supprimer la carte", "Delete card" : "Supprimer la carte",
"Move card" : "Déplacer la carte", "Move card" : "Déplacer la carte",
"Card details" : "Détails de 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", "Select a stack" : "Sélectionner une pile",
"seconds ago" : "à l'instant",
"All boards" : "Tous les tableaux", "All boards" : "Tous les tableaux",
"Archived boards" : "Tableaux archivés", "Archived boards" : "Tableaux archivés",
"Shared with you" : "Partagés avec vous", "Shared boards" : "Tableaux partagés",
"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.",
"Settings" : "Paramètres", "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", "New board title" : "Nouveau titre pour le tableau",
"Edit board" : "Modifier le tableau", "Edit board" : "Modifier le tableau",
"Board details" : "Détails du tableau",
"An error occurred" : "Une erreur est survenue", "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.", "Clone board" : "Dupliquer le tableau",
"Delete the board?" : "Supprimer 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 board" : "Relier à un tableau",
"Link to a card" : "Relier à une carte", "Link to a card" : "Relier à une carte",
"Something went wrong" : "Quelque chose s'est mal passé", "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", "Create new board" : "Crear un novo taboleiro",
"new board" : "novo taboleiro", "new board" : "novo taboleiro",
"Select the board to link to a project" : "Seleccione o taboleiro para ligar a un proxecto", "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 board" : "Seleccionar taboleiro",
"Select the card to link to a project" : "Seleccione a tarxeta para ligar a un proxecto", "Select the card to link to a project" : "Seleccione a tarxeta para ligar a un proxecto",
"Select a board" : "Seleccione un taboleiro", "Select a board" : "Seleccione un taboleiro",
@@ -123,11 +122,10 @@ OC.L10N.register(
"Filter by assigned user" : "Filtrar polo usuario asignado", "Filter by assigned user" : "Filtrar polo usuario asignado",
"Filter by due date" : "Filtrar pola data de caducidade", "Filter by due date" : "Filtrar pola data de caducidade",
"Overdue" : "Caducado", "Overdue" : "Caducado",
"Next 24 hours" : "Próximas 24 horas", "Today" : "Hoxe",
"Next 7 days" : "Próximos 7 días", "Next 7 days" : "Próximos 7 días",
"Next 30 days" : "Próximos 30 días", "Next 30 days" : "Próximos 30 días",
"No due date" : "Sen data de caducidade", "No due date" : "Sen data de caducidade",
"Clear filter" : "Limpar o filtro",
"Show archived cards" : "Amosar as tarxetas arquivadas", "Show archived cards" : "Amosar as tarxetas arquivadas",
"Toggle compact mode" : "Alternar o modo compacto", "Toggle compact mode" : "Alternar o modo compacto",
"Details" : "Detalles", "Details" : "Detalles",
@@ -155,11 +153,6 @@ OC.L10N.register(
"Edit" : "Editar", "Edit" : "Editar",
"Add a new tag" : "Engadir unha nova etiqueta", "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 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 a tag to this card…" : "Asignar unha etiqueta a esta tarxeta…",
"Assign to users" : "Asignar a usuarios", "Assign to users" : "Asignar a usuarios",
"Assign to users/groups/circles" : "Asignar a usuarios/grupos/círculos", "Assign to users/groups/circles" : "Asignar a usuarios/grupos/círculos",
@@ -171,15 +164,13 @@ OC.L10N.register(
"(Unsaved)" : "(Sen gardar)", "(Unsaved)" : "(Sen gardar)",
"(Saving…)" : "(Gardando…)", "(Saving…)" : "(Gardando…)",
"Formatting help" : "Axuda de formatado", "Formatting help" : "Axuda de formatado",
"Add Attachment" : "Engadir o anexo",
"Edit description" : "Editar a descrición",
"View description" : "Ver a descrición",
"Attachments" : "Anexos", "Attachments" : "Anexos",
"Comments" : "Comentarios", "Comments" : "Comentarios",
"Choose attachment" : "Escoller o anexo",
"Modified" : "Modificado", "Modified" : "Modificado",
"Created" : "Creado", "Created" : "Creado",
"Upload attachment" : "Enviar anexos", "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!", "No comments yet. Begin the discussion!" : "Aínda non hai comentarios. Comece o debate!",
"Save" : "Gardar", "Save" : "Gardar",
"The comment cannot be empty." : "O comentario non pode estar baleiro", "The comment cannot be empty." : "O comentario non pode estar baleiro",
@@ -189,32 +180,25 @@ OC.L10N.register(
"Update" : "Actualizar", "Update" : "Actualizar",
"(group)" : "(grupo)", "(group)" : "(grupo)",
"(circle)" : "(círculo)", "(circle)" : "(círculo)",
"seconds ago" : "segundos atrás",
"Assign to me" : "Asignarme", "Assign to me" : "Asignarme",
"Unarchive card" : "Desarquivar a tarxeta",
"Archive card" : "Arquivar a tarxeta",
"Delete card" : "Eliminar tarxeta", "Delete card" : "Eliminar tarxeta",
"Move card" : "Mover a tarxeta", "Move card" : "Mover a tarxeta",
"Card details" : "Detalles da tarxeta", "Card details" : "Detalles da tarxeta",
"Move card to another board" : "Mover a tarxeta a outro taboleiro",
"Select a stack" : "Seleccione unha rima", "Select a stack" : "Seleccione unha rima",
"seconds ago" : "segundos atrás",
"All boards" : "Todos os taboleiros", "All boards" : "Todos os taboleiros",
"Archived boards" : "Taboleiros arquivados", "Archived boards" : "Taboleiros arquivados",
"Shared with you" : "Compartido con vostede", "Shared boards" : "Taboleiros compartidos",
"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.",
"Settings" : "Axustes", "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", "New board title" : "Novo título do taboleiro",
"Edit board" : "Editar 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", "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.", "Clone board" : "Clonar taboleiro",
"Delete the board?" : "Eliminar o 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 board" : "Ligar a un taboleiro",
"Link to a card" : "Ligar a unha tarxeta", "Link to a card" : "Ligar a unha tarxeta",
"Something went wrong" : "Algo foi mal", "Something went wrong" : "Algo foi mal",

View File

@@ -99,7 +99,6 @@
"Create new board" : "Crear un novo taboleiro", "Create new board" : "Crear un novo taboleiro",
"new board" : "novo taboleiro", "new board" : "novo taboleiro",
"Select the board to link to a project" : "Seleccione o taboleiro para ligar a un proxecto", "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 board" : "Seleccionar taboleiro",
"Select the card to link to a project" : "Seleccione a tarxeta para ligar a un proxecto", "Select the card to link to a project" : "Seleccione a tarxeta para ligar a un proxecto",
"Select a board" : "Seleccione un taboleiro", "Select a board" : "Seleccione un taboleiro",
@@ -121,11 +120,10 @@
"Filter by assigned user" : "Filtrar polo usuario asignado", "Filter by assigned user" : "Filtrar polo usuario asignado",
"Filter by due date" : "Filtrar pola data de caducidade", "Filter by due date" : "Filtrar pola data de caducidade",
"Overdue" : "Caducado", "Overdue" : "Caducado",
"Next 24 hours" : "Próximas 24 horas", "Today" : "Hoxe",
"Next 7 days" : "Próximos 7 días", "Next 7 days" : "Próximos 7 días",
"Next 30 days" : "Próximos 30 días", "Next 30 days" : "Próximos 30 días",
"No due date" : "Sen data de caducidade", "No due date" : "Sen data de caducidade",
"Clear filter" : "Limpar o filtro",
"Show archived cards" : "Amosar as tarxetas arquivadas", "Show archived cards" : "Amosar as tarxetas arquivadas",
"Toggle compact mode" : "Alternar o modo compacto", "Toggle compact mode" : "Alternar o modo compacto",
"Details" : "Detalles", "Details" : "Detalles",
@@ -153,11 +151,6 @@
"Edit" : "Editar", "Edit" : "Editar",
"Add a new tag" : "Engadir unha nova etiqueta", "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 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 a tag to this card…" : "Asignar unha etiqueta a esta tarxeta…",
"Assign to users" : "Asignar a usuarios", "Assign to users" : "Asignar a usuarios",
"Assign to users/groups/circles" : "Asignar a usuarios/grupos/círculos", "Assign to users/groups/circles" : "Asignar a usuarios/grupos/círculos",
@@ -169,15 +162,13 @@
"(Unsaved)" : "(Sen gardar)", "(Unsaved)" : "(Sen gardar)",
"(Saving…)" : "(Gardando…)", "(Saving…)" : "(Gardando…)",
"Formatting help" : "Axuda de formatado", "Formatting help" : "Axuda de formatado",
"Add Attachment" : "Engadir o anexo",
"Edit description" : "Editar a descrición",
"View description" : "Ver a descrición",
"Attachments" : "Anexos", "Attachments" : "Anexos",
"Comments" : "Comentarios", "Comments" : "Comentarios",
"Choose attachment" : "Escoller o anexo",
"Modified" : "Modificado", "Modified" : "Modificado",
"Created" : "Creado", "Created" : "Creado",
"Upload attachment" : "Enviar anexos", "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!", "No comments yet. Begin the discussion!" : "Aínda non hai comentarios. Comece o debate!",
"Save" : "Gardar", "Save" : "Gardar",
"The comment cannot be empty." : "O comentario non pode estar baleiro", "The comment cannot be empty." : "O comentario non pode estar baleiro",
@@ -187,32 +178,25 @@
"Update" : "Actualizar", "Update" : "Actualizar",
"(group)" : "(grupo)", "(group)" : "(grupo)",
"(circle)" : "(círculo)", "(circle)" : "(círculo)",
"seconds ago" : "segundos atrás",
"Assign to me" : "Asignarme", "Assign to me" : "Asignarme",
"Unarchive card" : "Desarquivar a tarxeta",
"Archive card" : "Arquivar a tarxeta",
"Delete card" : "Eliminar tarxeta", "Delete card" : "Eliminar tarxeta",
"Move card" : "Mover a tarxeta", "Move card" : "Mover a tarxeta",
"Card details" : "Detalles da tarxeta", "Card details" : "Detalles da tarxeta",
"Move card to another board" : "Mover a tarxeta a outro taboleiro",
"Select a stack" : "Seleccione unha rima", "Select a stack" : "Seleccione unha rima",
"seconds ago" : "segundos atrás",
"All boards" : "Todos os taboleiros", "All boards" : "Todos os taboleiros",
"Archived boards" : "Taboleiros arquivados", "Archived boards" : "Taboleiros arquivados",
"Shared with you" : "Compartido con vostede", "Shared boards" : "Taboleiros compartidos",
"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.",
"Settings" : "Axustes", "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", "New board title" : "Novo título do taboleiro",
"Edit board" : "Editar 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", "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.", "Clone board" : "Clonar taboleiro",
"Delete the board?" : "Eliminar o 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 board" : "Ligar a un taboleiro",
"Link to a card" : "Ligar a unha tarxeta", "Link to a card" : "Ligar a unha tarxeta",
"Something went wrong" : "Algo foi mal", "Something went wrong" : "Algo foi mal",

View File

@@ -1,39 +1,9 @@
OC.L10N.register( OC.L10N.register(
"deck", "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" : "חפיסה", "Deck" : "חפיסה",
"Changes in the <strong>Deck app</strong>" : "שינויים ל<strong>יישומון החבילה</strong>",
"A <strong>comment</strong> was created on a card" : "נוצרה <strong>הערה</strong> על כרטיס",
"Personal" : "אישי", "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” הגיע למועד התפוגה שלו.", "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.", "The board \"%s\" has been shared with you by %s." : "הלוח „%s” שותף אתך על ידי %s.",
"{user} has shared the board %s with you." : "הלוח %s שותף אתך על ידי {user}", "{user} has shared the board %s with you." : "הלוח %s שותף אתך על ידי {user}",
"No data was provided to create an attachment." : "לא סופקו נתונים ליצירת קובץ מצורף", "No data was provided to create an attachment." : "לא סופקו נתונים ליצירת קובץ מצורף",
@@ -42,12 +12,7 @@ OC.L10N.register(
"Action needed" : "נדרשת פעולה", "Action needed" : "נדרשת פעולה",
"Later" : "מאוחר יותר", "Later" : "מאוחר יותר",
"copy" : "עותק", "copy" : "עותק",
"To do" : "לעשות",
"Doing" : "בביצוע",
"Done" : "הסתיים", "Done" : "הסתיים",
"Example Task 3" : "משימה לדוגמה 3",
"Example Task 2" : "משימה לדוגמה 2",
"Example Task 1" : "משימה לדוגמה 1",
"The file was uploaded" : "הקובץ הועלה", "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 upload_max_filesize directive in php.ini" : "הקובץ שהועלה חורג מההנחיה upload_max_filesize ב־php.ini",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "הקובץ שהועלה חורג מההנחיה MAX_FILE_SIZE שצוינה בטופס ה־HTML", "The uploaded file exceeds the 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" : "לא ניתן לכתוב לכונן", "Could not write file to disk" : "לא ניתן לכתוב לכונן",
"A PHP extension stopped the file upload" : "הרחבת PHP עצרה את העלאת הקובץ", "A PHP extension stopped the file upload" : "הרחבת PHP עצרה את העלאת הקובץ",
"No file uploaded or file size exceeds maximum of %s" : "לא הועלה אף קובץ או שגודל הקובץ חרג מהסף המרבי של %s", "No file uploaded or file size exceeds maximum of %s" : "לא הועלה אף קובץ או שגודל הקובץ חרג מהסף המרבי של %s",
"Personal planning and team project organization" : "ארגון אישי וקבוצתי של מיזמים",
"Create new board" : "יצירת לוח חדש", "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" : "ביטול", "Cancel" : "ביטול",
"File already exists" : "הקובץ כבר קיים", "File already exists" : "הקובץ כבר קיים",
"A file with the name {filename} already exists." : "כבר קיים קובץ עם השם {filename}.",
"Do you want to overwrite it?" : "לשכתב עליו?", "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 tag" : "סינון לפי תגית",
"Filter by assigned user" : "סינון לפי משתמש מוקצה", "Today" : "היום",
"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" : "הצגת כרטיסים בארכיון", "Show archived cards" : "הצגת כרטיסים בארכיון",
"Toggle compact mode" : "החלפת מצב חסכוני",
"Details" : "פרטים", "Details" : "פרטים",
"Loading board" : "הלוח נטען",
"Board not found" : "הלוח לא נמצא",
"Sharing" : "שיתוף", "Sharing" : "שיתוף",
"Tags" : "תגיות", "Tags" : "תגיות",
"Deleted items" : "פריטים שנמחקו",
"Timeline" : "ציר זמן",
"Deleted lists" : "רשימות שנמחקו",
"Undo" : "ביטול", "Undo" : "ביטול",
"Deleted cards" : "כרטיסים שנמחקו",
"Share board with a user, group or circle …" : "שיתוף לוח עם משתמש, קבוצה או מעגל…",
"Board owner" : "בעלות על הלוח",
"(Group)" : "(קבוצה)", "(Group)" : "(קבוצה)",
"(Circle)" : "(מעגל)",
"Can edit" : "ניתן לערוך", "Can edit" : "ניתן לערוך",
"Can share" : "Can share", "Can share" : "Can share",
"Can manage" : "הרשאת ניהול",
"Delete" : "מחיקה", "Delete" : "מחיקה",
"Add a new stack" : "הוספת ערימה חדשה", "Add a new stack" : "הוספת ערימה חדשה",
"Delete list" : "מחיקת רשימה",
"Add card" : "הוספת כרטיס", "Add card" : "הוספת כרטיס",
"Add a new card" : "הוספת כרטיס חדש",
"Edit" : "עריכה", "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" : "מועד תפוגה", "Due date" : "מועד תפוגה",
"Set a due date" : "הגדרת תאריך יעד",
"Remove due date" : "הסרת מועד התפוגה", "Remove due date" : "הסרת מועד התפוגה",
"Description" : "תיאוג", "Description" : "תיאוג",
"(Unsaved)" : "(לא נשמר)",
"(Saving…)" : "(מתבצעת שמירה…)",
"Formatting help" : "עזרה בסידור בתבנית", "Formatting help" : "עזרה בסידור בתבנית",
"Add Attachment" : "הוספת קובץ מצורף",
"Edit description" : "עריכת תיאור",
"View description" : "הצגת תיאור",
"Attachments" : "קבצים מצורפים", "Attachments" : "קבצים מצורפים",
"Comments" : "תגובות", "Comments" : "תגובות",
"Choose attachment" : "בחירת קובץ מצורף",
"Modified" : "מועד שינוי", "Modified" : "מועד שינוי",
"Created" : "מועד היצירה", "Created" : "מועד היצירה",
"Upload attachment" : "העלאת קבצים מצורפים", "Upload attachment" : "העלאת קבצים מצורפים",
"No comments yet. Begin the discussion!" : "אין עדיין הערות. אפשר להתחיל לדון!",
"Save" : "שמור", "Save" : "שמור",
"The comment cannot be empty." : "ההערה לא יכולה להיות ריקה.",
"The comment cannot be longer than 1000 characters." : "אורך ההערה לא יכול לחצות את רף 1000 התווים.",
"In reply to" : "בתגובה אל",
"Reply" : "תגובה", "Reply" : "תגובה",
"Update" : "עדכון", "Update" : "עדכון",
"(group)" : "(קבוצה)", "(group)" : "(קבוצה)",
"(circle)" : "(מעגל)",
"seconds ago" : "לפני מספר שניות",
"Assign to me" : "הקצאה אלי",
"Unarchive card" : "הוצאת הכרטיס מהארכיון",
"Archive card" : "העברת כרטיס לארכיון",
"Delete card" : "מחיקת כרטיס לארכיון", "Delete card" : "מחיקת כרטיס לארכיון",
"Move card" : "העברת כרטיס", "seconds ago" : "לפני מספר שניות",
"Card details" : "פרטי הכרטיס",
"Move card to another board" : "העברת כרטיס ללוח אחר",
"Select a stack" : "בחירת ערימה",
"All boards" : "כל הלוחות",
"Archived boards" : "לוחות שנשמרו בארכיון", "Archived boards" : "לוחות שנשמרו בארכיון",
"Shared with you" : "משותף אתך", "Shared boards" : "לוחות משותפים",
"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." : "הגבלת חבילה תחסום משתמשים שאינם חלק מקבוצות אלו מיצירת לוחות משלהם. משתמשים עדיין יוכלו לעבור על לוחות ששותפו אתם.",
"Settings" : "הגדרות", "Settings" : "הגדרות",
"New board title" : "כותרת לוח חדשה", "New board title" : "כותרת לוח חדשה",
"Edit board" : "עריכת לוח", "Edit board" : "עריכת לוח",
"Clone board " : "שכפול לוח",
"Unarchive board " : "הוצאת הלוח מהארכיון",
"Archive board " : "העברת הלוח לארכיון",
"Delete board " : "מחיקת לוח",
"Board details" : "פרטי לוח",
"Board {0} deleted" : "הלוח {0} נמחק",
"An error occurred" : "אירעה שגיאה", "An error occurred" : "אירעה שגיאה",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "למחוק את הלוח {title}? פעולה זו תמחק את כל הנתונים של הלוח הזה.", "Archive board" : "העברת לוח לארכיון",
"Delete the board?" : "למחוק את הלוח הזה?", "Unarchive board" : "הוצאת ארכיון מהלוח",
"Link to a board" : "קישור ללוח", "Delete board" : "מחיקת לו",
"Link to a card" : "קישור לכרטיס", "Board details" : "פרטי לוח",
"Something went wrong" : "משהו השתבש",
"Maximum file size of {size} exceeded" : "גודל הקבצים המרבי {size} הושג" "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;"); "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": { { "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" : "חפיסה", "Deck" : "חפיסה",
"Changes in the <strong>Deck app</strong>" : "שינויים ל<strong>יישומון החבילה</strong>",
"A <strong>comment</strong> was created on a card" : "נוצרה <strong>הערה</strong> על כרטיס",
"Personal" : "אישי", "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” הגיע למועד התפוגה שלו.", "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.", "The board \"%s\" has been shared with you by %s." : "הלוח „%s” שותף אתך על ידי %s.",
"{user} has shared the board %s with you." : "הלוח %s שותף אתך על ידי {user}", "{user} has shared the board %s with you." : "הלוח %s שותף אתך על ידי {user}",
"No data was provided to create an attachment." : "לא סופקו נתונים ליצירת קובץ מצורף", "No data was provided to create an attachment." : "לא סופקו נתונים ליצירת קובץ מצורף",
@@ -40,12 +10,7 @@
"Action needed" : "נדרשת פעולה", "Action needed" : "נדרשת פעולה",
"Later" : "מאוחר יותר", "Later" : "מאוחר יותר",
"copy" : "עותק", "copy" : "עותק",
"To do" : "לעשות",
"Doing" : "בביצוע",
"Done" : "הסתיים", "Done" : "הסתיים",
"Example Task 3" : "משימה לדוגמה 3",
"Example Task 2" : "משימה לדוגמה 2",
"Example Task 1" : "משימה לדוגמה 1",
"The file was uploaded" : "הקובץ הועלה", "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 upload_max_filesize directive in php.ini" : "הקובץ שהועלה חורג מההנחיה upload_max_filesize ב־php.ini",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "הקובץ שהועלה חורג מההנחיה MAX_FILE_SIZE שצוינה בטופס ה־HTML", "The uploaded file exceeds the 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" : "לא ניתן לכתוב לכונן", "Could not write file to disk" : "לא ניתן לכתוב לכונן",
"A PHP extension stopped the file upload" : "הרחבת PHP עצרה את העלאת הקובץ", "A PHP extension stopped the file upload" : "הרחבת PHP עצרה את העלאת הקובץ",
"No file uploaded or file size exceeds maximum of %s" : "לא הועלה אף קובץ או שגודל הקובץ חרג מהסף המרבי של %s", "No file uploaded or file size exceeds maximum of %s" : "לא הועלה אף קובץ או שגודל הקובץ חרג מהסף המרבי של %s",
"Personal planning and team project organization" : "ארגון אישי וקבוצתי של מיזמים",
"Create new board" : "יצירת לוח חדש", "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" : "ביטול", "Cancel" : "ביטול",
"File already exists" : "הקובץ כבר קיים", "File already exists" : "הקובץ כבר קיים",
"A file with the name {filename} already exists." : "כבר קיים קובץ עם השם {filename}.",
"Do you want to overwrite it?" : "לשכתב עליו?", "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 tag" : "סינון לפי תגית",
"Filter by assigned user" : "סינון לפי משתמש מוקצה", "Today" : "היום",
"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" : "הצגת כרטיסים בארכיון", "Show archived cards" : "הצגת כרטיסים בארכיון",
"Toggle compact mode" : "החלפת מצב חסכוני",
"Details" : "פרטים", "Details" : "פרטים",
"Loading board" : "הלוח נטען",
"Board not found" : "הלוח לא נמצא",
"Sharing" : "שיתוף", "Sharing" : "שיתוף",
"Tags" : "תגיות", "Tags" : "תגיות",
"Deleted items" : "פריטים שנמחקו",
"Timeline" : "ציר זמן",
"Deleted lists" : "רשימות שנמחקו",
"Undo" : "ביטול", "Undo" : "ביטול",
"Deleted cards" : "כרטיסים שנמחקו",
"Share board with a user, group or circle …" : "שיתוף לוח עם משתמש, קבוצה או מעגל…",
"Board owner" : "בעלות על הלוח",
"(Group)" : "(קבוצה)", "(Group)" : "(קבוצה)",
"(Circle)" : "(מעגל)",
"Can edit" : "ניתן לערוך", "Can edit" : "ניתן לערוך",
"Can share" : "Can share", "Can share" : "Can share",
"Can manage" : "הרשאת ניהול",
"Delete" : "מחיקה", "Delete" : "מחיקה",
"Add a new stack" : "הוספת ערימה חדשה", "Add a new stack" : "הוספת ערימה חדשה",
"Delete list" : "מחיקת רשימה",
"Add card" : "הוספת כרטיס", "Add card" : "הוספת כרטיס",
"Add a new card" : "הוספת כרטיס חדש",
"Edit" : "עריכה", "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" : "מועד תפוגה", "Due date" : "מועד תפוגה",
"Set a due date" : "הגדרת תאריך יעד",
"Remove due date" : "הסרת מועד התפוגה", "Remove due date" : "הסרת מועד התפוגה",
"Description" : "תיאוג", "Description" : "תיאוג",
"(Unsaved)" : "(לא נשמר)",
"(Saving…)" : "(מתבצעת שמירה…)",
"Formatting help" : "עזרה בסידור בתבנית", "Formatting help" : "עזרה בסידור בתבנית",
"Add Attachment" : "הוספת קובץ מצורף",
"Edit description" : "עריכת תיאור",
"View description" : "הצגת תיאור",
"Attachments" : "קבצים מצורפים", "Attachments" : "קבצים מצורפים",
"Comments" : "תגובות", "Comments" : "תגובות",
"Choose attachment" : "בחירת קובץ מצורף",
"Modified" : "מועד שינוי", "Modified" : "מועד שינוי",
"Created" : "מועד היצירה", "Created" : "מועד היצירה",
"Upload attachment" : "העלאת קבצים מצורפים", "Upload attachment" : "העלאת קבצים מצורפים",
"No comments yet. Begin the discussion!" : "אין עדיין הערות. אפשר להתחיל לדון!",
"Save" : "שמור", "Save" : "שמור",
"The comment cannot be empty." : "ההערה לא יכולה להיות ריקה.",
"The comment cannot be longer than 1000 characters." : "אורך ההערה לא יכול לחצות את רף 1000 התווים.",
"In reply to" : "בתגובה אל",
"Reply" : "תגובה", "Reply" : "תגובה",
"Update" : "עדכון", "Update" : "עדכון",
"(group)" : "(קבוצה)", "(group)" : "(קבוצה)",
"(circle)" : "(מעגל)",
"seconds ago" : "לפני מספר שניות",
"Assign to me" : "הקצאה אלי",
"Unarchive card" : "הוצאת הכרטיס מהארכיון",
"Archive card" : "העברת כרטיס לארכיון",
"Delete card" : "מחיקת כרטיס לארכיון", "Delete card" : "מחיקת כרטיס לארכיון",
"Move card" : "העברת כרטיס", "seconds ago" : "לפני מספר שניות",
"Card details" : "פרטי הכרטיס",
"Move card to another board" : "העברת כרטיס ללוח אחר",
"Select a stack" : "בחירת ערימה",
"All boards" : "כל הלוחות",
"Archived boards" : "לוחות שנשמרו בארכיון", "Archived boards" : "לוחות שנשמרו בארכיון",
"Shared with you" : "משותף אתך", "Shared boards" : "לוחות משותפים",
"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." : "הגבלת חבילה תחסום משתמשים שאינם חלק מקבוצות אלו מיצירת לוחות משלהם. משתמשים עדיין יוכלו לעבור על לוחות ששותפו אתם.",
"Settings" : "הגדרות", "Settings" : "הגדרות",
"New board title" : "כותרת לוח חדשה", "New board title" : "כותרת לוח חדשה",
"Edit board" : "עריכת לוח", "Edit board" : "עריכת לוח",
"Clone board " : "שכפול לוח",
"Unarchive board " : "הוצאת הלוח מהארכיון",
"Archive board " : "העברת הלוח לארכיון",
"Delete board " : "מחיקת לוח",
"Board details" : "פרטי לוח",
"Board {0} deleted" : "הלוח {0} נמחק",
"An error occurred" : "אירעה שגיאה", "An error occurred" : "אירעה שגיאה",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "למחוק את הלוח {title}? פעולה זו תמחק את כל הנתונים של הלוח הזה.", "Archive board" : "העברת לוח לארכיון",
"Delete the board?" : "למחוק את הלוח הזה?", "Unarchive board" : "הוצאת ארכיון מהלוח",
"Link to a board" : "קישור ללוח", "Delete board" : "מחיקת לו",
"Link to a card" : "קישור לכרטיס", "Board details" : "פרטי לוח",
"Something went wrong" : "משהו השתבש",
"Maximum file size of {size} exceeded" : "גודל הקבצים המרבי {size} הושג" "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;" },"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", "Keep existing file" : "Zadrži postojeću datoteku",
"This board is read only" : "Ova je ploča samo za čitanje", "This board is read only" : "Ova je ploča samo za čitanje",
"Drop your files to upload" : "Ispustite datoteke za otpremu", "Drop your files to upload" : "Ispustite datoteke za otpremu",
"Archived cards" : "Arhivirane kartice",
"Add new list" : "Dodaj novi popis", "Add new list" : "Dodaj novi popis",
"List name" : "Naziv popisa", "List name" : "Naziv popisa",
"Apply filter" : "Primijeni filtar", "Apply filter" : "Primijeni filtar",
@@ -122,7 +121,7 @@ OC.L10N.register(
"Filter by assigned user" : "Filtriraj prema dodijeljenom korisniku", "Filter by assigned user" : "Filtriraj prema dodijeljenom korisniku",
"Filter by due date" : "Filtriraj prema datumu dospijeća", "Filter by due date" : "Filtriraj prema datumu dospijeća",
"Overdue" : "Kasni", "Overdue" : "Kasni",
"Next 24 hours" : "Sljedeća 24 sata", "Today" : "Danas",
"Next 7 days" : "Sljedećih 7 dana", "Next 7 days" : "Sljedećih 7 dana",
"Next 30 days" : "Sljedećih 30 dana", "Next 30 days" : "Sljedećih 30 dana",
"No due date" : "Nema datuma dospijeća", "No due date" : "Nema datuma dospijeća",
@@ -135,7 +134,6 @@ OC.L10N.register(
"Tags" : "Oznake", "Tags" : "Oznake",
"Deleted items" : "Izbrisane stavke", "Deleted items" : "Izbrisane stavke",
"Timeline" : "Vremenska crta", "Timeline" : "Vremenska crta",
"Deleted lists" : "Izbrisani popisi",
"Undo" : "Poništi", "Undo" : "Poništi",
"Deleted cards" : "Izbrisane kartice", "Deleted cards" : "Izbrisane kartice",
"Share board with a user, group or circle …" : "Dijelite ploču s korisnikom, grupom ili krugom...", "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 card" : "Dodaj karticu",
"Add a new card" : "Dodaj novu karticu", "Add a new card" : "Dodaj novu karticu",
"Edit" : "Uredi", "Edit" : "Uredi",
"Add a new tag" : "Dodaj novu oznaku",
"title and color value must be provided" : "potrebno je odabrati naziv i vrijednost boje", "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 a tag to this card…" : "Dodijeli oznaku ovoj kartici...",
"Assign to users" : "Dodijeli korisnicima", "Assign to users" : "Dodijeli korisnicima",
"Assign to users/groups/circles" : "Dodijeli korisnicima/grupama/krugovima",
"Assign a user to this card…" : "Dodijeli korisnika ovoj kartici...", "Assign a user to this card…" : "Dodijeli korisnika ovoj kartici...",
"Due date" : "Datum dospijeća", "Due date" : "Datum dospijeća",
"Set a due date" : "Postavi datum dospijeća", "Set a due date" : "Postavi datum dospijeća",
"Remove due date" : "Ukloni datum dospijeća", "Remove due date" : "Ukloni datum dospijeća",
"Description" : "Opis", "Description" : "Opis",
"(Unsaved)" : "(Nije spremljeno)",
"(Saving…)" : "(Spremanje…)",
"Formatting help" : "Pomoć pri oblikovanju", "Formatting help" : "Pomoć pri oblikovanju",
"Add Attachment" : "Dodaj privitak",
"Edit description" : "Uredi opis",
"View description" : "Prikaži opis",
"Attachments" : "Privici", "Attachments" : "Privici",
"Comments" : "Komentari", "Comments" : "Komentari",
"Choose attachment" : "Odaberi privitak",
"Modified" : "Promijenjeno", "Modified" : "Promijenjeno",
"Created" : "Stvoreno", "Created" : "Stvoreno",
"Upload attachment" : "Otpremi privitak", "Upload attachment" : "Otpremi privitak",
"Delete Attachment" : "Izbriši privitak",
"Restore Attachment" : "Vrati privitak",
"No comments yet. Begin the discussion!" : "Nema komentara. Započnite raspravu!", "No comments yet. Begin the discussion!" : "Nema komentara. Započnite raspravu!",
"Save" : "Spremi", "Save" : "Spremi",
"The comment cannot be empty." : "Komentar ne može biti prazan.", "The comment cannot be empty." : "Komentar ne može biti prazan.",
@@ -186,27 +173,25 @@ OC.L10N.register(
"Reply" : "Odgovori", "Reply" : "Odgovori",
"Update" : "Ažuriraj", "Update" : "Ažuriraj",
"(group)" : "(grupa)", "(group)" : "(grupa)",
"(circle)" : "(krug)",
"seconds ago" : "prije nekoliko sekundi",
"Assign to me" : "Dodijeli meni", "Assign to me" : "Dodijeli meni",
"Unarchive card" : "Dearhiviraj karticu",
"Archive card" : "Arhiviraj karticu",
"Delete card" : "Izbriši karticu", "Delete card" : "Izbriši karticu",
"Move card" : "Premjesti karticu", "Move card" : "Premjesti karticu",
"Card details" : "Pojedinosti o kartici", "Card details" : "Pojedinosti o kartici",
"Select a stack" : "Odaberi stog", "Select a stack" : "Odaberi stog",
"seconds ago" : "prije nekoliko sekundi",
"All boards" : "Sve ploče", "All boards" : "Sve ploče",
"Archived boards" : "Arhivirane ploče", "Archived boards" : "Arhivirane ploče",
"Shared with you" : "Podijeljeno s vama", "Shared boards" : "Dijeljene ploče",
"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.",
"Settings" : "Postavke", "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", "New board title" : "Novi naslov ploče",
"Edit board" : "Uredi ploču", "Edit board" : "Uredi ploču",
"Board details" : "Pojedinosti o ploči",
"An error occurred" : "Došlo je do pogreške", "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.", "Clone board" : "Kloniraj ploču",
"Delete the board?" : "Želite li izbrisati 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 board" : "Poveznica na ploču",
"Link to a card" : "Poveznica na karticu", "Link to a card" : "Poveznica na karticu",
"Something went wrong" : "Nešto je pošlo po krivu", "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