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
344 changed files with 5989 additions and 8010 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,34 +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.1 - 2020-05-15 ## 1.0.0 - unreleased
### Fixed ## Added
* 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
@@ -50,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
@@ -68,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.1</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

@@ -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 |

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",
@@ -30,7 +30,6 @@ OC.L10N.register(
"Update" : "Werk by", "Update" : "Werk by",
"seconds ago" : "sekondes gelede", "seconds ago" : "sekondes gelede",
"Settings" : "Instellings", "Settings" : "Instellings",
"Share" : "Deel",
"An error occurred" : "'n Fout het voorgekom" "An error occurred" : "'n Fout het voorgekom"
}, },
"nplurals=2; plural=(n != 1);"); "nplurals=2; plural=(n != 1);");

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",
@@ -28,7 +28,6 @@
"Update" : "Werk by", "Update" : "Werk by",
"seconds ago" : "sekondes gelede", "seconds ago" : "sekondes gelede",
"Settings" : "Instellings", "Settings" : "Instellings",
"Share" : "Deel",
"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

@@ -10,6 +10,7 @@ OC.L10N.register(
"Missing a temporary folder" : "المجلد المؤقت غير موجود", "Missing a temporary folder" : "المجلد المؤقت غير موجود",
"Cancel" : "إلغاء", "Cancel" : "إلغاء",
"File already exists" : "الملف موجود مسبقاً", "File already exists" : "الملف موجود مسبقاً",
"Today" : "اليوم",
"Details" : "التفاصيل", "Details" : "التفاصيل",
"Sharing" : "المشاركة", "Sharing" : "المشاركة",
"Tags" : "الوسوم", "Tags" : "الوسوم",
@@ -27,11 +28,9 @@ OC.L10N.register(
"Save" : "حفظ", "Save" : "حفظ",
"Reply" : "رد", "Reply" : "رد",
"Update" : "تحديث", "Update" : "تحديث",
"seconds ago" : "ثوان مضت",
"Delete card" : "حذف البطاقة", "Delete card" : "حذف البطاقة",
"seconds ago" : "ثوان مضت",
"Settings" : "الإعدادات", "Settings" : "الإعدادات",
"Share" : "شارك",
"Options" : "الخيارات",
"An error occurred" : "طرأ هناك خطأ" "An error occurred" : "طرأ هناك خطأ"
}, },
"nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;"); "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

@@ -8,6 +8,7 @@
"Missing a temporary folder" : "المجلد المؤقت غير موجود", "Missing a temporary folder" : "المجلد المؤقت غير موجود",
"Cancel" : "إلغاء", "Cancel" : "إلغاء",
"File already exists" : "الملف موجود مسبقاً", "File already exists" : "الملف موجود مسبقاً",
"Today" : "اليوم",
"Details" : "التفاصيل", "Details" : "التفاصيل",
"Sharing" : "المشاركة", "Sharing" : "المشاركة",
"Tags" : "الوسوم", "Tags" : "الوسوم",
@@ -25,11 +26,9 @@
"Save" : "حفظ", "Save" : "حفظ",
"Reply" : "رد", "Reply" : "رد",
"Update" : "تحديث", "Update" : "تحديث",
"seconds ago" : "ثوان مضت",
"Delete card" : "حذف البطاقة", "Delete card" : "حذف البطاقة",
"seconds ago" : "ثوان مضت",
"Settings" : "الإعدادات", "Settings" : "الإعدادات",
"Share" : "شارك",
"Options" : "الخيارات",
"An error occurred" : "طرأ هناك خطأ" "An error occurred" : "طرأ هناك خطأ"
},"pluralForm" :"nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;" },"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",
"Settings" : "Settings", "Settings" : "Settings"
"Share" : "Share"
}, },
"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",
"Settings" : "Settings", "Settings" : "Settings"
"Share" : "Share"
},"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",
@@ -21,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ə",
"Settings" : "Quraşdırmalar", "Settings" : "Quraşdırmalar"
"Share" : "Paylaş"
}, },
"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",
@@ -19,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ə",
"Settings" : "Quraşdırmalar", "Settings" : "Quraşdırmalar"
"Share" : "Paylaş"
},"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" : "Етикети",
@@ -39,7 +40,6 @@ OC.L10N.register(
"(group)" : "(група)", "(group)" : "(група)",
"seconds ago" : "преди секунди", "seconds ago" : "преди секунди",
"Settings" : "Настройки", "Settings" : "Настройки",
"Share" : "Сподели",
"An error occurred" : "Възникна грешка" "An error occurred" : "Възникна грешка"
}, },
"nplurals=2; plural=(n != 1);"); "nplurals=2; plural=(n != 1);");

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" : "Етикети",
@@ -37,7 +38,6 @@
"(group)" : "(група)", "(group)" : "(група)",
"seconds ago" : "преди секунди", "seconds ago" : "преди секунди",
"Settings" : "Настройки", "Settings" : "Настройки",
"Share" : "Сподели",
"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" : "ট্যাগ",
@@ -21,7 +22,6 @@ OC.L10N.register(
"Update" : "পরিবর্ধন", "Update" : "পরিবর্ধন",
"(group)" : "(গোষ্ঠি)", "(group)" : "(গোষ্ঠি)",
"seconds ago" : "সেকেন্ড পূর্বে", "seconds ago" : "সেকেন্ড পূর্বে",
"Settings" : "সেটিংস", "Settings" : "সেটিংস"
"Share" : "ভাগাভাগি কর"
}, },
"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" : "ট্যাগ",
@@ -19,7 +20,6 @@
"Update" : "পরিবর্ধন", "Update" : "পরিবর্ধন",
"(group)" : "(গোষ্ঠি)", "(group)" : "(গোষ্ঠি)",
"seconds ago" : "সেকেন্ড পূর্বে", "seconds ago" : "সেকেন্ড পূর্বে",
"Settings" : "সেটিংস", "Settings" : "সেটিংস"
"Share" : "ভাগাভাগি কর"
},"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" : "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",
@@ -18,7 +19,6 @@ OC.L10N.register(
"Save" : "Spremi", "Save" : "Spremi",
"Update" : "Ažuriraj", "Update" : "Ažuriraj",
"Settings" : "Podešavanje", "Settings" : "Podešavanje",
"Share" : "Podjeli",
"Maximum file size of {size} exceeded" : "Maksimalna veličina datoteke prekoračena" "Maximum file size of {size} exceeded" : "Maksimalna veličina datoteke prekoračena"
}, },
"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"); "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

@@ -5,6 +5,7 @@
"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",
@@ -16,7 +17,6 @@
"Save" : "Spremi", "Save" : "Spremi",
"Update" : "Ažuriraj", "Update" : "Ažuriraj",
"Settings" : "Podešavanje", "Settings" : "Podešavanje",
"Share" : "Podjeli",
"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,124 +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",
"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 boards" : "Taulers compartits", "Shared boards" : "Taulers compartits",
"Settings" : "Paràmetres", "Settings" : "Paràmetres",
"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.", "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",
"Share" : "Compartir",
"Options" : "Opcions",
"Edit board" : "Edita el tauler", "Edit board" : "Edita el tauler",
"An error occurred" : "S'ha produït un error", "An error occurred" : "S'ha produït un error",
"Clone board" : "Clonar tauler",
"Archive board" : "Arxiva tauler", "Archive board" : "Arxiva tauler",
"Unarchive board" : "Desarxiva tauler", "Unarchive board" : "Desarxiva tauler",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Esteu segur que voleu suprimir el tauler {title}? Això eliminarà totes les dades d'aquest tauler.",
"Delete the board?" : "Suprimir el tauler?",
"Delete board" : "Suprimeix tauler", "Delete board" : "Suprimeix tauler",
"Board details" : "Detalls de la junta", "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,124 +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",
"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 boards" : "Taulers compartits", "Shared boards" : "Taulers compartits",
"Settings" : "Paràmetres", "Settings" : "Paràmetres",
"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.", "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",
"Share" : "Compartir",
"Options" : "Opcions",
"Edit board" : "Edita el tauler", "Edit board" : "Edita el tauler",
"An error occurred" : "S'ha produït un error", "An error occurred" : "S'ha produït un error",
"Clone board" : "Clonar tauler",
"Archive board" : "Arxiva tauler", "Archive board" : "Arxiva tauler",
"Unarchive board" : "Desarxiva tauler", "Unarchive board" : "Desarxiva tauler",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Esteu segur que voleu suprimir el tauler {title}? Això eliminarà totes les dades d'aquest tauler.",
"Delete the board?" : "Suprimir el tauler?",
"Delete board" : "Suprimeix tauler", "Delete board" : "Suprimeix tauler",
"Board details" : "Detalls de la junta", "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

@@ -122,7 +122,7 @@ 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",
@@ -153,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" : "Nadpisu",
"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 +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",
@@ -187,29 +180,23 @@ 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ě",
"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 boards" : "Sdílené tabule", "Shared boards" : "Sdílené tabule",
"Settings" : "Nastavení", "Settings" : "Nastavení",
"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.", "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",
"Share" : "Sdílet",
"Options" : "Volby",
"Edit board" : "Upravit tabuli", "Edit board" : "Upravit tabuli",
"An error occurred" : "Došlo k chybě", "An error occurred" : "Došlo k chybě",
"Clone board" : "Klonovat tabuli", "Clone board" : "Klonovat tabuli",
"Archive board" : "Archivovat tabuli", "Archive board" : "Archivovat tabuli",
"Unarchive board" : "Vrátit tabuli zpět z archivu", "Unarchive board" : "Vrátit tabuli zpět z archivu",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Opravdu chcete tabuly {title} smazat? Toto smaže veškerá data této tabule.",
"Delete the board?" : "Smazat tabuli?",
"Delete board" : "Smazat tabuli", "Delete board" : "Smazat tabuli",
"Board details" : "Podrobnosti o desce", "Board details" : "Podrobnosti o desce",
"Link to a board" : "Propojit s tabulí", "Link to a board" : "Propojit s tabulí",

View File

@@ -120,7 +120,7 @@
"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",
@@ -151,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" : "Nadpisu",
"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",
@@ -167,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",
@@ -185,29 +178,23 @@
"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ě",
"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 boards" : "Sdílené tabule", "Shared boards" : "Sdílené tabule",
"Settings" : "Nastavení", "Settings" : "Nastavení",
"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.", "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",
"Share" : "Sdílet",
"Options" : "Volby",
"Edit board" : "Upravit tabuli", "Edit board" : "Upravit tabuli",
"An error occurred" : "Došlo k chybě", "An error occurred" : "Došlo k chybě",
"Clone board" : "Klonovat tabuli", "Clone board" : "Klonovat tabuli",
"Archive board" : "Archivovat tabuli", "Archive board" : "Archivovat tabuli",
"Unarchive board" : "Vrátit tabuli zpět z archivu", "Unarchive board" : "Vrátit tabuli zpět z archivu",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Opravdu chcete tabuly {title} smazat? Toto smaže veškerá data této tabule.",
"Delete the board?" : "Smazat tabuli?",
"Delete board" : "Smazat tabuli", "Delete board" : "Smazat tabuli",
"Board details" : "Podrobnosti o desce", "Board details" : "Podrobnosti o desce",
"Link to a board" : "Propojit s tabulí", "Link to a board" : "Propojit s tabulí",

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",
@@ -21,7 +22,6 @@ OC.L10N.register(
"Update" : "Diweddaru", "Update" : "Diweddaru",
"seconds ago" : "eiliad yn ôl", "seconds ago" : "eiliad yn ôl",
"Settings" : "Gosodiadau", "Settings" : "Gosodiadau",
"Share" : "Rhannu",
"An error occurred" : "Digwyddodd gwall" "An error occurred" : "Digwyddodd gwall"
}, },
"nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;"); "nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;");

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",
@@ -19,7 +20,6 @@
"Update" : "Diweddaru", "Update" : "Diweddaru",
"seconds ago" : "eiliad yn ôl", "seconds ago" : "eiliad yn ôl",
"Settings" : "Gosodiadau", "Settings" : "Gosodiadau",
"Share" : "Rhannu",
"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,14 +46,12 @@ OC.L10N.register(
"Reply" : "Besvar", "Reply" : "Besvar",
"Update" : "Opdatér", "Update" : "Opdatér",
"(group)" : "(gruppe)", "(group)" : "(gruppe)",
"seconds ago" : "sekunder siden",
"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 boards" : "Delte lister", "Shared boards" : "Delte lister",
"Settings" : "Indstillinger", "Settings" : "Indstillinger",
"New board title" : "Ny titel på liste", "New board title" : "Ny titel på liste",
"Share" : "Del",
"Edit board" : "Rediger liste", "Edit board" : "Rediger liste",
"An error occurred" : "Der var en fejl", "An error occurred" : "Der var en fejl",
"Archive board" : "Arkivér liste", "Archive board" : "Arkivér liste",

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,14 +44,12 @@
"Reply" : "Besvar", "Reply" : "Besvar",
"Update" : "Opdatér", "Update" : "Opdatér",
"(group)" : "(gruppe)", "(group)" : "(gruppe)",
"seconds ago" : "sekunder siden",
"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 boards" : "Delte lister", "Shared boards" : "Delte lister",
"Settings" : "Indstillinger", "Settings" : "Indstillinger",
"New board title" : "Ny titel på liste", "New board title" : "Ny titel på liste",
"Share" : "Del",
"Edit board" : "Rediger liste", "Edit board" : "Rediger liste",
"An error occurred" : "Der var en fejl", "An error occurred" : "Der var en fejl",
"Archive board" : "Arkivér liste", "Archive board" : "Arkivér liste",

View File

@@ -122,7 +122,7 @@ 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",
@@ -135,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 …",
@@ -153,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",
@@ -169,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.",
@@ -187,29 +180,23 @@ 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",
"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 boards" : "Geteilte Boards", "Shared boards" : "Geteilte Boards",
"Settings" : "Einstellungen", "Settings" : "Einstellungen",
"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.", "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",
"Share" : "Benötigt keine Übersetzung. Für Android wird nur die formelle Übersetzung verwendet (de_DE). ",
"Options" : "Optionen",
"Edit board" : "Board bearbeiten", "Edit board" : "Board bearbeiten",
"An error occurred" : "Es ist ein Fehler aufgetreten", "An error occurred" : "Es ist ein Fehler aufgetreten",
"Clone board" : "Board klonen", "Clone board" : "Board klonen",
"Archive board" : "Board archivieren", "Archive board" : "Board archivieren",
"Unarchive board" : "Board dearchivieren", "Unarchive board" : "Board dearchivieren",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Möchtest Du wirklich dieses Board {title} mit all seinen Daten löschen?",
"Delete the board?" : "Das Board löschen?",
"Delete board" : "Board löschen", "Delete board" : "Board löschen",
"Board details" : "Board-Details", "Board details" : "Board-Details",
"Link to a board" : "Mit einem Board verknüpfen", "Link to a board" : "Mit einem Board verknüpfen",

View File

@@ -120,7 +120,7 @@
"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",
@@ -133,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 …",
@@ -151,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",
@@ -167,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.",
@@ -185,29 +178,23 @@
"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",
"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 boards" : "Geteilte Boards", "Shared boards" : "Geteilte Boards",
"Settings" : "Einstellungen", "Settings" : "Einstellungen",
"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.", "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",
"Share" : "Benötigt keine Übersetzung. Für Android wird nur die formelle Übersetzung verwendet (de_DE). ",
"Options" : "Optionen",
"Edit board" : "Board bearbeiten", "Edit board" : "Board bearbeiten",
"An error occurred" : "Es ist ein Fehler aufgetreten", "An error occurred" : "Es ist ein Fehler aufgetreten",
"Clone board" : "Board klonen", "Clone board" : "Board klonen",
"Archive board" : "Board archivieren", "Archive board" : "Board archivieren",
"Unarchive board" : "Board dearchivieren", "Unarchive board" : "Board dearchivieren",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Möchtest Du wirklich dieses Board {title} mit all seinen Daten löschen?",
"Delete the board?" : "Das Board löschen?",
"Delete board" : "Board löschen", "Delete board" : "Board löschen",
"Board details" : "Board-Details", "Board details" : "Board-Details",
"Link to a board" : "Mit einem Board verknüpfen", "Link to a board" : "Mit einem Board verknüpfen",

View File

@@ -122,7 +122,7 @@ 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",
@@ -135,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 …",
@@ -153,9 +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",
"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",
@@ -167,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.",
@@ -185,29 +180,23 @@ 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",
"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 boards" : "Geteilte Boards", "Shared boards" : "Geteilte Boards",
"Settings" : "Einstellungen", "Settings" : "Einstellungen",
"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.", "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",
"Share" : "Teilen",
"Options" : "Optionen",
"Edit board" : "Board bearbeiten", "Edit board" : "Board bearbeiten",
"An error occurred" : "Es ist ein Fehler aufgetreten", "An error occurred" : "Es ist ein Fehler aufgetreten",
"Clone board" : "Board klonen", "Clone board" : "Board klonen",
"Archive board" : "Board archivieren", "Archive board" : "Board archivieren",
"Unarchive board" : "Board dearchivieren", "Unarchive board" : "Board dearchivieren",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Möchten Sie wirklich dieses Board {title} mit all dessen Daten löschen?",
"Delete the board?" : "Das Board löschen?",
"Delete board" : "Board löschen", "Delete board" : "Board löschen",
"Board details" : "Board-Details", "Board details" : "Board-Details",
"Link to a board" : "Mit einem Board verknüpfen", "Link to a board" : "Mit einem Board verknüpfen",

View File

@@ -120,7 +120,7 @@
"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",
@@ -133,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 …",
@@ -151,9 +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",
"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",
@@ -165,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.",
@@ -183,29 +178,23 @@
"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",
"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 boards" : "Geteilte Boards", "Shared boards" : "Geteilte Boards",
"Settings" : "Einstellungen", "Settings" : "Einstellungen",
"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.", "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",
"Share" : "Teilen",
"Options" : "Optionen",
"Edit board" : "Board bearbeiten", "Edit board" : "Board bearbeiten",
"An error occurred" : "Es ist ein Fehler aufgetreten", "An error occurred" : "Es ist ein Fehler aufgetreten",
"Clone board" : "Board klonen", "Clone board" : "Board klonen",
"Archive board" : "Board archivieren", "Archive board" : "Board archivieren",
"Unarchive board" : "Board dearchivieren", "Unarchive board" : "Board dearchivieren",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Möchten Sie wirklich dieses Board {title} mit all dessen Daten löschen?",
"Delete the board?" : "Das Board löschen?",
"Delete board" : "Board löschen", "Delete board" : "Board löschen",
"Board details" : "Board-Details", "Board details" : "Board-Details",
"Link to a board" : "Mit einem Board verknüpfen", "Link to a board" : "Mit einem Board verknüpfen",

View File

@@ -122,7 +122,7 @@ 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" : "Χωρίς ημερομηνία λήξης",
@@ -153,9 +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" : "ο τίτλος και η τιμή χρώματος πρέπει να παρέχονται",
"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" : "Ανάθεση σε χρήστες/ομάδες/κύκλους",
@@ -167,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." : "Το σχόλιο δεν μπορεί να είναι κενό.",
@@ -185,28 +180,23 @@ OC.L10N.register(
"Update" : "Ενημέρωση", "Update" : "Ενημέρωση",
"(group)" : "(ομάδα)", "(group)" : "(ομάδα)",
"(circle)" : "(κύκλος)", "(circle)" : "(κύκλος)",
"seconds ago" : " δευτερόλεπτα πριν ",
"Assign to me" : "Ανάθεση σε εμένα", "Assign to me" : "Ανάθεση σε εμένα",
"Delete card" : "Διαγραφή κάρτας", "Delete card" : "Διαγραφή κάρτας",
"Move card" : "Μετακίνηση κάρτας", "Move card" : "Μετακίνηση κάρτας",
"Card details" : "Λεπτομέρειες καρτέλας", "Card details" : "Λεπτομέρειες καρτέλας",
"Select a stack" : "Επιλέξτε στοίβα", "Select a stack" : "Επιλέξτε στοίβα",
"seconds ago" : " δευτερόλεπτα πριν ",
"All boards" : "Όλοι οι πίνακες", "All boards" : "Όλοι οι πίνακες",
"Archived boards" : "Αρχειοθέτηση πινάκων ", "Archived boards" : "Αρχειοθέτηση πινάκων ",
"Shared boards" : "Διαμοιρασμένοι πίνακες", "Shared boards" : "Διαμοιρασμένοι πίνακες",
"Settings" : "Ρυθμίσεις", "Settings" : "Ρυθμίσεις",
"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 θα εμποδίσει τους χρήστες που δεν είναι μέρος αυτών των ομάδων να δημιουργούν δικούς τους πίνακες. Οι χρήστες θα εξακολουθήσουν να εργάζονται σε πίνακες που έχουν διαμοιραστεί μαζί τους.", "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" : "Νέος τίτλος πίνακα",
"Share" : "Κοινή χρήση",
"Options" : "Επιλογές",
"Edit board" : "Επεξεργασία πίνακα", "Edit board" : "Επεξεργασία πίνακα",
"An error occurred" : "Παρουσιάστηκε σφάλμα", "An error occurred" : "Παρουσιάστηκε σφάλμα",
"Clone board" : "Κλωνοποίηση πίνακα", "Clone board" : "Κλωνοποίηση πίνακα",
"Archive board" : "Αρχειοθέτηση πίνακα", "Archive board" : "Αρχειοθέτηση πίνακα",
"Unarchive board" : "Αναίρεση αρχειοθέτησης πίνακα", "Unarchive board" : "Αναίρεση αρχειοθέτησης πίνακα",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Είστε βέβαιοι ότι θέλετε να διαγράψετε τον πίνακα {title}; Θα διαγραφούν όλα τα δεδομένα.",
"Delete the board?" : "Διαγραφή πίνακα;",
"Delete board" : "Διαγραφή πίνακα", "Delete board" : "Διαγραφή πίνακα",
"Board details" : "Λεπτομέριες πίνακα", "Board details" : "Λεπτομέριες πίνακα",
"Link to a board" : "Σύνδεσμος στον πίνακα", "Link to a board" : "Σύνδεσμος στον πίνακα",

View File

@@ -120,7 +120,7 @@
"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" : "Χωρίς ημερομηνία λήξης",
@@ -151,9 +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" : "ο τίτλος και η τιμή χρώματος πρέπει να παρέχονται",
"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" : "Ανάθεση σε χρήστες/ομάδες/κύκλους",
@@ -165,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." : "Το σχόλιο δεν μπορεί να είναι κενό.",
@@ -183,28 +178,23 @@
"Update" : "Ενημέρωση", "Update" : "Ενημέρωση",
"(group)" : "(ομάδα)", "(group)" : "(ομάδα)",
"(circle)" : "(κύκλος)", "(circle)" : "(κύκλος)",
"seconds ago" : " δευτερόλεπτα πριν ",
"Assign to me" : "Ανάθεση σε εμένα", "Assign to me" : "Ανάθεση σε εμένα",
"Delete card" : "Διαγραφή κάρτας", "Delete card" : "Διαγραφή κάρτας",
"Move card" : "Μετακίνηση κάρτας", "Move card" : "Μετακίνηση κάρτας",
"Card details" : "Λεπτομέρειες καρτέλας", "Card details" : "Λεπτομέρειες καρτέλας",
"Select a stack" : "Επιλέξτε στοίβα", "Select a stack" : "Επιλέξτε στοίβα",
"seconds ago" : " δευτερόλεπτα πριν ",
"All boards" : "Όλοι οι πίνακες", "All boards" : "Όλοι οι πίνακες",
"Archived boards" : "Αρχειοθέτηση πινάκων ", "Archived boards" : "Αρχειοθέτηση πινάκων ",
"Shared boards" : "Διαμοιρασμένοι πίνακες", "Shared boards" : "Διαμοιρασμένοι πίνακες",
"Settings" : "Ρυθμίσεις", "Settings" : "Ρυθμίσεις",
"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 θα εμποδίσει τους χρήστες που δεν είναι μέρος αυτών των ομάδων να δημιουργούν δικούς τους πίνακες. Οι χρήστες θα εξακολουθήσουν να εργάζονται σε πίνακες που έχουν διαμοιραστεί μαζί τους.", "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" : "Νέος τίτλος πίνακα",
"Share" : "Κοινή χρήση",
"Options" : "Επιλογές",
"Edit board" : "Επεξεργασία πίνακα", "Edit board" : "Επεξεργασία πίνακα",
"An error occurred" : "Παρουσιάστηκε σφάλμα", "An error occurred" : "Παρουσιάστηκε σφάλμα",
"Clone board" : "Κλωνοποίηση πίνακα", "Clone board" : "Κλωνοποίηση πίνακα",
"Archive board" : "Αρχειοθέτηση πίνακα", "Archive board" : "Αρχειοθέτηση πίνακα",
"Unarchive board" : "Αναίρεση αρχειοθέτησης πίνακα", "Unarchive board" : "Αναίρεση αρχειοθέτησης πίνακα",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Είστε βέβαιοι ότι θέλετε να διαγράψετε τον πίνακα {title}; Θα διαγραφούν όλα τα δεδομένα.",
"Delete the board?" : "Διαγραφή πίνακα;",
"Delete board" : "Διαγραφή πίνακα", "Delete board" : "Διαγραφή πίνακα",
"Board details" : "Λεπτομέριες πίνακα", "Board details" : "Λεπτομέριες πίνακα",
"Link to a board" : "Σύνδεσμος στον πίνακα", "Link to a board" : "Σύνδεσμος στον πίνακα",

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",
@@ -48,13 +49,12 @@ OC.L10N.register(
"Reply" : "Reply", "Reply" : "Reply",
"Update" : "Update", "Update" : "Update",
"(group)" : "(group)", "(group)" : "(group)",
"seconds ago" : "seconds ago",
"Delete card" : "Delete card", "Delete card" : "Delete card",
"seconds ago" : "seconds ago",
"Archived boards" : "Archived boards", "Archived boards" : "Archived boards",
"Shared boards" : "Shared boards", "Shared boards" : "Shared boards",
"Settings" : "Settings", "Settings" : "Settings",
"New board title" : "New board title", "New board title" : "New board title",
"Share" : "Share",
"Edit board" : "Edit board", "Edit board" : "Edit board",
"Archive board" : "Archive board", "Archive board" : "Archive board",
"Unarchive board" : "Unarchive board", "Unarchive board" : "Unarchive board",

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",
@@ -46,13 +47,12 @@
"Reply" : "Reply", "Reply" : "Reply",
"Update" : "Update", "Update" : "Update",
"(group)" : "(group)", "(group)" : "(group)",
"seconds ago" : "seconds ago",
"Delete card" : "Delete card", "Delete card" : "Delete card",
"seconds ago" : "seconds ago",
"Archived boards" : "Archived boards", "Archived boards" : "Archived boards",
"Shared boards" : "Shared boards", "Shared boards" : "Shared boards",
"Settings" : "Settings", "Settings" : "Settings",
"New board title" : "New board title", "New board title" : "New board title",
"Share" : "Share",
"Edit board" : "Edit board", "Edit board" : "Edit board",
"Archive board" : "Archive board", "Archive board" : "Archive board",
"Unarchive board" : "Unarchive board", "Unarchive board" : "Unarchive board",

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",
@@ -132,14 +132,13 @@ OC.L10N.register(
"Reply" : "Respondi", "Reply" : "Respondi",
"Update" : "Ĝisdatigi", "Update" : "Ĝisdatigi",
"(group)" : "(grupo)", "(group)" : "(grupo)",
"seconds ago" : "antaŭ kelkaj sekundoj",
"Delete card" : "Forigi karton", "Delete card" : "Forigi karton",
"seconds ago" : "antaŭ kelkaj sekundoj",
"Archived boards" : "Arĥivigitaj tabuloj", "Archived boards" : "Arĥivigitaj tabuloj",
"Shared boards" : "Kunhavigitaj tabuloj", "Shared boards" : "Kunhavigitaj tabuloj",
"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.", "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",
"Share" : "Kunhavigi",
"Edit board" : "Modifi tabulon", "Edit board" : "Modifi tabulon",
"An error occurred" : "Eraro okazis", "An error occurred" : "Eraro okazis",
"Archive board" : "Enarĥivigi tabulon", "Archive board" : "Enarĥivigi tabulon",

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",
@@ -130,14 +130,13 @@
"Reply" : "Respondi", "Reply" : "Respondi",
"Update" : "Ĝisdatigi", "Update" : "Ĝisdatigi",
"(group)" : "(grupo)", "(group)" : "(grupo)",
"seconds ago" : "antaŭ kelkaj sekundoj",
"Delete card" : "Forigi karton", "Delete card" : "Forigi karton",
"seconds ago" : "antaŭ kelkaj sekundoj",
"Archived boards" : "Arĥivigitaj tabuloj", "Archived boards" : "Arĥivigitaj tabuloj",
"Shared boards" : "Kunhavigitaj tabuloj", "Shared boards" : "Kunhavigitaj tabuloj",
"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.", "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",
"Share" : "Kunhavigi",
"Edit board" : "Modifi tabulon", "Edit board" : "Modifi tabulon",
"An error occurred" : "Eraro okazis", "An error occurred" : "Eraro okazis",
"Archive board" : "Enarĥivigi tabulon", "Archive board" : "Enarĥivigi tabulon",

View File

@@ -122,7 +122,7 @@ 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",
@@ -153,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",
@@ -169,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.",
@@ -187,29 +180,23 @@ 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í",
"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 boards" : "Tableros compartidos", "Shared boards" : "Tableros compartidos",
"Settings" : "Ajustes", "Settings" : "Ajustes",
"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.", "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",
"Share" : "Compartir",
"Options" : "Opciones",
"Edit board" : "Editar tablero", "Edit board" : "Editar tablero",
"An error occurred" : "Ocurrió un error", "An error occurred" : "Ocurrió un error",
"Clone board" : "Clonar tablero", "Clone board" : "Clonar tablero",
"Archive board" : "Archivar tablero", "Archive board" : "Archivar tablero",
"Unarchive board" : "Desarchivar tablero", "Unarchive board" : "Desarchivar tablero",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "¿Estas seguro de que quieres eliminar el tablero {title}? Esto eliminará todos los datos del tablero.",
"Delete the board?" : "¿Borrar el tablero?",
"Delete board" : "Eliminar tablero", "Delete board" : "Eliminar tablero",
"Board details" : "Detalles del tablero", "Board details" : "Detalles del tablero",
"Link to a board" : "Enlace a un tablero", "Link to a board" : "Enlace a un tablero",

View File

@@ -120,7 +120,7 @@
"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",
@@ -151,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",
@@ -167,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.",
@@ -185,29 +178,23 @@
"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í",
"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 boards" : "Tableros compartidos", "Shared boards" : "Tableros compartidos",
"Settings" : "Ajustes", "Settings" : "Ajustes",
"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.", "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",
"Share" : "Compartir",
"Options" : "Opciones",
"Edit board" : "Editar tablero", "Edit board" : "Editar tablero",
"An error occurred" : "Ocurrió un error", "An error occurred" : "Ocurrió un error",
"Clone board" : "Clonar tablero", "Clone board" : "Clonar tablero",
"Archive board" : "Archivar tablero", "Archive board" : "Archivar tablero",
"Unarchive board" : "Desarchivar tablero", "Unarchive board" : "Desarchivar tablero",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "¿Estas seguro de que quieres eliminar el tablero {title}? Esto eliminará todos los datos del tablero.",
"Delete the board?" : "¿Borrar el tablero?",
"Delete board" : "Eliminar tablero", "Delete board" : "Eliminar tablero",
"Board details" : "Detalles del tablero", "Board details" : "Detalles del tablero",
"Link to a board" : "Enlace a un tablero", "Link to a board" : "Enlace a un tablero",

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",
@@ -48,7 +49,6 @@ OC.L10N.register(
"Shared boards" : "Tableros compartidos", "Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ", "Settings" : "Configuraciones ",
"New board title" : "Nuevo título del tablero", "New board title" : "Nuevo título del tablero",
"Share" : "Compartir",
"Edit board" : "Editar el tablero", "Edit board" : "Editar el tablero",
"Archive board" : "Archivar tablero", "Archive board" : "Archivar tablero",
"Unarchive board" : "Desarchivar tablero", "Unarchive board" : "Desarchivar tablero",

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",
@@ -46,7 +47,6 @@
"Shared boards" : "Tableros compartidos", "Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ", "Settings" : "Configuraciones ",
"New board title" : "Nuevo título del tablero", "New board title" : "Nuevo título del tablero",
"Share" : "Compartir",
"Edit board" : "Editar el tablero", "Edit board" : "Editar el tablero",
"Archive board" : "Archivar tablero", "Archive board" : "Archivar tablero",
"Unarchive board" : "Desarchivar tablero", "Unarchive board" : "Desarchivar tablero",

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",
@@ -37,7 +38,6 @@ OC.L10N.register(
"seconds ago" : "segundos", "seconds ago" : "segundos",
"Settings" : "Ajustes", "Settings" : "Ajustes",
"New board title" : "Nuevo título de tablero", "New board title" : "Nuevo título de tablero",
"Share" : "Compartir",
"An error occurred" : "Ocurrió un error", "An error occurred" : "Ocurrió un error",
"Board details" : "Detalles del tablero" "Board details" : "Detalles del tablero"
}, },

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",
@@ -35,7 +36,6 @@
"seconds ago" : "segundos", "seconds ago" : "segundos",
"Settings" : "Ajustes", "Settings" : "Ajustes",
"New board title" : "Nuevo título de tablero", "New board title" : "Nuevo título de tablero",
"Share" : "Compartir",
"An error occurred" : "Ocurrió un error", "An error occurred" : "Ocurrió un error",
"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",
@@ -51,7 +52,6 @@ OC.L10N.register(
"Shared boards" : "Tableros compartidos", "Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ", "Settings" : "Configuraciones ",
"New board title" : "Nuevo título del tablero", "New board title" : "Nuevo título del tablero",
"Share" : "Compartir",
"Edit board" : "Editar el tablero", "Edit board" : "Editar el tablero",
"Archive board" : "Archivar tablero", "Archive board" : "Archivar tablero",
"Unarchive board" : "Desarchivar tablero", "Unarchive board" : "Desarchivar tablero",

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",
@@ -49,7 +50,6 @@
"Shared boards" : "Tableros compartidos", "Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ", "Settings" : "Configuraciones ",
"New board title" : "Nuevo título del tablero", "New board title" : "Nuevo título del tablero",
"Share" : "Compartir",
"Edit board" : "Editar el tablero", "Edit board" : "Editar el tablero",
"Archive board" : "Archivar tablero", "Archive board" : "Archivar tablero",
"Unarchive board" : "Desarchivar tablero", "Unarchive board" : "Desarchivar tablero",

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",
@@ -54,7 +52,6 @@ OC.L10N.register(
"Shared boards" : "Tableros compartidos", "Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ", "Settings" : "Configuraciones ",
"New board title" : "Nuevo título del tablero", "New board title" : "Nuevo título del tablero",
"Share" : "Compartir",
"Edit board" : "Editar el tablero", "Edit board" : "Editar el tablero",
"Archive board" : "Archivar tablero", "Archive board" : "Archivar tablero",
"Unarchive board" : "Desarchivar tablero", "Unarchive board" : "Desarchivar tablero",

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",
@@ -52,7 +50,6 @@
"Shared boards" : "Tableros compartidos", "Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ", "Settings" : "Configuraciones ",
"New board title" : "Nuevo título del tablero", "New board title" : "Nuevo título del tablero",
"Share" : "Compartir",
"Edit board" : "Editar el tablero", "Edit board" : "Editar el tablero",
"Archive board" : "Archivar tablero", "Archive board" : "Archivar tablero",
"Unarchive board" : "Desarchivar tablero", "Unarchive board" : "Desarchivar tablero",

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",
@@ -51,7 +52,6 @@ OC.L10N.register(
"Shared boards" : "Tableros compartidos", "Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ", "Settings" : "Configuraciones ",
"New board title" : "Nuevo título del tablero", "New board title" : "Nuevo título del tablero",
"Share" : "Compartir",
"Edit board" : "Editar el tablero", "Edit board" : "Editar el tablero",
"Archive board" : "Archivar tablero", "Archive board" : "Archivar tablero",
"Unarchive board" : "Desarchivar tablero", "Unarchive board" : "Desarchivar tablero",

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",
@@ -49,7 +50,6 @@
"Shared boards" : "Tableros compartidos", "Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ", "Settings" : "Configuraciones ",
"New board title" : "Nuevo título del tablero", "New board title" : "Nuevo título del tablero",
"Share" : "Compartir",
"Edit board" : "Editar el tablero", "Edit board" : "Editar el tablero",
"Archive board" : "Archivar tablero", "Archive board" : "Archivar tablero",
"Unarchive board" : "Desarchivar tablero", "Unarchive board" : "Desarchivar tablero",

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",
@@ -51,7 +52,6 @@ OC.L10N.register(
"Shared boards" : "Tableros compartidos", "Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ", "Settings" : "Configuraciones ",
"New board title" : "Nuevo título del tablero", "New board title" : "Nuevo título del tablero",
"Share" : "Compartir",
"Edit board" : "Editar el tablero", "Edit board" : "Editar el tablero",
"Archive board" : "Archivar tablero", "Archive board" : "Archivar tablero",
"Unarchive board" : "Desarchivar tablero", "Unarchive board" : "Desarchivar tablero",

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",
@@ -49,7 +50,6 @@
"Shared boards" : "Tableros compartidos", "Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ", "Settings" : "Configuraciones ",
"New board title" : "Nuevo título del tablero", "New board title" : "Nuevo título del tablero",
"Share" : "Compartir",
"Edit board" : "Editar el tablero", "Edit board" : "Editar el tablero",
"Archive board" : "Archivar tablero", "Archive board" : "Archivar tablero",
"Unarchive board" : "Desarchivar tablero", "Unarchive board" : "Desarchivar tablero",

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",
@@ -51,7 +52,6 @@ OC.L10N.register(
"Shared boards" : "Tableros compartidos", "Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ", "Settings" : "Configuraciones ",
"New board title" : "Nuevo título del tablero", "New board title" : "Nuevo título del tablero",
"Share" : "Compartir",
"Edit board" : "Editar el tablero", "Edit board" : "Editar el tablero",
"Archive board" : "Archivar tablero", "Archive board" : "Archivar tablero",
"Unarchive board" : "Desarchivar tablero", "Unarchive board" : "Desarchivar tablero",

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",
@@ -49,7 +50,6 @@
"Shared boards" : "Tableros compartidos", "Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ", "Settings" : "Configuraciones ",
"New board title" : "Nuevo título del tablero", "New board title" : "Nuevo título del tablero",
"Share" : "Compartir",
"Edit board" : "Editar el tablero", "Edit board" : "Editar el tablero",
"Archive board" : "Archivar tablero", "Archive board" : "Archivar tablero",
"Unarchive board" : "Desarchivar tablero", "Unarchive board" : "Desarchivar tablero",

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",
@@ -53,7 +52,6 @@ OC.L10N.register(
"Shared boards" : "Tableros compartidos", "Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ", "Settings" : "Configuraciones ",
"New board title" : "Nuevo título del tablero", "New board title" : "Nuevo título del tablero",
"Share" : "Compartir",
"Edit board" : "Editar el tablero", "Edit board" : "Editar el tablero",
"Archive board" : "Archivar tablero", "Archive board" : "Archivar tablero",
"Unarchive board" : "Desarchivar tablero", "Unarchive board" : "Desarchivar tablero",

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",
@@ -51,7 +50,6 @@
"Shared boards" : "Tableros compartidos", "Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ", "Settings" : "Configuraciones ",
"New board title" : "Nuevo título del tablero", "New board title" : "Nuevo título del tablero",
"Share" : "Compartir",
"Edit board" : "Editar el tablero", "Edit board" : "Editar el tablero",
"Archive board" : "Archivar tablero", "Archive board" : "Archivar tablero",
"Unarchive board" : "Desarchivar tablero", "Unarchive board" : "Desarchivar tablero",

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",
@@ -49,7 +48,6 @@ OC.L10N.register(
"Shared boards" : "Tableros compartidos", "Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ", "Settings" : "Configuraciones ",
"New board title" : "Nuevo título del tablero", "New board title" : "Nuevo título del tablero",
"Share" : "Compartir",
"Edit board" : "Editar el tablero", "Edit board" : "Editar el tablero",
"Archive board" : "Archivar tablero", "Archive board" : "Archivar tablero",
"Unarchive board" : "Desarchivar tablero", "Unarchive board" : "Desarchivar tablero",

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",
@@ -47,7 +46,6 @@
"Shared boards" : "Tableros compartidos", "Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ", "Settings" : "Configuraciones ",
"New board title" : "Nuevo título del tablero", "New board title" : "Nuevo título del tablero",
"Share" : "Compartir",
"Edit board" : "Editar el tablero", "Edit board" : "Editar el tablero",
"Archive board" : "Archivar tablero", "Archive board" : "Archivar tablero",
"Unarchive board" : "Desarchivar tablero", "Unarchive board" : "Desarchivar tablero",

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",
@@ -53,7 +54,6 @@ OC.L10N.register(
"Shared boards" : "Tableros compartidos", "Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ", "Settings" : "Configuraciones ",
"New board title" : "Nuevo título del tablero", "New board title" : "Nuevo título del tablero",
"Share" : "Compartir",
"Edit board" : "Editar el tablero", "Edit board" : "Editar el tablero",
"An error occurred" : "Ha ocurrido un error", "An error occurred" : "Ha ocurrido un error",
"Archive board" : "Archivar tablero", "Archive board" : "Archivar tablero",

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",
@@ -51,7 +52,6 @@
"Shared boards" : "Tableros compartidos", "Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ", "Settings" : "Configuraciones ",
"New board title" : "Nuevo título del tablero", "New board title" : "Nuevo título del tablero",
"Share" : "Compartir",
"Edit board" : "Editar el tablero", "Edit board" : "Editar el tablero",
"An error occurred" : "Ha ocurrido un error", "An error occurred" : "Ha ocurrido un error",
"Archive board" : "Archivar tablero", "Archive board" : "Archivar tablero",

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",
@@ -49,7 +48,6 @@ OC.L10N.register(
"Shared boards" : "Tableros compartidos", "Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ", "Settings" : "Configuraciones ",
"New board title" : "Nuevo título del tablero", "New board title" : "Nuevo título del tablero",
"Share" : "Compartir",
"Edit board" : "Editar el tablero", "Edit board" : "Editar el tablero",
"Archive board" : "Archivar tablero", "Archive board" : "Archivar tablero",
"Unarchive board" : "Desarchivar tablero", "Unarchive board" : "Desarchivar tablero",

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",
@@ -47,7 +46,6 @@
"Shared boards" : "Tableros compartidos", "Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ", "Settings" : "Configuraciones ",
"New board title" : "Nuevo título del tablero", "New board title" : "Nuevo título del tablero",
"Share" : "Compartir",
"Edit board" : "Editar el tablero", "Edit board" : "Editar el tablero",
"Archive board" : "Archivar tablero", "Archive board" : "Archivar tablero",
"Unarchive board" : "Desarchivar tablero", "Unarchive board" : "Desarchivar tablero",

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",
@@ -49,7 +48,6 @@ OC.L10N.register(
"Shared boards" : "Tableros compartidos", "Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ", "Settings" : "Configuraciones ",
"New board title" : "Nuevo título del tablero", "New board title" : "Nuevo título del tablero",
"Share" : "Compartir",
"Edit board" : "Editar el tablero", "Edit board" : "Editar el tablero",
"Archive board" : "Archivar tablero", "Archive board" : "Archivar tablero",
"Unarchive board" : "Desarchivar tablero", "Unarchive board" : "Desarchivar tablero",

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",
@@ -47,7 +46,6 @@
"Shared boards" : "Tableros compartidos", "Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ", "Settings" : "Configuraciones ",
"New board title" : "Nuevo título del tablero", "New board title" : "Nuevo título del tablero",
"Share" : "Compartir",
"Edit board" : "Editar el tablero", "Edit board" : "Editar el tablero",
"Archive board" : "Archivar tablero", "Archive board" : "Archivar tablero",
"Unarchive board" : "Desarchivar tablero", "Unarchive board" : "Desarchivar tablero",

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",
@@ -47,7 +48,6 @@ OC.L10N.register(
"Shared boards" : "Tableros compartidos", "Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ", "Settings" : "Configuraciones ",
"New board title" : "Nuevo título del tablero", "New board title" : "Nuevo título del tablero",
"Share" : "Compartir",
"Edit board" : "Editar el tablero", "Edit board" : "Editar el tablero",
"Archive board" : "Archivar tablero", "Archive board" : "Archivar tablero",
"Unarchive board" : "Desarchivar tablero", "Unarchive board" : "Desarchivar tablero",

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",
@@ -45,7 +46,6 @@
"Shared boards" : "Tableros compartidos", "Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ", "Settings" : "Configuraciones ",
"New board title" : "Nuevo título del tablero", "New board title" : "Nuevo título del tablero",
"Share" : "Compartir",
"Edit board" : "Editar el tablero", "Edit board" : "Editar el tablero",
"Archive board" : "Archivar tablero", "Archive board" : "Archivar tablero",
"Unarchive board" : "Desarchivar tablero", "Unarchive board" : "Desarchivar tablero",

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",
@@ -49,7 +48,6 @@ OC.L10N.register(
"Shared boards" : "Tableros compartidos", "Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ", "Settings" : "Configuraciones ",
"New board title" : "Nuevo título del tablero", "New board title" : "Nuevo título del tablero",
"Share" : "Compartir",
"Edit board" : "Editar el tablero", "Edit board" : "Editar el tablero",
"Archive board" : "Archivar tablero", "Archive board" : "Archivar tablero",
"Unarchive board" : "Desarchivar tablero", "Unarchive board" : "Desarchivar tablero",

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",
@@ -47,7 +46,6 @@
"Shared boards" : "Tableros compartidos", "Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ", "Settings" : "Configuraciones ",
"New board title" : "Nuevo título del tablero", "New board title" : "Nuevo título del tablero",
"Share" : "Compartir",
"Edit board" : "Editar el tablero", "Edit board" : "Editar el tablero",
"Archive board" : "Archivar tablero", "Archive board" : "Archivar tablero",
"Unarchive board" : "Desarchivar tablero", "Unarchive board" : "Desarchivar tablero",

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",
@@ -47,7 +48,6 @@ OC.L10N.register(
"Shared boards" : "Tableros compartidos", "Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ", "Settings" : "Configuraciones ",
"New board title" : "Nuevo título del tablero", "New board title" : "Nuevo título del tablero",
"Share" : "Compartir",
"Edit board" : "Editar el tablero", "Edit board" : "Editar el tablero",
"Archive board" : "Archivar tablero", "Archive board" : "Archivar tablero",
"Unarchive board" : "Desarchivar tablero", "Unarchive board" : "Desarchivar tablero",

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",
@@ -45,7 +46,6 @@
"Shared boards" : "Tableros compartidos", "Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ", "Settings" : "Configuraciones ",
"New board title" : "Nuevo título del tablero", "New board title" : "Nuevo título del tablero",
"Share" : "Compartir",
"Edit board" : "Editar el tablero", "Edit board" : "Editar el tablero",
"Archive board" : "Archivar tablero", "Archive board" : "Archivar tablero",
"Unarchive board" : "Desarchivar tablero", "Unarchive board" : "Desarchivar tablero",

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",
@@ -51,7 +52,6 @@ OC.L10N.register(
"Shared boards" : "Tableros compartidos", "Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ", "Settings" : "Configuraciones ",
"New board title" : "Nuevo título del tablero", "New board title" : "Nuevo título del tablero",
"Share" : "Compartir",
"Edit board" : "Editar el tablero", "Edit board" : "Editar el tablero",
"Archive board" : "Archivar tablero", "Archive board" : "Archivar tablero",
"Unarchive board" : "Desarchivar tablero", "Unarchive board" : "Desarchivar tablero",

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",
@@ -49,7 +50,6 @@
"Shared boards" : "Tableros compartidos", "Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ", "Settings" : "Configuraciones ",
"New board title" : "Nuevo título del tablero", "New board title" : "Nuevo título del tablero",
"Share" : "Compartir",
"Edit board" : "Editar el tablero", "Edit board" : "Editar el tablero",
"Archive board" : "Archivar tablero", "Archive board" : "Archivar tablero",
"Unarchive board" : "Desarchivar tablero", "Unarchive board" : "Desarchivar tablero",

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",
@@ -49,7 +48,6 @@ OC.L10N.register(
"Shared boards" : "Tableros compartidos", "Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ", "Settings" : "Configuraciones ",
"New board title" : "Nuevo título del tablero", "New board title" : "Nuevo título del tablero",
"Share" : "Compartir",
"Edit board" : "Editar el tablero", "Edit board" : "Editar el tablero",
"Archive board" : "Archivar tablero", "Archive board" : "Archivar tablero",
"Unarchive board" : "Desarchivar tablero", "Unarchive board" : "Desarchivar tablero",

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",
@@ -47,7 +46,6 @@
"Shared boards" : "Tableros compartidos", "Shared boards" : "Tableros compartidos",
"Settings" : "Configuraciones ", "Settings" : "Configuraciones ",
"New board title" : "Nuevo título del tablero", "New board title" : "Nuevo título del tablero",
"Share" : "Compartir",
"Edit board" : "Editar el tablero", "Edit board" : "Editar el tablero",
"Archive board" : "Archivar tablero", "Archive board" : "Archivar tablero",
"Unarchive board" : "Desarchivar tablero", "Unarchive board" : "Desarchivar tablero",

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",
@@ -28,7 +29,6 @@ OC.L10N.register(
"(group)" : "(grupp)", "(group)" : "(grupp)",
"seconds ago" : "sekundit tagasi", "seconds ago" : "sekundit tagasi",
"Settings" : "Seaded", "Settings" : "Seaded",
"Share" : "Jaga",
"An error occurred" : "Tekkis tõrge" "An error occurred" : "Tekkis tõrge"
}, },
"nplurals=2; plural=(n != 1);"); "nplurals=2; plural=(n != 1);");

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",
@@ -26,7 +27,6 @@
"(group)" : "(grupp)", "(group)" : "(grupp)",
"seconds ago" : "sekundit tagasi", "seconds ago" : "sekundit tagasi",
"Settings" : "Seaded", "Settings" : "Seaded",
"Share" : "Jaga",
"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

@@ -122,7 +122,7 @@ 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",
@@ -153,9 +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",
"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",
@@ -167,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.",
@@ -185,28 +180,23 @@ 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",
"Delete card" : "Ezabatu txartela", "Delete card" : "Ezabatu txartela",
"Move card" : "Mugitu txartela", "Move card" : "Mugitu txartela",
"Card details" : "Txartelaren xehetasunak", "Card details" : "Txartelaren xehetasunak",
"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 boards" : "Partekatutako taulak", "Shared boards" : "Partekatutako taulak",
"Settings" : "Ezarpenak", "Settings" : "Ezarpenak",
"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.", "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",
"Share" : "Partekatu",
"Options" : "Aukerak",
"Edit board" : "Editatu taula", "Edit board" : "Editatu taula",
"An error occurred" : "Errore bat gertatu da", "An error occurred" : "Errore bat gertatu da",
"Clone board" : "Klonatu taula", "Clone board" : "Klonatu taula",
"Archive board" : "Artxibatu taula", "Archive board" : "Artxibatu taula",
"Unarchive board" : "Atera taula artxibotik", "Unarchive board" : "Atera taula artxibotik",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Ziur zaude «{title}» mahaia ezabatu nahi duzula? Honek mahai honen datu guztiak ezabatuko ditu.",
"Delete the board?" : "Mahaia ezabatu?",
"Delete board" : "Ezabatu taula", "Delete board" : "Ezabatu taula",
"Board details" : "Mahaigainaren xehetasunak", "Board details" : "Mahaigainaren xehetasunak",
"Link to a board" : "Estekatu taula batera", "Link to a board" : "Estekatu taula batera",

View File

@@ -120,7 +120,7 @@
"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",
@@ -151,9 +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",
"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",
@@ -165,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.",
@@ -183,28 +178,23 @@
"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",
"Delete card" : "Ezabatu txartela", "Delete card" : "Ezabatu txartela",
"Move card" : "Mugitu txartela", "Move card" : "Mugitu txartela",
"Card details" : "Txartelaren xehetasunak", "Card details" : "Txartelaren xehetasunak",
"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 boards" : "Partekatutako taulak", "Shared boards" : "Partekatutako taulak",
"Settings" : "Ezarpenak", "Settings" : "Ezarpenak",
"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.", "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",
"Share" : "Partekatu",
"Options" : "Aukerak",
"Edit board" : "Editatu taula", "Edit board" : "Editatu taula",
"An error occurred" : "Errore bat gertatu da", "An error occurred" : "Errore bat gertatu da",
"Clone board" : "Klonatu taula", "Clone board" : "Klonatu taula",
"Archive board" : "Artxibatu taula", "Archive board" : "Artxibatu taula",
"Unarchive board" : "Atera taula artxibotik", "Unarchive board" : "Atera taula artxibotik",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Ziur zaude «{title}» mahaia ezabatu nahi duzula? Honek mahai honen datu guztiak ezabatuko ditu.",
"Delete the board?" : "Mahaia ezabatu?",
"Delete board" : "Ezabatu taula", "Delete board" : "Ezabatu taula",
"Board details" : "Mahaigainaren xehetasunak", "Board details" : "Mahaigainaren xehetasunak",
"Link to a board" : "Estekatu taula batera", "Link to a board" : "Estekatu taula batera",

View File

@@ -10,6 +10,7 @@ OC.L10N.register(
"Missing a temporary folder" : "یک پوشه موقت گم شده", "Missing a temporary folder" : "یک پوشه موقت گم شده",
"Cancel" : "لغو", "Cancel" : "لغو",
"File already exists" : "فایل از قبل موجود میباشد", "File already exists" : "فایل از قبل موجود میباشد",
"Today" : "Today",
"Details" : "جزئیات", "Details" : "جزئیات",
"Sharing" : "اشتراک گذاری", "Sharing" : "اشتراک گذاری",
"Tags" : "برچسب‌ها", "Tags" : "برچسب‌ها",
@@ -20,7 +21,6 @@ OC.L10N.register(
"Delete" : "حذف", "Delete" : "حذف",
"Add card" : "کارت اضافه کنید", "Add card" : "کارت اضافه کنید",
"Edit" : "ویرایش", "Edit" : "ویرایش",
"Title" : "عنوان",
"Due date" : "موعد مقرر", "Due date" : "موعد مقرر",
"Description" : "توضیحات", "Description" : "توضیحات",
"Attachments" : "پیوست ها", "Attachments" : "پیوست ها",
@@ -32,12 +32,10 @@ OC.L10N.register(
"Reply" : "پاسخ", "Reply" : "پاسخ",
"Update" : "به روز رسانی", "Update" : "به روز رسانی",
"(group)" : "(گروه)", "(group)" : "(گروه)",
"seconds ago" : "ثانیه‌هایی پیش",
"Delete card" : "حذف کارت", "Delete card" : "حذف کارت",
"Move card" : "انتقال کارت", "Move card" : "انتقال کارت",
"seconds ago" : "ثانیه‌هایی پیش",
"Settings" : "تنظیمات", "Settings" : "تنظیمات",
"Share" : "اشتراک",
"Options" : "گزینه ها",
"Edit board" : "ویرایش تخته ها", "Edit board" : "ویرایش تخته ها",
"An error occurred" : "خطایی روی داد", "An error occurred" : "خطایی روی داد",
"Archive board" : " بایگانی تابلو", "Archive board" : " بایگانی تابلو",

View File

@@ -8,6 +8,7 @@
"Missing a temporary folder" : "یک پوشه موقت گم شده", "Missing a temporary folder" : "یک پوشه موقت گم شده",
"Cancel" : "لغو", "Cancel" : "لغو",
"File already exists" : "فایل از قبل موجود میباشد", "File already exists" : "فایل از قبل موجود میباشد",
"Today" : "Today",
"Details" : "جزئیات", "Details" : "جزئیات",
"Sharing" : "اشتراک گذاری", "Sharing" : "اشتراک گذاری",
"Tags" : "برچسب‌ها", "Tags" : "برچسب‌ها",
@@ -18,7 +19,6 @@
"Delete" : "حذف", "Delete" : "حذف",
"Add card" : "کارت اضافه کنید", "Add card" : "کارت اضافه کنید",
"Edit" : "ویرایش", "Edit" : "ویرایش",
"Title" : "عنوان",
"Due date" : "موعد مقرر", "Due date" : "موعد مقرر",
"Description" : "توضیحات", "Description" : "توضیحات",
"Attachments" : "پیوست ها", "Attachments" : "پیوست ها",
@@ -30,12 +30,10 @@
"Reply" : "پاسخ", "Reply" : "پاسخ",
"Update" : "به روز رسانی", "Update" : "به روز رسانی",
"(group)" : "(گروه)", "(group)" : "(گروه)",
"seconds ago" : "ثانیه‌هایی پیش",
"Delete card" : "حذف کارت", "Delete card" : "حذف کارت",
"Move card" : "انتقال کارت", "Move card" : "انتقال کارت",
"seconds ago" : "ثانیه‌هایی پیش",
"Settings" : "تنظیمات", "Settings" : "تنظیمات",
"Share" : "اشتراک",
"Options" : "گزینه ها",
"Edit board" : "ویرایش تخته ها", "Edit board" : "ویرایش تخته ها",
"An error occurred" : "خطایی روی داد", "An error occurred" : "خطایی روی داد",
"Archive board" : " بایگانی تابلو", "Archive board" : " بایگانی تابلو",

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,8 +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",
"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 +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ä.",
@@ -165,19 +165,17 @@ OC.L10N.register(
"Reply" : "Vastaa", "Reply" : "Vastaa",
"Update" : "Päivitä", "Update" : "Päivitä",
"(group)" : "(ryhmä)", "(group)" : "(ryhmä)",
"seconds ago" : "sekuntia sitten",
"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 boards" : "Jaetut taulut", "Shared boards" : "Jaetut taulut",
"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.", "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",
"Share" : "Jaa",
"Options" : "Valinnat",
"Edit board" : "Muokkaa taulua", "Edit board" : "Muokkaa taulua",
"An error occurred" : "Tapahtui virhe", "An error occurred" : "Tapahtui virhe",
"Clone board" : "Monista taulu", "Clone board" : "Monista taulu",

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,8 +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",
"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ä",
@@ -156,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ä.",
@@ -163,19 +163,17 @@
"Reply" : "Vastaa", "Reply" : "Vastaa",
"Update" : "Päivitä", "Update" : "Päivitä",
"(group)" : "(ryhmä)", "(group)" : "(ryhmä)",
"seconds ago" : "sekuntia sitten",
"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 boards" : "Jaetut taulut", "Shared boards" : "Jaetut taulut",
"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.", "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",
"Share" : "Jaa",
"Options" : "Valinnat",
"Edit board" : "Muokkaa taulua", "Edit board" : "Muokkaa taulua",
"An error occurred" : "Tapahtui virhe", "An error occurred" : "Tapahtui virhe",
"Clone board" : "Monista taulu", "Clone board" : "Monista taulu",

View File

@@ -114,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",
@@ -122,7 +121,7 @@ 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",
@@ -153,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",
@@ -169,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.",
@@ -187,28 +179,23 @@ 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",
"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",
"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 boards" : "Tableaux partagés", "Shared boards" : "Tableaux partagés",
"Settings" : "Paramètres", "Settings" : "Paramètres",
"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.", "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",
"Share" : "Partager",
"Options" : "Choix",
"Edit board" : "Modifier le tableau", "Edit board" : "Modifier le tableau",
"An error occurred" : "Une erreur est survenue", "An error occurred" : "Une erreur est survenue",
"Clone board" : "Dupliquer le tableau", "Clone board" : "Dupliquer le tableau",
"Archive board" : "Archiver le tableau", "Archive board" : "Archiver le tableau",
"Unarchive board" : "Désarchiver le tableau", "Unarchive board" : "Désarchiver le tableau",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Êtes-vous certain de vouloir supprimer le tableau {title} ? Cela supprimera l'ensemble des données de ce tableau.",
"Delete the board?" : "Supprimer le tableau ?",
"Delete board" : "Supprimer le tableau", "Delete board" : "Supprimer le tableau",
"Board details" : "Détails du tableau", "Board details" : "Détails du tableau",
"Link to a board" : "Relier à un tableau", "Link to a board" : "Relier à un tableau",

View File

@@ -112,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",
@@ -120,7 +119,7 @@
"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",
@@ -151,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",
@@ -167,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.",
@@ -185,28 +177,23 @@
"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",
"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",
"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 boards" : "Tableaux partagés", "Shared boards" : "Tableaux partagés",
"Settings" : "Paramètres", "Settings" : "Paramètres",
"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.", "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",
"Share" : "Partager",
"Options" : "Choix",
"Edit board" : "Modifier le tableau", "Edit board" : "Modifier le tableau",
"An error occurred" : "Une erreur est survenue", "An error occurred" : "Une erreur est survenue",
"Clone board" : "Dupliquer le tableau", "Clone board" : "Dupliquer le tableau",
"Archive board" : "Archiver le tableau", "Archive board" : "Archiver le tableau",
"Unarchive board" : "Désarchiver le tableau", "Unarchive board" : "Désarchiver le tableau",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Êtes-vous certain de vouloir supprimer le tableau {title} ? Cela supprimera l'ensemble des données de ce tableau.",
"Delete the board?" : "Supprimer le tableau ?",
"Delete board" : "Supprimer le tableau", "Delete board" : "Supprimer le tableau",
"Board details" : "Détails du tableau", "Board details" : "Détails du tableau",
"Link to a board" : "Relier à un tableau", "Link to a board" : "Relier à un tableau",

View File

@@ -122,7 +122,7 @@ 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",
@@ -153,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",
@@ -169,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",
@@ -187,29 +180,23 @@ 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",
"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 boards" : "Taboleiros compartidos", "Shared boards" : "Taboleiros compartidos",
"Settings" : "Axustes", "Settings" : "Axustes",
"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.", "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",
"Share" : "Compartir",
"Options" : "Opcións",
"Edit board" : "Editar taboleiro", "Edit board" : "Editar taboleiro",
"An error occurred" : "Produciuse un erro", "An error occurred" : "Produciuse un erro",
"Clone board" : "Clonar taboleiro", "Clone board" : "Clonar taboleiro",
"Archive board" : "Arquivar taboleiro", "Archive board" : "Arquivar taboleiro",
"Unarchive board" : "Desarquivar taboleiro", "Unarchive board" : "Desarquivar taboleiro",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Confirma que quere eliminar o taboleiro {title}? Isto eliminará todos os datos deste taboleiro.",
"Delete the board?" : "Eliminar o taboleiro?",
"Delete board" : "Eliminar taboleiro", "Delete board" : "Eliminar taboleiro",
"Board details" : "Detalles do taboleiro", "Board details" : "Detalles do taboleiro",
"Link to a board" : "Ligar a un taboleiro", "Link to a board" : "Ligar a un taboleiro",

View File

@@ -120,7 +120,7 @@
"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",
@@ -151,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",
@@ -167,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",
@@ -185,29 +178,23 @@
"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",
"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 boards" : "Taboleiros compartidos", "Shared boards" : "Taboleiros compartidos",
"Settings" : "Axustes", "Settings" : "Axustes",
"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.", "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",
"Share" : "Compartir",
"Options" : "Opcións",
"Edit board" : "Editar taboleiro", "Edit board" : "Editar taboleiro",
"An error occurred" : "Produciuse un erro", "An error occurred" : "Produciuse un erro",
"Clone board" : "Clonar taboleiro", "Clone board" : "Clonar taboleiro",
"Archive board" : "Arquivar taboleiro", "Archive board" : "Arquivar taboleiro",
"Unarchive board" : "Desarquivar taboleiro", "Unarchive board" : "Desarquivar taboleiro",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Confirma que quere eliminar o taboleiro {title}? Isto eliminará todos os datos deste taboleiro.",
"Delete the board?" : "Eliminar o taboleiro?",
"Delete board" : "Eliminar taboleiro", "Delete board" : "Eliminar taboleiro",
"Board details" : "Detalles do taboleiro", "Board details" : "Detalles do taboleiro",
"Link to a board" : "Ligar a un taboleiro", "Link to a board" : "Ligar a un taboleiro",

View File

@@ -1,23 +1,7 @@
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}",
"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 reached its due date." : "הכרטיס „%s” שתחת „%s” הגיע למועד התפוגה שלו.", "The card \"%s\" on \"%s\" has reached its due date." : "הכרטיס „%s” שתחת „%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.",
@@ -28,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",
@@ -43,123 +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" : "נא לבחור את הלוח לקישור למיזם",
"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" : "ללא תאריך יעד",
"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" : "הקצאה אלי",
"Delete card" : "מחיקת כרטיס לארכיון", "Delete card" : "מחיקת כרטיס לארכיון",
"Move card" : "העברת כרטיס", "seconds ago" : "לפני מספר שניות",
"Card details" : "פרטי הכרטיס",
"Select a stack" : "בחירת ערימה",
"All boards" : "כל הלוחות",
"Archived boards" : "לוחות שנשמרו בארכיון", "Archived boards" : "לוחות שנשמרו בארכיון",
"Shared boards" : "לוחות משותפים", "Shared boards" : "לוחות משותפים",
"Settings" : "הגדרות", "Settings" : "הגדרות",
"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." : "הגבלת חבילה תחסום משתמשים שאינם חלק מקבוצות אלו מיצירת לוחות משלהם. משתמשים עדיין יוכלו לעבור על לוחות ששותפו אתם.",
"New board title" : "כותרת לוח חדשה", "New board title" : "כותרת לוח חדשה",
"Share" : "שיתוף",
"Options" : "אפשרויות",
"Edit board" : "עריכת לוח", "Edit board" : "עריכת לוח",
"An error occurred" : "אירעה שגיאה", "An error occurred" : "אירעה שגיאה",
"Clone board" : "שכפול לוח",
"Archive board" : "העברת לוח לארכיון", "Archive board" : "העברת לוח לארכיון",
"Unarchive board" : "הוצאת ארכיון מהלוח", "Unarchive board" : "הוצאת ארכיון מהלוח",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "למחוק את הלוח {title}? פעולה זו תמחק את כל הנתונים של הלוח הזה.",
"Delete the board?" : "למחוק את הלוח הזה?",
"Delete board" : "מחיקת לו", "Delete board" : "מחיקת לו",
"Board details" : "פרטי לוח", "Board details" : "פרטי לוח",
"Link to a board" : "קישור ללוח",
"Link to a card" : "קישור לכרטיס",
"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,21 +1,5 @@
{ "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}",
"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 reached its due date." : "הכרטיס „%s” שתחת „%s” הגיע למועד התפוגה שלו.", "The card \"%s\" on \"%s\" has reached its due date." : "הכרטיס „%s” שתחת „%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.",
@@ -26,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",
@@ -41,123 +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" : "נא לבחור את הלוח לקישור למיזם",
"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" : "ללא תאריך יעד",
"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" : "הקצאה אלי",
"Delete card" : "מחיקת כרטיס לארכיון", "Delete card" : "מחיקת כרטיס לארכיון",
"Move card" : "העברת כרטיס", "seconds ago" : "לפני מספר שניות",
"Card details" : "פרטי הכרטיס",
"Select a stack" : "בחירת ערימה",
"All boards" : "כל הלוחות",
"Archived boards" : "לוחות שנשמרו בארכיון", "Archived boards" : "לוחות שנשמרו בארכיון",
"Shared boards" : "לוחות משותפים", "Shared boards" : "לוחות משותפים",
"Settings" : "הגדרות", "Settings" : "הגדרות",
"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." : "הגבלת חבילה תחסום משתמשים שאינם חלק מקבוצות אלו מיצירת לוחות משלהם. משתמשים עדיין יוכלו לעבור על לוחות ששותפו אתם.",
"New board title" : "כותרת לוח חדשה", "New board title" : "כותרת לוח חדשה",
"Share" : "שיתוף",
"Options" : "אפשרויות",
"Edit board" : "עריכת לוח", "Edit board" : "עריכת לוח",
"An error occurred" : "אירעה שגיאה", "An error occurred" : "אירעה שגיאה",
"Clone board" : "שכפול לוח",
"Archive board" : "העברת לוח לארכיון", "Archive board" : "העברת לוח לארכיון",
"Unarchive board" : "הוצאת ארכיון מהלוח", "Unarchive board" : "הוצאת ארכיון מהלוח",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "למחוק את הלוח {title}? פעולה זו תמחק את כל הנתונים של הלוח הזה.",
"Delete the board?" : "למחוק את הלוח הזה?",
"Delete board" : "מחיקת לו", "Delete board" : "מחיקת לו",
"Board details" : "פרטי לוח", "Board details" : "פרטי לוח",
"Link to a board" : "קישור ללוח",
"Link to a card" : "קישור לכרטיס",
"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,6 +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",
"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",
@@ -134,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...",
@@ -150,26 +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",
"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",
"Attachments" : "Privici", "Attachments" : "Privici",
"Comments" : "Komentari", "Comments" : "Komentari",
"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.",
@@ -178,28 +173,23 @@ 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",
"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 boards" : "Dijeljene ploče", "Shared boards" : "Dijeljene ploče",
"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.", "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",
"Share" : "Dijeli",
"Options" : "Mogućnosti",
"Edit board" : "Uredi ploču", "Edit board" : "Uredi ploču",
"An error occurred" : "Došlo je do pogreške", "An error occurred" : "Došlo je do pogreške",
"Clone board" : "Kloniraj ploču", "Clone board" : "Kloniraj ploču",
"Archive board" : "Arhiviraj ploču", "Archive board" : "Arhiviraj ploču",
"Unarchive board" : "Dearhiviraj ploču", "Unarchive board" : "Dearhiviraj ploču",
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Jeste li sigurni da želite izbrisati ploču {title}? Time ćete izbrisati sve podatke ploče.",
"Delete the board?" : "Želite li izbrisati ploču?",
"Delete board" : "Izbriši ploču", "Delete board" : "Izbriši ploču",
"Board details" : "Pojedinosti o ploči", "Board details" : "Pojedinosti o ploči",
"Link to a board" : "Poveznica na ploču", "Link to a board" : "Poveznica na ploču",

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