Compare commits
1 Commits
v1.5.5
...
enh/flow-c
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3ef5f8edd0 |
@@ -1,8 +1,8 @@
|
||||
module.exports = {
|
||||
extends: [
|
||||
'@nextcloud',
|
||||
'@nextcloud'
|
||||
],
|
||||
rules: {
|
||||
'valid-jsdoc': ['off'],
|
||||
},
|
||||
}
|
||||
}
|
||||
|
||||
55
.github/workflows/app-code-check.yml
vendored
Normal file
55
.github/workflows/app-code-check.yml
vendored
Normal file
@@ -0,0 +1,55 @@
|
||||
name: Nextcloud app code check
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
- stable*
|
||||
|
||||
env:
|
||||
APP_NAME: deck
|
||||
|
||||
jobs:
|
||||
unit-tests:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
php-versions: ['7.4']
|
||||
server-versions: ['master', 'stable18', 'stable19', 'stable20']
|
||||
|
||||
name: AppCode check php${{ matrix.php-versions }}-${{ matrix.server-versions }}
|
||||
steps:
|
||||
- name: Checkout server
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
repository: nextcloud/server
|
||||
ref: ${{ matrix.server-versions }}
|
||||
|
||||
- name: Checkout submodules
|
||||
shell: bash
|
||||
run: |
|
||||
auth_header="$(git config --local --get http.https://github.com/.extraheader)"
|
||||
git submodule sync --recursive
|
||||
git -c "http.extraheader=$auth_header" -c protocol.version=2 submodule update --init --force --recursive --depth=1
|
||||
|
||||
- name: Checkout app
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
path: apps/${{ env.APP_NAME }}
|
||||
|
||||
- name: Set up php ${{ matrix.php-versions }}
|
||||
uses: shivammathur/setup-php@v1
|
||||
with:
|
||||
php-version: ${{ matrix.php-versions }}
|
||||
tools: phpunit
|
||||
extensions: mbstring, iconv, fileinfo, intl, sqlite, pdo_sqlite
|
||||
|
||||
- name: Checkout app
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
path: apps/${{ env.APP_NAME }}
|
||||
|
||||
- name: App code check
|
||||
run: php occ app:check-code ${{ env.APP_NAME }}
|
||||
4
.github/workflows/appbuild.yml
vendored
4
.github/workflows/appbuild.yml
vendored
@@ -9,7 +9,7 @@ jobs:
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
node-version: [14.x]
|
||||
node-version: [12.x]
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
@@ -17,8 +17,6 @@ jobs:
|
||||
uses: actions/setup-node@v1
|
||||
with:
|
||||
node-version: ${{ matrix.node-version }}
|
||||
- name: Set up npm7
|
||||
run: npm i -g npm@7
|
||||
- name: Setup PHP
|
||||
uses: shivammathur/setup-php@v1
|
||||
with:
|
||||
|
||||
4
.github/workflows/integration.yml
vendored
4
.github/workflows/integration.yml
vendored
@@ -19,7 +19,7 @@ jobs:
|
||||
matrix:
|
||||
php-versions: ['7.4']
|
||||
databases: ['sqlite', 'mysql', 'pgsql']
|
||||
server-versions: ['stable22']
|
||||
server-versions: ['master']
|
||||
|
||||
name: php${{ matrix.php-versions }}-${{ matrix.databases }}-${{ matrix.server-versions }}
|
||||
|
||||
@@ -34,7 +34,7 @@ jobs:
|
||||
POSTGRES_DB: nextcloud
|
||||
options: --health-cmd pg_isready --health-interval 5s --health-timeout 2s --health-retries 5
|
||||
mysql:
|
||||
image: mariadb:10.5
|
||||
image: mariadb
|
||||
ports:
|
||||
- 4444:3306/tcp
|
||||
env:
|
||||
|
||||
9
.github/workflows/lint.yml
vendored
9
.github/workflows/lint.yml
vendored
@@ -47,7 +47,7 @@ jobs:
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
node-version: [14.x]
|
||||
node-version: [12.x]
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
@@ -55,8 +55,6 @@ jobs:
|
||||
uses: actions/setup-node@v1
|
||||
with:
|
||||
node-version: ${{ matrix.node-version }}
|
||||
- name: Set up npm7
|
||||
run: npm i -g npm@7
|
||||
- name: Install dependencies
|
||||
run: npm ci
|
||||
- name: ESLint
|
||||
@@ -67,7 +65,7 @@ jobs:
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
node-versions: [14.x]
|
||||
node-versions: [12.x]
|
||||
|
||||
name: stylelint node${{ matrix.node-versions }}
|
||||
steps:
|
||||
@@ -78,9 +76,6 @@ jobs:
|
||||
with:
|
||||
node-versions: ${{ matrix.node-versions }}
|
||||
|
||||
- name: Set up npm7
|
||||
run: npm i -g npm@7
|
||||
|
||||
- name: Install dependencies
|
||||
run: npm ci
|
||||
|
||||
|
||||
4
.github/workflows/nightly.yml
vendored
4
.github/workflows/nightly.yml
vendored
@@ -14,7 +14,7 @@ jobs:
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
node-version: [14.x]
|
||||
node-version: [12.x]
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
@@ -22,8 +22,6 @@ jobs:
|
||||
uses: actions/setup-node@v1
|
||||
with:
|
||||
node-version: ${{ matrix.node-version }}
|
||||
- name: Set up npm7
|
||||
run: npm i -g npm@7
|
||||
- name: Setup PHP
|
||||
uses: shivammathur/setup-php@v1
|
||||
with:
|
||||
|
||||
4
.github/workflows/nodejs.yml
vendored
4
.github/workflows/nodejs.yml
vendored
@@ -9,7 +9,7 @@ jobs:
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
node-version: [14.x]
|
||||
node-version: [12.x]
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
@@ -17,8 +17,6 @@ jobs:
|
||||
uses: actions/setup-node@v1
|
||||
with:
|
||||
node-version: ${{ matrix.node-version }}
|
||||
- name: Set up npm7
|
||||
run: npm i -g npm@7
|
||||
- name: install dependencies
|
||||
run: |
|
||||
npm ci
|
||||
|
||||
4
.github/workflows/phpunit.yml
vendored
4
.github/workflows/phpunit.yml
vendored
@@ -20,7 +20,7 @@ jobs:
|
||||
matrix:
|
||||
php-versions: ['7.3', '7.4']
|
||||
databases: ['sqlite', 'mysql', 'pgsql']
|
||||
server-versions: ['stable22']
|
||||
server-versions: ['master']
|
||||
|
||||
name: php${{ matrix.php-versions }}-${{ matrix.databases }}-${{ matrix.server-versions }}
|
||||
|
||||
@@ -35,7 +35,7 @@ jobs:
|
||||
POSTGRES_DB: nextcloud
|
||||
options: --health-cmd pg_isready --health-interval 5s --health-timeout 2s --health-retries 5
|
||||
mysql:
|
||||
image: mariadb:10.5
|
||||
image: mariadb
|
||||
ports:
|
||||
- 4444:3306/tcp
|
||||
env:
|
||||
|
||||
2
.github/workflows/static-analysis.yml
vendored
2
.github/workflows/static-analysis.yml
vendored
@@ -12,7 +12,7 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
matrix:
|
||||
ocp-version: [ 'dev-stable22' ]
|
||||
ocp-version: [ 'dev-master' ]
|
||||
name: Nextcloud ${{ matrix.ocp-version }}
|
||||
steps:
|
||||
- name: Checkout
|
||||
|
||||
120
CHANGELOG.md
120
CHANGELOG.md
@@ -1,93 +1,7 @@
|
||||
# Changelog
|
||||
All notable changes to this project will be documented in this file.
|
||||
|
||||
## 1.5.5
|
||||
|
||||
- Fix release asset build
|
||||
|
||||
## 1.5.4
|
||||
|
||||
### Fixed
|
||||
|
||||
- #3378 Fix menu button position in card modal
|
||||
- #3392 Use displayname instead of uid for mentions (reopened against master)
|
||||
- #3361 Improve combined search @eneiluj
|
||||
- #3381 Extend drag-and-drop zone in card sidebar @Artem4590
|
||||
- #3366 Fix optional parameter order
|
||||
- #3407 Keep exceptions http response generic
|
||||
|
||||
|
||||
## 1.5.3
|
||||
|
||||
### Fied
|
||||
|
||||
- #3317 Additional check for stacks
|
||||
|
||||
|
||||
## 1.5.2
|
||||
|
||||
### Fixed
|
||||
|
||||
- #3300 Fix print style issues
|
||||
- #3303 Delete file shares through attachments API
|
||||
- #3306 Return false instead of throwing when getting calendar setting
|
||||
|
||||
## 1.5.1 - 2021-09-03
|
||||
|
||||
### Fixed
|
||||
|
||||
- #3224 Move circle checks to a unified service and improve member checks
|
||||
- #3231 Check for null value to avoid TypeError in the group manager
|
||||
- #3264 Defer obtaining the user session in the config service
|
||||
|
||||
|
||||
## 1.5.0 - 2021-07-09
|
||||
|
||||
### Added
|
||||
|
||||
* Nextcloud 22 compatibility
|
||||
* [#3105](https://github.com/nextcloud/deck/pull/3105) Compatibility with Cirlces changes in 22
|
||||
* [#3147](https://github.com/nextcloud/deck/pull/3147) Add card button to the dashboard widget @jakobroehrl
|
||||
* [#2854](https://github.com/nextcloud/deck/pull/2854) Add card button in card overview @jakobroehrl
|
||||
* [#3078](https://github.com/nextcloud/deck/pull/3078) Show on shared boards unassigned cards to all users @jakobroehrl
|
||||
|
||||
### Fixed
|
||||
|
||||
* [#2935](https://github.com/nextcloud/deck/pull/2935) Rich object string parameters for notifications @nickvergessen
|
||||
* [#2950](https://github.com/nextcloud/deck/pull/2950) Remove notification on unshare and add type hints
|
||||
* [#2983](https://github.com/nextcloud/deck/pull/2983) Fix codemirror description width
|
||||
* [#2989](https://github.com/nextcloud/deck/pull/2989) Fix unified comments search with postgres
|
||||
* [#3005](https://github.com/nextcloud/deck/pull/3005) Do not query the lookupserver when looking for sharees
|
||||
* [#3011](https://github.com/nextcloud/deck/pull/3011) L10n: Spelling unification @Valdnet
|
||||
* [#3014](https://github.com/nextcloud/deck/pull/3014) Proper error handling when fetching comments fails
|
||||
* [#3016](https://github.com/nextcloud/deck/pull/3016) Allow searching for filters without a query to match all that have a given filter set
|
||||
* [#3021](https://github.com/nextcloud/deck/pull/3021) L10n: Add word "Card" @Valdnet
|
||||
* [#3025](https://github.com/nextcloud/deck/pull/3025) Show comment counter and highlight if unread comments are available
|
||||
* [#3036](https://github.com/nextcloud/deck/pull/3036) Add link to migration tool for Trello @maxammann
|
||||
* [#3037](https://github.com/nextcloud/deck/pull/3037) Catch any error during circle detail fetching
|
||||
* [#3038](https://github.com/nextcloud/deck/pull/3038) Get attachment from the user node instead of the share source
|
||||
* [#3092](https://github.com/nextcloud/deck/pull/3092) Refactor update to have proper order of optional parameters
|
||||
* [#3113](https://github.com/nextcloud/deck/pull/3113) Use new viewer syntax with destructuring object @azul
|
||||
* [#3142](https://github.com/nextcloud/deck/pull/3142) Always pass user id in share provider
|
||||
* [#3152](https://github.com/nextcloud/deck/pull/3152) Only offer stack creation in emptycontent with proper permissions
|
||||
* [#3165](https://github.com/nextcloud/deck/pull/3165) Always log generic exceptions
|
||||
* [#3168](https://github.com/nextcloud/deck/pull/3168) Reduce duplicate queries when fetching user boards an permissions
|
||||
|
||||
|
||||
|
||||
## 1.4.0 - 2021-04-13
|
||||
|
||||
### Added
|
||||
|
||||
* [#2934](https://github.com/nextcloud/deck/pull/2934) Advanced search queries (see [documentation](https://deck.readthedocs.io/en/latest/User_documentation_en/#search) for more details)
|
||||
* [#2933](https://github.com/nextcloud/deck/pull/2933) Move full text search to proper events
|
||||
|
||||
### Fixed
|
||||
* [#2964](https://github.com/nextcloud/deck/pull/2964) Fix navigating to board details
|
||||
|
||||
* Dependency updates
|
||||
|
||||
## 1.3.0
|
||||
## 1.3.0 - unreleased
|
||||
|
||||
### Added
|
||||
* [#2638](https://github.com/nextcloud/deck/pull/2638) Sharing files to cards
|
||||
@@ -109,15 +23,15 @@ All notable changes to this project will be documented in this file.
|
||||
## 1.3.0-beta2
|
||||
|
||||
### Fixed
|
||||
* [#2700](https://github.com/nextcloud/deck/pull/2700) Attempt to copy file on dropping it to deck
|
||||
* [#2701](https://github.com/nextcloud/deck/pull/2701) Fix uploading files by drag and drop
|
||||
* [#2700](https://github.com/nextcloud/deck/pull/2700) Attempt to copy file on dropping it to deck @juliushaertl
|
||||
* [#2701](https://github.com/nextcloud/deck/pull/2701) Fix uploading files by drag and drop @juliushaertl
|
||||
* [#2707](https://github.com/nextcloud/deck/pull/2707) L10n: Change to a capital letter @Valdnet
|
||||
* [#2712](https://github.com/nextcloud/deck/pull/2712) Docs: Fix table in section "GET /api/v1.0/config" @das-g
|
||||
* [#2716](https://github.com/nextcloud/deck/pull/2716) Remove repair step which is no longer needed as we cleanup properly
|
||||
* [#2716](https://github.com/nextcloud/deck/pull/2716) Remove repair step which is no longer needed as we cleanup properly @juliushaertl
|
||||
* [#2723](https://github.com/nextcloud/deck/pull/2723) Pad random color with leading zeroes @PVince81
|
||||
* [#2729](https://github.com/nextcloud/deck/pull/2729) Remove invalid activity parameters @nickvergessen
|
||||
* [#2750](https://github.com/nextcloud/deck/pull/2750) Fix deck activity emails not being translated @nickvergessen
|
||||
* [#2751](https://github.com/nextcloud/deck/pull/2751) Properly set author for activity events that are triggered by cron
|
||||
* [#2751](https://github.com/nextcloud/deck/pull/2751) Properly set author for activity events that are triggered by cron @juliushaertl
|
||||
|
||||
|
||||
## 1.2.2 - 2020-11-24
|
||||
@@ -226,31 +140,31 @@ All notable changes to this project will be documented in this file.
|
||||
### Fixed
|
||||
|
||||
|
||||
* [#2116](https://github.com/nextcloud/deck/pull/2116) Fix navigation layout issues
|
||||
* [#2118](https://github.com/nextcloud/deck/pull/2118) Use proper parameter when handling attachments
|
||||
* [#2116](https://github.com/nextcloud/deck/pull/2116) Fix navigation layout issues @juliushaertl
|
||||
* [#2118](https://github.com/nextcloud/deck/pull/2118) Use proper parameter when handling attachments @juliushaertl
|
||||
|
||||
## 1.0.4 - 2020-06-26
|
||||
|
||||
### Fixed
|
||||
|
||||
* [#2062](https://github.com/nextcloud/deck/pull/2062) Fix saving card description after toggling checkboxes
|
||||
* [#2062](https://github.com/nextcloud/deck/pull/2062) Fix saving card description after toggling checkboxes @juliushaertl
|
||||
* [#2065](https://github.com/nextcloud/deck/pull/2065) Adding CSS rule for Markdown Blockquotes @reox
|
||||
* [#2059](https://github.com/nextcloud/deck/pull/2059) Fix fetching attachments on card change
|
||||
* [#2060](https://github.com/nextcloud/deck/pull/2060) Use mixing for relative date in card sidebar
|
||||
* [#2059](https://github.com/nextcloud/deck/pull/2059) Fix fetching attachments on card change @juliushaertl
|
||||
* [#2060](https://github.com/nextcloud/deck/pull/2060) Use mixing for relative date in card sidebar @juliushaertl
|
||||
|
||||
|
||||
## 1.0.3 - 2020-06-19
|
||||
|
||||
### Fixed
|
||||
|
||||
* [#2019](https://github.com/nextcloud/deck/pull/2019) Remove old global css rule
|
||||
* [#2020](https://github.com/nextcloud/deck/pull/2020) Fix navigation issue with leftover nodes
|
||||
* [#2021](https://github.com/nextcloud/deck/pull/2021) Fix description issues
|
||||
* [#2022](https://github.com/nextcloud/deck/pull/2022) Fix replyto issues with the comments API
|
||||
* [#2027](https://github.com/nextcloud/deck/pull/2027) Allow to unassign current user from card
|
||||
* [#2019](https://github.com/nextcloud/deck/pull/2019) Remove old global css rule @juliushaertl
|
||||
* [#2020](https://github.com/nextcloud/deck/pull/2020) Fix navigation issue with leftover nodes @juliushaertl
|
||||
* [#2021](https://github.com/nextcloud/deck/pull/2021) Fix description issues @juliushaertl
|
||||
* [#2022](https://github.com/nextcloud/deck/pull/2022) Fix replyto issues with the comments API @juliushaertl
|
||||
* [#2027](https://github.com/nextcloud/deck/pull/2027) Allow to unassign current user from card @juliushaertl
|
||||
* [#2029](https://github.com/nextcloud/deck/pull/2029) Fix wording : stack -> list @cloud2018
|
||||
* [#2032](https://github.com/nextcloud/deck/pull/2032) Force order by id as second sorting key
|
||||
* [#2045](https://github.com/nextcloud/deck/pull/2045) Improve label styling
|
||||
* [#2032](https://github.com/nextcloud/deck/pull/2032) Force order by id as second sorting key @juliushaertl
|
||||
* [#2045](https://github.com/nextcloud/deck/pull/2045) Improve label styling @juliushaertl
|
||||
* [#2010](https://github.com/nextcloud/deck/pull/2010) User documentation fixes @Nyco
|
||||
* [#1998](https://github.com/nextcloud/deck/pull/1998) Add Checklist explaination to the doc @4rnoP
|
||||
|
||||
|
||||
@@ -15,16 +15,11 @@ Deck is a kanban style organization tool aimed at personal planning and project
|
||||
- Keep track of changes in the activity stream
|
||||
- Get your project organized
|
||||
|
||||

|
||||
|
||||
### Mobile apps
|
||||
|
||||
- [Nextcloud Deck app for Android](https://github.com/stefan-niedermann/nextcloud-deck) - It is available in [F-Droid](https://f-droid.org/de/packages/it.niedermann.nextcloud.deck/) and the [Google Play Store](https://play.google.com/store/apps/details?id=it.niedermann.nextcloud.deck.play)
|
||||
- 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)
|
||||
|
||||
### 3rd-Party Integrations
|
||||
|
||||
- [trello-to-deck](https://github.com/maxammann/trello-to-deck) - Migrates cards from Trello
|
||||
- [mail2deck](https://github.com/newroco/mail2deck) - Provides an "email in" solution
|
||||

|
||||
|
||||
## Installation/Update
|
||||
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<info xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://apps.nextcloud.com/schema/apps/info.xsd">
|
||||
<?xml version="1.0"?>
|
||||
<info xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:noNamespaceSchemaLocation="https://apps.nextcloud.com/schema/apps/info.xsd">
|
||||
<id>deck</id>
|
||||
<name>Deck</name>
|
||||
<summary>Personal planning and team project organization</summary>
|
||||
@@ -16,12 +17,12 @@
|
||||
- 🚀 Get your project organized
|
||||
|
||||
</description>
|
||||
<version>1.5.5</version>
|
||||
<version>1.4.0-alpha1</version>
|
||||
<licence>agpl</licence>
|
||||
<author>Julius Härtl</author>
|
||||
<namespace>Deck</namespace>
|
||||
<types>
|
||||
<dav/>
|
||||
<dav />
|
||||
</types>
|
||||
<category>organization</category>
|
||||
<category>office</category>
|
||||
@@ -35,7 +36,7 @@
|
||||
<database min-version="9.4">pgsql</database>
|
||||
<database>sqlite</database>
|
||||
<database min-version="5.5">mysql</database>
|
||||
<nextcloud min-version="22" max-version="22"/>
|
||||
<nextcloud min-version="21" max-version="22" />
|
||||
</dependencies>
|
||||
<background-jobs>
|
||||
<job>OCA\Deck\Cron\DeleteCron</job>
|
||||
|
||||
@@ -141,7 +141,5 @@ return [
|
||||
['name' => 'comments_api#delete', 'url' => '/api/v{apiVersion}/cards/{cardId}/comments/{commentId}', 'verb' => 'DELETE'],
|
||||
|
||||
['name' => 'overview_api#upcomingCards', 'url' => '/api/v{apiVersion}/overview/upcoming', 'verb' => 'GET'],
|
||||
|
||||
['name' => 'search#search', 'url' => '/api/v{apiVersion}/search', 'verb' => 'GET'],
|
||||
]
|
||||
];
|
||||
|
||||
@@ -1,3 +1,11 @@
|
||||
const babelConfig = require('@nextcloud/babel-config')
|
||||
|
||||
module.exports = babelConfig
|
||||
module.exports = {
|
||||
plugins: ['@babel/plugin-syntax-dynamic-import'],
|
||||
presets: [
|
||||
[
|
||||
'@babel/preset-env',
|
||||
{
|
||||
modules: false
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
|
||||
@@ -1,40 +1,34 @@
|
||||
{
|
||||
"name": "nextcloud/deck",
|
||||
"type": "project",
|
||||
"license": "AGPLv3",
|
||||
"authors": [
|
||||
{
|
||||
"name": "Julius Härtl",
|
||||
"email": "jus@bitgrid.net"
|
||||
}
|
||||
],
|
||||
"require": {
|
||||
"cogpowered/finediff": "0.3.*"
|
||||
},
|
||||
"require-dev": {
|
||||
"roave/security-advisories": "dev-master",
|
||||
"christophwurst/nextcloud": "^21@dev",
|
||||
"phpunit/phpunit": "^9",
|
||||
"nextcloud/coding-standard": "^0.5.0",
|
||||
"symfony/event-dispatcher": "^4.0",
|
||||
"vimeo/psalm": "^4.3",
|
||||
"php-parallel-lint/php-parallel-lint": "^1.2"
|
||||
},
|
||||
"config": {
|
||||
"optimize-autoloader": true,
|
||||
"classmap-authoritative": true
|
||||
},
|
||||
"scripts": {
|
||||
"lint": "find . -name \\*.php -not -path './vendor/*' -print0 | xargs -0 -n1 php -l",
|
||||
"cs:check": "php-cs-fixer fix --dry-run --diff",
|
||||
"cs:fix": "php-cs-fixer fix",
|
||||
"name": "nextcloud/deck",
|
||||
"type": "project",
|
||||
"license": "AGPLv3",
|
||||
"authors": [
|
||||
{
|
||||
"name": "Julius Härtl",
|
||||
"email": "jus@bitgrid.net"
|
||||
}
|
||||
],
|
||||
"require": {
|
||||
"cogpowered/finediff": "0.3.*"
|
||||
},
|
||||
"require-dev": {
|
||||
"roave/security-advisories": "dev-master",
|
||||
"christophwurst/nextcloud": "^21@dev",
|
||||
"phpunit/phpunit": "^8",
|
||||
"nextcloud/coding-standard": "^0.5.0",
|
||||
"symfony/event-dispatcher": "^4.0",
|
||||
"vimeo/psalm": "^4.3",
|
||||
"php-parallel-lint/php-parallel-lint": "^1.2"
|
||||
},
|
||||
"config": {
|
||||
"optimize-autoloader": true,
|
||||
"classmap-authoritative": true
|
||||
},
|
||||
"scripts": {
|
||||
"lint": "find . -name \\*.php -not -path './vendor/*' -print0 | xargs -0 -n1 php -l",
|
||||
"cs:check": "php-cs-fixer fix --dry-run --diff",
|
||||
"cs:fix": "php-cs-fixer fix",
|
||||
"psalm": "psalm",
|
||||
"psalm:fix": "psalm --alter --issues=InvalidReturnType,InvalidNullableReturnType,MismatchingDocblockParamType,MismatchingDocblockReturnType,MissingParamType,InvalidFalsableReturnType",
|
||||
"test": [
|
||||
"@test:unit",
|
||||
"@test:integration"
|
||||
],
|
||||
"test:unit": "phpunit -c tests/phpunit.xml",
|
||||
"test:integration": "phpunit -c tests/phpunit.integration.xml && cd tests/integration && ./run.sh"
|
||||
}
|
||||
"psalm:fix": "psalm --alter --issues=InvalidReturnType,InvalidNullableReturnType,MismatchingDocblockParamType,MismatchingDocblockReturnType,MissingParamType,InvalidFalsableReturnType"
|
||||
}
|
||||
}
|
||||
|
||||
1082
composer.lock
generated
1082
composer.lock
generated
File diff suppressed because it is too large
Load Diff
@@ -22,9 +22,7 @@
|
||||
.icon-activity {
|
||||
@include icon-color('activity-dark', 'activity', $color-black);
|
||||
}
|
||||
.icon-comment--unread {
|
||||
@include icon-color('comment', 'actions', $color-primary, 1, true);
|
||||
}
|
||||
|
||||
|
||||
.avatardiv.circles {
|
||||
background: var(--color-primary);
|
||||
|
||||
@@ -2,26 +2,21 @@
|
||||
/* hide stuff */
|
||||
#body-user {
|
||||
#header,
|
||||
.app-navigation,
|
||||
.app-sidebar,
|
||||
.board-header-controls,
|
||||
.board-actions,
|
||||
div#app-navigation,
|
||||
div.board-header-controls,
|
||||
#app-navigation-toggle,
|
||||
#app-navigation-toggle-custom,
|
||||
div#controls.ng-scope div.crumb:not(.title),
|
||||
div#controls.ng-scope div.crumb a.bullet,
|
||||
a.ng-binding + a,
|
||||
div.card.create,
|
||||
.stack__header .action-item,
|
||||
button.card-options {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
#content {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
#app-content {
|
||||
margin: 0 !important;
|
||||
}
|
||||
@@ -80,11 +75,6 @@
|
||||
margin: 2cm;
|
||||
}
|
||||
|
||||
.board {
|
||||
max-height: none !important;
|
||||
overflow: visible !important;
|
||||
}
|
||||
|
||||
div#innerBoard {
|
||||
display:flex;
|
||||
flex-wrap: wrap;
|
||||
|
||||
@@ -959,7 +959,6 @@ For now only `deck_file` is supported as an attachment type.
|
||||
|
||||
### DELETE /boards/{boardId}/stacks/{stackId}/cards/{cardId}/attachments/{attachmentId} - Delete an attachment
|
||||
|
||||
|
||||
#### Request parameters
|
||||
|
||||
| Parameter | Type | Description |
|
||||
|
||||
@@ -69,25 +69,3 @@ The **sharing tab** allows you to add users or even groups to your boards.
|
||||
**Deleted objects** allows you to return previously deleted stacks or cards.
|
||||
The **Timeline** allows you to see everything that happened in your boards. Everything!
|
||||
|
||||
## Search
|
||||
|
||||
Deck provides a global search either through the unified search in the Nextcloud header or with the inline search next to the board controls.
|
||||
This search allows advanced filtering of cards across all board of the logged in user.
|
||||
|
||||
For example the search `project tag:ToDo assigned:alice assigned:bob` will return all cards where the card title or description contains project **and** the tag ToDo is set **and** the user alice is assigned **and** the user bob is assigned.
|
||||
|
||||
### Supported search filters
|
||||
|
||||
| Filter | Operators | Query |
|
||||
| ----------- | ----------------- | ------------------------------------------------------------ |
|
||||
| title | `:` | text token used for a case-insentitive search on the cards title |
|
||||
| description | `:` | text token used for a case-insentitive search on the cards description |
|
||||
| list | `:` | text token used for a case-insentitive search on the cards list name |
|
||||
| tag | `:` | text token used for a case-insentitive search on the assigned tags |
|
||||
| date | `:` | 'overdue', 'today', 'week', 'month', 'none' |
|
||||
| | `>` `<` `>=` `<=` | Compare the card due date to the passed date (see [supported date formats](https://www.php.net/manual/de/datetime.formats.php)) Card due dates are always considered UTC for comparison |
|
||||
| assigned | `:` | id or displayname of a user or group for a search on the assigned users or groups |
|
||||
|
||||
Other text tokens will be used to perform a case-insensitive search on the card title and description
|
||||
|
||||
In addition wuotes can be used to pass a query with spaces, e.g. `"Exact match with spaces"` or `title:"My card"`.
|
||||
|
||||
@@ -24,8 +24,6 @@ OC.L10N.register(
|
||||
"Created" : "Geskep",
|
||||
"Due date" : "Sperdatum",
|
||||
"Select Date" : "Kies Datum",
|
||||
"Today" : "Vandag",
|
||||
"Tomorrow" : "Môre",
|
||||
"Save" : "Stoor",
|
||||
"Reply" : "Antwoord",
|
||||
"Update" : "Werk by",
|
||||
@@ -33,6 +31,8 @@ OC.L10N.register(
|
||||
"seconds ago" : "sekondes gelede",
|
||||
"Shared with you" : "Met u gedeel",
|
||||
"An error occurred" : "'n Fout het voorgekom",
|
||||
"Today" : "Vandag",
|
||||
"Tomorrow" : "Môre",
|
||||
"This week" : "Vandeesweek"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -22,8 +22,6 @@
|
||||
"Created" : "Geskep",
|
||||
"Due date" : "Sperdatum",
|
||||
"Select Date" : "Kies Datum",
|
||||
"Today" : "Vandag",
|
||||
"Tomorrow" : "Môre",
|
||||
"Save" : "Stoor",
|
||||
"Reply" : "Antwoord",
|
||||
"Update" : "Werk by",
|
||||
@@ -31,6 +29,8 @@
|
||||
"seconds ago" : "sekondes gelede",
|
||||
"Shared with you" : "Met u gedeel",
|
||||
"An error occurred" : "'n Fout het voorgekom",
|
||||
"Today" : "Vandag",
|
||||
"Tomorrow" : "Môre",
|
||||
"This week" : "Vandeesweek"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
189
l10n/ar.js
189
l10n/ar.js
@@ -9,149 +9,66 @@ OC.L10N.register(
|
||||
"{user} has restored the board {board}" : "{user} قام باسترجاع اللوح {board}",
|
||||
"You have shared the board {board} with {acl}" : "قمت بمشاركة اللوح {board} مع {acl}",
|
||||
"{user} has shared the board {board} with {acl}" : "{user} قام بمشاركة اللوح {board} مع {acl}",
|
||||
"You have removed {acl} from the board {board}" : "قمت بإزالة {acl} من اللوح {board}",
|
||||
"You have removed {acl} from the board {board}" : "قمت بازالة {acl} من اللوح {board}",
|
||||
"{user} has removed {acl} from the board {board}" : "{user} قام بازالة {acl} من اللوح {board}",
|
||||
"You have renamed the board {before} to {board}" : "قمت بإعادة تسمية اللوح من {before} الى {board}",
|
||||
"{user} has renamed the board {before} to {board}" : "{user} قام بإعادة تسمية اللوح من {before} الى {board}",
|
||||
"You have renamed the board {before} to {board}" : "قمت باعادة تسمية اللوح من {before} الى {board}",
|
||||
"{user} has renamed the board {before} to {board}" : "{user} قام باعادة تسمية اللوح من {before} الى {board}",
|
||||
"You have archived the board {board}" : "لقد ارشفت اللوح {board}",
|
||||
"{user} has archived the board {before}" : "{user} قام بأرشفة اللوح {before}",
|
||||
"You have unarchived the board {board}" : "قمت بالغاء ارشفة اللوح {board}",
|
||||
"{user} has unarchived the board {before}" : "{user} قام بالغاء ارشفة اللوح {before}",
|
||||
"You have created a new list {stack} on board {board}" : "لقد قمت بانشاء قائمة جديدة {stack} على اللوح {board}",
|
||||
"{user} has created a new list {stack} on board {board}" : "{user} قام بانشاء قائمة جديدة {stack} على اللوح {board}",
|
||||
"You have renamed list {before} to {stack} on board {board}" : "قمت باعادة تسمية القائمة من {before} إلى {stack} على اللوح {board}",
|
||||
"{user} has renamed list {before} to {stack} on board {board}" : "{user} قام باعادة تسمية القائمة {before} إلى {stack} على اللوح {board}",
|
||||
"You have deleted list {stack} on board {board}" : "قمت بمسح القائمة {stack} على اللوح {board}",
|
||||
"{user} has deleted list {stack} on board {board}" : "{user} قام بمسح القائمة {stack} على اللوح {board}",
|
||||
"You have created card {card} in list {stack} on board {board}" : "لقد قمت بانشاء بطاقة {card} في القائمة {stack} على اللوح {board}",
|
||||
"{user} has created card {card} in list {stack} on board {board}" : "{user} قام بانشاء بطاقة {card} في القائمة {stack} على اللوح {board}",
|
||||
"You have deleted card {card} in list {stack} on board {board}" : "قمت بمسح بطاقة {card} في القائمة {stack} على اللوح {board}",
|
||||
"{user} has deleted card {card} in list {stack} on board {board}" : "{user} قام بحذف بطاقة {card} في القائمة {stack} على اللوح {board}",
|
||||
"You have renamed the card {before} to {card}" : "قمت بإعادة تسمية اللوح من {before} إلى {card}",
|
||||
"{user} has renamed the card {before} to {card}" : "{user} قام بإعادة تسمية اللوح من {before} إلى {card}",
|
||||
"You have added a description to card {card} in list {stack} on board {board}" : "قمت بإضافة وصف إلى البطاقة {card} في القائمة {stack} على اللوح {board}",
|
||||
"{user} has added a description to card {card} in list {stack} on board {board}" : "{user} قام بإضافة وصف إلى البطاقة {card} في القائمة {stack} على اللوح {board}",
|
||||
"You have updated the description of card {card} in list {stack} on board {board}" : "قمت بتحديث الوصف إلى البطاقة {card} في القائمة {stack} على اللوح {board}",
|
||||
"{user} has updated the description of the card {card} in list {stack} on board {board}" : "{user} قام بتحديث الوصف إلى البطاقة {card} في القائمة {stack} على اللوح {board}",
|
||||
"You have archived card {card} in list {stack} on board {board}" : "لقد قمت بأرشفة بطاقة {card} في القائمة {stack} على اللوح {board}",
|
||||
"{user} has archived card {card} in list {stack} on board {board}" : "{user} قام بأرشفة بطاقة {card} في القائمة {stack} على اللوح {board}",
|
||||
"You have unarchived card {card} in list {stack} on board {board}" : "لديك بطاقة غير مؤرشفة {card} في القائمة {stack} على اللوح {board}",
|
||||
"{user} has unarchived card {card} in list {stack} on board {board}" : "{user} لديه بطاقة غير مؤرشفة {card} في القائمة {stack} على اللوح {board}",
|
||||
"You have removed the due date of card {card}" : "قمت بإزالة التاريخ المحدد من البطاقة {card}",
|
||||
"{user} has removed the due date of card {card}" : "{user} قام بإزالة التاريخ المحدد من البطاقة {card}",
|
||||
"You have set the due date of card {card} to {after}" : "قمت بتعيين التاريخ المحدد للبطاقة {card} إلى {after}",
|
||||
"{user} has set the due date of card {card} to {after}" : "{user} قام بتعيين التاريخ المحدد للبطاقة {card} إلى {after}",
|
||||
"You have updated the due date of card {card} to {after}" : "قمت بتحديث التاريخ المحدد للبطاقة {card} إلى {after}",
|
||||
"{user} has updated the due date of card {card} to {after}" : "{user} قام بتحديث التاريخ المحدد للبطاقة {card} إلى {after}",
|
||||
"You have added the tag {label} to card {card} in list {stack} on board {board}" : "قمت بإضافة وسم {label} إلى البطاقة {card} في القائمة {stack} على اللوح {board}",
|
||||
"{user} has added the tag {label} to card {card} in list {stack} on board {board}" : "{user} قام بإضافة وسم {label} إلى البطاقة {card} في القائمة {stack} على اللوح {board}",
|
||||
"You have removed the tag {label} from card {card} in list {stack} on board {board}" : "قمت بإزالة وسم {label} من البطاقة {card} في القائمة {stack} على اللوح {board}",
|
||||
"{user} has removed the tag {label} from card {card} in list {stack} on board {board}" : "{user} قام بإزالة وسم {label} من البطاقة {card} في القائمة {stack} على اللوح {board}",
|
||||
"You have assigned {assigneduser} to card {card} on board {board}" : "قمت بتكليف {assigneduser} في بطاقة {card} على اللوح {board}",
|
||||
"{user} has assigned {assigneduser} to card {card} on board {board}" : "{user} قام بتكليف {assigneduser} في بطاقة {card} على اللوح {board}",
|
||||
"You have unassigned {assigneduser} from card {card} on board {board}" : "لقد إلغيت تكليف {assigneduser} من البطاقة {card} على اللوح {board}",
|
||||
"{user} has unassigned {assigneduser} from card {card} on board {board}" : "{user} الغى تكليف {assigneduser} من البطاقة {card} على اللوح {board}",
|
||||
"You have moved the card {card} from list {stackBefore} to {stack}" : " قمت بنقل البطاقة {card} من القائمة {stackBefore} إلى {stack}",
|
||||
"{user} has moved the card {card} from list {stackBefore} to {stack}" : "{user} قام بنقل البطاقة {card} من القائمة {stackBefore} إلى {stack}",
|
||||
"You have added the attachment {attachment} to card {card}" : "قمت بإضافة المرفق {attachment} إلى البطاقة {card}",
|
||||
"{user} has added the attachment {attachment} to card {card}" : "{user} قام بإضافة المرفق {attachment} إلى البطاقة {card}",
|
||||
"You have updated the attachment {attachment} on card {card}" : "قمت بتحديث المرفق {attachment} على البطاقة {card}",
|
||||
"{user} has updated the attachment {attachment} on card {card}" : "{user} قام بتحديث المرفق {attachment} على البطاقة {card}",
|
||||
"You have deleted the attachment {attachment} from card {card}" : "قمت بحذف المرفق {attachment} من البطاقة {card}",
|
||||
"{user} has deleted the attachment {attachment} from card {card}" : "{user} قام بحذف المرفق {attachment} من البطاقة {card}",
|
||||
"You have restored the attachment {attachment} to card {card}" : "قمت باسترجاع المرفق {attachment} إلى البطاقة {card}",
|
||||
"{user} has restored the attachment {attachment} to card {card}" : "{user} قام باسترجاع المرفق {attachment} إلى البطاقة {card}",
|
||||
"You have commented on card {card}" : "لقد علقت على البطاقة {بطاقة}",
|
||||
"{user} has commented on card {card}" : "{مستخدم} علق على بطاقة {بطاقة}",
|
||||
"A <strong>card description</strong> inside the Deck app has been changed" : "<strong>وصف البطاقة</strong>داخل تطبيق Deck قد تغيرت.",
|
||||
"Deck" : "Deck",
|
||||
"Changes in the <strong>Deck app</strong>" : "تغييرات في <strong>تطبيق Deck</strong> ",
|
||||
"A <strong>comment</strong> was created on a card" : "<strong>تعليق</strong> تم إنشاؤه على بطاقة",
|
||||
"Upcoming cards" : "البطاقات القادمة",
|
||||
"Personal" : "شخصي",
|
||||
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "البطاقة \"%s\" على \"%s\" كُلفت بها من قبل %s.",
|
||||
"{user} has assigned the card {deck-card} on {deck-board} to you." : "{user} قام بتكليف البطاقة {deck-board} على {deck-board} لك",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "وصلت بطاقة \"%s\" على %s\" الموعد المحدد ",
|
||||
"The card {deck-card} on {deck-board} has reached its due date." : "تجاوزت البطاقة {deck-card} على {deck-board} التاريخ المحدد.",
|
||||
"%s has mentioned you in a comment on \"%s\"." : "%s أشار إليك في تعليق على \"%s\".",
|
||||
"{user} has mentioned you in a comment on {deck-card}." : "{user} أشار إليك في تعليق على {deck-card}",
|
||||
"The board \"%s\" has been shared with you by %s." : "تمت مشاركة اللوح \"%s\" معك من قبل %s.",
|
||||
"{user} has shared {deck-board} with you." : "{user} قام بمشاركة {deck-board} معك.",
|
||||
"Card comments" : "تعليقات البطاقة ",
|
||||
"%s on %s" : "%s على %s",
|
||||
"No data was provided to create an attachment." : "لا بيانات تم تقديمها لانشاء مرفق",
|
||||
"Finished" : "اكتمل",
|
||||
"To review" : "لإعادة المراجعة",
|
||||
"Action needed" : "يحتاج إلى إجراء",
|
||||
"Finished" : "إكتمل",
|
||||
"To review" : "لاعادة المراجعة",
|
||||
"Action needed" : "يحتاج الى اجراء",
|
||||
"Later" : "لاحقا",
|
||||
"copy" : "نسخ",
|
||||
"copy" : "أنسخ",
|
||||
"To do" : "لفعله",
|
||||
"Doing" : "تحت العمل",
|
||||
"Done" : "أُنجز",
|
||||
"Example Task 3" : "مثال المهمة 3",
|
||||
"Example Task 2" : "مثال المهمة 2",
|
||||
"Example Task 1" : "مثال المهمة 1",
|
||||
"The file was uploaded" : "تم رفع الملف",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "حجم الملف المرفوع قد تجاوز upload_max_filesize الموجودة في ملف php.ini ",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "حجم الملف الذي تريد رفعه أعلى من الحد المسموح به في واجهة ال HTML.",
|
||||
"The file was uploaded" : "الملف تم رفعه",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "حجم الملف الذي تريد ترفيعه أعلى مما MAX_FILE_SIZE يسمح به في واجهة ال HTML.",
|
||||
"The file was only partially uploaded" : "الملف قد رُفع جزءا منه فقط",
|
||||
"No file was uploaded" : "لم يتم رفع أي ملف",
|
||||
"Missing a temporary folder" : "المجلد المؤقت غير موجود",
|
||||
"Could not write file to disk" : "لم يستطع كتابة ملف للقرص",
|
||||
"A PHP extension stopped the file upload" : "إضافة البي اچ بي PHP أوقفت رفع الملف",
|
||||
"No file uploaded or file size exceeds maximum of %s" : "لم يتم تحميل أي ملف أو أن يتجاوز حجم الملف الحد الأقصى %s",
|
||||
"Card not found" : "لم يتم العثور على البطاقة ",
|
||||
"Path is already shared with this card" : "تم مشاركة المسار بالفعل مع هذه البطاقة ",
|
||||
"Invalid date, date format must be YYYY-MM-DD" : "تاريخ غير صحيح, يجب أن يكون تنسيق التاريخ YYYY-MM-DD",
|
||||
"A PHP extension stopped the file upload" : "اضافة البي اچ بي PHP اوقفت رفع الملف",
|
||||
"Personal planning and team project organization" : "التخطيط الشخصي و تنظيم مشروع الفريق",
|
||||
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "دك (Deck) هو أداة تنظيم باسلوب كانبان (kanban) تهدف إلى التخطيط الشخصي وتنظيم المشروع للفرق مع نيكست كلاود (Nextcloud).\n- 📥 إضافة مهامك إلى البطاقات وترتيبها\n- 📄 كتابة ملاحظات إضافية باستخدام مارك داون (markdown)\n- 🔖 تعيين تسميات لتنظيم أفضل\n- 👥 شارك مع فريقك أو أصدقائك أو عائلتك\n- 📎 إرفاق الملفات وتضمينها بالوصف المستخدم فيه مارك داون (markdown)\n- 💬 ناقش مع فريقك باستخدام التعليقات\n- ⚡ تتبع التغييرات في تيار النشاط\n- 🚀 اجعل مشروعك منظماً",
|
||||
"Card details" : "تفاصيل البطاقة",
|
||||
"Add board" : "إضافة لوح",
|
||||
"Select the board to link to a project" : "تحديد اللوح لربطه بمشروع",
|
||||
"Search by board title" : "بحث بواسطة عنوان اللوح",
|
||||
"Select board" : "حدد لوح",
|
||||
"Create a new card" : "أنشى بطاقة جديدة ",
|
||||
"Select a board" : "حدد لوح",
|
||||
"Select a list" : "اختر قائمة ",
|
||||
"Card title" : "عنوان البطاقة ",
|
||||
"Cancel" : "إلغاء",
|
||||
"Creating the new card …" : "أنشى البطاقة الجديدة ",
|
||||
"Card \"{card}\" was added to \"{board}\"" : "\"{بطاقة}\" تمت إضافتها في \"{اللوح}\"",
|
||||
"Open card" : "فتح البطاقة ",
|
||||
"Close" : "إغلاق",
|
||||
"Create card" : "أنشى بطاقة ",
|
||||
"Select a card" : "حدد بطاقة",
|
||||
"Select the card to link to a project" : "حدد البطاقة لربطها بمشروع",
|
||||
"Link to card" : "اربط بطاقة",
|
||||
"File already exists" : "الملف موجود مسبقاً",
|
||||
"A file with the name {filename} already exists." : "ملف باسم {اسم الملف} موجود مسبقًا ",
|
||||
"Do you want to overwrite it?" : "هل تريد تجاوزه؟",
|
||||
"Overwrite file" : "تجاوز ملف",
|
||||
"Keep existing file" : "ابقي الملف الموجود",
|
||||
"This board is read only" : "هذا اللوح بوضع القراءة فقط",
|
||||
"Drop your files to upload" : "افلت الملفات لرفعها",
|
||||
"Add card" : "إضافة بطاقة",
|
||||
"Archived cards" : "البطاقات المؤرشفة",
|
||||
"Add list" : "إضافة قائمة",
|
||||
"List name" : "قامة اسماء",
|
||||
"Apply filter" : "تطبيق التصفية",
|
||||
"Filter by tag" : "تصفية بواسطة الوسم",
|
||||
"Filter by assigned user" : "تصفية بواسطة المستخدم الموكل اليه",
|
||||
"Unassigned" : "غير معيين ",
|
||||
"Filter by due date" : "تصفية بواسطة تاريخ الإنجاز",
|
||||
"Filter by due date" : "تصفية بواسطة تأريخ الانجاز",
|
||||
"Overdue" : "تأخر",
|
||||
"Next 24 hours" : "ال 24 ساعة القادمة",
|
||||
"Next 7 days" : "ال 7 أيام القادمة",
|
||||
"Next 7 days" : "ال 7 ايام القادمة",
|
||||
"Next 30 days" : "ال 30 يوم القادمة",
|
||||
"No due date" : "لا تاريخ إنجاز",
|
||||
"No due date" : "لا تأريخ انجاز",
|
||||
"Clear filter" : "ازل التصفية",
|
||||
"Hide archived cards" : "إخفاء البطاقات المؤرشفة ",
|
||||
"Show archived cards" : "اظهر البطاقات المؤرشفة",
|
||||
"Toggle compact mode" : "تبديل النمط المضغوط",
|
||||
"Details" : "التفاصيل",
|
||||
"Loading board" : "جارِ تحميل اللوح..",
|
||||
"No lists available" : "لا يوجد قائمة متاحه ",
|
||||
"Create a new list to add cards to this board" : "إنشاء قائمة جديدة لإضافة البطاقات على هذا اللوح",
|
||||
"Loading board" : "اللوح يحمل..",
|
||||
"Board not found" : "اللوح غير موجود",
|
||||
"Sharing" : "المشاركة",
|
||||
"Tags" : "الوسوم",
|
||||
@@ -160,46 +77,30 @@ OC.L10N.register(
|
||||
"Deleted lists" : "القوائم المحذوفة",
|
||||
"Undo" : "تراجع",
|
||||
"Deleted cards" : "البطاقات المحذوفة",
|
||||
"Share board with a user, group or circle …" : "مشاركة اللوح مع مستخدم،مجموعة أو دائرة ..",
|
||||
"Searching for users, groups and circles …" : "ابحث عن أعضاء، مجموعات أو حلقات ...",
|
||||
"No participants found" : "لم يتم العثور على مشاركين",
|
||||
"Share board with a user, group or circle …" : "مشاركة اللوح مع مستخدم،مجموعة او دائرة ..",
|
||||
"Searching for users, groups and circles …" : "ابحث عن اعضاء، مجموعات أو حلقات ...",
|
||||
"Board owner" : "منشئ اللوح",
|
||||
"(Group)" : "(مجموعة)",
|
||||
"(Circle)" : "(دائرة)",
|
||||
"Can edit" : "يمكن تعديله",
|
||||
"Can share" : "يمكن مشاركته",
|
||||
"Can manage" : "يمكن إدارته",
|
||||
"Can manage" : "يمكن ادارته",
|
||||
"Delete" : "حذف ",
|
||||
"Failed to create share with {displayName}" : "فشل في إنشاء المشاركة مع {displayName}",
|
||||
"Add a new list" : "اضف قائمة جديدة",
|
||||
"Archive all cards" : "أرشفة جميع البطاقات ",
|
||||
"Delete list" : "حذف القائمة",
|
||||
"Archive all cards in this list" : "أرشفة جميع البطاقات في القائمة ",
|
||||
"Add card" : "إضافة بطاقة",
|
||||
"Add a new card" : "إضافة بطاقة جديدة",
|
||||
"Card name" : "اسم البطاقة ",
|
||||
"List deleted" : "القائمة حٌذفت ",
|
||||
"Edit" : "تعديل",
|
||||
"Add a new tag" : "إضافة وسم جديد",
|
||||
"title and color value must be provided" : "العنوان و قيمة اللون يجب تقديمها ",
|
||||
"Board name" : "اسم اللوح",
|
||||
"Members" : "الاعضاء",
|
||||
"Upload new files" : "رفع ملفات جديدة",
|
||||
"Share from Files" : "مشاركة من الملفات",
|
||||
"Add this attachment" : "إضافة هذا المرفق",
|
||||
"Show in Files" : "عرض في الملفات ",
|
||||
"Delete Attachment" : "مسح المرفق",
|
||||
"Restore Attachment" : "إستعادة المرفق",
|
||||
"File to share" : "ملف للمشاركة",
|
||||
"Invalid path selected" : "تم تحديد مسار غير صحيح",
|
||||
"Open in sidebar view" : "فتح في الشريط الجانبي ",
|
||||
"Open in bigger view" : "فتح في نافذة أكبر ",
|
||||
"Restore Attachment" : "استعادة المرفق",
|
||||
"Attachments" : "المرفقات",
|
||||
"Comments" : "تعليقات",
|
||||
"Modified" : "عُدل",
|
||||
"Created" : "أُنشئ",
|
||||
"The title cannot be empty." : "لا يمكن ترك العنوان فارغًا.",
|
||||
"No comments yet. Begin the discussion!" : "لا يوجد تعليقات بعد, ابدأ النقاش الآن!",
|
||||
"Failed to load comments" : "فشل في تحميل التعليقات ",
|
||||
"Assign a tag to this card…" : "انسب وسم الى هذه البطاقة..",
|
||||
"Assign to users" : "انسب الى المتسخدمين",
|
||||
"Assign to users/groups/circles" : "انسب الى المستخدمين،المجموعات،الدوائر",
|
||||
@@ -207,78 +108,40 @@ OC.L10N.register(
|
||||
"Due date" : "تاريخ الانجاز",
|
||||
"Set a due date" : "تعيين تاريخ الانجاز",
|
||||
"Remove due date" : "ازالة تاريخ الانجاز",
|
||||
"Select Date" : "اختر التاريخ ",
|
||||
"Today" : "اليوم",
|
||||
"Tomorrow" : "غدا",
|
||||
"Save" : "حفظ",
|
||||
"The comment cannot be empty." : "التعليق لايمكن ان يكون فارغا.",
|
||||
"The comment cannot be longer than 1000 characters." : "التعليق لا يمكن ان يكون اطول من 1000 حرف.",
|
||||
"In reply to" : "يقوم بالرد على",
|
||||
"Cancel reply" : "إلغاء الرد",
|
||||
"Reply" : "رد",
|
||||
"Update" : "تحديث",
|
||||
"Description" : "الوصف",
|
||||
"(Unsaved)" : "(غير محفوظ)",
|
||||
"(Saving…)" : "(يُحفظ..)",
|
||||
"Formatting help" : "مساعدة التنسيق",
|
||||
"Edit description" : "تعديل الوصف",
|
||||
"View description" : "إظهار الوصف",
|
||||
"Add Attachment" : "أضف ملحق",
|
||||
"Write a description …" : "كتابة وصف...",
|
||||
"Choose attachment" : "اختيار مرفق",
|
||||
"(group)" : "(مجموعة)",
|
||||
"{count} comments, {unread} unread" : "{عدد} التعليقات، {غير مقروءة} غير مقروءة",
|
||||
"(circle)" : "(دائرة)",
|
||||
"Assign to me" : "ينسب لي",
|
||||
"Unassign myself" : "إلغاء تعييني ",
|
||||
"Move card" : "حرك البطاقة",
|
||||
"Unarchive card" : "إلغاء أرشفة البطاقة ",
|
||||
"Archive card" : "أرشفة البطاقة",
|
||||
"Delete card" : "حذف البطاقة",
|
||||
"Move card to another board" : "حرك البطاقة الى لوح اخر",
|
||||
"Card deleted" : "البطاقة حٌذفت ",
|
||||
"seconds ago" : "ثوانٍ مضت",
|
||||
"All boards" : "جميع الالواح",
|
||||
"Archived boards" : "الالواح المؤرشفة",
|
||||
"Shared with you" : "تم مشاركتها معك",
|
||||
"Use bigger card view" : "استخدام بطاقة عرض أكبر ",
|
||||
"Show boards in calendar/tasks" : "إظهار اللوح في التقويم/المهام",
|
||||
"Limit deck usage of groups" : "تقييد استخدام Deck للمجموعات",
|
||||
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "سيؤدي تقييد Deck إلى منع المستخدمين الذين ليسوا جزءًا من تلك المجموعات من إنشاء لوحاتهم الخاصة. سيظل المستخدمون قادرين على العمل على اللوحات التي تمت مشاركتها معهم.",
|
||||
"Shared with you" : "شورك معك",
|
||||
"Limit deck usage of groups" : "استخدام دك Deck محدود للمجاميع",
|
||||
"Board details" : "تفاصيل لوح",
|
||||
"Edit board" : "تعديل اللوح",
|
||||
"Clone board" : "استنسخ اللوح",
|
||||
"Unarchive board" : "إلغاء أرشفة اللوح",
|
||||
"Archive board" : "أرشفة اللوح ",
|
||||
"Turn on due date reminders" : "تفعيل التذكيرات للموعد المحدد ",
|
||||
"Turn off due date reminders" : "إيقاف تشغيل التذكيرات للموعد المحددد",
|
||||
"Due date reminders" : "تذكيرات الموعد المحدد ",
|
||||
"All cards" : "جميع البطاقات ",
|
||||
"Assigned cards" : "البطاقات المخصصة",
|
||||
"No notifications" : "لا توجد إشعارات",
|
||||
"Delete board" : "مسح اللوح",
|
||||
"Board {0} deleted" : "اللوح {0} تم مسحه",
|
||||
"Only assigned cards" : "البطاقات المخصصة فقط",
|
||||
"No reminder" : "لا يوجد تذكير ",
|
||||
"An error occurred" : "حدث خطأ",
|
||||
"An error occurred" : "طرأ هناك خطأ",
|
||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "هل انت متأكد تريد مسح اللوح {title}؟ هذا سوف يمسح جميع بيانات هذا اللوح.",
|
||||
"Delete the board?" : "مسح اللوح؟",
|
||||
"Loading filtered view" : "جارِ تحميل التصفية ",
|
||||
"Today" : "اليوم",
|
||||
"Tomorrow" : "غدا",
|
||||
"This week" : "هذا الأسبوع",
|
||||
"No due" : "غير محدد",
|
||||
"Search for {searchQuery} in all boards" : "البحث عن {searchQuery} في جميع اللوح",
|
||||
"No results found" : "لا يتم العثور على أي نتائج ",
|
||||
"No upcoming cards" : "لا يوجد بطاقات قادمة ",
|
||||
"upcoming cards" : "البطاقات القادمة",
|
||||
"Link to a board" : "ربط بلوح",
|
||||
"Link to a card" : "ربط ببطاقة",
|
||||
"Create a card" : "أنشى بطاقة ",
|
||||
"Message from {author} in {conversationName}" : "رسالة من {author} في {conversationName}",
|
||||
"Something went wrong" : "حدث خطأ ما",
|
||||
"Failed to upload {name}" : "فشل في رفع {اسم}",
|
||||
"Maximum file size of {size} exceeded" : " تجاوز الملف الحد الاقصى {size} بالحجم المسموح ",
|
||||
"Error creating the share" : "خطأ في إنشاء المشاركة",
|
||||
"Share with a Deck card" : "مشاركة مع بطاقة Deck",
|
||||
"Share {file} with a Deck card" : "مشاركة الملف {file} مع بطاقة Deck",
|
||||
"Share" : "مشاركة "
|
||||
"Something went wrong" : "شيئا ما خاطئ"
|
||||
},
|
||||
"nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;");
|
||||
|
||||
189
l10n/ar.json
189
l10n/ar.json
@@ -7,149 +7,66 @@
|
||||
"{user} has restored the board {board}" : "{user} قام باسترجاع اللوح {board}",
|
||||
"You have shared the board {board} with {acl}" : "قمت بمشاركة اللوح {board} مع {acl}",
|
||||
"{user} has shared the board {board} with {acl}" : "{user} قام بمشاركة اللوح {board} مع {acl}",
|
||||
"You have removed {acl} from the board {board}" : "قمت بإزالة {acl} من اللوح {board}",
|
||||
"You have removed {acl} from the board {board}" : "قمت بازالة {acl} من اللوح {board}",
|
||||
"{user} has removed {acl} from the board {board}" : "{user} قام بازالة {acl} من اللوح {board}",
|
||||
"You have renamed the board {before} to {board}" : "قمت بإعادة تسمية اللوح من {before} الى {board}",
|
||||
"{user} has renamed the board {before} to {board}" : "{user} قام بإعادة تسمية اللوح من {before} الى {board}",
|
||||
"You have renamed the board {before} to {board}" : "قمت باعادة تسمية اللوح من {before} الى {board}",
|
||||
"{user} has renamed the board {before} to {board}" : "{user} قام باعادة تسمية اللوح من {before} الى {board}",
|
||||
"You have archived the board {board}" : "لقد ارشفت اللوح {board}",
|
||||
"{user} has archived the board {before}" : "{user} قام بأرشفة اللوح {before}",
|
||||
"You have unarchived the board {board}" : "قمت بالغاء ارشفة اللوح {board}",
|
||||
"{user} has unarchived the board {before}" : "{user} قام بالغاء ارشفة اللوح {before}",
|
||||
"You have created a new list {stack} on board {board}" : "لقد قمت بانشاء قائمة جديدة {stack} على اللوح {board}",
|
||||
"{user} has created a new list {stack} on board {board}" : "{user} قام بانشاء قائمة جديدة {stack} على اللوح {board}",
|
||||
"You have renamed list {before} to {stack} on board {board}" : "قمت باعادة تسمية القائمة من {before} إلى {stack} على اللوح {board}",
|
||||
"{user} has renamed list {before} to {stack} on board {board}" : "{user} قام باعادة تسمية القائمة {before} إلى {stack} على اللوح {board}",
|
||||
"You have deleted list {stack} on board {board}" : "قمت بمسح القائمة {stack} على اللوح {board}",
|
||||
"{user} has deleted list {stack} on board {board}" : "{user} قام بمسح القائمة {stack} على اللوح {board}",
|
||||
"You have created card {card} in list {stack} on board {board}" : "لقد قمت بانشاء بطاقة {card} في القائمة {stack} على اللوح {board}",
|
||||
"{user} has created card {card} in list {stack} on board {board}" : "{user} قام بانشاء بطاقة {card} في القائمة {stack} على اللوح {board}",
|
||||
"You have deleted card {card} in list {stack} on board {board}" : "قمت بمسح بطاقة {card} في القائمة {stack} على اللوح {board}",
|
||||
"{user} has deleted card {card} in list {stack} on board {board}" : "{user} قام بحذف بطاقة {card} في القائمة {stack} على اللوح {board}",
|
||||
"You have renamed the card {before} to {card}" : "قمت بإعادة تسمية اللوح من {before} إلى {card}",
|
||||
"{user} has renamed the card {before} to {card}" : "{user} قام بإعادة تسمية اللوح من {before} إلى {card}",
|
||||
"You have added a description to card {card} in list {stack} on board {board}" : "قمت بإضافة وصف إلى البطاقة {card} في القائمة {stack} على اللوح {board}",
|
||||
"{user} has added a description to card {card} in list {stack} on board {board}" : "{user} قام بإضافة وصف إلى البطاقة {card} في القائمة {stack} على اللوح {board}",
|
||||
"You have updated the description of card {card} in list {stack} on board {board}" : "قمت بتحديث الوصف إلى البطاقة {card} في القائمة {stack} على اللوح {board}",
|
||||
"{user} has updated the description of the card {card} in list {stack} on board {board}" : "{user} قام بتحديث الوصف إلى البطاقة {card} في القائمة {stack} على اللوح {board}",
|
||||
"You have archived card {card} in list {stack} on board {board}" : "لقد قمت بأرشفة بطاقة {card} في القائمة {stack} على اللوح {board}",
|
||||
"{user} has archived card {card} in list {stack} on board {board}" : "{user} قام بأرشفة بطاقة {card} في القائمة {stack} على اللوح {board}",
|
||||
"You have unarchived card {card} in list {stack} on board {board}" : "لديك بطاقة غير مؤرشفة {card} في القائمة {stack} على اللوح {board}",
|
||||
"{user} has unarchived card {card} in list {stack} on board {board}" : "{user} لديه بطاقة غير مؤرشفة {card} في القائمة {stack} على اللوح {board}",
|
||||
"You have removed the due date of card {card}" : "قمت بإزالة التاريخ المحدد من البطاقة {card}",
|
||||
"{user} has removed the due date of card {card}" : "{user} قام بإزالة التاريخ المحدد من البطاقة {card}",
|
||||
"You have set the due date of card {card} to {after}" : "قمت بتعيين التاريخ المحدد للبطاقة {card} إلى {after}",
|
||||
"{user} has set the due date of card {card} to {after}" : "{user} قام بتعيين التاريخ المحدد للبطاقة {card} إلى {after}",
|
||||
"You have updated the due date of card {card} to {after}" : "قمت بتحديث التاريخ المحدد للبطاقة {card} إلى {after}",
|
||||
"{user} has updated the due date of card {card} to {after}" : "{user} قام بتحديث التاريخ المحدد للبطاقة {card} إلى {after}",
|
||||
"You have added the tag {label} to card {card} in list {stack} on board {board}" : "قمت بإضافة وسم {label} إلى البطاقة {card} في القائمة {stack} على اللوح {board}",
|
||||
"{user} has added the tag {label} to card {card} in list {stack} on board {board}" : "{user} قام بإضافة وسم {label} إلى البطاقة {card} في القائمة {stack} على اللوح {board}",
|
||||
"You have removed the tag {label} from card {card} in list {stack} on board {board}" : "قمت بإزالة وسم {label} من البطاقة {card} في القائمة {stack} على اللوح {board}",
|
||||
"{user} has removed the tag {label} from card {card} in list {stack} on board {board}" : "{user} قام بإزالة وسم {label} من البطاقة {card} في القائمة {stack} على اللوح {board}",
|
||||
"You have assigned {assigneduser} to card {card} on board {board}" : "قمت بتكليف {assigneduser} في بطاقة {card} على اللوح {board}",
|
||||
"{user} has assigned {assigneduser} to card {card} on board {board}" : "{user} قام بتكليف {assigneduser} في بطاقة {card} على اللوح {board}",
|
||||
"You have unassigned {assigneduser} from card {card} on board {board}" : "لقد إلغيت تكليف {assigneduser} من البطاقة {card} على اللوح {board}",
|
||||
"{user} has unassigned {assigneduser} from card {card} on board {board}" : "{user} الغى تكليف {assigneduser} من البطاقة {card} على اللوح {board}",
|
||||
"You have moved the card {card} from list {stackBefore} to {stack}" : " قمت بنقل البطاقة {card} من القائمة {stackBefore} إلى {stack}",
|
||||
"{user} has moved the card {card} from list {stackBefore} to {stack}" : "{user} قام بنقل البطاقة {card} من القائمة {stackBefore} إلى {stack}",
|
||||
"You have added the attachment {attachment} to card {card}" : "قمت بإضافة المرفق {attachment} إلى البطاقة {card}",
|
||||
"{user} has added the attachment {attachment} to card {card}" : "{user} قام بإضافة المرفق {attachment} إلى البطاقة {card}",
|
||||
"You have updated the attachment {attachment} on card {card}" : "قمت بتحديث المرفق {attachment} على البطاقة {card}",
|
||||
"{user} has updated the attachment {attachment} on card {card}" : "{user} قام بتحديث المرفق {attachment} على البطاقة {card}",
|
||||
"You have deleted the attachment {attachment} from card {card}" : "قمت بحذف المرفق {attachment} من البطاقة {card}",
|
||||
"{user} has deleted the attachment {attachment} from card {card}" : "{user} قام بحذف المرفق {attachment} من البطاقة {card}",
|
||||
"You have restored the attachment {attachment} to card {card}" : "قمت باسترجاع المرفق {attachment} إلى البطاقة {card}",
|
||||
"{user} has restored the attachment {attachment} to card {card}" : "{user} قام باسترجاع المرفق {attachment} إلى البطاقة {card}",
|
||||
"You have commented on card {card}" : "لقد علقت على البطاقة {بطاقة}",
|
||||
"{user} has commented on card {card}" : "{مستخدم} علق على بطاقة {بطاقة}",
|
||||
"A <strong>card description</strong> inside the Deck app has been changed" : "<strong>وصف البطاقة</strong>داخل تطبيق Deck قد تغيرت.",
|
||||
"Deck" : "Deck",
|
||||
"Changes in the <strong>Deck app</strong>" : "تغييرات في <strong>تطبيق Deck</strong> ",
|
||||
"A <strong>comment</strong> was created on a card" : "<strong>تعليق</strong> تم إنشاؤه على بطاقة",
|
||||
"Upcoming cards" : "البطاقات القادمة",
|
||||
"Personal" : "شخصي",
|
||||
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "البطاقة \"%s\" على \"%s\" كُلفت بها من قبل %s.",
|
||||
"{user} has assigned the card {deck-card} on {deck-board} to you." : "{user} قام بتكليف البطاقة {deck-board} على {deck-board} لك",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "وصلت بطاقة \"%s\" على %s\" الموعد المحدد ",
|
||||
"The card {deck-card} on {deck-board} has reached its due date." : "تجاوزت البطاقة {deck-card} على {deck-board} التاريخ المحدد.",
|
||||
"%s has mentioned you in a comment on \"%s\"." : "%s أشار إليك في تعليق على \"%s\".",
|
||||
"{user} has mentioned you in a comment on {deck-card}." : "{user} أشار إليك في تعليق على {deck-card}",
|
||||
"The board \"%s\" has been shared with you by %s." : "تمت مشاركة اللوح \"%s\" معك من قبل %s.",
|
||||
"{user} has shared {deck-board} with you." : "{user} قام بمشاركة {deck-board} معك.",
|
||||
"Card comments" : "تعليقات البطاقة ",
|
||||
"%s on %s" : "%s على %s",
|
||||
"No data was provided to create an attachment." : "لا بيانات تم تقديمها لانشاء مرفق",
|
||||
"Finished" : "اكتمل",
|
||||
"To review" : "لإعادة المراجعة",
|
||||
"Action needed" : "يحتاج إلى إجراء",
|
||||
"Finished" : "إكتمل",
|
||||
"To review" : "لاعادة المراجعة",
|
||||
"Action needed" : "يحتاج الى اجراء",
|
||||
"Later" : "لاحقا",
|
||||
"copy" : "نسخ",
|
||||
"copy" : "أنسخ",
|
||||
"To do" : "لفعله",
|
||||
"Doing" : "تحت العمل",
|
||||
"Done" : "أُنجز",
|
||||
"Example Task 3" : "مثال المهمة 3",
|
||||
"Example Task 2" : "مثال المهمة 2",
|
||||
"Example Task 1" : "مثال المهمة 1",
|
||||
"The file was uploaded" : "تم رفع الملف",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "حجم الملف المرفوع قد تجاوز upload_max_filesize الموجودة في ملف php.ini ",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "حجم الملف الذي تريد رفعه أعلى من الحد المسموح به في واجهة ال HTML.",
|
||||
"The file was uploaded" : "الملف تم رفعه",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "حجم الملف الذي تريد ترفيعه أعلى مما MAX_FILE_SIZE يسمح به في واجهة ال HTML.",
|
||||
"The file was only partially uploaded" : "الملف قد رُفع جزءا منه فقط",
|
||||
"No file was uploaded" : "لم يتم رفع أي ملف",
|
||||
"Missing a temporary folder" : "المجلد المؤقت غير موجود",
|
||||
"Could not write file to disk" : "لم يستطع كتابة ملف للقرص",
|
||||
"A PHP extension stopped the file upload" : "إضافة البي اچ بي PHP أوقفت رفع الملف",
|
||||
"No file uploaded or file size exceeds maximum of %s" : "لم يتم تحميل أي ملف أو أن يتجاوز حجم الملف الحد الأقصى %s",
|
||||
"Card not found" : "لم يتم العثور على البطاقة ",
|
||||
"Path is already shared with this card" : "تم مشاركة المسار بالفعل مع هذه البطاقة ",
|
||||
"Invalid date, date format must be YYYY-MM-DD" : "تاريخ غير صحيح, يجب أن يكون تنسيق التاريخ YYYY-MM-DD",
|
||||
"A PHP extension stopped the file upload" : "اضافة البي اچ بي PHP اوقفت رفع الملف",
|
||||
"Personal planning and team project organization" : "التخطيط الشخصي و تنظيم مشروع الفريق",
|
||||
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "دك (Deck) هو أداة تنظيم باسلوب كانبان (kanban) تهدف إلى التخطيط الشخصي وتنظيم المشروع للفرق مع نيكست كلاود (Nextcloud).\n- 📥 إضافة مهامك إلى البطاقات وترتيبها\n- 📄 كتابة ملاحظات إضافية باستخدام مارك داون (markdown)\n- 🔖 تعيين تسميات لتنظيم أفضل\n- 👥 شارك مع فريقك أو أصدقائك أو عائلتك\n- 📎 إرفاق الملفات وتضمينها بالوصف المستخدم فيه مارك داون (markdown)\n- 💬 ناقش مع فريقك باستخدام التعليقات\n- ⚡ تتبع التغييرات في تيار النشاط\n- 🚀 اجعل مشروعك منظماً",
|
||||
"Card details" : "تفاصيل البطاقة",
|
||||
"Add board" : "إضافة لوح",
|
||||
"Select the board to link to a project" : "تحديد اللوح لربطه بمشروع",
|
||||
"Search by board title" : "بحث بواسطة عنوان اللوح",
|
||||
"Select board" : "حدد لوح",
|
||||
"Create a new card" : "أنشى بطاقة جديدة ",
|
||||
"Select a board" : "حدد لوح",
|
||||
"Select a list" : "اختر قائمة ",
|
||||
"Card title" : "عنوان البطاقة ",
|
||||
"Cancel" : "إلغاء",
|
||||
"Creating the new card …" : "أنشى البطاقة الجديدة ",
|
||||
"Card \"{card}\" was added to \"{board}\"" : "\"{بطاقة}\" تمت إضافتها في \"{اللوح}\"",
|
||||
"Open card" : "فتح البطاقة ",
|
||||
"Close" : "إغلاق",
|
||||
"Create card" : "أنشى بطاقة ",
|
||||
"Select a card" : "حدد بطاقة",
|
||||
"Select the card to link to a project" : "حدد البطاقة لربطها بمشروع",
|
||||
"Link to card" : "اربط بطاقة",
|
||||
"File already exists" : "الملف موجود مسبقاً",
|
||||
"A file with the name {filename} already exists." : "ملف باسم {اسم الملف} موجود مسبقًا ",
|
||||
"Do you want to overwrite it?" : "هل تريد تجاوزه؟",
|
||||
"Overwrite file" : "تجاوز ملف",
|
||||
"Keep existing file" : "ابقي الملف الموجود",
|
||||
"This board is read only" : "هذا اللوح بوضع القراءة فقط",
|
||||
"Drop your files to upload" : "افلت الملفات لرفعها",
|
||||
"Add card" : "إضافة بطاقة",
|
||||
"Archived cards" : "البطاقات المؤرشفة",
|
||||
"Add list" : "إضافة قائمة",
|
||||
"List name" : "قامة اسماء",
|
||||
"Apply filter" : "تطبيق التصفية",
|
||||
"Filter by tag" : "تصفية بواسطة الوسم",
|
||||
"Filter by assigned user" : "تصفية بواسطة المستخدم الموكل اليه",
|
||||
"Unassigned" : "غير معيين ",
|
||||
"Filter by due date" : "تصفية بواسطة تاريخ الإنجاز",
|
||||
"Filter by due date" : "تصفية بواسطة تأريخ الانجاز",
|
||||
"Overdue" : "تأخر",
|
||||
"Next 24 hours" : "ال 24 ساعة القادمة",
|
||||
"Next 7 days" : "ال 7 أيام القادمة",
|
||||
"Next 7 days" : "ال 7 ايام القادمة",
|
||||
"Next 30 days" : "ال 30 يوم القادمة",
|
||||
"No due date" : "لا تاريخ إنجاز",
|
||||
"No due date" : "لا تأريخ انجاز",
|
||||
"Clear filter" : "ازل التصفية",
|
||||
"Hide archived cards" : "إخفاء البطاقات المؤرشفة ",
|
||||
"Show archived cards" : "اظهر البطاقات المؤرشفة",
|
||||
"Toggle compact mode" : "تبديل النمط المضغوط",
|
||||
"Details" : "التفاصيل",
|
||||
"Loading board" : "جارِ تحميل اللوح..",
|
||||
"No lists available" : "لا يوجد قائمة متاحه ",
|
||||
"Create a new list to add cards to this board" : "إنشاء قائمة جديدة لإضافة البطاقات على هذا اللوح",
|
||||
"Loading board" : "اللوح يحمل..",
|
||||
"Board not found" : "اللوح غير موجود",
|
||||
"Sharing" : "المشاركة",
|
||||
"Tags" : "الوسوم",
|
||||
@@ -158,46 +75,30 @@
|
||||
"Deleted lists" : "القوائم المحذوفة",
|
||||
"Undo" : "تراجع",
|
||||
"Deleted cards" : "البطاقات المحذوفة",
|
||||
"Share board with a user, group or circle …" : "مشاركة اللوح مع مستخدم،مجموعة أو دائرة ..",
|
||||
"Searching for users, groups and circles …" : "ابحث عن أعضاء، مجموعات أو حلقات ...",
|
||||
"No participants found" : "لم يتم العثور على مشاركين",
|
||||
"Share board with a user, group or circle …" : "مشاركة اللوح مع مستخدم،مجموعة او دائرة ..",
|
||||
"Searching for users, groups and circles …" : "ابحث عن اعضاء، مجموعات أو حلقات ...",
|
||||
"Board owner" : "منشئ اللوح",
|
||||
"(Group)" : "(مجموعة)",
|
||||
"(Circle)" : "(دائرة)",
|
||||
"Can edit" : "يمكن تعديله",
|
||||
"Can share" : "يمكن مشاركته",
|
||||
"Can manage" : "يمكن إدارته",
|
||||
"Can manage" : "يمكن ادارته",
|
||||
"Delete" : "حذف ",
|
||||
"Failed to create share with {displayName}" : "فشل في إنشاء المشاركة مع {displayName}",
|
||||
"Add a new list" : "اضف قائمة جديدة",
|
||||
"Archive all cards" : "أرشفة جميع البطاقات ",
|
||||
"Delete list" : "حذف القائمة",
|
||||
"Archive all cards in this list" : "أرشفة جميع البطاقات في القائمة ",
|
||||
"Add card" : "إضافة بطاقة",
|
||||
"Add a new card" : "إضافة بطاقة جديدة",
|
||||
"Card name" : "اسم البطاقة ",
|
||||
"List deleted" : "القائمة حٌذفت ",
|
||||
"Edit" : "تعديل",
|
||||
"Add a new tag" : "إضافة وسم جديد",
|
||||
"title and color value must be provided" : "العنوان و قيمة اللون يجب تقديمها ",
|
||||
"Board name" : "اسم اللوح",
|
||||
"Members" : "الاعضاء",
|
||||
"Upload new files" : "رفع ملفات جديدة",
|
||||
"Share from Files" : "مشاركة من الملفات",
|
||||
"Add this attachment" : "إضافة هذا المرفق",
|
||||
"Show in Files" : "عرض في الملفات ",
|
||||
"Delete Attachment" : "مسح المرفق",
|
||||
"Restore Attachment" : "إستعادة المرفق",
|
||||
"File to share" : "ملف للمشاركة",
|
||||
"Invalid path selected" : "تم تحديد مسار غير صحيح",
|
||||
"Open in sidebar view" : "فتح في الشريط الجانبي ",
|
||||
"Open in bigger view" : "فتح في نافذة أكبر ",
|
||||
"Restore Attachment" : "استعادة المرفق",
|
||||
"Attachments" : "المرفقات",
|
||||
"Comments" : "تعليقات",
|
||||
"Modified" : "عُدل",
|
||||
"Created" : "أُنشئ",
|
||||
"The title cannot be empty." : "لا يمكن ترك العنوان فارغًا.",
|
||||
"No comments yet. Begin the discussion!" : "لا يوجد تعليقات بعد, ابدأ النقاش الآن!",
|
||||
"Failed to load comments" : "فشل في تحميل التعليقات ",
|
||||
"Assign a tag to this card…" : "انسب وسم الى هذه البطاقة..",
|
||||
"Assign to users" : "انسب الى المتسخدمين",
|
||||
"Assign to users/groups/circles" : "انسب الى المستخدمين،المجموعات،الدوائر",
|
||||
@@ -205,78 +106,40 @@
|
||||
"Due date" : "تاريخ الانجاز",
|
||||
"Set a due date" : "تعيين تاريخ الانجاز",
|
||||
"Remove due date" : "ازالة تاريخ الانجاز",
|
||||
"Select Date" : "اختر التاريخ ",
|
||||
"Today" : "اليوم",
|
||||
"Tomorrow" : "غدا",
|
||||
"Save" : "حفظ",
|
||||
"The comment cannot be empty." : "التعليق لايمكن ان يكون فارغا.",
|
||||
"The comment cannot be longer than 1000 characters." : "التعليق لا يمكن ان يكون اطول من 1000 حرف.",
|
||||
"In reply to" : "يقوم بالرد على",
|
||||
"Cancel reply" : "إلغاء الرد",
|
||||
"Reply" : "رد",
|
||||
"Update" : "تحديث",
|
||||
"Description" : "الوصف",
|
||||
"(Unsaved)" : "(غير محفوظ)",
|
||||
"(Saving…)" : "(يُحفظ..)",
|
||||
"Formatting help" : "مساعدة التنسيق",
|
||||
"Edit description" : "تعديل الوصف",
|
||||
"View description" : "إظهار الوصف",
|
||||
"Add Attachment" : "أضف ملحق",
|
||||
"Write a description …" : "كتابة وصف...",
|
||||
"Choose attachment" : "اختيار مرفق",
|
||||
"(group)" : "(مجموعة)",
|
||||
"{count} comments, {unread} unread" : "{عدد} التعليقات، {غير مقروءة} غير مقروءة",
|
||||
"(circle)" : "(دائرة)",
|
||||
"Assign to me" : "ينسب لي",
|
||||
"Unassign myself" : "إلغاء تعييني ",
|
||||
"Move card" : "حرك البطاقة",
|
||||
"Unarchive card" : "إلغاء أرشفة البطاقة ",
|
||||
"Archive card" : "أرشفة البطاقة",
|
||||
"Delete card" : "حذف البطاقة",
|
||||
"Move card to another board" : "حرك البطاقة الى لوح اخر",
|
||||
"Card deleted" : "البطاقة حٌذفت ",
|
||||
"seconds ago" : "ثوانٍ مضت",
|
||||
"All boards" : "جميع الالواح",
|
||||
"Archived boards" : "الالواح المؤرشفة",
|
||||
"Shared with you" : "تم مشاركتها معك",
|
||||
"Use bigger card view" : "استخدام بطاقة عرض أكبر ",
|
||||
"Show boards in calendar/tasks" : "إظهار اللوح في التقويم/المهام",
|
||||
"Limit deck usage of groups" : "تقييد استخدام Deck للمجموعات",
|
||||
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "سيؤدي تقييد Deck إلى منع المستخدمين الذين ليسوا جزءًا من تلك المجموعات من إنشاء لوحاتهم الخاصة. سيظل المستخدمون قادرين على العمل على اللوحات التي تمت مشاركتها معهم.",
|
||||
"Shared with you" : "شورك معك",
|
||||
"Limit deck usage of groups" : "استخدام دك Deck محدود للمجاميع",
|
||||
"Board details" : "تفاصيل لوح",
|
||||
"Edit board" : "تعديل اللوح",
|
||||
"Clone board" : "استنسخ اللوح",
|
||||
"Unarchive board" : "إلغاء أرشفة اللوح",
|
||||
"Archive board" : "أرشفة اللوح ",
|
||||
"Turn on due date reminders" : "تفعيل التذكيرات للموعد المحدد ",
|
||||
"Turn off due date reminders" : "إيقاف تشغيل التذكيرات للموعد المحددد",
|
||||
"Due date reminders" : "تذكيرات الموعد المحدد ",
|
||||
"All cards" : "جميع البطاقات ",
|
||||
"Assigned cards" : "البطاقات المخصصة",
|
||||
"No notifications" : "لا توجد إشعارات",
|
||||
"Delete board" : "مسح اللوح",
|
||||
"Board {0} deleted" : "اللوح {0} تم مسحه",
|
||||
"Only assigned cards" : "البطاقات المخصصة فقط",
|
||||
"No reminder" : "لا يوجد تذكير ",
|
||||
"An error occurred" : "حدث خطأ",
|
||||
"An error occurred" : "طرأ هناك خطأ",
|
||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "هل انت متأكد تريد مسح اللوح {title}؟ هذا سوف يمسح جميع بيانات هذا اللوح.",
|
||||
"Delete the board?" : "مسح اللوح؟",
|
||||
"Loading filtered view" : "جارِ تحميل التصفية ",
|
||||
"Today" : "اليوم",
|
||||
"Tomorrow" : "غدا",
|
||||
"This week" : "هذا الأسبوع",
|
||||
"No due" : "غير محدد",
|
||||
"Search for {searchQuery} in all boards" : "البحث عن {searchQuery} في جميع اللوح",
|
||||
"No results found" : "لا يتم العثور على أي نتائج ",
|
||||
"No upcoming cards" : "لا يوجد بطاقات قادمة ",
|
||||
"upcoming cards" : "البطاقات القادمة",
|
||||
"Link to a board" : "ربط بلوح",
|
||||
"Link to a card" : "ربط ببطاقة",
|
||||
"Create a card" : "أنشى بطاقة ",
|
||||
"Message from {author} in {conversationName}" : "رسالة من {author} في {conversationName}",
|
||||
"Something went wrong" : "حدث خطأ ما",
|
||||
"Failed to upload {name}" : "فشل في رفع {اسم}",
|
||||
"Maximum file size of {size} exceeded" : " تجاوز الملف الحد الاقصى {size} بالحجم المسموح ",
|
||||
"Error creating the share" : "خطأ في إنشاء المشاركة",
|
||||
"Share with a Deck card" : "مشاركة مع بطاقة Deck",
|
||||
"Share {file} with a Deck card" : "مشاركة الملف {file} مع بطاقة Deck",
|
||||
"Share" : "مشاركة "
|
||||
"Something went wrong" : "شيئا ما خاطئ"
|
||||
},"pluralForm" :"nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;"
|
||||
}
|
||||
@@ -30,8 +30,6 @@ OC.L10N.register(
|
||||
"Comments" : "Comentarios",
|
||||
"Modified" : "Modificóse'l",
|
||||
"Created" : "Creóse",
|
||||
"Today" : "Güei",
|
||||
"Tomorrow" : "Mañana",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Rempuesta",
|
||||
"Update" : "Anovar",
|
||||
@@ -39,6 +37,8 @@ OC.L10N.register(
|
||||
"(group)" : "(grupu)",
|
||||
"seconds ago" : "hai segundos",
|
||||
"Shared with you" : "Shared with you",
|
||||
"Today" : "Güei",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta selmana"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -28,8 +28,6 @@
|
||||
"Comments" : "Comentarios",
|
||||
"Modified" : "Modificóse'l",
|
||||
"Created" : "Creóse",
|
||||
"Today" : "Güei",
|
||||
"Tomorrow" : "Mañana",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Rempuesta",
|
||||
"Update" : "Anovar",
|
||||
@@ -37,6 +35,8 @@
|
||||
"(group)" : "(grupu)",
|
||||
"seconds ago" : "hai segundos",
|
||||
"Shared with you" : "Shared with you",
|
||||
"Today" : "Güei",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta selmana"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
@@ -15,14 +15,14 @@ OC.L10N.register(
|
||||
"Delete" : "Sil",
|
||||
"Edit" : "Dəyişiklik et",
|
||||
"Modified" : "Dəyişdirildi",
|
||||
"Today" : "Bu gün",
|
||||
"Tomorrow" : "Sabah",
|
||||
"Save" : "Saxla",
|
||||
"Reply" : "Cavab",
|
||||
"Update" : "Yenilənmə",
|
||||
"Description" : "Açıqlanma",
|
||||
"(group)" : "(qrup)",
|
||||
"seconds ago" : "saniyələr öncə",
|
||||
"Shared with you" : "Shared with you"
|
||||
"Shared with you" : "Shared with you",
|
||||
"Today" : "Bu gün",
|
||||
"Tomorrow" : "Sabah"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -13,14 +13,14 @@
|
||||
"Delete" : "Sil",
|
||||
"Edit" : "Dəyişiklik et",
|
||||
"Modified" : "Dəyişdirildi",
|
||||
"Today" : "Bu gün",
|
||||
"Tomorrow" : "Sabah",
|
||||
"Save" : "Saxla",
|
||||
"Reply" : "Cavab",
|
||||
"Update" : "Yenilənmə",
|
||||
"Description" : "Açıqlanma",
|
||||
"(group)" : "(qrup)",
|
||||
"seconds ago" : "saniyələr öncə",
|
||||
"Shared with you" : "Shared with you"
|
||||
"Shared with you" : "Shared with you",
|
||||
"Today" : "Bu gün",
|
||||
"Tomorrow" : "Sabah"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
37
l10n/bg.js
37
l10n/bg.js
@@ -70,15 +70,12 @@ OC.L10N.register(
|
||||
"Upcoming cards" : "Предстоящи карти",
|
||||
"Personal" : "Лични",
|
||||
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Картата \"%s\" на \"%s\" Ви е била възложена от %s.",
|
||||
"{user} has assigned the card {deck-card} on {deck-board} to you." : "{user} е възложил картата {deck-card} на {deck-board} на Вас.",
|
||||
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} е възложил картата \"%s\"\" on “%s“ на Вас.",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "Картата \"%s\" on \"%s\" е достигнала датата на падежа си.",
|
||||
"The card {deck-card} on {deck-board} has reached its due date." : "Картата {deck-card} на {deck-board} е достигнала датата на падежа си.",
|
||||
"%s has mentioned you in a comment on \"%s\"." : "%s те спомена в коментар за “%s”",
|
||||
"{user} has mentioned you in a comment on {deck-card}." : "{user} те спомена в коментар за {deck-card}.",
|
||||
"{user} has mentioned you in a comment on \"%s\"." : "{user} те спомена в коментар за “%s”",
|
||||
"The board \"%s\" has been shared with you by %s." : "Таблото \"%s\" е споделено с вас от%s.",
|
||||
"{user} has shared {deck-board} with you." : "{user} сподели {deck-board} с Вас.",
|
||||
"Card comments" : "Коментари на карти",
|
||||
"%s on %s" : "%s на %s",
|
||||
"{user} has shared the board %s with you." : "{user} сподели таблото %s с Вас",
|
||||
"No data was provided to create an attachment." : "Не бяха предоставени данни за създаване на прикачен файл.",
|
||||
"Finished" : "Готово",
|
||||
"To review" : "За преглед",
|
||||
@@ -92,7 +89,7 @@ OC.L10N.register(
|
||||
"Example Task 2" : "Примерна задача 2",
|
||||
"Example Task 1" : "Примерна задача 1",
|
||||
"The file was uploaded" : "Файлът е качен",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Размерът на каченият файл надвишава максималния размер определен от upload_max_filesize в php.ini:",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Каченият файл надвишава директивата upload_max_filesize в php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Размерът на файла надвишава максималния размер определен от MAX_FILE_SIZE в HTML формата.",
|
||||
"The file was only partially uploaded" : "Файлът е качен частично",
|
||||
"No file was uploaded" : "Нито един файл не е качен",
|
||||
@@ -110,16 +107,9 @@ OC.L10N.register(
|
||||
"Select the board to link to a project" : "Изберете таблото, което да свържете към проект",
|
||||
"Search by board title" : "Търсене по заглавие на таблото",
|
||||
"Select board" : "Избор на табло",
|
||||
"Create a new card" : "Създаване на нова карта",
|
||||
"Select a board" : "Избор на табло",
|
||||
"Select a list" : "Избор на списък",
|
||||
"Card title" : "Заглавие на карта",
|
||||
"Cancel" : "Отказ",
|
||||
"Creating the new card …" : "Създаване на новата карта ...",
|
||||
"Card \"{card}\" was added to \"{board}\"" : "Карта \"{card}\" беше добавена към \"{board}\"",
|
||||
"Open card" : "Отваряне на карта",
|
||||
"Close" : "Затваряне",
|
||||
"Create card" : "Създаване на карта",
|
||||
"Select a card" : "Избор на карта",
|
||||
"Select the card to link to a project" : "Изберете картата, която да свържете към проект",
|
||||
"Link to card" : "Връзка към карта",
|
||||
@@ -130,7 +120,6 @@ OC.L10N.register(
|
||||
"Keep existing file" : "Запазване на съществуващ файл",
|
||||
"This board is read only" : "Таблото е само за четене",
|
||||
"Drop your files to upload" : "Пуснете вашите файлове, за да ги качите",
|
||||
"Add card" : "Добави карта",
|
||||
"Archived cards" : "Архивирани карти",
|
||||
"Add list" : "Добави списък",
|
||||
"List name" : "Име на списък",
|
||||
@@ -174,6 +163,7 @@ OC.L10N.register(
|
||||
"Add a new list" : "Добавяне на нов списък",
|
||||
"Archive all cards" : "Архивира всички карти",
|
||||
"Delete list" : "Изтрива списък",
|
||||
"Add card" : "Добави карта",
|
||||
"Archive all cards in this list" : "Архивира всички карти в този списък",
|
||||
"Add a new card" : "Добави нова карта",
|
||||
"Card name" : "Име на карта",
|
||||
@@ -185,10 +175,9 @@ OC.L10N.register(
|
||||
"Members" : "Членове",
|
||||
"Upload new files" : "Качи нови файлове",
|
||||
"Share from Files" : "Споделяне от Файлове",
|
||||
"Pending share" : "Чакащо споделяне",
|
||||
"Add this attachment" : "Добавете този прикачен файл",
|
||||
"Show in Files" : "Показване във файлове",
|
||||
"Remove attachment" : "Премахване на прикачен файл",
|
||||
"Unshare file" : "Прекратяване на споделянето на файла",
|
||||
"Delete Attachment" : "Изтриване на прикачен файл",
|
||||
"Restore Attachment" : "Възстановяване на прикачен файл",
|
||||
"File to share" : "Файл за споделяне",
|
||||
@@ -201,7 +190,6 @@ OC.L10N.register(
|
||||
"Created" : "Създаден",
|
||||
"The title cannot be empty." : "Заглавието не може да бъде празно.",
|
||||
"No comments yet. Begin the discussion!" : "Все още няма коментари. Започнете дискусията!",
|
||||
"Failed to load comments" : "Неуспешно зареждане на коментари",
|
||||
"Assign a tag to this card…" : "Присвояване на етикет на тази карта ...",
|
||||
"Assign to users" : "Зачисляване към потребители",
|
||||
"Assign to users/groups/circles" : "Зачисляване към потребители/групи/кръгове",
|
||||
@@ -210,15 +198,10 @@ OC.L10N.register(
|
||||
"Set a due date" : "Задаване на крайна дата",
|
||||
"Remove due date" : "Премахни крайната дата",
|
||||
"Select Date" : "Изберете дата",
|
||||
"Today" : "Днес",
|
||||
"Tomorrow" : "Утре",
|
||||
"Next week" : "Следваща седмица",
|
||||
"Next month" : "Следващия месец",
|
||||
"Save" : "Запазване",
|
||||
"The comment cannot be empty." : "Коментарът не може да бъде празен.",
|
||||
"The comment cannot be longer than 1000 characters." : "Коментарът не може да бъде по-дълъг от 1000 знака.",
|
||||
"In reply to" : "В отговор на",
|
||||
"Cancel reply" : "Отказ на отговор",
|
||||
"Reply" : "Отговори",
|
||||
"Update" : "Обновяване",
|
||||
"Description" : "Описание",
|
||||
@@ -231,7 +214,7 @@ OC.L10N.register(
|
||||
"Write a description …" : "Напишете описание ...",
|
||||
"Choose attachment" : "Избор на прикачен файл",
|
||||
"(group)" : "(група)",
|
||||
"{count} comments, {unread} unread" : "{count} коментари, {unread} непрочетени",
|
||||
"(circle)" : "(кръг)",
|
||||
"Assign to me" : "Зачисляване към мен",
|
||||
"Unassign myself" : "Отмяна на зачисляването към мен",
|
||||
"Move card" : "Преместване на карта",
|
||||
@@ -267,16 +250,14 @@ OC.L10N.register(
|
||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Сигурни ли сте, че искате да изтриете таблото {title}? Това ще изтрие всички данни на това табло.",
|
||||
"Delete the board?" : "Изтриване на таблото?",
|
||||
"Loading filtered view" : "Зареждане на филтриран изглед",
|
||||
"Today" : "Днес",
|
||||
"Tomorrow" : "Утре",
|
||||
"This week" : "Тази седмица",
|
||||
"No due" : "Не се дължи",
|
||||
"Search for {searchQuery} in all boards" : "Търсене на {searchQuery} във всички табла",
|
||||
"No results found" : "Няма намерени резултати",
|
||||
"No upcoming cards" : "Няма предстоящи карти",
|
||||
"upcoming cards" : "предстоящи карти",
|
||||
"Link to a board" : "Линк към табло",
|
||||
"Link to a card" : "Линк към карта",
|
||||
"Create a card" : "Създаване на карта",
|
||||
"Message from {author} in {conversationName}" : "Съобщение от {author} в {conversationName}",
|
||||
"Something went wrong" : "Нещо се обърка",
|
||||
"Failed to upload {name}" : " Неуспешно качване на {name}",
|
||||
"Maximum file size of {size} exceeded" : "Максималният размер на файла от {size} е надвишен",
|
||||
|
||||
37
l10n/bg.json
37
l10n/bg.json
@@ -68,15 +68,12 @@
|
||||
"Upcoming cards" : "Предстоящи карти",
|
||||
"Personal" : "Лични",
|
||||
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Картата \"%s\" на \"%s\" Ви е била възложена от %s.",
|
||||
"{user} has assigned the card {deck-card} on {deck-board} to you." : "{user} е възложил картата {deck-card} на {deck-board} на Вас.",
|
||||
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} е възложил картата \"%s\"\" on “%s“ на Вас.",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "Картата \"%s\" on \"%s\" е достигнала датата на падежа си.",
|
||||
"The card {deck-card} on {deck-board} has reached its due date." : "Картата {deck-card} на {deck-board} е достигнала датата на падежа си.",
|
||||
"%s has mentioned you in a comment on \"%s\"." : "%s те спомена в коментар за “%s”",
|
||||
"{user} has mentioned you in a comment on {deck-card}." : "{user} те спомена в коментар за {deck-card}.",
|
||||
"{user} has mentioned you in a comment on \"%s\"." : "{user} те спомена в коментар за “%s”",
|
||||
"The board \"%s\" has been shared with you by %s." : "Таблото \"%s\" е споделено с вас от%s.",
|
||||
"{user} has shared {deck-board} with you." : "{user} сподели {deck-board} с Вас.",
|
||||
"Card comments" : "Коментари на карти",
|
||||
"%s on %s" : "%s на %s",
|
||||
"{user} has shared the board %s with you." : "{user} сподели таблото %s с Вас",
|
||||
"No data was provided to create an attachment." : "Не бяха предоставени данни за създаване на прикачен файл.",
|
||||
"Finished" : "Готово",
|
||||
"To review" : "За преглед",
|
||||
@@ -90,7 +87,7 @@
|
||||
"Example Task 2" : "Примерна задача 2",
|
||||
"Example Task 1" : "Примерна задача 1",
|
||||
"The file was uploaded" : "Файлът е качен",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Размерът на каченият файл надвишава максималния размер определен от upload_max_filesize в php.ini:",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Каченият файл надвишава директивата upload_max_filesize в php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Размерът на файла надвишава максималния размер определен от MAX_FILE_SIZE в HTML формата.",
|
||||
"The file was only partially uploaded" : "Файлът е качен частично",
|
||||
"No file was uploaded" : "Нито един файл не е качен",
|
||||
@@ -108,16 +105,9 @@
|
||||
"Select the board to link to a project" : "Изберете таблото, което да свържете към проект",
|
||||
"Search by board title" : "Търсене по заглавие на таблото",
|
||||
"Select board" : "Избор на табло",
|
||||
"Create a new card" : "Създаване на нова карта",
|
||||
"Select a board" : "Избор на табло",
|
||||
"Select a list" : "Избор на списък",
|
||||
"Card title" : "Заглавие на карта",
|
||||
"Cancel" : "Отказ",
|
||||
"Creating the new card …" : "Създаване на новата карта ...",
|
||||
"Card \"{card}\" was added to \"{board}\"" : "Карта \"{card}\" беше добавена към \"{board}\"",
|
||||
"Open card" : "Отваряне на карта",
|
||||
"Close" : "Затваряне",
|
||||
"Create card" : "Създаване на карта",
|
||||
"Select a card" : "Избор на карта",
|
||||
"Select the card to link to a project" : "Изберете картата, която да свържете към проект",
|
||||
"Link to card" : "Връзка към карта",
|
||||
@@ -128,7 +118,6 @@
|
||||
"Keep existing file" : "Запазване на съществуващ файл",
|
||||
"This board is read only" : "Таблото е само за четене",
|
||||
"Drop your files to upload" : "Пуснете вашите файлове, за да ги качите",
|
||||
"Add card" : "Добави карта",
|
||||
"Archived cards" : "Архивирани карти",
|
||||
"Add list" : "Добави списък",
|
||||
"List name" : "Име на списък",
|
||||
@@ -172,6 +161,7 @@
|
||||
"Add a new list" : "Добавяне на нов списък",
|
||||
"Archive all cards" : "Архивира всички карти",
|
||||
"Delete list" : "Изтрива списък",
|
||||
"Add card" : "Добави карта",
|
||||
"Archive all cards in this list" : "Архивира всички карти в този списък",
|
||||
"Add a new card" : "Добави нова карта",
|
||||
"Card name" : "Име на карта",
|
||||
@@ -183,10 +173,9 @@
|
||||
"Members" : "Членове",
|
||||
"Upload new files" : "Качи нови файлове",
|
||||
"Share from Files" : "Споделяне от Файлове",
|
||||
"Pending share" : "Чакащо споделяне",
|
||||
"Add this attachment" : "Добавете този прикачен файл",
|
||||
"Show in Files" : "Показване във файлове",
|
||||
"Remove attachment" : "Премахване на прикачен файл",
|
||||
"Unshare file" : "Прекратяване на споделянето на файла",
|
||||
"Delete Attachment" : "Изтриване на прикачен файл",
|
||||
"Restore Attachment" : "Възстановяване на прикачен файл",
|
||||
"File to share" : "Файл за споделяне",
|
||||
@@ -199,7 +188,6 @@
|
||||
"Created" : "Създаден",
|
||||
"The title cannot be empty." : "Заглавието не може да бъде празно.",
|
||||
"No comments yet. Begin the discussion!" : "Все още няма коментари. Започнете дискусията!",
|
||||
"Failed to load comments" : "Неуспешно зареждане на коментари",
|
||||
"Assign a tag to this card…" : "Присвояване на етикет на тази карта ...",
|
||||
"Assign to users" : "Зачисляване към потребители",
|
||||
"Assign to users/groups/circles" : "Зачисляване към потребители/групи/кръгове",
|
||||
@@ -208,15 +196,10 @@
|
||||
"Set a due date" : "Задаване на крайна дата",
|
||||
"Remove due date" : "Премахни крайната дата",
|
||||
"Select Date" : "Изберете дата",
|
||||
"Today" : "Днес",
|
||||
"Tomorrow" : "Утре",
|
||||
"Next week" : "Следваща седмица",
|
||||
"Next month" : "Следващия месец",
|
||||
"Save" : "Запазване",
|
||||
"The comment cannot be empty." : "Коментарът не може да бъде празен.",
|
||||
"The comment cannot be longer than 1000 characters." : "Коментарът не може да бъде по-дълъг от 1000 знака.",
|
||||
"In reply to" : "В отговор на",
|
||||
"Cancel reply" : "Отказ на отговор",
|
||||
"Reply" : "Отговори",
|
||||
"Update" : "Обновяване",
|
||||
"Description" : "Описание",
|
||||
@@ -229,7 +212,7 @@
|
||||
"Write a description …" : "Напишете описание ...",
|
||||
"Choose attachment" : "Избор на прикачен файл",
|
||||
"(group)" : "(група)",
|
||||
"{count} comments, {unread} unread" : "{count} коментари, {unread} непрочетени",
|
||||
"(circle)" : "(кръг)",
|
||||
"Assign to me" : "Зачисляване към мен",
|
||||
"Unassign myself" : "Отмяна на зачисляването към мен",
|
||||
"Move card" : "Преместване на карта",
|
||||
@@ -265,16 +248,14 @@
|
||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Сигурни ли сте, че искате да изтриете таблото {title}? Това ще изтрие всички данни на това табло.",
|
||||
"Delete the board?" : "Изтриване на таблото?",
|
||||
"Loading filtered view" : "Зареждане на филтриран изглед",
|
||||
"Today" : "Днес",
|
||||
"Tomorrow" : "Утре",
|
||||
"This week" : "Тази седмица",
|
||||
"No due" : "Не се дължи",
|
||||
"Search for {searchQuery} in all boards" : "Търсене на {searchQuery} във всички табла",
|
||||
"No results found" : "Няма намерени резултати",
|
||||
"No upcoming cards" : "Няма предстоящи карти",
|
||||
"upcoming cards" : "предстоящи карти",
|
||||
"Link to a board" : "Линк към табло",
|
||||
"Link to a card" : "Линк към карта",
|
||||
"Create a card" : "Създаване на карта",
|
||||
"Message from {author} in {conversationName}" : "Съобщение от {author} в {conversationName}",
|
||||
"Something went wrong" : "Нещо се обърка",
|
||||
"Failed to upload {name}" : " Неуспешно качване на {name}",
|
||||
"Maximum file size of {size} exceeded" : "Максималният размер на файла от {size} е надвишен",
|
||||
|
||||
@@ -15,14 +15,14 @@ OC.L10N.register(
|
||||
"Delete" : "মুছে",
|
||||
"Edit" : "সম্পাদনা",
|
||||
"Modified" : "পরিবর্তিত",
|
||||
"Today" : "আজ",
|
||||
"Tomorrow" : "আগামীকাল",
|
||||
"Save" : "সংরক্ষণ",
|
||||
"Reply" : "জবাব",
|
||||
"Update" : "পরিবর্ধন",
|
||||
"Description" : "বিবরণ",
|
||||
"(group)" : "(গোষ্ঠি)",
|
||||
"seconds ago" : "সেকেন্ড পূর্বে",
|
||||
"Shared with you" : "Shared with you"
|
||||
"Shared with you" : "Shared with you",
|
||||
"Today" : "আজ",
|
||||
"Tomorrow" : "আগামীকাল"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -13,14 +13,14 @@
|
||||
"Delete" : "মুছে",
|
||||
"Edit" : "সম্পাদনা",
|
||||
"Modified" : "পরিবর্তিত",
|
||||
"Today" : "আজ",
|
||||
"Tomorrow" : "আগামীকাল",
|
||||
"Save" : "সংরক্ষণ",
|
||||
"Reply" : "জবাব",
|
||||
"Update" : "পরিবর্ধন",
|
||||
"Description" : "বিবরণ",
|
||||
"(group)" : "(গোষ্ঠি)",
|
||||
"seconds ago" : "সেকেন্ড পূর্বে",
|
||||
"Shared with you" : "Shared with you"
|
||||
"Shared with you" : "Shared with you",
|
||||
"Today" : "আজ",
|
||||
"Tomorrow" : "আগামীকাল"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
@@ -16,8 +16,6 @@ OC.L10N.register(
|
||||
"Edit" : "Cheñch",
|
||||
"Comments" : "Displegadennoù",
|
||||
"Modified" : "Cheñchet",
|
||||
"Today" : "Hiziv",
|
||||
"Tomorrow" : "Warc'hoaz",
|
||||
"Save" : "Enrollañ",
|
||||
"Reply" : "Respont",
|
||||
"Update" : "Adnevesaat",
|
||||
@@ -25,6 +23,8 @@ OC.L10N.register(
|
||||
"(group)" : "(strollad)",
|
||||
"seconds ago" : "eilenn zo",
|
||||
"Shared with you" : "Rannet ganeoc'h",
|
||||
"Today" : "Hiziv",
|
||||
"Tomorrow" : "Warc'hoaz",
|
||||
"This week" : "Er sizhun-mañ"
|
||||
},
|
||||
"nplurals=5; plural=((n%10 == 1) && (n%100 != 11) && (n%100 !=71) && (n%100 !=91) ? 0 :(n%10 == 2) && (n%100 != 12) && (n%100 !=72) && (n%100 !=92) ? 1 :(n%10 ==3 || n%10==4 || n%10==9) && (n%100 < 10 || n% 100 > 19) && (n%100 < 70 || n%100 > 79) && (n%100 < 90 || n%100 > 99) ? 2 :(n != 0 && n % 1000000 == 0) ? 3 : 4);");
|
||||
|
||||
@@ -14,8 +14,6 @@
|
||||
"Edit" : "Cheñch",
|
||||
"Comments" : "Displegadennoù",
|
||||
"Modified" : "Cheñchet",
|
||||
"Today" : "Hiziv",
|
||||
"Tomorrow" : "Warc'hoaz",
|
||||
"Save" : "Enrollañ",
|
||||
"Reply" : "Respont",
|
||||
"Update" : "Adnevesaat",
|
||||
@@ -23,6 +21,8 @@
|
||||
"(group)" : "(strollad)",
|
||||
"seconds ago" : "eilenn zo",
|
||||
"Shared with you" : "Rannet ganeoc'h",
|
||||
"Today" : "Hiziv",
|
||||
"Tomorrow" : "Warc'hoaz",
|
||||
"This week" : "Er sizhun-mañ"
|
||||
},"pluralForm" :"nplurals=5; plural=((n%10 == 1) && (n%100 != 11) && (n%100 !=71) && (n%100 !=91) ? 0 :(n%10 == 2) && (n%100 != 12) && (n%100 !=72) && (n%100 !=92) ? 1 :(n%10 ==3 || n%10==4 || n%10==9) && (n%100 < 10 || n% 100 > 19) && (n%100 < 70 || n%100 > 79) && (n%100 < 90 || n%100 > 99) ? 2 :(n != 0 && n % 1000000 == 0) ? 3 : 4);"
|
||||
}
|
||||
@@ -15,12 +15,12 @@ OC.L10N.register(
|
||||
"Members" : "Članovi",
|
||||
"Comments" : "Komentari",
|
||||
"Modified" : "Izmijenjeno",
|
||||
"Today" : "Danas",
|
||||
"Tomorrow" : "Sutra",
|
||||
"Save" : "Spremi",
|
||||
"Update" : "Ažuriraj",
|
||||
"Description" : "Opis",
|
||||
"Shared with you" : "Shared with you",
|
||||
"Today" : "Danas",
|
||||
"Tomorrow" : "Sutra",
|
||||
"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);");
|
||||
|
||||
@@ -13,12 +13,12 @@
|
||||
"Members" : "Članovi",
|
||||
"Comments" : "Komentari",
|
||||
"Modified" : "Izmijenjeno",
|
||||
"Today" : "Danas",
|
||||
"Tomorrow" : "Sutra",
|
||||
"Save" : "Spremi",
|
||||
"Update" : "Ažuriraj",
|
||||
"Description" : "Opis",
|
||||
"Shared with you" : "Shared with you",
|
||||
"Today" : "Danas",
|
||||
"Tomorrow" : "Sutra",
|
||||
"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);"
|
||||
}
|
||||
10
l10n/ca.js
10
l10n/ca.js
@@ -70,9 +70,12 @@ OC.L10N.register(
|
||||
"Upcoming cards" : "Pròximes targetes",
|
||||
"Personal" : "Personal",
|
||||
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "La targeta \"%s\" sobre \"%s\" se us ha assignat per %s.",
|
||||
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} us ha assignat la targeta \"%s\" sobre \"%s\".",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "La targeta \"%s\" sobre \"%s\" ha assolit la seva data de venciment.",
|
||||
"%s has mentioned you in a comment on \"%s\"." : "%s us ha anomenat en un comentari sobre \"%s\".",
|
||||
"{user} has mentioned you in a comment on \"%s\"." : "{user} us ha anomenat en un comentari sobre \"%s\".",
|
||||
"The board \"%s\" has been shared with you by %s." : "El tauler \"%s\" se us ha compartit per %s.",
|
||||
"{user} has shared the board %s with you." : "{user} us ha compartit el tauler %s.",
|
||||
"No data was provided to create an attachment." : "No s’ha proporcionat cap dada per crear un fitxer adjunt.",
|
||||
"Finished" : "Acabat",
|
||||
"To review" : "Per revisar",
|
||||
@@ -114,7 +117,6 @@ OC.L10N.register(
|
||||
"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",
|
||||
"Add card" : "Afegeix una targeta",
|
||||
"Archived cards" : "Targetes arxivades",
|
||||
"Add list" : "Afegeix una llista",
|
||||
"List name" : "Nom de la llista",
|
||||
@@ -158,6 +160,7 @@ OC.L10N.register(
|
||||
"Add a new list" : "Afegir una llista nova",
|
||||
"Archive all cards" : "Arxiva totes les targetes",
|
||||
"Delete list" : "Suprimeix la llista",
|
||||
"Add card" : "Afegeix una targeta",
|
||||
"Archive all cards in this list" : "Arxiva totes les targetes d'aquesta llista",
|
||||
"Add a new card" : "Afegir una nova targeta",
|
||||
"Card name" : "Nom de la targeta",
|
||||
@@ -186,8 +189,6 @@ OC.L10N.register(
|
||||
"Set a due date" : "Definir una data de venciment",
|
||||
"Remove due date" : "Elimina la data de venciment",
|
||||
"Select Date" : "Selecciona la data",
|
||||
"Today" : "Avui",
|
||||
"Tomorrow" : "Demà",
|
||||
"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.",
|
||||
@@ -204,6 +205,7 @@ OC.L10N.register(
|
||||
"Write a description …" : "Escriviu una descripció...",
|
||||
"Choose attachment" : "Triar adjunt",
|
||||
"(group)" : "(grup)",
|
||||
"(circle)" : "(cercle)",
|
||||
"Assign to me" : "Assigna'm a mi",
|
||||
"Unassign myself" : "Desasignar a mi mateix",
|
||||
"Move card" : "Mou la targeta",
|
||||
@@ -239,6 +241,8 @@ OC.L10N.register(
|
||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Esteu segur que voleu suprimir el tauler {title}? Això eliminarà totes les dades d'aquest tauler.",
|
||||
"Delete the board?" : "Voleu suprimir el tauler?",
|
||||
"Loading filtered view" : "S'està carregant la visualització filtrada",
|
||||
"Today" : "Avui",
|
||||
"Tomorrow" : "Demà",
|
||||
"This week" : "Aquesta setmana",
|
||||
"No due" : "Sense venciment",
|
||||
"No upcoming cards" : "No hi ha pròximes targetes",
|
||||
|
||||
10
l10n/ca.json
10
l10n/ca.json
@@ -68,9 +68,12 @@
|
||||
"Upcoming cards" : "Pròximes targetes",
|
||||
"Personal" : "Personal",
|
||||
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "La targeta \"%s\" sobre \"%s\" se us ha assignat per %s.",
|
||||
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} us ha assignat la targeta \"%s\" sobre \"%s\".",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "La targeta \"%s\" sobre \"%s\" ha assolit la seva data de venciment.",
|
||||
"%s has mentioned you in a comment on \"%s\"." : "%s us ha anomenat en un comentari sobre \"%s\".",
|
||||
"{user} has mentioned you in a comment on \"%s\"." : "{user} us ha anomenat en un comentari sobre \"%s\".",
|
||||
"The board \"%s\" has been shared with you by %s." : "El tauler \"%s\" se us ha compartit per %s.",
|
||||
"{user} has shared the board %s with you." : "{user} us ha compartit el tauler %s.",
|
||||
"No data was provided to create an attachment." : "No s’ha proporcionat cap dada per crear un fitxer adjunt.",
|
||||
"Finished" : "Acabat",
|
||||
"To review" : "Per revisar",
|
||||
@@ -112,7 +115,6 @@
|
||||
"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",
|
||||
"Add card" : "Afegeix una targeta",
|
||||
"Archived cards" : "Targetes arxivades",
|
||||
"Add list" : "Afegeix una llista",
|
||||
"List name" : "Nom de la llista",
|
||||
@@ -156,6 +158,7 @@
|
||||
"Add a new list" : "Afegir una llista nova",
|
||||
"Archive all cards" : "Arxiva totes les targetes",
|
||||
"Delete list" : "Suprimeix la llista",
|
||||
"Add card" : "Afegeix una targeta",
|
||||
"Archive all cards in this list" : "Arxiva totes les targetes d'aquesta llista",
|
||||
"Add a new card" : "Afegir una nova targeta",
|
||||
"Card name" : "Nom de la targeta",
|
||||
@@ -184,8 +187,6 @@
|
||||
"Set a due date" : "Definir una data de venciment",
|
||||
"Remove due date" : "Elimina la data de venciment",
|
||||
"Select Date" : "Selecciona la data",
|
||||
"Today" : "Avui",
|
||||
"Tomorrow" : "Demà",
|
||||
"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.",
|
||||
@@ -202,6 +203,7 @@
|
||||
"Write a description …" : "Escriviu una descripció...",
|
||||
"Choose attachment" : "Triar adjunt",
|
||||
"(group)" : "(grup)",
|
||||
"(circle)" : "(cercle)",
|
||||
"Assign to me" : "Assigna'm a mi",
|
||||
"Unassign myself" : "Desasignar a mi mateix",
|
||||
"Move card" : "Mou la targeta",
|
||||
@@ -237,6 +239,8 @@
|
||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Esteu segur que voleu suprimir el tauler {title}? Això eliminarà totes les dades d'aquest tauler.",
|
||||
"Delete the board?" : "Voleu suprimir el tauler?",
|
||||
"Loading filtered view" : "S'està carregant la visualització filtrada",
|
||||
"Today" : "Avui",
|
||||
"Tomorrow" : "Demà",
|
||||
"This week" : "Aquesta setmana",
|
||||
"No due" : "Sense venciment",
|
||||
"No upcoming cards" : "No hi ha pròximes targetes",
|
||||
|
||||
44
l10n/cs.js
44
l10n/cs.js
@@ -28,7 +28,7 @@ OC.L10N.register(
|
||||
"You have deleted card {card} in list {stack} on board {board}" : "Smazali jste kartu {card} ve sloupci {stack} na tabuli {board}",
|
||||
"{user} has deleted card {card} in list {stack} on board {board}" : "{user} smazal(a) kartu {card} ve sloupci {board} na tabuli {board}",
|
||||
"You have renamed the card {before} to {card}" : "Přejmenovali jste kartu {before} na {card}",
|
||||
"{user} has renamed the card {before} to {card}" : "{user} přejmenoval(a) kartu {before} na {card}",
|
||||
"{user} has renamed the card {before} to {card}" : "{user} přejmenoval(a) {before} na {card}",
|
||||
"You have added a description to card {card} in list {stack} on board {board}" : "Přidali jste popis ke kartě {card} ve sloupci {stack} na tabuli {board}",
|
||||
"{user} has added a description to card {card} in list {stack} on board {board}" : "{user} přidal(a) popis ke kartě {card} ve sloupci {stack} na tabuli {board}",
|
||||
"You have updated the description of card {card} in list {stack} on board {board}" : "Aktualizovali jste popis karty {card} ve sloupci {stack} na tabuli {board}",
|
||||
@@ -70,15 +70,12 @@ OC.L10N.register(
|
||||
"Upcoming cards" : "Nadcházející karty",
|
||||
"Personal" : "Osobní",
|
||||
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Kartu „%s“ na „%s“ vám přiřadil(a) %s.",
|
||||
"{user} has assigned the card {deck-card} on {deck-board} to you." : "{user} vám přiřadil(a) kartu {deck-card} na tabuli {deck-board}.",
|
||||
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} vám přiřadil(a) kartu „%s“ na „%s“.",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "U karty „%s“ z tabule „%s“ nastalo plánované datum dokončení.",
|
||||
"The card {deck-card} on {deck-board} has reached its due date." : "Karta {deck-card} na tabuli {deck-board} dosáhla data plánovaného dokončení.",
|
||||
"%s has mentioned you in a comment on \"%s\"." : "%s vás zmínil(a) v komentáři k „%s“.",
|
||||
"{user} has mentioned you in a comment on {deck-card}." : "{user} vás zmínil(a) v komentáři na kartě {deck-card}.",
|
||||
"{user} has mentioned you in a comment on \"%s\"." : "{user} vás zmínil(a) v komentáři v „%s“.",
|
||||
"The board \"%s\" has been shared with you by %s." : "Uživatel %s vám nasdílel(a) tabuli „%s“.",
|
||||
"{user} has shared {deck-board} with you." : "{user} vám nasdílel(a) tabuli {deck-board}.",
|
||||
"Card comments" : "Komentáře v kartách",
|
||||
"%s on %s" : "%s na %s",
|
||||
"{user} has shared the board %s with you." : "{user} vám nasdílel(a) tabuli %s.",
|
||||
"No data was provided to create an attachment." : "Nebyla poskytnuta žádná data pro vytvoření přílohy.",
|
||||
"Finished" : "Dokončeno",
|
||||
"To review" : "K revizi",
|
||||
@@ -102,7 +99,7 @@ OC.L10N.register(
|
||||
"No file uploaded or file size exceeds maximum of %s" : "Nebyl nahrán žádný soubor nebo jeho velikost přesáhla %s",
|
||||
"Card not found" : "Karta nebyla nalezena",
|
||||
"Path is already shared with this card" : "Cesta je již s touto kartou sdílena",
|
||||
"Invalid date, date format must be YYYY-MM-DD" : "Neplatné datum – je třeba, aby formát data byl RRRR-MM-DD",
|
||||
"Invalid date, date format must be YYYY-MM-DD" : "Neplatné datum, formát data musí být RRRR-MM-DD",
|
||||
"Personal planning and team project organization" : "Osobní plánování a organizování týmového projektu",
|
||||
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck je nástroj cílený na osobní nebo projektové plánování týmů v Kanban stylu, vestavěný v Nextcloud.\n\n\n- 📥 Zadávejte a uspořádávejte své úkoly do karet\n- 📄 Zapisujte si dodatečné poznámky \n- 🔖 Přiřazujte štítky pro ještě lepší organizaci\n- 👥 Sdílejte se svým týmem, přáteli nebo rodinou\n- 🚀 Dostaňte svůj projekt pod kontrolu",
|
||||
"Card details" : "Podrobnosti o kartě",
|
||||
@@ -115,12 +112,12 @@ OC.L10N.register(
|
||||
"Select a list" : "Vyberte sloupec",
|
||||
"Card title" : "Název karty",
|
||||
"Cancel" : "Storno",
|
||||
"Creating the new card …" : "Vytváření nové karty…",
|
||||
"Card \"{card}\" was added to \"{board}\"" : "Karta „{card}“ byla přidána na „{board}“",
|
||||
"Creating the new card…" : "Vytváření nové karty...",
|
||||
"\"{card}\" was added to \"{board}\"" : "\"{card}\" bylo přidáno do \"{board}\"",
|
||||
"Open card" : "Otevřít kartu",
|
||||
"Close" : "Zavřít",
|
||||
"Create card" : "Vytvořit kartu",
|
||||
"Select a card" : "Vybrat kartu",
|
||||
"Select a card" : "Vybrat tabuli",
|
||||
"Select the card to link to a project" : "Vyberte kartu kterou propojit s projektem",
|
||||
"Link to card" : "Propojit s kartou",
|
||||
"File already exists" : "Soubor už existuje",
|
||||
@@ -130,7 +127,6 @@ OC.L10N.register(
|
||||
"Keep existing file" : "Ponechat existující soubor",
|
||||
"This board is read only" : "Tato tabule je pouze pro čtení",
|
||||
"Drop your files to upload" : "Přetáhněte sem soubory, které chcete nahrát",
|
||||
"Add card" : "Přidat kartu",
|
||||
"Archived cards" : "Archivované karty",
|
||||
"Add list" : "Přidat seznam",
|
||||
"List name" : "Název seznamu",
|
||||
@@ -174,6 +170,7 @@ OC.L10N.register(
|
||||
"Add a new list" : "Přidat nový sloupec",
|
||||
"Archive all cards" : "Archivovat všechny karty",
|
||||
"Delete list" : "Smazat seznam",
|
||||
"Add card" : "Přidat kartu",
|
||||
"Archive all cards in this list" : "Archivovat všechny karty v tomto seznamu",
|
||||
"Add a new card" : "Přidat novou kartu",
|
||||
"Card name" : "Název karty",
|
||||
@@ -185,14 +182,13 @@ OC.L10N.register(
|
||||
"Members" : "Členové",
|
||||
"Upload new files" : "Nahrát nové soubory",
|
||||
"Share from Files" : "Sdílet ze Souborů",
|
||||
"Pending share" : "Čekající sdílení",
|
||||
"Add this attachment" : "Přidat tuto přílohu",
|
||||
"Show in Files" : "Zobrazit v Souborech",
|
||||
"Remove attachment" : "Odebrat přílohu",
|
||||
"Unshare file" : "Přestat sdílet soubor",
|
||||
"Delete Attachment" : "Smazat přílohu",
|
||||
"Restore Attachment" : "Obnovit přílohu",
|
||||
"File to share" : "Soubor ke sdílení",
|
||||
"Invalid path selected" : "Je vybrán neplatný popis umístění",
|
||||
"Invalid path selected" : "Je vybrána neplatná cesta",
|
||||
"Open in sidebar view" : "Otevřít v zobrazení v postranním panelu",
|
||||
"Open in bigger view" : "Otevřít ve větším zobrazení",
|
||||
"Attachments" : "Přílohy",
|
||||
@@ -201,7 +197,6 @@ OC.L10N.register(
|
||||
"Created" : "Vytvořeno",
|
||||
"The title cannot be empty." : "Nadpis je třeba vyplnit.",
|
||||
"No comments yet. Begin the discussion!" : "Zatím bez komentářů. Zahajte diskuzi!",
|
||||
"Failed to load comments" : "Načtení komentářů se nezdařilo",
|
||||
"Assign a tag to this card…" : "Přiřadit této kartě štítek…",
|
||||
"Assign to users" : "Přiřadit k uživatelům",
|
||||
"Assign to users/groups/circles" : "Přiřadit uživatelům/skupinám/okruhům",
|
||||
@@ -210,15 +205,10 @@ OC.L10N.register(
|
||||
"Set a due date" : "Vybrat termín",
|
||||
"Remove due date" : "Odstranit termín",
|
||||
"Select Date" : "Vybrat datum",
|
||||
"Today" : "Dnes",
|
||||
"Tomorrow" : "Zítra",
|
||||
"Next week" : "Příští týden",
|
||||
"Next month" : "Příští měsíc",
|
||||
"Save" : "Uložit",
|
||||
"The comment cannot be empty." : "Komentář je třeba vyplnit.",
|
||||
"The comment cannot be empty." : "Komentář je třeba vyplnit",
|
||||
"The comment cannot be longer than 1000 characters." : "Délka komentáře může být nejvýše 1 000 znaků.",
|
||||
"In reply to" : "V odpověď na",
|
||||
"Cancel reply" : "Zrušit odpověď",
|
||||
"Reply" : "Odpovědět",
|
||||
"Update" : "Aktualizovat",
|
||||
"Description" : "Popis",
|
||||
@@ -231,7 +221,7 @@ OC.L10N.register(
|
||||
"Write a description …" : "Zadejte popis…",
|
||||
"Choose attachment" : "Zvolte přílohu",
|
||||
"(group)" : "(skupina)",
|
||||
"{count} comments, {unread} unread" : "{count} komentářů, {unread} nepřečtených",
|
||||
"(circle)" : "(okruh)",
|
||||
"Assign to me" : "Přiřadit mě",
|
||||
"Unassign myself" : "Zrušit přiřazení sobě",
|
||||
"Move card" : "Přesunout kartu",
|
||||
@@ -248,7 +238,7 @@ OC.L10N.register(
|
||||
"Show boards in calendar/tasks" : "Zobrazit tabule v kalendáři/úkolech",
|
||||
"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.",
|
||||
"Board details" : "Podrobnosti o tabuli",
|
||||
"Board details" : "Podrobnosti o desce",
|
||||
"Edit board" : "Upravit tabuli",
|
||||
"Clone board" : "Klonovat tabuli",
|
||||
"Unarchive board" : "Vrátit tabuli zpět z archivu",
|
||||
@@ -267,10 +257,10 @@ OC.L10N.register(
|
||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Opravdu chcete tabuly {title} smazat? Toto smaže veškerá data této tabule.",
|
||||
"Delete the board?" : "Smazat tabuli?",
|
||||
"Loading filtered view" : "Načítání filtrovaného pohledu",
|
||||
"Today" : "Dnes",
|
||||
"Tomorrow" : "Zítra",
|
||||
"This week" : "Tento týden",
|
||||
"No due" : "Žádný termín",
|
||||
"Search for {searchQuery} in all boards" : "Hledat {searchQuery} na všech tabulích",
|
||||
"No results found" : "Nenalezeny žádné výsledky",
|
||||
"No upcoming cards" : "Žádné nadcházející karty",
|
||||
"upcoming cards" : "nadcházející karty",
|
||||
"Link to a board" : "Propojit s tabulí",
|
||||
@@ -281,7 +271,7 @@ OC.L10N.register(
|
||||
"Failed to upload {name}" : "Nepodařilo se nahrát {name}",
|
||||
"Maximum file size of {size} exceeded" : "Překročena nejvyšší umožněná velikost souboru {size}",
|
||||
"Error creating the share" : "Chyba při vytváření sdílení",
|
||||
"Share with a Deck card" : "Sdílet s kartou aplikace Deck",
|
||||
"Share with a Deck card" : "Sdílet kartu aplikace Deck",
|
||||
"Share {file} with a Deck card" : "Sdílet {file} s kartou aplikace Deck",
|
||||
"Share" : "Sdílet"
|
||||
},
|
||||
|
||||
44
l10n/cs.json
44
l10n/cs.json
@@ -26,7 +26,7 @@
|
||||
"You have deleted card {card} in list {stack} on board {board}" : "Smazali jste kartu {card} ve sloupci {stack} na tabuli {board}",
|
||||
"{user} has deleted card {card} in list {stack} on board {board}" : "{user} smazal(a) kartu {card} ve sloupci {board} na tabuli {board}",
|
||||
"You have renamed the card {before} to {card}" : "Přejmenovali jste kartu {before} na {card}",
|
||||
"{user} has renamed the card {before} to {card}" : "{user} přejmenoval(a) kartu {before} na {card}",
|
||||
"{user} has renamed the card {before} to {card}" : "{user} přejmenoval(a) {before} na {card}",
|
||||
"You have added a description to card {card} in list {stack} on board {board}" : "Přidali jste popis ke kartě {card} ve sloupci {stack} na tabuli {board}",
|
||||
"{user} has added a description to card {card} in list {stack} on board {board}" : "{user} přidal(a) popis ke kartě {card} ve sloupci {stack} na tabuli {board}",
|
||||
"You have updated the description of card {card} in list {stack} on board {board}" : "Aktualizovali jste popis karty {card} ve sloupci {stack} na tabuli {board}",
|
||||
@@ -68,15 +68,12 @@
|
||||
"Upcoming cards" : "Nadcházející karty",
|
||||
"Personal" : "Osobní",
|
||||
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Kartu „%s“ na „%s“ vám přiřadil(a) %s.",
|
||||
"{user} has assigned the card {deck-card} on {deck-board} to you." : "{user} vám přiřadil(a) kartu {deck-card} na tabuli {deck-board}.",
|
||||
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} vám přiřadil(a) kartu „%s“ na „%s“.",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "U karty „%s“ z tabule „%s“ nastalo plánované datum dokončení.",
|
||||
"The card {deck-card} on {deck-board} has reached its due date." : "Karta {deck-card} na tabuli {deck-board} dosáhla data plánovaného dokončení.",
|
||||
"%s has mentioned you in a comment on \"%s\"." : "%s vás zmínil(a) v komentáři k „%s“.",
|
||||
"{user} has mentioned you in a comment on {deck-card}." : "{user} vás zmínil(a) v komentáři na kartě {deck-card}.",
|
||||
"{user} has mentioned you in a comment on \"%s\"." : "{user} vás zmínil(a) v komentáři v „%s“.",
|
||||
"The board \"%s\" has been shared with you by %s." : "Uživatel %s vám nasdílel(a) tabuli „%s“.",
|
||||
"{user} has shared {deck-board} with you." : "{user} vám nasdílel(a) tabuli {deck-board}.",
|
||||
"Card comments" : "Komentáře v kartách",
|
||||
"%s on %s" : "%s na %s",
|
||||
"{user} has shared the board %s with you." : "{user} vám nasdílel(a) tabuli %s.",
|
||||
"No data was provided to create an attachment." : "Nebyla poskytnuta žádná data pro vytvoření přílohy.",
|
||||
"Finished" : "Dokončeno",
|
||||
"To review" : "K revizi",
|
||||
@@ -100,7 +97,7 @@
|
||||
"No file uploaded or file size exceeds maximum of %s" : "Nebyl nahrán žádný soubor nebo jeho velikost přesáhla %s",
|
||||
"Card not found" : "Karta nebyla nalezena",
|
||||
"Path is already shared with this card" : "Cesta je již s touto kartou sdílena",
|
||||
"Invalid date, date format must be YYYY-MM-DD" : "Neplatné datum – je třeba, aby formát data byl RRRR-MM-DD",
|
||||
"Invalid date, date format must be YYYY-MM-DD" : "Neplatné datum, formát data musí být RRRR-MM-DD",
|
||||
"Personal planning and team project organization" : "Osobní plánování a organizování týmového projektu",
|
||||
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck je nástroj cílený na osobní nebo projektové plánování týmů v Kanban stylu, vestavěný v Nextcloud.\n\n\n- 📥 Zadávejte a uspořádávejte své úkoly do karet\n- 📄 Zapisujte si dodatečné poznámky \n- 🔖 Přiřazujte štítky pro ještě lepší organizaci\n- 👥 Sdílejte se svým týmem, přáteli nebo rodinou\n- 🚀 Dostaňte svůj projekt pod kontrolu",
|
||||
"Card details" : "Podrobnosti o kartě",
|
||||
@@ -113,12 +110,12 @@
|
||||
"Select a list" : "Vyberte sloupec",
|
||||
"Card title" : "Název karty",
|
||||
"Cancel" : "Storno",
|
||||
"Creating the new card …" : "Vytváření nové karty…",
|
||||
"Card \"{card}\" was added to \"{board}\"" : "Karta „{card}“ byla přidána na „{board}“",
|
||||
"Creating the new card…" : "Vytváření nové karty...",
|
||||
"\"{card}\" was added to \"{board}\"" : "\"{card}\" bylo přidáno do \"{board}\"",
|
||||
"Open card" : "Otevřít kartu",
|
||||
"Close" : "Zavřít",
|
||||
"Create card" : "Vytvořit kartu",
|
||||
"Select a card" : "Vybrat kartu",
|
||||
"Select a card" : "Vybrat tabuli",
|
||||
"Select the card to link to a project" : "Vyberte kartu kterou propojit s projektem",
|
||||
"Link to card" : "Propojit s kartou",
|
||||
"File already exists" : "Soubor už existuje",
|
||||
@@ -128,7 +125,6 @@
|
||||
"Keep existing file" : "Ponechat existující soubor",
|
||||
"This board is read only" : "Tato tabule je pouze pro čtení",
|
||||
"Drop your files to upload" : "Přetáhněte sem soubory, které chcete nahrát",
|
||||
"Add card" : "Přidat kartu",
|
||||
"Archived cards" : "Archivované karty",
|
||||
"Add list" : "Přidat seznam",
|
||||
"List name" : "Název seznamu",
|
||||
@@ -172,6 +168,7 @@
|
||||
"Add a new list" : "Přidat nový sloupec",
|
||||
"Archive all cards" : "Archivovat všechny karty",
|
||||
"Delete list" : "Smazat seznam",
|
||||
"Add card" : "Přidat kartu",
|
||||
"Archive all cards in this list" : "Archivovat všechny karty v tomto seznamu",
|
||||
"Add a new card" : "Přidat novou kartu",
|
||||
"Card name" : "Název karty",
|
||||
@@ -183,14 +180,13 @@
|
||||
"Members" : "Členové",
|
||||
"Upload new files" : "Nahrát nové soubory",
|
||||
"Share from Files" : "Sdílet ze Souborů",
|
||||
"Pending share" : "Čekající sdílení",
|
||||
"Add this attachment" : "Přidat tuto přílohu",
|
||||
"Show in Files" : "Zobrazit v Souborech",
|
||||
"Remove attachment" : "Odebrat přílohu",
|
||||
"Unshare file" : "Přestat sdílet soubor",
|
||||
"Delete Attachment" : "Smazat přílohu",
|
||||
"Restore Attachment" : "Obnovit přílohu",
|
||||
"File to share" : "Soubor ke sdílení",
|
||||
"Invalid path selected" : "Je vybrán neplatný popis umístění",
|
||||
"Invalid path selected" : "Je vybrána neplatná cesta",
|
||||
"Open in sidebar view" : "Otevřít v zobrazení v postranním panelu",
|
||||
"Open in bigger view" : "Otevřít ve větším zobrazení",
|
||||
"Attachments" : "Přílohy",
|
||||
@@ -199,7 +195,6 @@
|
||||
"Created" : "Vytvořeno",
|
||||
"The title cannot be empty." : "Nadpis je třeba vyplnit.",
|
||||
"No comments yet. Begin the discussion!" : "Zatím bez komentářů. Zahajte diskuzi!",
|
||||
"Failed to load comments" : "Načtení komentářů se nezdařilo",
|
||||
"Assign a tag to this card…" : "Přiřadit této kartě štítek…",
|
||||
"Assign to users" : "Přiřadit k uživatelům",
|
||||
"Assign to users/groups/circles" : "Přiřadit uživatelům/skupinám/okruhům",
|
||||
@@ -208,15 +203,10 @@
|
||||
"Set a due date" : "Vybrat termín",
|
||||
"Remove due date" : "Odstranit termín",
|
||||
"Select Date" : "Vybrat datum",
|
||||
"Today" : "Dnes",
|
||||
"Tomorrow" : "Zítra",
|
||||
"Next week" : "Příští týden",
|
||||
"Next month" : "Příští měsíc",
|
||||
"Save" : "Uložit",
|
||||
"The comment cannot be empty." : "Komentář je třeba vyplnit.",
|
||||
"The comment cannot be empty." : "Komentář je třeba vyplnit",
|
||||
"The comment cannot be longer than 1000 characters." : "Délka komentáře může být nejvýše 1 000 znaků.",
|
||||
"In reply to" : "V odpověď na",
|
||||
"Cancel reply" : "Zrušit odpověď",
|
||||
"Reply" : "Odpovědět",
|
||||
"Update" : "Aktualizovat",
|
||||
"Description" : "Popis",
|
||||
@@ -229,7 +219,7 @@
|
||||
"Write a description …" : "Zadejte popis…",
|
||||
"Choose attachment" : "Zvolte přílohu",
|
||||
"(group)" : "(skupina)",
|
||||
"{count} comments, {unread} unread" : "{count} komentářů, {unread} nepřečtených",
|
||||
"(circle)" : "(okruh)",
|
||||
"Assign to me" : "Přiřadit mě",
|
||||
"Unassign myself" : "Zrušit přiřazení sobě",
|
||||
"Move card" : "Přesunout kartu",
|
||||
@@ -246,7 +236,7 @@
|
||||
"Show boards in calendar/tasks" : "Zobrazit tabule v kalendáři/úkolech",
|
||||
"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.",
|
||||
"Board details" : "Podrobnosti o tabuli",
|
||||
"Board details" : "Podrobnosti o desce",
|
||||
"Edit board" : "Upravit tabuli",
|
||||
"Clone board" : "Klonovat tabuli",
|
||||
"Unarchive board" : "Vrátit tabuli zpět z archivu",
|
||||
@@ -265,10 +255,10 @@
|
||||
"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?",
|
||||
"Loading filtered view" : "Načítání filtrovaného pohledu",
|
||||
"Today" : "Dnes",
|
||||
"Tomorrow" : "Zítra",
|
||||
"This week" : "Tento týden",
|
||||
"No due" : "Žádný termín",
|
||||
"Search for {searchQuery} in all boards" : "Hledat {searchQuery} na všech tabulích",
|
||||
"No results found" : "Nenalezeny žádné výsledky",
|
||||
"No upcoming cards" : "Žádné nadcházející karty",
|
||||
"upcoming cards" : "nadcházející karty",
|
||||
"Link to a board" : "Propojit s tabulí",
|
||||
@@ -279,7 +269,7 @@
|
||||
"Failed to upload {name}" : "Nepodařilo se nahrát {name}",
|
||||
"Maximum file size of {size} exceeded" : "Překročena nejvyšší umožněná velikost souboru {size}",
|
||||
"Error creating the share" : "Chyba při vytváření sdílení",
|
||||
"Share with a Deck card" : "Sdílet s kartou aplikace Deck",
|
||||
"Share with a Deck card" : "Sdílet kartu aplikace Deck",
|
||||
"Share {file} with a Deck card" : "Sdílet {file} s kartou aplikace Deck",
|
||||
"Share" : "Sdílet"
|
||||
},"pluralForm" :"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;"
|
||||
|
||||
@@ -16,13 +16,13 @@ OC.L10N.register(
|
||||
"Edit" : "Golygu",
|
||||
"Modified" : "Addaswyd",
|
||||
"Select Date" : "Dewis Dyddiad",
|
||||
"Today" : "Heddiw",
|
||||
"Save" : "Cadw",
|
||||
"Update" : "Diweddaru",
|
||||
"Description" : "Disgrifiad",
|
||||
"seconds ago" : "eiliad yn ôl",
|
||||
"Shared with you" : "Shared with you",
|
||||
"An error occurred" : "Digwyddodd gwall",
|
||||
"Today" : "Heddiw",
|
||||
"This week" : "Wythnos yma"
|
||||
},
|
||||
"nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;");
|
||||
|
||||
@@ -14,13 +14,13 @@
|
||||
"Edit" : "Golygu",
|
||||
"Modified" : "Addaswyd",
|
||||
"Select Date" : "Dewis Dyddiad",
|
||||
"Today" : "Heddiw",
|
||||
"Save" : "Cadw",
|
||||
"Update" : "Diweddaru",
|
||||
"Description" : "Disgrifiad",
|
||||
"seconds ago" : "eiliad yn ôl",
|
||||
"Shared with you" : "Shared with you",
|
||||
"An error occurred" : "Digwyddodd gwall",
|
||||
"Today" : "Heddiw",
|
||||
"This week" : "Wythnos yma"
|
||||
},"pluralForm" :"nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;"
|
||||
}
|
||||
11
l10n/da.js
11
l10n/da.js
@@ -33,9 +33,12 @@ OC.L10N.register(
|
||||
"Upcoming cards" : "Kommende kort",
|
||||
"Personal" : "Personligt",
|
||||
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Kortet \"%s\" på \"%s\" er blevet tildelt dig af %s.",
|
||||
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} har tildelt dig kortet \"%s\" på \"%s\" t il dig.",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "Kortet \"%s\" på \"%s\" har nået sin forfaldsdato.",
|
||||
"%s has mentioned you in a comment on \"%s\"." : " %s har nævnt dig i en kommentar på \"%s\".",
|
||||
"{user} has mentioned you in a comment on \"%s\"." : "{user} har nævnt dig i en kommentar på \"%s\".",
|
||||
"The board \"%s\" has been shared with you by %s." : "Tavlen \"%s\" er blevet delt med dig af %s.",
|
||||
"{user} has shared the board %s with you." : "{user} har delt tavlen %s med dig.",
|
||||
"No data was provided to create an attachment." : "Ingen data blev givet som kunne vedhæftes",
|
||||
"Finished" : "Færdiggjort",
|
||||
"To review" : "Til gennemgang",
|
||||
@@ -80,7 +83,6 @@ OC.L10N.register(
|
||||
"Keep existing file" : "Behold den eksisterende fil",
|
||||
"This board is read only" : "Denne tavle er skrivebeskyttet",
|
||||
"Drop your files to upload" : "Slip dine filer for at uploade",
|
||||
"Add card" : "Tilføj kort",
|
||||
"Archived cards" : "Arkiverede kort",
|
||||
"Add list" : "Tilføj kolonne",
|
||||
"List name" : "Kolonne navn",
|
||||
@@ -124,6 +126,7 @@ OC.L10N.register(
|
||||
"Add a new list" : "Tilføj en ny kolonne",
|
||||
"Archive all cards" : "Arkivér alle kort",
|
||||
"Delete list" : "Slet liste",
|
||||
"Add card" : "Tilføj kort",
|
||||
"Archive all cards in this list" : "Arkivér alle kort i denne kolonne",
|
||||
"Add a new card" : "Tilføj et nyt kort",
|
||||
"Card name" : "Kort navn",
|
||||
@@ -137,6 +140,7 @@ OC.L10N.register(
|
||||
"Share from Files" : "Del fra Filer",
|
||||
"Add this attachment" : "Tilføj denne vedhæftning",
|
||||
"Show in Files" : "Vis i Filer",
|
||||
"Unshare file" : "Stop deling af fil",
|
||||
"Delete Attachment" : "Slet vedhæftning",
|
||||
"Restore Attachment" : "Genskab vedhæftning",
|
||||
"File to share" : "Vælg fil til deling",
|
||||
@@ -157,8 +161,6 @@ OC.L10N.register(
|
||||
"Set a due date" : "Sæt en forfaldsdato",
|
||||
"Remove due date" : "Fjern forfaldsdato",
|
||||
"Select Date" : "Vælg dato",
|
||||
"Today" : "I dag",
|
||||
"Tomorrow" : "I morgen",
|
||||
"Save" : "Gem",
|
||||
"The comment cannot be empty." : "Kommentaren kan ikke være tom.",
|
||||
"The comment cannot be longer than 1000 characters." : "Kommentaren kan ikke være længere end 1000 tegn.",
|
||||
@@ -175,6 +177,7 @@ OC.L10N.register(
|
||||
"Write a description …" : "Tilføj en beskrivelse...",
|
||||
"Choose attachment" : "Vælg en vedhæftning",
|
||||
"(group)" : "(gruppe)",
|
||||
"(circle)" : "(cirkel)",
|
||||
"Assign to me" : "Tildel til mig",
|
||||
"Unassign myself" : "Fjern mig selv",
|
||||
"Move card" : "Flyt kort",
|
||||
@@ -210,6 +213,8 @@ OC.L10N.register(
|
||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Er du sikker på du vil slette tavlen {title}? Dette vil slette alt data på tavlen.",
|
||||
"Delete the board?" : "Slet tavlen?",
|
||||
"Loading filtered view" : "Indlæser filtreret visning",
|
||||
"Today" : "I dag",
|
||||
"Tomorrow" : "I morgen",
|
||||
"This week" : "Denne uge",
|
||||
"No due" : "Ikke forfalden",
|
||||
"No upcoming cards" : "Ingen kommende kort",
|
||||
|
||||
11
l10n/da.json
11
l10n/da.json
@@ -31,9 +31,12 @@
|
||||
"Upcoming cards" : "Kommende kort",
|
||||
"Personal" : "Personligt",
|
||||
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Kortet \"%s\" på \"%s\" er blevet tildelt dig af %s.",
|
||||
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} har tildelt dig kortet \"%s\" på \"%s\" t il dig.",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "Kortet \"%s\" på \"%s\" har nået sin forfaldsdato.",
|
||||
"%s has mentioned you in a comment on \"%s\"." : " %s har nævnt dig i en kommentar på \"%s\".",
|
||||
"{user} has mentioned you in a comment on \"%s\"." : "{user} har nævnt dig i en kommentar på \"%s\".",
|
||||
"The board \"%s\" has been shared with you by %s." : "Tavlen \"%s\" er blevet delt med dig af %s.",
|
||||
"{user} has shared the board %s with you." : "{user} har delt tavlen %s med dig.",
|
||||
"No data was provided to create an attachment." : "Ingen data blev givet som kunne vedhæftes",
|
||||
"Finished" : "Færdiggjort",
|
||||
"To review" : "Til gennemgang",
|
||||
@@ -78,7 +81,6 @@
|
||||
"Keep existing file" : "Behold den eksisterende fil",
|
||||
"This board is read only" : "Denne tavle er skrivebeskyttet",
|
||||
"Drop your files to upload" : "Slip dine filer for at uploade",
|
||||
"Add card" : "Tilføj kort",
|
||||
"Archived cards" : "Arkiverede kort",
|
||||
"Add list" : "Tilføj kolonne",
|
||||
"List name" : "Kolonne navn",
|
||||
@@ -122,6 +124,7 @@
|
||||
"Add a new list" : "Tilføj en ny kolonne",
|
||||
"Archive all cards" : "Arkivér alle kort",
|
||||
"Delete list" : "Slet liste",
|
||||
"Add card" : "Tilføj kort",
|
||||
"Archive all cards in this list" : "Arkivér alle kort i denne kolonne",
|
||||
"Add a new card" : "Tilføj et nyt kort",
|
||||
"Card name" : "Kort navn",
|
||||
@@ -135,6 +138,7 @@
|
||||
"Share from Files" : "Del fra Filer",
|
||||
"Add this attachment" : "Tilføj denne vedhæftning",
|
||||
"Show in Files" : "Vis i Filer",
|
||||
"Unshare file" : "Stop deling af fil",
|
||||
"Delete Attachment" : "Slet vedhæftning",
|
||||
"Restore Attachment" : "Genskab vedhæftning",
|
||||
"File to share" : "Vælg fil til deling",
|
||||
@@ -155,8 +159,6 @@
|
||||
"Set a due date" : "Sæt en forfaldsdato",
|
||||
"Remove due date" : "Fjern forfaldsdato",
|
||||
"Select Date" : "Vælg dato",
|
||||
"Today" : "I dag",
|
||||
"Tomorrow" : "I morgen",
|
||||
"Save" : "Gem",
|
||||
"The comment cannot be empty." : "Kommentaren kan ikke være tom.",
|
||||
"The comment cannot be longer than 1000 characters." : "Kommentaren kan ikke være længere end 1000 tegn.",
|
||||
@@ -173,6 +175,7 @@
|
||||
"Write a description …" : "Tilføj en beskrivelse...",
|
||||
"Choose attachment" : "Vælg en vedhæftning",
|
||||
"(group)" : "(gruppe)",
|
||||
"(circle)" : "(cirkel)",
|
||||
"Assign to me" : "Tildel til mig",
|
||||
"Unassign myself" : "Fjern mig selv",
|
||||
"Move card" : "Flyt kort",
|
||||
@@ -208,6 +211,8 @@
|
||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Er du sikker på du vil slette tavlen {title}? Dette vil slette alt data på tavlen.",
|
||||
"Delete the board?" : "Slet tavlen?",
|
||||
"Loading filtered view" : "Indlæser filtreret visning",
|
||||
"Today" : "I dag",
|
||||
"Tomorrow" : "I morgen",
|
||||
"This week" : "Denne uge",
|
||||
"No due" : "Ikke forfalden",
|
||||
"No upcoming cards" : "Ingen kommende kort",
|
||||
|
||||
34
l10n/de.js
34
l10n/de.js
@@ -70,15 +70,12 @@ OC.L10N.register(
|
||||
"Upcoming cards" : "Anstehende Karten",
|
||||
"Personal" : "Persönlich",
|
||||
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Die Karte \"%s\" auf \"%s\" wurde Dir von %s zugewiesen.",
|
||||
"{user} has assigned the card {deck-card} on {deck-board} to you." : "{user} hat Dir die Karte {deck-card} auf {deck-board} zugewiesen.",
|
||||
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} hat Dir die Karte \"%s\" auf \"%s\" zugewiesen.",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "Die Karte \"%s\" in \"%s\" ist überfällig.",
|
||||
"The card {deck-card} on {deck-board} has reached its due date." : "Die Karte {deck-card} in {deck-board} ist überfällig.",
|
||||
"%s has mentioned you in a comment on \"%s\"." : "%s hat Dich in einem Kommentar zu \"%s\" erwähnt.",
|
||||
"{user} has mentioned you in a comment on {deck-card}." : "{user} hat Dich in einem Kommentar zu {deck-card} erwähnt.",
|
||||
"{user} has mentioned you in a comment on \"%s\"." : "{user} hat Dich in einem Kommentar zu \"%s\" erwähnt.",
|
||||
"The board \"%s\" has been shared with you by %s." : "Das Board \"%s\" wurde von %s mit Dir geteilt.",
|
||||
"{user} has shared {deck-board} with you." : "{user} hat das Board {deck-board} mit Dir geteilt.",
|
||||
"Card comments" : "Kommentare zur Karte",
|
||||
"%s on %s" : "%s von %s",
|
||||
"{user} has shared the board %s with you." : "{user} hat das Board %s mit Dir geteilt.",
|
||||
"No data was provided to create an attachment." : "Es wurden keine Daten zum Erstellen eines Anhangs bereitgestellt.",
|
||||
"Finished" : "Abgeschlossen",
|
||||
"To review" : "Zu überprüfen",
|
||||
@@ -115,8 +112,8 @@ OC.L10N.register(
|
||||
"Select a list" : "Eine Liste auswählen",
|
||||
"Card title" : "Titel der Karte",
|
||||
"Cancel" : "Abbrechen",
|
||||
"Creating the new card …" : "Neue Karte wird erstellt …",
|
||||
"Card \"{card}\" was added to \"{board}\"" : "Karte \"{card}\" wurde \"{board}\" hinzugefügt",
|
||||
"Creating the new card…" : "Neue Karte wird erstellt …",
|
||||
"\"{card}\" was added to \"{board}\"" : "\"{card}\" wurde \"{board}\" hinzugefügt",
|
||||
"Open card" : "Karte öffnen",
|
||||
"Close" : "Schließen",
|
||||
"Create card" : "Karte erstellen",
|
||||
@@ -130,7 +127,6 @@ OC.L10N.register(
|
||||
"Keep existing file" : "Existierende Datei behalten",
|
||||
"This board is read only" : "Dieses Board ist schreibgeschützt",
|
||||
"Drop your files to upload" : "Dateien zum Hochladen hineinziehen",
|
||||
"Add card" : "Karte hinzufügen",
|
||||
"Archived cards" : "Archivierte Karten",
|
||||
"Add list" : "Liste hinzufügen",
|
||||
"List name" : "Listenname",
|
||||
@@ -174,6 +170,7 @@ OC.L10N.register(
|
||||
"Add a new list" : "Eine neue Liste hinzufügen",
|
||||
"Archive all cards" : "Alle Karten archivieren",
|
||||
"Delete list" : "Liste löschen",
|
||||
"Add card" : "Karte hinzufügen",
|
||||
"Archive all cards in this list" : "Alle Karten in dieser Liste archivieren",
|
||||
"Add a new card" : "Neue Karte hinzufügen",
|
||||
"Card name" : "Kartenname",
|
||||
@@ -185,10 +182,9 @@ OC.L10N.register(
|
||||
"Members" : "Mitglieder",
|
||||
"Upload new files" : "Neue Dateien hochladen",
|
||||
"Share from Files" : "Aus Dateien heraus teilen",
|
||||
"Pending share" : "Ausstehende Freigabe",
|
||||
"Add this attachment" : "Diesen Anhang anhängen",
|
||||
"Show in Files" : "In Dateien anzeigen",
|
||||
"Remove attachment" : "Anhang entfernen",
|
||||
"Unshare file" : "Datei nicht mehr teilen",
|
||||
"Delete Attachment" : "Anhang löschen",
|
||||
"Restore Attachment" : "Anhang wiederherstellen",
|
||||
"File to share" : "Zu teilende Datei",
|
||||
@@ -201,7 +197,6 @@ OC.L10N.register(
|
||||
"Created" : "Erstellt",
|
||||
"The title cannot be empty." : "Der Titel darf nicht leer sein.",
|
||||
"No comments yet. Begin the discussion!" : "Bislang keine Kommentare. Beginne die Diskussion!",
|
||||
"Failed to load comments" : "Das Laden der Kommentare ist fehlgeschlagen",
|
||||
"Assign a tag to this card…" : "Dieser Karte ein Schlagwort zuweisen…",
|
||||
"Assign to users" : "Benutzern zuweisen",
|
||||
"Assign to users/groups/circles" : "An Benutzer, Gruppen oder Kreise zuweisen",
|
||||
@@ -210,15 +205,10 @@ OC.L10N.register(
|
||||
"Set a due date" : "Ein Ablaufdatum setzen",
|
||||
"Remove due date" : "Fälligkeitsdatum löschen",
|
||||
"Select Date" : "Datum auswählen",
|
||||
"Today" : "Heute",
|
||||
"Tomorrow" : "Morgen",
|
||||
"Next week" : "Nächste Woche",
|
||||
"Next month" : "Nächster Monat",
|
||||
"Save" : "Speichern",
|
||||
"The comment cannot be empty." : "Der Kommentar darf nicht leer sein.",
|
||||
"The comment cannot be longer than 1000 characters." : "Der Kommentar darf nicht länger als 1000 Zeichen sein.",
|
||||
"In reply to" : "Als Antwort auf",
|
||||
"Cancel reply" : "Antwort abbrechen",
|
||||
"Reply" : "Antworten",
|
||||
"Update" : "Aktualisieren",
|
||||
"Description" : "Beschreibung",
|
||||
@@ -231,7 +221,7 @@ OC.L10N.register(
|
||||
"Write a description …" : "Beschreibung schreiben …",
|
||||
"Choose attachment" : "Anhang auswählen",
|
||||
"(group)" : "(Gruppe)",
|
||||
"{count} comments, {unread} unread" : "{count} Kommentare, {unread} ungelesen",
|
||||
"(circle)" : "(Kreis)",
|
||||
"Assign to me" : "Mir zuweisen",
|
||||
"Unassign myself" : "Nicht mehr mir zuweisen",
|
||||
"Move card" : "Karte verschieben",
|
||||
@@ -246,7 +236,7 @@ OC.L10N.register(
|
||||
"Shared with you" : "Mit Dir geteilt",
|
||||
"Use bigger card view" : "Größere Kartenansicht verwenden",
|
||||
"Show boards in calendar/tasks" : "Board in Kalender/Aufgaben anzeigen",
|
||||
"Limit deck usage of groups" : "Nutzung auf Gruppen einschränken",
|
||||
"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." : "Wenn Du Deck einschränkst, können Benutzer, die nicht zu diesen Gruppen gehören, keine eigenen Boards erstellen. Die Benutzer können weiterhin an Boards arbeiten, die für sie freigegeben wurden.",
|
||||
"Board details" : "Board-Details",
|
||||
"Edit board" : "Board bearbeiten",
|
||||
@@ -264,13 +254,13 @@ OC.L10N.register(
|
||||
"Only assigned cards" : "Nur zugewiesene Karten",
|
||||
"No reminder" : "Keine Erinnerung",
|
||||
"An error occurred" : "Es ist ein Fehler aufgetreten",
|
||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Möchtest Du wirklich das Board {title} mit all seinen Daten löschen?",
|
||||
"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?",
|
||||
"Loading filtered view" : "Lade gefilterte Ansicht",
|
||||
"Today" : "Heute",
|
||||
"Tomorrow" : "Morgen",
|
||||
"This week" : "Diese Woche",
|
||||
"No due" : "Kein Fälligkeitsdatum",
|
||||
"Search for {searchQuery} in all boards" : "Suche nach {searchQuery} in allen Boards",
|
||||
"No results found" : "Keine Ergebnisse gefunden",
|
||||
"No upcoming cards" : "Keine anstehenden Karten",
|
||||
"upcoming cards" : "Anstehende Karten",
|
||||
"Link to a board" : "Mit einem Board verknüpfen",
|
||||
|
||||
34
l10n/de.json
34
l10n/de.json
@@ -68,15 +68,12 @@
|
||||
"Upcoming cards" : "Anstehende Karten",
|
||||
"Personal" : "Persönlich",
|
||||
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Die Karte \"%s\" auf \"%s\" wurde Dir von %s zugewiesen.",
|
||||
"{user} has assigned the card {deck-card} on {deck-board} to you." : "{user} hat Dir die Karte {deck-card} auf {deck-board} zugewiesen.",
|
||||
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} hat Dir die Karte \"%s\" auf \"%s\" zugewiesen.",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "Die Karte \"%s\" in \"%s\" ist überfällig.",
|
||||
"The card {deck-card} on {deck-board} has reached its due date." : "Die Karte {deck-card} in {deck-board} ist überfällig.",
|
||||
"%s has mentioned you in a comment on \"%s\"." : "%s hat Dich in einem Kommentar zu \"%s\" erwähnt.",
|
||||
"{user} has mentioned you in a comment on {deck-card}." : "{user} hat Dich in einem Kommentar zu {deck-card} erwähnt.",
|
||||
"{user} has mentioned you in a comment on \"%s\"." : "{user} hat Dich in einem Kommentar zu \"%s\" erwähnt.",
|
||||
"The board \"%s\" has been shared with you by %s." : "Das Board \"%s\" wurde von %s mit Dir geteilt.",
|
||||
"{user} has shared {deck-board} with you." : "{user} hat das Board {deck-board} mit Dir geteilt.",
|
||||
"Card comments" : "Kommentare zur Karte",
|
||||
"%s on %s" : "%s von %s",
|
||||
"{user} has shared the board %s with you." : "{user} hat das Board %s mit Dir geteilt.",
|
||||
"No data was provided to create an attachment." : "Es wurden keine Daten zum Erstellen eines Anhangs bereitgestellt.",
|
||||
"Finished" : "Abgeschlossen",
|
||||
"To review" : "Zu überprüfen",
|
||||
@@ -113,8 +110,8 @@
|
||||
"Select a list" : "Eine Liste auswählen",
|
||||
"Card title" : "Titel der Karte",
|
||||
"Cancel" : "Abbrechen",
|
||||
"Creating the new card …" : "Neue Karte wird erstellt …",
|
||||
"Card \"{card}\" was added to \"{board}\"" : "Karte \"{card}\" wurde \"{board}\" hinzugefügt",
|
||||
"Creating the new card…" : "Neue Karte wird erstellt …",
|
||||
"\"{card}\" was added to \"{board}\"" : "\"{card}\" wurde \"{board}\" hinzugefügt",
|
||||
"Open card" : "Karte öffnen",
|
||||
"Close" : "Schließen",
|
||||
"Create card" : "Karte erstellen",
|
||||
@@ -128,7 +125,6 @@
|
||||
"Keep existing file" : "Existierende Datei behalten",
|
||||
"This board is read only" : "Dieses Board ist schreibgeschützt",
|
||||
"Drop your files to upload" : "Dateien zum Hochladen hineinziehen",
|
||||
"Add card" : "Karte hinzufügen",
|
||||
"Archived cards" : "Archivierte Karten",
|
||||
"Add list" : "Liste hinzufügen",
|
||||
"List name" : "Listenname",
|
||||
@@ -172,6 +168,7 @@
|
||||
"Add a new list" : "Eine neue Liste hinzufügen",
|
||||
"Archive all cards" : "Alle Karten archivieren",
|
||||
"Delete list" : "Liste löschen",
|
||||
"Add card" : "Karte hinzufügen",
|
||||
"Archive all cards in this list" : "Alle Karten in dieser Liste archivieren",
|
||||
"Add a new card" : "Neue Karte hinzufügen",
|
||||
"Card name" : "Kartenname",
|
||||
@@ -183,10 +180,9 @@
|
||||
"Members" : "Mitglieder",
|
||||
"Upload new files" : "Neue Dateien hochladen",
|
||||
"Share from Files" : "Aus Dateien heraus teilen",
|
||||
"Pending share" : "Ausstehende Freigabe",
|
||||
"Add this attachment" : "Diesen Anhang anhängen",
|
||||
"Show in Files" : "In Dateien anzeigen",
|
||||
"Remove attachment" : "Anhang entfernen",
|
||||
"Unshare file" : "Datei nicht mehr teilen",
|
||||
"Delete Attachment" : "Anhang löschen",
|
||||
"Restore Attachment" : "Anhang wiederherstellen",
|
||||
"File to share" : "Zu teilende Datei",
|
||||
@@ -199,7 +195,6 @@
|
||||
"Created" : "Erstellt",
|
||||
"The title cannot be empty." : "Der Titel darf nicht leer sein.",
|
||||
"No comments yet. Begin the discussion!" : "Bislang keine Kommentare. Beginne die Diskussion!",
|
||||
"Failed to load comments" : "Das Laden der Kommentare ist fehlgeschlagen",
|
||||
"Assign a tag to this card…" : "Dieser Karte ein Schlagwort zuweisen…",
|
||||
"Assign to users" : "Benutzern zuweisen",
|
||||
"Assign to users/groups/circles" : "An Benutzer, Gruppen oder Kreise zuweisen",
|
||||
@@ -208,15 +203,10 @@
|
||||
"Set a due date" : "Ein Ablaufdatum setzen",
|
||||
"Remove due date" : "Fälligkeitsdatum löschen",
|
||||
"Select Date" : "Datum auswählen",
|
||||
"Today" : "Heute",
|
||||
"Tomorrow" : "Morgen",
|
||||
"Next week" : "Nächste Woche",
|
||||
"Next month" : "Nächster Monat",
|
||||
"Save" : "Speichern",
|
||||
"The comment cannot be empty." : "Der Kommentar darf nicht leer sein.",
|
||||
"The comment cannot be longer than 1000 characters." : "Der Kommentar darf nicht länger als 1000 Zeichen sein.",
|
||||
"In reply to" : "Als Antwort auf",
|
||||
"Cancel reply" : "Antwort abbrechen",
|
||||
"Reply" : "Antworten",
|
||||
"Update" : "Aktualisieren",
|
||||
"Description" : "Beschreibung",
|
||||
@@ -229,7 +219,7 @@
|
||||
"Write a description …" : "Beschreibung schreiben …",
|
||||
"Choose attachment" : "Anhang auswählen",
|
||||
"(group)" : "(Gruppe)",
|
||||
"{count} comments, {unread} unread" : "{count} Kommentare, {unread} ungelesen",
|
||||
"(circle)" : "(Kreis)",
|
||||
"Assign to me" : "Mir zuweisen",
|
||||
"Unassign myself" : "Nicht mehr mir zuweisen",
|
||||
"Move card" : "Karte verschieben",
|
||||
@@ -244,7 +234,7 @@
|
||||
"Shared with you" : "Mit Dir geteilt",
|
||||
"Use bigger card view" : "Größere Kartenansicht verwenden",
|
||||
"Show boards in calendar/tasks" : "Board in Kalender/Aufgaben anzeigen",
|
||||
"Limit deck usage of groups" : "Nutzung auf Gruppen einschränken",
|
||||
"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." : "Wenn Du Deck einschränkst, können Benutzer, die nicht zu diesen Gruppen gehören, keine eigenen Boards erstellen. Die Benutzer können weiterhin an Boards arbeiten, die für sie freigegeben wurden.",
|
||||
"Board details" : "Board-Details",
|
||||
"Edit board" : "Board bearbeiten",
|
||||
@@ -262,13 +252,13 @@
|
||||
"Only assigned cards" : "Nur zugewiesene Karten",
|
||||
"No reminder" : "Keine Erinnerung",
|
||||
"An error occurred" : "Es ist ein Fehler aufgetreten",
|
||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Möchtest Du wirklich das Board {title} mit all seinen Daten löschen?",
|
||||
"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?",
|
||||
"Loading filtered view" : "Lade gefilterte Ansicht",
|
||||
"Today" : "Heute",
|
||||
"Tomorrow" : "Morgen",
|
||||
"This week" : "Diese Woche",
|
||||
"No due" : "Kein Fälligkeitsdatum",
|
||||
"Search for {searchQuery} in all boards" : "Suche nach {searchQuery} in allen Boards",
|
||||
"No results found" : "Keine Ergebnisse gefunden",
|
||||
"No upcoming cards" : "Keine anstehenden Karten",
|
||||
"upcoming cards" : "Anstehende Karten",
|
||||
"Link to a board" : "Mit einem Board verknüpfen",
|
||||
|
||||
@@ -70,15 +70,12 @@ OC.L10N.register(
|
||||
"Upcoming cards" : "Anstehende Karten",
|
||||
"Personal" : "Persönlich",
|
||||
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Die Karte \"%s\" auf \"%s\" wurde Ihnen von %s zugewiesen.",
|
||||
"{user} has assigned the card {deck-card} on {deck-board} to you." : "{user} hat Ihnen die Karte {deck-card} auf {deck-board} zugewiesen.",
|
||||
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} hat Ihnen die Karte \"%s\" auf \"%s\" zugewiesen.",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "Die Karte \"%s\" in \"%s\" ist überfällig.",
|
||||
"The card {deck-card} on {deck-board} has reached its due date." : "Die Karte {deck-card} in {deck-board} ist überfällig.",
|
||||
"%s has mentioned you in a comment on \"%s\"." : "%s hat Sie in einem Kommentar zu \"%s\" erwähnt.",
|
||||
"{user} has mentioned you in a comment on {deck-card}." : "{user} hat Sie in einem Kommentar zu {deck-card} erwähnt.",
|
||||
"{user} has mentioned you in a comment on \"%s\"." : "{user} hat Sie in einem Kommentar zu \"%s\" erwähnt.",
|
||||
"The board \"%s\" has been shared with you by %s." : "Das Board \"%s\" wurde von %s mit Ihnen geteilt.",
|
||||
"{user} has shared {deck-board} with you." : "{user} hat das Board {deck-board} mit Ihnen geteilt.",
|
||||
"Card comments" : "Kartenkommentare",
|
||||
"%s on %s" : "%s von %s",
|
||||
"{user} has shared the board %s with you." : "{user} hat das Board %s mit Ihnen geteilt.",
|
||||
"No data was provided to create an attachment." : "Es wurden keine Daten zum Erstellen eines Anhangs bereitgestellt.",
|
||||
"Finished" : "Abgeschlossen",
|
||||
"To review" : "Zu überprüfen",
|
||||
@@ -115,8 +112,8 @@ OC.L10N.register(
|
||||
"Select a list" : "Eine Liste auswählen",
|
||||
"Card title" : "Titel der Karte",
|
||||
"Cancel" : "Abbrechen",
|
||||
"Creating the new card …" : "Neue Karte wird erstellt …",
|
||||
"Card \"{card}\" was added to \"{board}\"" : "Karte \"{card}\" wurde \"{board}\" hinzugefügt",
|
||||
"Creating the new card…" : "Neue Karte wird erstellt …",
|
||||
"\"{card}\" was added to \"{board}\"" : "\"{card}\" wurde \"{board}\" hinzugefügt",
|
||||
"Open card" : "Karte öffnen",
|
||||
"Close" : "Schließen",
|
||||
"Create card" : "Karte erstellen",
|
||||
@@ -130,7 +127,6 @@ OC.L10N.register(
|
||||
"Keep existing file" : "Existierende Datei behalten",
|
||||
"This board is read only" : "Dieses Board ist schreibgeschützt",
|
||||
"Drop your files to upload" : "Dateien zum Hochladen hineinziehen",
|
||||
"Add card" : "Karte hinzufügen",
|
||||
"Archived cards" : "Archivierte Karten",
|
||||
"Add list" : "Liste hinzufügen",
|
||||
"List name" : "Listenname",
|
||||
@@ -174,6 +170,7 @@ OC.L10N.register(
|
||||
"Add a new list" : "Eine neue Liste hinzufügen",
|
||||
"Archive all cards" : "Alle Karten archivieren",
|
||||
"Delete list" : "Liste löschen",
|
||||
"Add card" : "Karte hinzufügen",
|
||||
"Archive all cards in this list" : "Alle Karten in dieser Liste archivieren",
|
||||
"Add a new card" : "Neue Karte hinzufügen",
|
||||
"Card name" : "Kartenname",
|
||||
@@ -185,10 +182,9 @@ OC.L10N.register(
|
||||
"Members" : "Mitglieder",
|
||||
"Upload new files" : "Neue Dateien hochladen",
|
||||
"Share from Files" : "Aus Dateien heraus teilen",
|
||||
"Pending share" : "Ausstehende Freigabe",
|
||||
"Add this attachment" : "Diesen Anhang anhängen",
|
||||
"Show in Files" : "In Dateien anzeigen",
|
||||
"Remove attachment" : "Anhang entfernen",
|
||||
"Unshare file" : "Datei nicht mehr teilen",
|
||||
"Delete Attachment" : "Anhang löschen",
|
||||
"Restore Attachment" : "Anhang wiederherstellen",
|
||||
"File to share" : "Zu teilende Datei",
|
||||
@@ -201,7 +197,6 @@ OC.L10N.register(
|
||||
"Created" : "Erstellt",
|
||||
"The title cannot be empty." : "Der Titel darf nicht leer sein.",
|
||||
"No comments yet. Begin the discussion!" : "Bislang keine Kommentare. Beginnen Sie die Diskussion!",
|
||||
"Failed to load comments" : "Das Laden der Kommentare ist fehlgeschlagen",
|
||||
"Assign a tag to this card…" : "Dieser Karte ein Schlagwort zuweisen…",
|
||||
"Assign to users" : "Benutzern zuweisen",
|
||||
"Assign to users/groups/circles" : "An Benutzer, Gruppen oder Kreise zuweisen",
|
||||
@@ -210,15 +205,10 @@ OC.L10N.register(
|
||||
"Set a due date" : "Ein Ablaufdatum setzen",
|
||||
"Remove due date" : "Fälligkeitsdatum löschen",
|
||||
"Select Date" : "Datum auswählen",
|
||||
"Today" : "Heute",
|
||||
"Tomorrow" : "Morgen",
|
||||
"Next week" : "Nächste Woche",
|
||||
"Next month" : "Nächsten Monat",
|
||||
"Save" : "Speichern",
|
||||
"The comment cannot be empty." : "Der Kommentar darf nicht leer sein.",
|
||||
"The comment cannot be longer than 1000 characters." : "Der Kommentar darf nicht länger als 1000 Zeichen sein.",
|
||||
"In reply to" : "Als Antwort auf",
|
||||
"Cancel reply" : "Antwort abbrechen",
|
||||
"Reply" : "Antworten",
|
||||
"Update" : "Aktualisieren",
|
||||
"Description" : "Beschreibung",
|
||||
@@ -231,7 +221,7 @@ OC.L10N.register(
|
||||
"Write a description …" : "Beschreibung schreiben …",
|
||||
"Choose attachment" : "Anhang auswählen",
|
||||
"(group)" : "(Gruppe)",
|
||||
"{count} comments, {unread} unread" : "{count} Kommentare, {unread} ungelesen",
|
||||
"(circle)" : "(Kreis)",
|
||||
"Assign to me" : "Mir zuweisen",
|
||||
"Unassign myself" : "Nicht mehr mir zuweisen",
|
||||
"Move card" : "Karte verschieben",
|
||||
@@ -246,7 +236,7 @@ OC.L10N.register(
|
||||
"Shared with you" : "Mit Ihnen geteilt",
|
||||
"Use bigger card view" : "Größere Kartenansicht verwenden",
|
||||
"Show boards in calendar/tasks" : "Board in Kalender/Aufgaben anzeigen",
|
||||
"Limit deck usage of groups" : "Nutzung auf Gruppen einschränken",
|
||||
"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." : "Wenn Sie Deck einschränken, können Benutzer, die nicht zu diesen Gruppen gehören, keine eigenen Boards erstellen. Die Benutzer können weiterhin an Boards arbeiten, die für sie freigegeben wurden.",
|
||||
"Board details" : "Board-Details",
|
||||
"Edit board" : "Board bearbeiten",
|
||||
@@ -267,10 +257,10 @@ OC.L10N.register(
|
||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Möchten Sie wirklich dieses Board {title} mit all seinen Daten löschen?",
|
||||
"Delete the board?" : "Das Board löschen?",
|
||||
"Loading filtered view" : "Lade gefilterte Ansicht",
|
||||
"Today" : "Heute",
|
||||
"Tomorrow" : "Morgen",
|
||||
"This week" : "Diese Woche",
|
||||
"No due" : "Kein Fälligkeitsdatum",
|
||||
"Search for {searchQuery} in all boards" : "Suche nach {searchQuery} in allen Boards",
|
||||
"No results found" : "Keine Ergebnisse gefunden",
|
||||
"No upcoming cards" : "Keine anstehenden Karten",
|
||||
"upcoming cards" : "Anstehende Karten",
|
||||
"Link to a board" : "Mit einem Board verknüpfen",
|
||||
|
||||
@@ -68,15 +68,12 @@
|
||||
"Upcoming cards" : "Anstehende Karten",
|
||||
"Personal" : "Persönlich",
|
||||
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Die Karte \"%s\" auf \"%s\" wurde Ihnen von %s zugewiesen.",
|
||||
"{user} has assigned the card {deck-card} on {deck-board} to you." : "{user} hat Ihnen die Karte {deck-card} auf {deck-board} zugewiesen.",
|
||||
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} hat Ihnen die Karte \"%s\" auf \"%s\" zugewiesen.",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "Die Karte \"%s\" in \"%s\" ist überfällig.",
|
||||
"The card {deck-card} on {deck-board} has reached its due date." : "Die Karte {deck-card} in {deck-board} ist überfällig.",
|
||||
"%s has mentioned you in a comment on \"%s\"." : "%s hat Sie in einem Kommentar zu \"%s\" erwähnt.",
|
||||
"{user} has mentioned you in a comment on {deck-card}." : "{user} hat Sie in einem Kommentar zu {deck-card} erwähnt.",
|
||||
"{user} has mentioned you in a comment on \"%s\"." : "{user} hat Sie in einem Kommentar zu \"%s\" erwähnt.",
|
||||
"The board \"%s\" has been shared with you by %s." : "Das Board \"%s\" wurde von %s mit Ihnen geteilt.",
|
||||
"{user} has shared {deck-board} with you." : "{user} hat das Board {deck-board} mit Ihnen geteilt.",
|
||||
"Card comments" : "Kartenkommentare",
|
||||
"%s on %s" : "%s von %s",
|
||||
"{user} has shared the board %s with you." : "{user} hat das Board %s mit Ihnen geteilt.",
|
||||
"No data was provided to create an attachment." : "Es wurden keine Daten zum Erstellen eines Anhangs bereitgestellt.",
|
||||
"Finished" : "Abgeschlossen",
|
||||
"To review" : "Zu überprüfen",
|
||||
@@ -113,8 +110,8 @@
|
||||
"Select a list" : "Eine Liste auswählen",
|
||||
"Card title" : "Titel der Karte",
|
||||
"Cancel" : "Abbrechen",
|
||||
"Creating the new card …" : "Neue Karte wird erstellt …",
|
||||
"Card \"{card}\" was added to \"{board}\"" : "Karte \"{card}\" wurde \"{board}\" hinzugefügt",
|
||||
"Creating the new card…" : "Neue Karte wird erstellt …",
|
||||
"\"{card}\" was added to \"{board}\"" : "\"{card}\" wurde \"{board}\" hinzugefügt",
|
||||
"Open card" : "Karte öffnen",
|
||||
"Close" : "Schließen",
|
||||
"Create card" : "Karte erstellen",
|
||||
@@ -128,7 +125,6 @@
|
||||
"Keep existing file" : "Existierende Datei behalten",
|
||||
"This board is read only" : "Dieses Board ist schreibgeschützt",
|
||||
"Drop your files to upload" : "Dateien zum Hochladen hineinziehen",
|
||||
"Add card" : "Karte hinzufügen",
|
||||
"Archived cards" : "Archivierte Karten",
|
||||
"Add list" : "Liste hinzufügen",
|
||||
"List name" : "Listenname",
|
||||
@@ -172,6 +168,7 @@
|
||||
"Add a new list" : "Eine neue Liste hinzufügen",
|
||||
"Archive all cards" : "Alle Karten archivieren",
|
||||
"Delete list" : "Liste löschen",
|
||||
"Add card" : "Karte hinzufügen",
|
||||
"Archive all cards in this list" : "Alle Karten in dieser Liste archivieren",
|
||||
"Add a new card" : "Neue Karte hinzufügen",
|
||||
"Card name" : "Kartenname",
|
||||
@@ -183,10 +180,9 @@
|
||||
"Members" : "Mitglieder",
|
||||
"Upload new files" : "Neue Dateien hochladen",
|
||||
"Share from Files" : "Aus Dateien heraus teilen",
|
||||
"Pending share" : "Ausstehende Freigabe",
|
||||
"Add this attachment" : "Diesen Anhang anhängen",
|
||||
"Show in Files" : "In Dateien anzeigen",
|
||||
"Remove attachment" : "Anhang entfernen",
|
||||
"Unshare file" : "Datei nicht mehr teilen",
|
||||
"Delete Attachment" : "Anhang löschen",
|
||||
"Restore Attachment" : "Anhang wiederherstellen",
|
||||
"File to share" : "Zu teilende Datei",
|
||||
@@ -199,7 +195,6 @@
|
||||
"Created" : "Erstellt",
|
||||
"The title cannot be empty." : "Der Titel darf nicht leer sein.",
|
||||
"No comments yet. Begin the discussion!" : "Bislang keine Kommentare. Beginnen Sie die Diskussion!",
|
||||
"Failed to load comments" : "Das Laden der Kommentare ist fehlgeschlagen",
|
||||
"Assign a tag to this card…" : "Dieser Karte ein Schlagwort zuweisen…",
|
||||
"Assign to users" : "Benutzern zuweisen",
|
||||
"Assign to users/groups/circles" : "An Benutzer, Gruppen oder Kreise zuweisen",
|
||||
@@ -208,15 +203,10 @@
|
||||
"Set a due date" : "Ein Ablaufdatum setzen",
|
||||
"Remove due date" : "Fälligkeitsdatum löschen",
|
||||
"Select Date" : "Datum auswählen",
|
||||
"Today" : "Heute",
|
||||
"Tomorrow" : "Morgen",
|
||||
"Next week" : "Nächste Woche",
|
||||
"Next month" : "Nächsten Monat",
|
||||
"Save" : "Speichern",
|
||||
"The comment cannot be empty." : "Der Kommentar darf nicht leer sein.",
|
||||
"The comment cannot be longer than 1000 characters." : "Der Kommentar darf nicht länger als 1000 Zeichen sein.",
|
||||
"In reply to" : "Als Antwort auf",
|
||||
"Cancel reply" : "Antwort abbrechen",
|
||||
"Reply" : "Antworten",
|
||||
"Update" : "Aktualisieren",
|
||||
"Description" : "Beschreibung",
|
||||
@@ -229,7 +219,7 @@
|
||||
"Write a description …" : "Beschreibung schreiben …",
|
||||
"Choose attachment" : "Anhang auswählen",
|
||||
"(group)" : "(Gruppe)",
|
||||
"{count} comments, {unread} unread" : "{count} Kommentare, {unread} ungelesen",
|
||||
"(circle)" : "(Kreis)",
|
||||
"Assign to me" : "Mir zuweisen",
|
||||
"Unassign myself" : "Nicht mehr mir zuweisen",
|
||||
"Move card" : "Karte verschieben",
|
||||
@@ -244,7 +234,7 @@
|
||||
"Shared with you" : "Mit Ihnen geteilt",
|
||||
"Use bigger card view" : "Größere Kartenansicht verwenden",
|
||||
"Show boards in calendar/tasks" : "Board in Kalender/Aufgaben anzeigen",
|
||||
"Limit deck usage of groups" : "Nutzung auf Gruppen einschränken",
|
||||
"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." : "Wenn Sie Deck einschränken, können Benutzer, die nicht zu diesen Gruppen gehören, keine eigenen Boards erstellen. Die Benutzer können weiterhin an Boards arbeiten, die für sie freigegeben wurden.",
|
||||
"Board details" : "Board-Details",
|
||||
"Edit board" : "Board bearbeiten",
|
||||
@@ -265,10 +255,10 @@
|
||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Möchten Sie wirklich dieses Board {title} mit all seinen Daten löschen?",
|
||||
"Delete the board?" : "Das Board löschen?",
|
||||
"Loading filtered view" : "Lade gefilterte Ansicht",
|
||||
"Today" : "Heute",
|
||||
"Tomorrow" : "Morgen",
|
||||
"This week" : "Diese Woche",
|
||||
"No due" : "Kein Fälligkeitsdatum",
|
||||
"Search for {searchQuery} in all boards" : "Suche nach {searchQuery} in allen Boards",
|
||||
"No results found" : "Keine Ergebnisse gefunden",
|
||||
"No upcoming cards" : "Keine anstehenden Karten",
|
||||
"upcoming cards" : "Anstehende Karten",
|
||||
"Link to a board" : "Mit einem Board verknüpfen",
|
||||
|
||||
17
l10n/el.js
17
l10n/el.js
@@ -70,9 +70,12 @@ OC.L10N.register(
|
||||
"Upcoming cards" : "Επερχόμενες κάρτες",
|
||||
"Personal" : "Προσωπικά",
|
||||
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Η καρτέλα \"%s\" του \"%s\" ανατέθηκε σε εσάς από τον %s.",
|
||||
"{user} has assigned the card \"%s\" on \"%s\" to you." : "Ο {user} σας ανέθεσε την καρτέλα \"%s\" του \"%s\".",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "Η κάρτα \"1%s\" στο \"1%s\" έχει λήξει.",
|
||||
"%s has mentioned you in a comment on \"%s\"." : "%s σας ανέφερε σε σχόλιο στο \"%s\".",
|
||||
"{user} has mentioned you in a comment on \"%s\"." : "Ο {user} σας ανέφερε σε σχόλιοστο \"%s\".",
|
||||
"The board \"%s\" has been shared with you by %s." : "Ο πίνακας \"%s\" είναι σε κοινή χρήση μαζί σας %s.",
|
||||
"{user} has shared the board %s with you." : "Ο {user} διαμοίρασε τον πίνακα %s με εσάς.",
|
||||
"No data was provided to create an attachment." : "Δεν δόθηκαν στοιχεία για δημιουργία συνημμένου.",
|
||||
"Finished" : "Ολοκληρώθηκε",
|
||||
"To review" : "Προς επισκόπηση",
|
||||
@@ -104,14 +107,9 @@ OC.L10N.register(
|
||||
"Select the board to link to a project" : "Επιλέξτε πίνακα και συνδέστε τον σε έργο",
|
||||
"Search by board title" : "Αναζήτηση με το όνομα πίνακα",
|
||||
"Select board" : "Επιλογή πίνακα",
|
||||
"Create a new card" : "Δημιουργία νέας κάρτας",
|
||||
"Select a board" : "Επιλογή ενός πίνακα",
|
||||
"Select a list" : "Επιλέξτε μια λίστα",
|
||||
"Card title" : "Τίτλος κάρτας",
|
||||
"Cancel" : "Aκύρωση",
|
||||
"Open card" : "Άνοιγμα κάρτας",
|
||||
"Close" : "Κλείσιμο",
|
||||
"Create card" : "Δημιουργία κάρτας",
|
||||
"Select a card" : "Επίλογή μιας καρτέλας",
|
||||
"Select the card to link to a project" : "Επιλογή καρτέλας για σύνδεση στο έργο",
|
||||
"Link to card" : "Σύνδεσμος σε καρτέλα",
|
||||
@@ -122,7 +120,6 @@ OC.L10N.register(
|
||||
"Keep existing file" : "Διατήρηση υπάρχων αρχείου",
|
||||
"This board is read only" : "Ο πίνακας είναι μόνο για ανάγνωση",
|
||||
"Drop your files to upload" : "Αποθέστε τα αρχεία σας για ανέβασμα",
|
||||
"Add card" : "Προσθήκη κάρτας",
|
||||
"Archived cards" : "Αρχειοθετημένες κάρτες",
|
||||
"Add list" : "Προσθήκη λίστας",
|
||||
"List name" : "Λίστα ονομάτων",
|
||||
@@ -166,6 +163,7 @@ OC.L10N.register(
|
||||
"Add a new list" : "Προσθήκη νέας λίστας",
|
||||
"Archive all cards" : "Αρχειοθέτηση όλων των καρτελών.",
|
||||
"Delete list" : "Διαγραφή λίστας",
|
||||
"Add card" : "Προσθήκη κάρτας",
|
||||
"Archive all cards in this list" : "Αρχειοθέτηση όλων των καρτελών σε αυτή τη λίστα.",
|
||||
"Add a new card" : "Προσθήκη νέας καρτέλας",
|
||||
"Card name" : "Όνομα κάρτας",
|
||||
@@ -179,6 +177,7 @@ OC.L10N.register(
|
||||
"Share from Files" : "Κοινή χρήση από αρχεία",
|
||||
"Add this attachment" : "Προσθήκη αυτού του συνημμένου",
|
||||
"Show in Files" : "Εμφάνιση σε αρχεία",
|
||||
"Unshare file" : "Κατάργηση κοινής χρήσης αρχείου",
|
||||
"Delete Attachment" : "Διαγραφή Συνημμένου",
|
||||
"Restore Attachment" : "Επαναφορά Συνημμένου",
|
||||
"File to share" : "Αρχείο για κοινή χρήση",
|
||||
@@ -199,8 +198,6 @@ OC.L10N.register(
|
||||
"Set a due date" : "Καθορίστε ημερομηνίας λήξης",
|
||||
"Remove due date" : "Αφαίρεση ημερομηνίας λήξης",
|
||||
"Select Date" : "Επέλεξε Ημέρα",
|
||||
"Today" : "Σήμερα",
|
||||
"Tomorrow" : "Αύριο",
|
||||
"Save" : "Αποθήκευση",
|
||||
"The comment cannot be empty." : "Το σχόλιο δεν μπορεί να είναι κενό.",
|
||||
"The comment cannot be longer than 1000 characters." : "Το σχόλιο δεν μπορεί να έχι περισσότερους από 1000 χαρακτήρες.",
|
||||
@@ -217,6 +214,7 @@ OC.L10N.register(
|
||||
"Write a description …" : "Γράψτε μια περιγραφή…",
|
||||
"Choose attachment" : "Επιλογή συνημμένου",
|
||||
"(group)" : "(ομάδα)",
|
||||
"(circle)" : "(κύκλος)",
|
||||
"Assign to me" : "Ανάθεση σε εμένα",
|
||||
"Unassign myself" : "Αποδέσμευσή μου",
|
||||
"Move card" : "Μετακίνηση κάρτας",
|
||||
@@ -252,13 +250,14 @@ OC.L10N.register(
|
||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Είστε βέβαιοι ότι θέλετε να διαγράψετε τον πίνακα {title}; Θα διαγραφούν όλα τα δεδομένα.",
|
||||
"Delete the board?" : "Διαγραφή πίνακα;",
|
||||
"Loading filtered view" : "Φόρτωση εμφάνισης με βάση το φίλτρο",
|
||||
"Today" : "Σήμερα",
|
||||
"Tomorrow" : "Αύριο",
|
||||
"This week" : "Αυτή την εβδομάδα",
|
||||
"No due" : "Χωρίς λήξη",
|
||||
"No upcoming cards" : "Δεν υπάρχουν επερχόμενες κάρτες",
|
||||
"upcoming cards" : "Επερχόμενες κάρτες",
|
||||
"Link to a board" : "Σύνδεσμος στον πίνακα",
|
||||
"Link to a card" : "Σύνδεσμος σε καρτέλα",
|
||||
"Create a card" : "Δημιουργία κάρτας",
|
||||
"Something went wrong" : "Κάτι πήγε στραβά",
|
||||
"Failed to upload {name}" : "Αποτυχία μεταφόρτωσης {όνομα}",
|
||||
"Maximum file size of {size} exceeded" : "Υπέρβαση επιτρεπόμενου μεγέθους αρχείου {size}",
|
||||
|
||||
17
l10n/el.json
17
l10n/el.json
@@ -68,9 +68,12 @@
|
||||
"Upcoming cards" : "Επερχόμενες κάρτες",
|
||||
"Personal" : "Προσωπικά",
|
||||
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Η καρτέλα \"%s\" του \"%s\" ανατέθηκε σε εσάς από τον %s.",
|
||||
"{user} has assigned the card \"%s\" on \"%s\" to you." : "Ο {user} σας ανέθεσε την καρτέλα \"%s\" του \"%s\".",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "Η κάρτα \"1%s\" στο \"1%s\" έχει λήξει.",
|
||||
"%s has mentioned you in a comment on \"%s\"." : "%s σας ανέφερε σε σχόλιο στο \"%s\".",
|
||||
"{user} has mentioned you in a comment on \"%s\"." : "Ο {user} σας ανέφερε σε σχόλιοστο \"%s\".",
|
||||
"The board \"%s\" has been shared with you by %s." : "Ο πίνακας \"%s\" είναι σε κοινή χρήση μαζί σας %s.",
|
||||
"{user} has shared the board %s with you." : "Ο {user} διαμοίρασε τον πίνακα %s με εσάς.",
|
||||
"No data was provided to create an attachment." : "Δεν δόθηκαν στοιχεία για δημιουργία συνημμένου.",
|
||||
"Finished" : "Ολοκληρώθηκε",
|
||||
"To review" : "Προς επισκόπηση",
|
||||
@@ -102,14 +105,9 @@
|
||||
"Select the board to link to a project" : "Επιλέξτε πίνακα και συνδέστε τον σε έργο",
|
||||
"Search by board title" : "Αναζήτηση με το όνομα πίνακα",
|
||||
"Select board" : "Επιλογή πίνακα",
|
||||
"Create a new card" : "Δημιουργία νέας κάρτας",
|
||||
"Select a board" : "Επιλογή ενός πίνακα",
|
||||
"Select a list" : "Επιλέξτε μια λίστα",
|
||||
"Card title" : "Τίτλος κάρτας",
|
||||
"Cancel" : "Aκύρωση",
|
||||
"Open card" : "Άνοιγμα κάρτας",
|
||||
"Close" : "Κλείσιμο",
|
||||
"Create card" : "Δημιουργία κάρτας",
|
||||
"Select a card" : "Επίλογή μιας καρτέλας",
|
||||
"Select the card to link to a project" : "Επιλογή καρτέλας για σύνδεση στο έργο",
|
||||
"Link to card" : "Σύνδεσμος σε καρτέλα",
|
||||
@@ -120,7 +118,6 @@
|
||||
"Keep existing file" : "Διατήρηση υπάρχων αρχείου",
|
||||
"This board is read only" : "Ο πίνακας είναι μόνο για ανάγνωση",
|
||||
"Drop your files to upload" : "Αποθέστε τα αρχεία σας για ανέβασμα",
|
||||
"Add card" : "Προσθήκη κάρτας",
|
||||
"Archived cards" : "Αρχειοθετημένες κάρτες",
|
||||
"Add list" : "Προσθήκη λίστας",
|
||||
"List name" : "Λίστα ονομάτων",
|
||||
@@ -164,6 +161,7 @@
|
||||
"Add a new list" : "Προσθήκη νέας λίστας",
|
||||
"Archive all cards" : "Αρχειοθέτηση όλων των καρτελών.",
|
||||
"Delete list" : "Διαγραφή λίστας",
|
||||
"Add card" : "Προσθήκη κάρτας",
|
||||
"Archive all cards in this list" : "Αρχειοθέτηση όλων των καρτελών σε αυτή τη λίστα.",
|
||||
"Add a new card" : "Προσθήκη νέας καρτέλας",
|
||||
"Card name" : "Όνομα κάρτας",
|
||||
@@ -177,6 +175,7 @@
|
||||
"Share from Files" : "Κοινή χρήση από αρχεία",
|
||||
"Add this attachment" : "Προσθήκη αυτού του συνημμένου",
|
||||
"Show in Files" : "Εμφάνιση σε αρχεία",
|
||||
"Unshare file" : "Κατάργηση κοινής χρήσης αρχείου",
|
||||
"Delete Attachment" : "Διαγραφή Συνημμένου",
|
||||
"Restore Attachment" : "Επαναφορά Συνημμένου",
|
||||
"File to share" : "Αρχείο για κοινή χρήση",
|
||||
@@ -197,8 +196,6 @@
|
||||
"Set a due date" : "Καθορίστε ημερομηνίας λήξης",
|
||||
"Remove due date" : "Αφαίρεση ημερομηνίας λήξης",
|
||||
"Select Date" : "Επέλεξε Ημέρα",
|
||||
"Today" : "Σήμερα",
|
||||
"Tomorrow" : "Αύριο",
|
||||
"Save" : "Αποθήκευση",
|
||||
"The comment cannot be empty." : "Το σχόλιο δεν μπορεί να είναι κενό.",
|
||||
"The comment cannot be longer than 1000 characters." : "Το σχόλιο δεν μπορεί να έχι περισσότερους από 1000 χαρακτήρες.",
|
||||
@@ -215,6 +212,7 @@
|
||||
"Write a description …" : "Γράψτε μια περιγραφή…",
|
||||
"Choose attachment" : "Επιλογή συνημμένου",
|
||||
"(group)" : "(ομάδα)",
|
||||
"(circle)" : "(κύκλος)",
|
||||
"Assign to me" : "Ανάθεση σε εμένα",
|
||||
"Unassign myself" : "Αποδέσμευσή μου",
|
||||
"Move card" : "Μετακίνηση κάρτας",
|
||||
@@ -250,13 +248,14 @@
|
||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Είστε βέβαιοι ότι θέλετε να διαγράψετε τον πίνακα {title}; Θα διαγραφούν όλα τα δεδομένα.",
|
||||
"Delete the board?" : "Διαγραφή πίνακα;",
|
||||
"Loading filtered view" : "Φόρτωση εμφάνισης με βάση το φίλτρο",
|
||||
"Today" : "Σήμερα",
|
||||
"Tomorrow" : "Αύριο",
|
||||
"This week" : "Αυτή την εβδομάδα",
|
||||
"No due" : "Χωρίς λήξη",
|
||||
"No upcoming cards" : "Δεν υπάρχουν επερχόμενες κάρτες",
|
||||
"upcoming cards" : "Επερχόμενες κάρτες",
|
||||
"Link to a board" : "Σύνδεσμος στον πίνακα",
|
||||
"Link to a card" : "Σύνδεσμος σε καρτέλα",
|
||||
"Create a card" : "Δημιουργία κάρτας",
|
||||
"Something went wrong" : "Κάτι πήγε στραβά",
|
||||
"Failed to upload {name}" : "Αποτυχία μεταφόρτωσης {όνομα}",
|
||||
"Maximum file size of {size} exceeded" : "Υπέρβαση επιτρεπόμενου μεγέθους αρχείου {size}",
|
||||
|
||||
@@ -5,6 +5,7 @@ OC.L10N.register(
|
||||
"Personal" : "Personal",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "The card \"%s\" on \"%s\" has reached its due date.",
|
||||
"The board \"%s\" has been shared with you by %s." : "The board \"%s\" has been shared with you by %s.",
|
||||
"{user} has shared the board %s with you." : "{user} has shared the board %s with you.",
|
||||
"Finished" : "Finished",
|
||||
"To review" : "To review",
|
||||
"Action needed" : "Action needed",
|
||||
@@ -22,7 +23,6 @@ OC.L10N.register(
|
||||
"Cancel" : "Cancel",
|
||||
"File already exists" : "File already exists",
|
||||
"Do you want to overwrite it?" : "Do you want to overwrite it?",
|
||||
"Add card" : "Add card",
|
||||
"Filter by tag" : "Filter by tag",
|
||||
"Hide archived cards" : "Hide archived cards",
|
||||
"Show archived cards" : "Show archived cards",
|
||||
@@ -33,6 +33,7 @@ OC.L10N.register(
|
||||
"Can edit" : "Can edit",
|
||||
"Can share" : "Can share",
|
||||
"Delete" : "Delete",
|
||||
"Add card" : "Add card",
|
||||
"Edit" : "Edit",
|
||||
"Members" : "Members",
|
||||
"Attachments" : "Attachments",
|
||||
@@ -41,8 +42,6 @@ OC.L10N.register(
|
||||
"Created" : "Created",
|
||||
"Due date" : "Due date",
|
||||
"Remove due date" : "Remove due date",
|
||||
"Today" : "Today",
|
||||
"Tomorrow" : "Tomorrow",
|
||||
"Save" : "Save",
|
||||
"Reply" : "Reply",
|
||||
"Update" : "Update",
|
||||
@@ -56,6 +55,8 @@ OC.L10N.register(
|
||||
"Shared with you" : "Shared with you",
|
||||
"Board details" : "Board details",
|
||||
"Edit board" : "Edit board",
|
||||
"Today" : "Today",
|
||||
"Tomorrow" : "Tomorrow",
|
||||
"This week" : "This week"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
"Personal" : "Personal",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "The card \"%s\" on \"%s\" has reached its due date.",
|
||||
"The board \"%s\" has been shared with you by %s." : "The board \"%s\" has been shared with you by %s.",
|
||||
"{user} has shared the board %s with you." : "{user} has shared the board %s with you.",
|
||||
"Finished" : "Finished",
|
||||
"To review" : "To review",
|
||||
"Action needed" : "Action needed",
|
||||
@@ -20,7 +21,6 @@
|
||||
"Cancel" : "Cancel",
|
||||
"File already exists" : "File already exists",
|
||||
"Do you want to overwrite it?" : "Do you want to overwrite it?",
|
||||
"Add card" : "Add card",
|
||||
"Filter by tag" : "Filter by tag",
|
||||
"Hide archived cards" : "Hide archived cards",
|
||||
"Show archived cards" : "Show archived cards",
|
||||
@@ -31,6 +31,7 @@
|
||||
"Can edit" : "Can edit",
|
||||
"Can share" : "Can share",
|
||||
"Delete" : "Delete",
|
||||
"Add card" : "Add card",
|
||||
"Edit" : "Edit",
|
||||
"Members" : "Members",
|
||||
"Attachments" : "Attachments",
|
||||
@@ -39,8 +40,6 @@
|
||||
"Created" : "Created",
|
||||
"Due date" : "Due date",
|
||||
"Remove due date" : "Remove due date",
|
||||
"Today" : "Today",
|
||||
"Tomorrow" : "Tomorrow",
|
||||
"Save" : "Save",
|
||||
"Reply" : "Reply",
|
||||
"Update" : "Update",
|
||||
@@ -54,6 +53,8 @@
|
||||
"Shared with you" : "Shared with you",
|
||||
"Board details" : "Board details",
|
||||
"Edit board" : "Edit board",
|
||||
"Today" : "Today",
|
||||
"Tomorrow" : "Tomorrow",
|
||||
"This week" : "This week"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
@@ -45,9 +45,12 @@ OC.L10N.register(
|
||||
"A <strong>comment</strong> was created on a card" : "<strong>Komento</strong> kreiĝis sur karton",
|
||||
"Personal" : "Persona",
|
||||
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "La karto „%s“ sur „%s“ estis atribuita al vi de %s.",
|
||||
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} atribuis la karton „%s“ sur „%s“ al vi.",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "La karto „%s“ sur „%s“ atingis sian limdaton.",
|
||||
"%s has mentioned you in a comment on \"%s\"." : "%s menciis vin en komento ĉe „%s“.",
|
||||
"{user} has mentioned you in a comment on \"%s\"." : "{user} menciis vin en komento ĉe „%s“.",
|
||||
"The board \"%s\" has been shared with you by %s." : "La tabulo „%s“ estis kunhavigita kun vi de %s.",
|
||||
"{user} has shared the board %s with you." : "{user} kunhavigis la tabulon %s kun vi.",
|
||||
"No data was provided to create an attachment." : "Neniu datumo troviĝis por krei aldonaĵon.",
|
||||
"Finished" : "Finita",
|
||||
"To review" : "Reviziota",
|
||||
@@ -74,7 +77,6 @@ OC.L10N.register(
|
||||
"Select board" : "Elekti tabulon",
|
||||
"Cancel" : "Nuligi",
|
||||
"File already exists" : "La dosiero jam ekzistas",
|
||||
"Add card" : "Aldoni karton",
|
||||
"Archived cards" : "Arĥivigitaj kartoj",
|
||||
"Hide archived cards" : "Kaŝi arĥivigitajn kartojn",
|
||||
"Show archived cards" : "Montri arĥivigitajn kartojn",
|
||||
@@ -90,6 +92,7 @@ OC.L10N.register(
|
||||
"Can edit" : "Povas redakti",
|
||||
"Can share" : "Can share",
|
||||
"Delete" : "Forigi",
|
||||
"Add card" : "Aldoni karton",
|
||||
"Edit" : "Redakti",
|
||||
"Members" : "Membroj",
|
||||
"Attachments" : "Dosieraj aldonaĵoj",
|
||||
@@ -99,8 +102,6 @@ OC.L10N.register(
|
||||
"Due date" : "Limdato",
|
||||
"Remove due date" : "Viŝi limdaton",
|
||||
"Select Date" : "Elekti daton",
|
||||
"Today" : "Hodiaŭ",
|
||||
"Tomorrow" : "Morgaŭ",
|
||||
"Save" : "Konservi",
|
||||
"Reply" : "Respondi",
|
||||
"Update" : "Ĝisdatigi",
|
||||
@@ -116,6 +117,8 @@ OC.L10N.register(
|
||||
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Limigo de Kartaro („Deck“) baros uzantojn, kiuj ne estas en tiuj grupoj, krei iliajn proprajn tabulojn. Uzantoj tamen eblos labori kun tabuloj kunhavigitaj kun ili.",
|
||||
"Edit board" : "Modifi tabulon",
|
||||
"An error occurred" : "Eraro okazis",
|
||||
"Today" : "Hodiaŭ",
|
||||
"Tomorrow" : "Morgaŭ",
|
||||
"Link to a board" : "Ligilo al tabulo",
|
||||
"Maximum file size of {size} exceeded" : "Maksimuma dosiergrando {size} transpasita"
|
||||
},
|
||||
|
||||
@@ -43,9 +43,12 @@
|
||||
"A <strong>comment</strong> was created on a card" : "<strong>Komento</strong> kreiĝis sur karton",
|
||||
"Personal" : "Persona",
|
||||
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "La karto „%s“ sur „%s“ estis atribuita al vi de %s.",
|
||||
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} atribuis la karton „%s“ sur „%s“ al vi.",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "La karto „%s“ sur „%s“ atingis sian limdaton.",
|
||||
"%s has mentioned you in a comment on \"%s\"." : "%s menciis vin en komento ĉe „%s“.",
|
||||
"{user} has mentioned you in a comment on \"%s\"." : "{user} menciis vin en komento ĉe „%s“.",
|
||||
"The board \"%s\" has been shared with you by %s." : "La tabulo „%s“ estis kunhavigita kun vi de %s.",
|
||||
"{user} has shared the board %s with you." : "{user} kunhavigis la tabulon %s kun vi.",
|
||||
"No data was provided to create an attachment." : "Neniu datumo troviĝis por krei aldonaĵon.",
|
||||
"Finished" : "Finita",
|
||||
"To review" : "Reviziota",
|
||||
@@ -72,7 +75,6 @@
|
||||
"Select board" : "Elekti tabulon",
|
||||
"Cancel" : "Nuligi",
|
||||
"File already exists" : "La dosiero jam ekzistas",
|
||||
"Add card" : "Aldoni karton",
|
||||
"Archived cards" : "Arĥivigitaj kartoj",
|
||||
"Hide archived cards" : "Kaŝi arĥivigitajn kartojn",
|
||||
"Show archived cards" : "Montri arĥivigitajn kartojn",
|
||||
@@ -88,6 +90,7 @@
|
||||
"Can edit" : "Povas redakti",
|
||||
"Can share" : "Can share",
|
||||
"Delete" : "Forigi",
|
||||
"Add card" : "Aldoni karton",
|
||||
"Edit" : "Redakti",
|
||||
"Members" : "Membroj",
|
||||
"Attachments" : "Dosieraj aldonaĵoj",
|
||||
@@ -97,8 +100,6 @@
|
||||
"Due date" : "Limdato",
|
||||
"Remove due date" : "Viŝi limdaton",
|
||||
"Select Date" : "Elekti daton",
|
||||
"Today" : "Hodiaŭ",
|
||||
"Tomorrow" : "Morgaŭ",
|
||||
"Save" : "Konservi",
|
||||
"Reply" : "Respondi",
|
||||
"Update" : "Ĝisdatigi",
|
||||
@@ -114,6 +115,8 @@
|
||||
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Limigo de Kartaro („Deck“) baros uzantojn, kiuj ne estas en tiuj grupoj, krei iliajn proprajn tabulojn. Uzantoj tamen eblos labori kun tabuloj kunhavigitaj kun ili.",
|
||||
"Edit board" : "Modifi tabulon",
|
||||
"An error occurred" : "Eraro okazis",
|
||||
"Today" : "Hodiaŭ",
|
||||
"Tomorrow" : "Morgaŭ",
|
||||
"Link to a board" : "Ligilo al tabulo",
|
||||
"Maximum file size of {size} exceeded" : "Maksimuma dosiergrando {size} transpasita"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
|
||||
28
l10n/es.js
28
l10n/es.js
@@ -70,15 +70,12 @@ OC.L10N.register(
|
||||
"Upcoming cards" : "Próximas tarjetas",
|
||||
"Personal" : "Personal",
|
||||
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "La tarjeta \"%s\" en \"%s\" te ha sido asignada por %s.",
|
||||
"{user} has assigned the card {deck-card} on {deck-board} to you." : "{user} te ha asigando la tarjeta {deck-card} de {deck-board} a ti.",
|
||||
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} te ha asignado la tarjeta \"%s\" en \"%s\".",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "La tarjeta \"%s\" en \"%s\" ha alcanzado su fecha límite.",
|
||||
"The card {deck-card} on {deck-board} has reached its due date." : "La tarjeta {deck-card} en {deck-board} ha alcanzado su fecha de caducidad.",
|
||||
"%s has mentioned you in a comment on \"%s\"." : "%s te ha mencionado en un comentario en \"%s\".",
|
||||
"{user} has mentioned you in a comment on {deck-card}." : "{user} te ha mencionado en un comentario de {deck-card}.",
|
||||
"{user} has mentioned you in a comment on \"%s\"." : "{user} te ha comentado en un comentario en \"%s\".",
|
||||
"The board \"%s\" has been shared with you by %s." : "El tablero \"%s\" ha sido compartido contigo por %s.",
|
||||
"{user} has shared {deck-board} with you." : "{user} ha compartido {deck-board} contigo.",
|
||||
"Card comments" : "Comentarios en tarjetas",
|
||||
"%s on %s" : "%s en %s",
|
||||
"{user} has shared the board %s with you." : "{user} ha compartido el tablero %s contigo.",
|
||||
"No data was provided to create an attachment." : "No se proporcionaron datos para crear un adjunto",
|
||||
"Finished" : "Finalizado",
|
||||
"To review" : "Para revisar",
|
||||
@@ -115,8 +112,8 @@ OC.L10N.register(
|
||||
"Select a list" : "Seleccionar una lista",
|
||||
"Card title" : "Título de la tarjeta",
|
||||
"Cancel" : "Cancelar",
|
||||
"Creating the new card …" : "Creando una nueva tarjeta …",
|
||||
"Card \"{card}\" was added to \"{board}\"" : "La tarjeta \"{card}\" fue añadida a \"{board}\"",
|
||||
"Creating the new card…" : "Creando una nueva tarjeta...",
|
||||
"\"{card}\" was added to \"{board}\"" : "\"{card}\" ha sido añadida en \"{board}\"",
|
||||
"Open card" : "Abrir tarjeta",
|
||||
"Close" : "Cerrar",
|
||||
"Create card" : "Crear tarjeta",
|
||||
@@ -130,7 +127,6 @@ OC.L10N.register(
|
||||
"Keep existing file" : "Mantener el archivo existente",
|
||||
"This board is read only" : "Este tablero es de sólo lectura",
|
||||
"Drop your files to upload" : "Arrastra tus archivos para subir",
|
||||
"Add card" : "Añadir tarjeta",
|
||||
"Archived cards" : "Tarjetas archivadas",
|
||||
"Add list" : "Agregar lista",
|
||||
"List name" : "Nombre de la lista",
|
||||
@@ -174,6 +170,7 @@ OC.L10N.register(
|
||||
"Add a new list" : "Añadir una lista nueva",
|
||||
"Archive all cards" : "Archivar todas las tarjetas",
|
||||
"Delete list" : "Eliminar lista",
|
||||
"Add card" : "Añadir tarjeta",
|
||||
"Archive all cards in this list" : "Archivar todas las tarjetas en esta lista",
|
||||
"Add a new card" : "Añadir una nueva tarjeta",
|
||||
"Card name" : "Nombre de la tarjeta",
|
||||
@@ -185,10 +182,9 @@ OC.L10N.register(
|
||||
"Members" : "Miembros",
|
||||
"Upload new files" : "Subir nuevos archivos",
|
||||
"Share from Files" : "Compartir desde Archivos",
|
||||
"Pending share" : "Pendiente de compartir",
|
||||
"Add this attachment" : "Añadir este adjunto",
|
||||
"Show in Files" : "Mostrar en Archivos",
|
||||
"Remove attachment" : "Quitar adjunto",
|
||||
"Unshare file" : "Dejar de compartir archivo",
|
||||
"Delete Attachment" : "Borrar adjunto",
|
||||
"Restore Attachment" : "Restaurar Adjunto",
|
||||
"File to share" : "Archivo a compartir",
|
||||
@@ -201,7 +197,6 @@ OC.L10N.register(
|
||||
"Created" : "Creado",
|
||||
"The title cannot be empty." : "El título no puede estar vacío.",
|
||||
"No comments yet. Begin the discussion!" : "Todavía no hay comentarios. ¡Comienza la discusión!",
|
||||
"Failed to load comments" : "Fallo al cargar los comentarios",
|
||||
"Assign a tag to this card…" : "Asignar una etiqueta a esta tarjeta...",
|
||||
"Assign to users" : "Asignar a usuarios",
|
||||
"Assign to users/groups/circles" : "Asignar a usuarios/grupos/círculos",
|
||||
@@ -210,13 +205,10 @@ OC.L10N.register(
|
||||
"Set a due date" : "Fijar una fecha límite",
|
||||
"Remove due date" : "Eliminar fecha límite",
|
||||
"Select Date" : "Seleccione la fecha",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"Save" : "Guardar",
|
||||
"The comment cannot be empty." : "El comentario no puede estar vacío.",
|
||||
"The comment cannot be longer than 1000 characters." : "El comentario no puede tener más de 1000 caracteres.",
|
||||
"In reply to" : "En respuesta a",
|
||||
"Cancel reply" : "Cancelar respuesta",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
"Description" : "Descripción",
|
||||
@@ -229,7 +221,7 @@ OC.L10N.register(
|
||||
"Write a description …" : "Escribe una descripción...",
|
||||
"Choose attachment" : "Escoger adjunto",
|
||||
"(group)" : "(grupo)",
|
||||
"{count} comments, {unread} unread" : "{count} comentarios, {unread} sin leer",
|
||||
"(circle)" : "(circle)",
|
||||
"Assign to me" : "Asignarme a mí",
|
||||
"Unassign myself" : "Desasignarme a mí mismo",
|
||||
"Move card" : "Mover tarjeta",
|
||||
@@ -265,10 +257,10 @@ OC.L10N.register(
|
||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "¿Estas seguro de que quieres eliminar el tablero {title}? Esto eliminará todos los datos del tablero.",
|
||||
"Delete the board?" : "¿Borrar el tablero?",
|
||||
"Loading filtered view" : "Cargando vista filtrada",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana",
|
||||
"No due" : "Sin finalizar",
|
||||
"Search for {searchQuery} in all boards" : "Buscar {searchQuery} en todos los tableros",
|
||||
"No results found" : "No se encontraron resultados",
|
||||
"No upcoming cards" : "No hay tarjetas próximas",
|
||||
"upcoming cards" : "próximas tarjetas",
|
||||
"Link to a board" : "Enlace a un tablero",
|
||||
|
||||
28
l10n/es.json
28
l10n/es.json
@@ -68,15 +68,12 @@
|
||||
"Upcoming cards" : "Próximas tarjetas",
|
||||
"Personal" : "Personal",
|
||||
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "La tarjeta \"%s\" en \"%s\" te ha sido asignada por %s.",
|
||||
"{user} has assigned the card {deck-card} on {deck-board} to you." : "{user} te ha asigando la tarjeta {deck-card} de {deck-board} a ti.",
|
||||
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} te ha asignado la tarjeta \"%s\" en \"%s\".",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "La tarjeta \"%s\" en \"%s\" ha alcanzado su fecha límite.",
|
||||
"The card {deck-card} on {deck-board} has reached its due date." : "La tarjeta {deck-card} en {deck-board} ha alcanzado su fecha de caducidad.",
|
||||
"%s has mentioned you in a comment on \"%s\"." : "%s te ha mencionado en un comentario en \"%s\".",
|
||||
"{user} has mentioned you in a comment on {deck-card}." : "{user} te ha mencionado en un comentario de {deck-card}.",
|
||||
"{user} has mentioned you in a comment on \"%s\"." : "{user} te ha comentado en un comentario en \"%s\".",
|
||||
"The board \"%s\" has been shared with you by %s." : "El tablero \"%s\" ha sido compartido contigo por %s.",
|
||||
"{user} has shared {deck-board} with you." : "{user} ha compartido {deck-board} contigo.",
|
||||
"Card comments" : "Comentarios en tarjetas",
|
||||
"%s on %s" : "%s en %s",
|
||||
"{user} has shared the board %s with you." : "{user} ha compartido el tablero %s contigo.",
|
||||
"No data was provided to create an attachment." : "No se proporcionaron datos para crear un adjunto",
|
||||
"Finished" : "Finalizado",
|
||||
"To review" : "Para revisar",
|
||||
@@ -113,8 +110,8 @@
|
||||
"Select a list" : "Seleccionar una lista",
|
||||
"Card title" : "Título de la tarjeta",
|
||||
"Cancel" : "Cancelar",
|
||||
"Creating the new card …" : "Creando una nueva tarjeta …",
|
||||
"Card \"{card}\" was added to \"{board}\"" : "La tarjeta \"{card}\" fue añadida a \"{board}\"",
|
||||
"Creating the new card…" : "Creando una nueva tarjeta...",
|
||||
"\"{card}\" was added to \"{board}\"" : "\"{card}\" ha sido añadida en \"{board}\"",
|
||||
"Open card" : "Abrir tarjeta",
|
||||
"Close" : "Cerrar",
|
||||
"Create card" : "Crear tarjeta",
|
||||
@@ -128,7 +125,6 @@
|
||||
"Keep existing file" : "Mantener el archivo existente",
|
||||
"This board is read only" : "Este tablero es de sólo lectura",
|
||||
"Drop your files to upload" : "Arrastra tus archivos para subir",
|
||||
"Add card" : "Añadir tarjeta",
|
||||
"Archived cards" : "Tarjetas archivadas",
|
||||
"Add list" : "Agregar lista",
|
||||
"List name" : "Nombre de la lista",
|
||||
@@ -172,6 +168,7 @@
|
||||
"Add a new list" : "Añadir una lista nueva",
|
||||
"Archive all cards" : "Archivar todas las tarjetas",
|
||||
"Delete list" : "Eliminar lista",
|
||||
"Add card" : "Añadir tarjeta",
|
||||
"Archive all cards in this list" : "Archivar todas las tarjetas en esta lista",
|
||||
"Add a new card" : "Añadir una nueva tarjeta",
|
||||
"Card name" : "Nombre de la tarjeta",
|
||||
@@ -183,10 +180,9 @@
|
||||
"Members" : "Miembros",
|
||||
"Upload new files" : "Subir nuevos archivos",
|
||||
"Share from Files" : "Compartir desde Archivos",
|
||||
"Pending share" : "Pendiente de compartir",
|
||||
"Add this attachment" : "Añadir este adjunto",
|
||||
"Show in Files" : "Mostrar en Archivos",
|
||||
"Remove attachment" : "Quitar adjunto",
|
||||
"Unshare file" : "Dejar de compartir archivo",
|
||||
"Delete Attachment" : "Borrar adjunto",
|
||||
"Restore Attachment" : "Restaurar Adjunto",
|
||||
"File to share" : "Archivo a compartir",
|
||||
@@ -199,7 +195,6 @@
|
||||
"Created" : "Creado",
|
||||
"The title cannot be empty." : "El título no puede estar vacío.",
|
||||
"No comments yet. Begin the discussion!" : "Todavía no hay comentarios. ¡Comienza la discusión!",
|
||||
"Failed to load comments" : "Fallo al cargar los comentarios",
|
||||
"Assign a tag to this card…" : "Asignar una etiqueta a esta tarjeta...",
|
||||
"Assign to users" : "Asignar a usuarios",
|
||||
"Assign to users/groups/circles" : "Asignar a usuarios/grupos/círculos",
|
||||
@@ -208,13 +203,10 @@
|
||||
"Set a due date" : "Fijar una fecha límite",
|
||||
"Remove due date" : "Eliminar fecha límite",
|
||||
"Select Date" : "Seleccione la fecha",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"Save" : "Guardar",
|
||||
"The comment cannot be empty." : "El comentario no puede estar vacío.",
|
||||
"The comment cannot be longer than 1000 characters." : "El comentario no puede tener más de 1000 caracteres.",
|
||||
"In reply to" : "En respuesta a",
|
||||
"Cancel reply" : "Cancelar respuesta",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
"Description" : "Descripción",
|
||||
@@ -227,7 +219,7 @@
|
||||
"Write a description …" : "Escribe una descripción...",
|
||||
"Choose attachment" : "Escoger adjunto",
|
||||
"(group)" : "(grupo)",
|
||||
"{count} comments, {unread} unread" : "{count} comentarios, {unread} sin leer",
|
||||
"(circle)" : "(circle)",
|
||||
"Assign to me" : "Asignarme a mí",
|
||||
"Unassign myself" : "Desasignarme a mí mismo",
|
||||
"Move card" : "Mover tarjeta",
|
||||
@@ -263,10 +255,10 @@
|
||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "¿Estas seguro de que quieres eliminar el tablero {title}? Esto eliminará todos los datos del tablero.",
|
||||
"Delete the board?" : "¿Borrar el tablero?",
|
||||
"Loading filtered view" : "Cargando vista filtrada",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana",
|
||||
"No due" : "Sin finalizar",
|
||||
"Search for {searchQuery} in all boards" : "Buscar {searchQuery} en todos los tableros",
|
||||
"No results found" : "No se encontraron resultados",
|
||||
"No upcoming cards" : "No hay tarjetas próximas",
|
||||
"upcoming cards" : "próximas tarjetas",
|
||||
"Link to a board" : "Enlace a un tablero",
|
||||
|
||||
@@ -5,6 +5,7 @@ OC.L10N.register(
|
||||
"Personal" : "Personal",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
|
||||
"The board \"%s\" has been shared with you by %s." : "El tablero \"%s\" ha sido compartido contigo por %s.",
|
||||
"{user} has shared the board %s with you." : "{user} ha compartido el tablero %s contigo. ",
|
||||
"Finished" : "Terminado",
|
||||
"To review" : "Para revisar",
|
||||
"Action needed" : "Acción requerida",
|
||||
@@ -17,7 +18,6 @@ OC.L10N.register(
|
||||
"Cancel" : "Cancelar",
|
||||
"File already exists" : "El archivo ya existe",
|
||||
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Filter by tag" : "Filtrar por etiqueta",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
@@ -28,6 +28,7 @@ OC.L10N.register(
|
||||
"Can edit" : "Puede editar",
|
||||
"Can share" : "Puede compartir",
|
||||
"Delete" : "Borrar",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Edit" : "Editar",
|
||||
"Members" : "Miembros",
|
||||
"Comments" : "Comentarios",
|
||||
@@ -35,8 +36,6 @@ OC.L10N.register(
|
||||
"Created" : "Creado",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
@@ -48,6 +47,8 @@ OC.L10N.register(
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
"Personal" : "Personal",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
|
||||
"The board \"%s\" has been shared with you by %s." : "El tablero \"%s\" ha sido compartido contigo por %s.",
|
||||
"{user} has shared the board %s with you." : "{user} ha compartido el tablero %s contigo. ",
|
||||
"Finished" : "Terminado",
|
||||
"To review" : "Para revisar",
|
||||
"Action needed" : "Acción requerida",
|
||||
@@ -15,7 +16,6 @@
|
||||
"Cancel" : "Cancelar",
|
||||
"File already exists" : "El archivo ya existe",
|
||||
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Filter by tag" : "Filtrar por etiqueta",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
@@ -26,6 +26,7 @@
|
||||
"Can edit" : "Puede editar",
|
||||
"Can share" : "Puede compartir",
|
||||
"Delete" : "Borrar",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Edit" : "Editar",
|
||||
"Members" : "Miembros",
|
||||
"Comments" : "Comentarios",
|
||||
@@ -33,8 +34,6 @@
|
||||
"Created" : "Creado",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
@@ -46,6 +45,8 @@
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
@@ -12,7 +12,6 @@ OC.L10N.register(
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo subido sobrepasa el valor MAX_FILE_SIZE especificada en el formulario HTML",
|
||||
"No file was uploaded" : "No se subió ningún archivo ",
|
||||
"Missing a temporary folder" : "Falta un directorio temporal",
|
||||
"Add board" : "Nuevo Tablero",
|
||||
"Cancel" : "Cancelar",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
@@ -31,8 +30,6 @@ OC.L10N.register(
|
||||
"Created" : "Creado",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Select Date" : "Seleccionar fecha",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
@@ -40,13 +37,11 @@ OC.L10N.register(
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"(group)" : "(grupo)",
|
||||
"seconds ago" : "segundos",
|
||||
"All boards" : "Todos los Tableros",
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Edit board" : "Editar Tablero",
|
||||
"Clone board" : "Clonar Tablero",
|
||||
"Delete board" : "Eliminar Tablero",
|
||||
"An error occurred" : "Ocurrió un error",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -10,7 +10,6 @@
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo subido sobrepasa el valor MAX_FILE_SIZE especificada en el formulario HTML",
|
||||
"No file was uploaded" : "No se subió ningún archivo ",
|
||||
"Missing a temporary folder" : "Falta un directorio temporal",
|
||||
"Add board" : "Nuevo Tablero",
|
||||
"Cancel" : "Cancelar",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
@@ -29,8 +28,6 @@
|
||||
"Created" : "Creado",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Select Date" : "Seleccionar fecha",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
@@ -38,13 +35,11 @@
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"(group)" : "(grupo)",
|
||||
"seconds ago" : "segundos",
|
||||
"All boards" : "Todos los Tableros",
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Edit board" : "Editar Tablero",
|
||||
"Clone board" : "Clonar Tablero",
|
||||
"Delete board" : "Eliminar Tablero",
|
||||
"An error occurred" : "Ocurrió un error",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
@@ -5,6 +5,7 @@ OC.L10N.register(
|
||||
"Personal" : "Personal",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
|
||||
"The board \"%s\" has been shared with you by %s." : "El tablero \"%s\" ha sido compartido contigo por %s.",
|
||||
"{user} has shared the board %s with you." : "{user} ha compartido el tablero %s contigo. ",
|
||||
"Finished" : "Terminado",
|
||||
"To review" : "Para revisar",
|
||||
"Action needed" : "Acción requerida",
|
||||
@@ -21,7 +22,6 @@ OC.L10N.register(
|
||||
"Cancel" : "Cancelar",
|
||||
"File already exists" : "El archivo ya existe",
|
||||
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Details" : "Detalles",
|
||||
@@ -31,6 +31,7 @@ OC.L10N.register(
|
||||
"Can edit" : "Puede editar",
|
||||
"Can share" : "Puede compartir",
|
||||
"Delete" : "Borrar",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Edit" : "Editar",
|
||||
"Members" : "Miembros",
|
||||
"Comments" : "Comentarios",
|
||||
@@ -38,8 +39,6 @@ OC.L10N.register(
|
||||
"Created" : "Creado",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
@@ -51,6 +50,8 @@ OC.L10N.register(
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
"Personal" : "Personal",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
|
||||
"The board \"%s\" has been shared with you by %s." : "El tablero \"%s\" ha sido compartido contigo por %s.",
|
||||
"{user} has shared the board %s with you." : "{user} ha compartido el tablero %s contigo. ",
|
||||
"Finished" : "Terminado",
|
||||
"To review" : "Para revisar",
|
||||
"Action needed" : "Acción requerida",
|
||||
@@ -19,7 +20,6 @@
|
||||
"Cancel" : "Cancelar",
|
||||
"File already exists" : "El archivo ya existe",
|
||||
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Details" : "Detalles",
|
||||
@@ -29,6 +29,7 @@
|
||||
"Can edit" : "Puede editar",
|
||||
"Can share" : "Puede compartir",
|
||||
"Delete" : "Borrar",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Edit" : "Editar",
|
||||
"Members" : "Miembros",
|
||||
"Comments" : "Comentarios",
|
||||
@@ -36,8 +37,6 @@
|
||||
"Created" : "Creado",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
@@ -49,6 +48,8 @@
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
@@ -5,6 +5,7 @@ OC.L10N.register(
|
||||
"Personal" : "Personal",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
|
||||
"The board \"%s\" has been shared with you by %s." : "El tablero \"%s\" ha sido compartido contigo por %s.",
|
||||
"{user} has shared the board %s with you." : "{user} ha compartido el tablero %s contigo. ",
|
||||
"Finished" : "Terminado",
|
||||
"To review" : "Para revisar",
|
||||
"Action needed" : "Acción requerida",
|
||||
@@ -22,7 +23,6 @@ OC.L10N.register(
|
||||
"Cancel" : "Cancelar",
|
||||
"File already exists" : "El archivo ya existe",
|
||||
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Details" : "Detalles",
|
||||
@@ -32,6 +32,7 @@ OC.L10N.register(
|
||||
"Can edit" : "Puede editar",
|
||||
"Can share" : "Puede compartir",
|
||||
"Delete" : "Borrar",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Edit" : "Editar",
|
||||
"Members" : "Miembros",
|
||||
"Comments" : "Comentarios",
|
||||
@@ -39,8 +40,6 @@ OC.L10N.register(
|
||||
"Created" : "Creado",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
@@ -52,6 +51,8 @@ OC.L10N.register(
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
"Personal" : "Personal",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
|
||||
"The board \"%s\" has been shared with you by %s." : "El tablero \"%s\" ha sido compartido contigo por %s.",
|
||||
"{user} has shared the board %s with you." : "{user} ha compartido el tablero %s contigo. ",
|
||||
"Finished" : "Terminado",
|
||||
"To review" : "Para revisar",
|
||||
"Action needed" : "Acción requerida",
|
||||
@@ -20,7 +21,6 @@
|
||||
"Cancel" : "Cancelar",
|
||||
"File already exists" : "El archivo ya existe",
|
||||
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Details" : "Detalles",
|
||||
@@ -30,6 +30,7 @@
|
||||
"Can edit" : "Puede editar",
|
||||
"Can share" : "Puede compartir",
|
||||
"Delete" : "Borrar",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Edit" : "Editar",
|
||||
"Members" : "Miembros",
|
||||
"Comments" : "Comentarios",
|
||||
@@ -37,8 +38,6 @@
|
||||
"Created" : "Creado",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
@@ -50,6 +49,8 @@
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
@@ -5,6 +5,7 @@ OC.L10N.register(
|
||||
"Personal" : "Personal",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
|
||||
"The board \"%s\" has been shared with you by %s." : "El tablero \"%s\" ha sido compartido contigo por %s.",
|
||||
"{user} has shared the board %s with you." : "{user} ha compartido el tablero %s contigo. ",
|
||||
"Finished" : "Terminado",
|
||||
"To review" : "Para revisar",
|
||||
"Action needed" : "Acción requerida",
|
||||
@@ -21,7 +22,6 @@ OC.L10N.register(
|
||||
"Cancel" : "Cancelar",
|
||||
"File already exists" : "El archivo ya existe",
|
||||
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Details" : "Detalles",
|
||||
@@ -31,6 +31,7 @@ OC.L10N.register(
|
||||
"Can edit" : "Puede editar",
|
||||
"Can share" : "Puede compartir",
|
||||
"Delete" : "Borrar",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Edit" : "Editar",
|
||||
"Members" : "Miembros",
|
||||
"Comments" : "Comentarios",
|
||||
@@ -38,8 +39,6 @@ OC.L10N.register(
|
||||
"Created" : "Creado",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
@@ -51,6 +50,8 @@ OC.L10N.register(
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
"Personal" : "Personal",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
|
||||
"The board \"%s\" has been shared with you by %s." : "El tablero \"%s\" ha sido compartido contigo por %s.",
|
||||
"{user} has shared the board %s with you." : "{user} ha compartido el tablero %s contigo. ",
|
||||
"Finished" : "Terminado",
|
||||
"To review" : "Para revisar",
|
||||
"Action needed" : "Acción requerida",
|
||||
@@ -19,7 +20,6 @@
|
||||
"Cancel" : "Cancelar",
|
||||
"File already exists" : "El archivo ya existe",
|
||||
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Details" : "Detalles",
|
||||
@@ -29,6 +29,7 @@
|
||||
"Can edit" : "Puede editar",
|
||||
"Can share" : "Puede compartir",
|
||||
"Delete" : "Borrar",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Edit" : "Editar",
|
||||
"Members" : "Miembros",
|
||||
"Comments" : "Comentarios",
|
||||
@@ -36,8 +37,6 @@
|
||||
"Created" : "Creado",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
@@ -49,6 +48,8 @@
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
@@ -5,6 +5,7 @@ OC.L10N.register(
|
||||
"Personal" : "Personal",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
|
||||
"The board \"%s\" has been shared with you by %s." : "El tablero \"%s\" ha sido compartido contigo por %s.",
|
||||
"{user} has shared the board %s with you." : "{user} ha compartido el tablero %s contigo. ",
|
||||
"Finished" : "Terminado",
|
||||
"To review" : "Para revisar",
|
||||
"Action needed" : "Acción requerida",
|
||||
@@ -21,7 +22,6 @@ OC.L10N.register(
|
||||
"Cancel" : "Cancelar",
|
||||
"File already exists" : "El archivo ya existe",
|
||||
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Details" : "Detalles",
|
||||
@@ -31,6 +31,7 @@ OC.L10N.register(
|
||||
"Can edit" : "Puede editar",
|
||||
"Can share" : "Puede compartir",
|
||||
"Delete" : "Borrar",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Edit" : "Editar",
|
||||
"Members" : "Miembros",
|
||||
"Comments" : "Comentarios",
|
||||
@@ -38,8 +39,6 @@ OC.L10N.register(
|
||||
"Created" : "Creado",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
@@ -51,6 +50,8 @@ OC.L10N.register(
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
"Personal" : "Personal",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
|
||||
"The board \"%s\" has been shared with you by %s." : "El tablero \"%s\" ha sido compartido contigo por %s.",
|
||||
"{user} has shared the board %s with you." : "{user} ha compartido el tablero %s contigo. ",
|
||||
"Finished" : "Terminado",
|
||||
"To review" : "Para revisar",
|
||||
"Action needed" : "Acción requerida",
|
||||
@@ -19,7 +20,6 @@
|
||||
"Cancel" : "Cancelar",
|
||||
"File already exists" : "El archivo ya existe",
|
||||
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Details" : "Detalles",
|
||||
@@ -29,6 +29,7 @@
|
||||
"Can edit" : "Puede editar",
|
||||
"Can share" : "Puede compartir",
|
||||
"Delete" : "Borrar",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Edit" : "Editar",
|
||||
"Members" : "Miembros",
|
||||
"Comments" : "Comentarios",
|
||||
@@ -36,8 +37,6 @@
|
||||
"Created" : "Creado",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
@@ -49,6 +48,8 @@
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
@@ -5,6 +5,7 @@ OC.L10N.register(
|
||||
"Personal" : "Personal",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
|
||||
"The board \"%s\" has been shared with you by %s." : "El tablero \"%s\" ha sido compartido contigo por %s.",
|
||||
"{user} has shared the board %s with you." : "{user} ha compartido el tablero %s contigo. ",
|
||||
"Finished" : "Terminado",
|
||||
"To review" : "Para revisar",
|
||||
"Action needed" : "Acción requerida",
|
||||
@@ -21,7 +22,6 @@ OC.L10N.register(
|
||||
"Cancel" : "Cancelar",
|
||||
"File already exists" : "El archivo ya existe",
|
||||
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Details" : "Detalles",
|
||||
@@ -31,6 +31,7 @@ OC.L10N.register(
|
||||
"Can edit" : "Puede editar",
|
||||
"Can share" : "Puede compartir",
|
||||
"Delete" : "Borrar",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Edit" : "Editar",
|
||||
"Members" : "Miembros",
|
||||
"Comments" : "Comentarios",
|
||||
@@ -38,8 +39,6 @@ OC.L10N.register(
|
||||
"Created" : "Creado",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
@@ -51,6 +50,8 @@ OC.L10N.register(
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
"Personal" : "Personal",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
|
||||
"The board \"%s\" has been shared with you by %s." : "El tablero \"%s\" ha sido compartido contigo por %s.",
|
||||
"{user} has shared the board %s with you." : "{user} ha compartido el tablero %s contigo. ",
|
||||
"Finished" : "Terminado",
|
||||
"To review" : "Para revisar",
|
||||
"Action needed" : "Acción requerida",
|
||||
@@ -19,7 +20,6 @@
|
||||
"Cancel" : "Cancelar",
|
||||
"File already exists" : "El archivo ya existe",
|
||||
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Details" : "Detalles",
|
||||
@@ -29,6 +29,7 @@
|
||||
"Can edit" : "Puede editar",
|
||||
"Can share" : "Puede compartir",
|
||||
"Delete" : "Borrar",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Edit" : "Editar",
|
||||
"Members" : "Miembros",
|
||||
"Comments" : "Comentarios",
|
||||
@@ -36,8 +37,6 @@
|
||||
"Created" : "Creado",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
@@ -49,6 +48,8 @@
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
@@ -5,6 +5,7 @@ OC.L10N.register(
|
||||
"Personal" : "Personal",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
|
||||
"The board \"%s\" has been shared with you by %s." : "El tablero \"%s\" ha sido compartido contigo por %s.",
|
||||
"{user} has shared the board %s with you." : "{user} ha compartido el tablero %s contigo. ",
|
||||
"Finished" : "Terminado",
|
||||
"To review" : "Para revisar",
|
||||
"Action needed" : "Acción requerida",
|
||||
@@ -21,7 +22,6 @@ OC.L10N.register(
|
||||
"Cancel" : "Cancelar",
|
||||
"File already exists" : "El archivo ya existe",
|
||||
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Details" : "Detalles",
|
||||
@@ -31,6 +31,7 @@ OC.L10N.register(
|
||||
"Can edit" : "Puede editar",
|
||||
"Can share" : "Puede compartir",
|
||||
"Delete" : "Borrar",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Edit" : "Editar",
|
||||
"Members" : "Miembros",
|
||||
"Comments" : "Comentarios",
|
||||
@@ -38,8 +39,6 @@ OC.L10N.register(
|
||||
"Created" : "Creado",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
@@ -51,6 +50,8 @@ OC.L10N.register(
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
"Personal" : "Personal",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
|
||||
"The board \"%s\" has been shared with you by %s." : "El tablero \"%s\" ha sido compartido contigo por %s.",
|
||||
"{user} has shared the board %s with you." : "{user} ha compartido el tablero %s contigo. ",
|
||||
"Finished" : "Terminado",
|
||||
"To review" : "Para revisar",
|
||||
"Action needed" : "Acción requerida",
|
||||
@@ -19,7 +20,6 @@
|
||||
"Cancel" : "Cancelar",
|
||||
"File already exists" : "El archivo ya existe",
|
||||
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Details" : "Detalles",
|
||||
@@ -29,6 +29,7 @@
|
||||
"Can edit" : "Puede editar",
|
||||
"Can share" : "Puede compartir",
|
||||
"Delete" : "Borrar",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Edit" : "Editar",
|
||||
"Members" : "Miembros",
|
||||
"Comments" : "Comentarios",
|
||||
@@ -36,8 +37,6 @@
|
||||
"Created" : "Creado",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
@@ -49,6 +48,8 @@
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
@@ -5,6 +5,7 @@ OC.L10N.register(
|
||||
"Personal" : "Personal",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
|
||||
"The board \"%s\" has been shared with you by %s." : "El tablero \"%s\" ha sido compartido contigo por %s.",
|
||||
"{user} has shared the board %s with you." : "{user} ha compartido el tablero %s contigo. ",
|
||||
"Finished" : "Terminado",
|
||||
"To review" : "Para revisar",
|
||||
"Action needed" : "Acción requerida",
|
||||
@@ -17,7 +18,6 @@ OC.L10N.register(
|
||||
"Cancel" : "Cancelar",
|
||||
"File already exists" : "El archivo ya existe",
|
||||
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Details" : "Detalles",
|
||||
@@ -27,6 +27,7 @@ OC.L10N.register(
|
||||
"Can edit" : "Puede editar",
|
||||
"Can share" : "Puede compartir",
|
||||
"Delete" : "Borrar",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Edit" : "Editar",
|
||||
"Members" : "Miembros",
|
||||
"Comments" : "Comentarios",
|
||||
@@ -34,8 +35,6 @@ OC.L10N.register(
|
||||
"Created" : "Creado",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
@@ -47,6 +46,8 @@ OC.L10N.register(
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
"Personal" : "Personal",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
|
||||
"The board \"%s\" has been shared with you by %s." : "El tablero \"%s\" ha sido compartido contigo por %s.",
|
||||
"{user} has shared the board %s with you." : "{user} ha compartido el tablero %s contigo. ",
|
||||
"Finished" : "Terminado",
|
||||
"To review" : "Para revisar",
|
||||
"Action needed" : "Acción requerida",
|
||||
@@ -15,7 +16,6 @@
|
||||
"Cancel" : "Cancelar",
|
||||
"File already exists" : "El archivo ya existe",
|
||||
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Details" : "Detalles",
|
||||
@@ -25,6 +25,7 @@
|
||||
"Can edit" : "Puede editar",
|
||||
"Can share" : "Puede compartir",
|
||||
"Delete" : "Borrar",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Edit" : "Editar",
|
||||
"Members" : "Miembros",
|
||||
"Comments" : "Comentarios",
|
||||
@@ -32,8 +33,6 @@
|
||||
"Created" : "Creado",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
@@ -45,6 +44,8 @@
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
@@ -5,6 +5,7 @@ OC.L10N.register(
|
||||
"Personal" : "Personal",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
|
||||
"The board \"%s\" has been shared with you by %s." : "El tablero \"%s\" ha sido compartido contigo por %s.",
|
||||
"{user} has shared the board %s with you." : "{user} ha compartido el tablero %s contigo. ",
|
||||
"Finished" : "Terminado",
|
||||
"To review" : "Para revisar",
|
||||
"Action needed" : "Acción requerida",
|
||||
@@ -21,7 +22,6 @@ OC.L10N.register(
|
||||
"Cancel" : "Cancelar",
|
||||
"File already exists" : "El archivo ya existe",
|
||||
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Filter by tag" : "Filtrar por etiqueta",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
@@ -32,6 +32,7 @@ OC.L10N.register(
|
||||
"Can edit" : "Puede editar",
|
||||
"Can share" : "Puede compartir",
|
||||
"Delete" : "Borrar",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Edit" : "Editar",
|
||||
"Members" : "Miembros",
|
||||
"Attachments" : "Adjuntos",
|
||||
@@ -40,8 +41,6 @@ OC.L10N.register(
|
||||
"Created" : "Creado",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
@@ -54,6 +53,8 @@ OC.L10N.register(
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"An error occurred" : "Ha ocurrido un error",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
"Personal" : "Personal",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
|
||||
"The board \"%s\" has been shared with you by %s." : "El tablero \"%s\" ha sido compartido contigo por %s.",
|
||||
"{user} has shared the board %s with you." : "{user} ha compartido el tablero %s contigo. ",
|
||||
"Finished" : "Terminado",
|
||||
"To review" : "Para revisar",
|
||||
"Action needed" : "Acción requerida",
|
||||
@@ -19,7 +20,6 @@
|
||||
"Cancel" : "Cancelar",
|
||||
"File already exists" : "El archivo ya existe",
|
||||
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Filter by tag" : "Filtrar por etiqueta",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
@@ -30,6 +30,7 @@
|
||||
"Can edit" : "Puede editar",
|
||||
"Can share" : "Puede compartir",
|
||||
"Delete" : "Borrar",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Edit" : "Editar",
|
||||
"Members" : "Miembros",
|
||||
"Attachments" : "Adjuntos",
|
||||
@@ -38,8 +39,6 @@
|
||||
"Created" : "Creado",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
@@ -52,6 +51,8 @@
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"An error occurred" : "Ha ocurrido un error",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
@@ -5,6 +5,7 @@ OC.L10N.register(
|
||||
"Personal" : "Personal",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
|
||||
"The board \"%s\" has been shared with you by %s." : "El tablero \"%s\" ha sido compartido contigo por %s.",
|
||||
"{user} has shared the board %s with you." : "{user} ha compartido el tablero %s contigo. ",
|
||||
"Finished" : "Terminado",
|
||||
"To review" : "Para revisar",
|
||||
"Action needed" : "Acción requerida",
|
||||
@@ -17,7 +18,6 @@ OC.L10N.register(
|
||||
"Cancel" : "Cancelar",
|
||||
"File already exists" : "El archivo ya existe",
|
||||
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Details" : "Detalles",
|
||||
@@ -27,6 +27,7 @@ OC.L10N.register(
|
||||
"Can edit" : "Puede editar",
|
||||
"Can share" : "Puede compartir",
|
||||
"Delete" : "Borrar",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Edit" : "Editar",
|
||||
"Members" : "Miembros",
|
||||
"Comments" : "Comentarios",
|
||||
@@ -34,8 +35,6 @@ OC.L10N.register(
|
||||
"Created" : "Creado",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
@@ -47,6 +46,8 @@ OC.L10N.register(
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
"Personal" : "Personal",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
|
||||
"The board \"%s\" has been shared with you by %s." : "El tablero \"%s\" ha sido compartido contigo por %s.",
|
||||
"{user} has shared the board %s with you." : "{user} ha compartido el tablero %s contigo. ",
|
||||
"Finished" : "Terminado",
|
||||
"To review" : "Para revisar",
|
||||
"Action needed" : "Acción requerida",
|
||||
@@ -15,7 +16,6 @@
|
||||
"Cancel" : "Cancelar",
|
||||
"File already exists" : "El archivo ya existe",
|
||||
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Details" : "Detalles",
|
||||
@@ -25,6 +25,7 @@
|
||||
"Can edit" : "Puede editar",
|
||||
"Can share" : "Puede compartir",
|
||||
"Delete" : "Borrar",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Edit" : "Editar",
|
||||
"Members" : "Miembros",
|
||||
"Comments" : "Comentarios",
|
||||
@@ -32,8 +33,6 @@
|
||||
"Created" : "Creado",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
@@ -45,6 +44,8 @@
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
@@ -5,6 +5,7 @@ OC.L10N.register(
|
||||
"Personal" : "Personal",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
|
||||
"The board \"%s\" has been shared with you by %s." : "El tablero \"%s\" ha sido compartido contigo por %s.",
|
||||
"{user} has shared the board %s with you." : "{user} ha compartido el tablero %s contigo. ",
|
||||
"Finished" : "Terminado",
|
||||
"To review" : "Para revisar",
|
||||
"Action needed" : "Acción requerida",
|
||||
@@ -17,7 +18,6 @@ OC.L10N.register(
|
||||
"Cancel" : "Cancelar",
|
||||
"File already exists" : "El archivo ya existe",
|
||||
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Details" : "Detalles",
|
||||
@@ -27,6 +27,7 @@ OC.L10N.register(
|
||||
"Can edit" : "Puede editar",
|
||||
"Can share" : "Puede compartir",
|
||||
"Delete" : "Borrar",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Edit" : "Editar",
|
||||
"Members" : "Miembros",
|
||||
"Comments" : "Comentarios",
|
||||
@@ -34,8 +35,6 @@ OC.L10N.register(
|
||||
"Created" : "Creado",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
@@ -47,6 +46,8 @@ OC.L10N.register(
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
"Personal" : "Personal",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
|
||||
"The board \"%s\" has been shared with you by %s." : "El tablero \"%s\" ha sido compartido contigo por %s.",
|
||||
"{user} has shared the board %s with you." : "{user} ha compartido el tablero %s contigo. ",
|
||||
"Finished" : "Terminado",
|
||||
"To review" : "Para revisar",
|
||||
"Action needed" : "Acción requerida",
|
||||
@@ -15,7 +16,6 @@
|
||||
"Cancel" : "Cancelar",
|
||||
"File already exists" : "El archivo ya existe",
|
||||
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Details" : "Detalles",
|
||||
@@ -25,6 +25,7 @@
|
||||
"Can edit" : "Puede editar",
|
||||
"Can share" : "Puede compartir",
|
||||
"Delete" : "Borrar",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Edit" : "Editar",
|
||||
"Members" : "Miembros",
|
||||
"Comments" : "Comentarios",
|
||||
@@ -32,8 +33,6 @@
|
||||
"Created" : "Creado",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
@@ -45,6 +44,8 @@
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
@@ -5,6 +5,7 @@ OC.L10N.register(
|
||||
"Personal" : "Personal",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
|
||||
"The board \"%s\" has been shared with you by %s." : "El tablero \"%s\" ha sido compartido contigo por %s.",
|
||||
"{user} has shared the board %s with you." : "{user} ha compartido el tablero %s contigo. ",
|
||||
"Finished" : "Terminado",
|
||||
"To review" : "Para revisar",
|
||||
"Action needed" : "Acción requerida",
|
||||
@@ -17,7 +18,6 @@ OC.L10N.register(
|
||||
"Cancel" : "Cancelar",
|
||||
"File already exists" : "El archivo ya existe",
|
||||
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Details" : "Detalles",
|
||||
@@ -27,6 +27,7 @@ OC.L10N.register(
|
||||
"Can edit" : "Puede editar",
|
||||
"Can share" : "Puede compartir",
|
||||
"Delete" : "Borrar",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Edit" : "Editar",
|
||||
"Members" : "Miembros",
|
||||
"Comments" : "Comentarios",
|
||||
@@ -34,8 +35,6 @@ OC.L10N.register(
|
||||
"Created" : "Creado",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
@@ -47,6 +46,8 @@ OC.L10N.register(
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
"Personal" : "Personal",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
|
||||
"The board \"%s\" has been shared with you by %s." : "El tablero \"%s\" ha sido compartido contigo por %s.",
|
||||
"{user} has shared the board %s with you." : "{user} ha compartido el tablero %s contigo. ",
|
||||
"Finished" : "Terminado",
|
||||
"To review" : "Para revisar",
|
||||
"Action needed" : "Acción requerida",
|
||||
@@ -15,7 +16,6 @@
|
||||
"Cancel" : "Cancelar",
|
||||
"File already exists" : "El archivo ya existe",
|
||||
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Details" : "Detalles",
|
||||
@@ -25,6 +25,7 @@
|
||||
"Can edit" : "Puede editar",
|
||||
"Can share" : "Puede compartir",
|
||||
"Delete" : "Borrar",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Edit" : "Editar",
|
||||
"Members" : "Miembros",
|
||||
"Comments" : "Comentarios",
|
||||
@@ -32,8 +33,6 @@
|
||||
"Created" : "Creado",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
@@ -45,6 +44,8 @@
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
@@ -5,6 +5,7 @@ OC.L10N.register(
|
||||
"Personal" : "Personal",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
|
||||
"The board \"%s\" has been shared with you by %s." : "El tablero \"%s\" ha sido compartido contigo por %s.",
|
||||
"{user} has shared the board %s with you." : "{user} ha compartido el tablero %s contigo. ",
|
||||
"Finished" : "Terminado",
|
||||
"To review" : "Para revisar",
|
||||
"Action needed" : "Acción requerida",
|
||||
@@ -17,7 +18,6 @@ OC.L10N.register(
|
||||
"Cancel" : "Cancelar",
|
||||
"File already exists" : "El archivo ya existe",
|
||||
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Details" : "Detalles",
|
||||
@@ -27,6 +27,7 @@ OC.L10N.register(
|
||||
"Can edit" : "Puede editar",
|
||||
"Can share" : "Puede compartir",
|
||||
"Delete" : "Borrar",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Edit" : "Editar",
|
||||
"Members" : "Miembros",
|
||||
"Comments" : "Comentarios",
|
||||
@@ -34,8 +35,6 @@ OC.L10N.register(
|
||||
"Created" : "Creado",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
@@ -47,6 +46,8 @@ OC.L10N.register(
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
"Personal" : "Personal",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
|
||||
"The board \"%s\" has been shared with you by %s." : "El tablero \"%s\" ha sido compartido contigo por %s.",
|
||||
"{user} has shared the board %s with you." : "{user} ha compartido el tablero %s contigo. ",
|
||||
"Finished" : "Terminado",
|
||||
"To review" : "Para revisar",
|
||||
"Action needed" : "Acción requerida",
|
||||
@@ -15,7 +16,6 @@
|
||||
"Cancel" : "Cancelar",
|
||||
"File already exists" : "El archivo ya existe",
|
||||
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Details" : "Detalles",
|
||||
@@ -25,6 +25,7 @@
|
||||
"Can edit" : "Puede editar",
|
||||
"Can share" : "Puede compartir",
|
||||
"Delete" : "Borrar",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Edit" : "Editar",
|
||||
"Members" : "Miembros",
|
||||
"Comments" : "Comentarios",
|
||||
@@ -32,8 +33,6 @@
|
||||
"Created" : "Creado",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
@@ -45,6 +44,8 @@
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
@@ -5,6 +5,7 @@ OC.L10N.register(
|
||||
"Personal" : "Personal",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
|
||||
"The board \"%s\" has been shared with you by %s." : "El tablero \"%s\" ha sido compartido contigo por %s.",
|
||||
"{user} has shared the board %s with you." : "{user} ha compartido el tablero %s contigo. ",
|
||||
"Finished" : "Terminado",
|
||||
"To review" : "Para revisar",
|
||||
"Action needed" : "Acción requerida",
|
||||
@@ -18,7 +19,6 @@ OC.L10N.register(
|
||||
"Cancel" : "Cancelar",
|
||||
"File already exists" : "El archivo ya existe",
|
||||
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Details" : "Detalles",
|
||||
@@ -28,6 +28,7 @@ OC.L10N.register(
|
||||
"Can edit" : "Puede editar",
|
||||
"Can share" : "Puede compartir",
|
||||
"Delete" : "Borrar",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Edit" : "Editar",
|
||||
"Members" : "Miembros",
|
||||
"Comments" : "Comentarios",
|
||||
@@ -35,8 +36,6 @@ OC.L10N.register(
|
||||
"Created" : "Creado",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
@@ -49,6 +48,8 @@ OC.L10N.register(
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"An error occurred" : "Se presentó un error",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
"Personal" : "Personal",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
|
||||
"The board \"%s\" has been shared with you by %s." : "El tablero \"%s\" ha sido compartido contigo por %s.",
|
||||
"{user} has shared the board %s with you." : "{user} ha compartido el tablero %s contigo. ",
|
||||
"Finished" : "Terminado",
|
||||
"To review" : "Para revisar",
|
||||
"Action needed" : "Acción requerida",
|
||||
@@ -16,7 +17,6 @@
|
||||
"Cancel" : "Cancelar",
|
||||
"File already exists" : "El archivo ya existe",
|
||||
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Details" : "Detalles",
|
||||
@@ -26,6 +26,7 @@
|
||||
"Can edit" : "Puede editar",
|
||||
"Can share" : "Puede compartir",
|
||||
"Delete" : "Borrar",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Edit" : "Editar",
|
||||
"Members" : "Miembros",
|
||||
"Comments" : "Comentarios",
|
||||
@@ -33,8 +34,6 @@
|
||||
"Created" : "Creado",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
@@ -47,6 +46,8 @@
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"An error occurred" : "Se presentó un error",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
@@ -5,6 +5,7 @@ OC.L10N.register(
|
||||
"Personal" : "Personal",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
|
||||
"The board \"%s\" has been shared with you by %s." : "El tablero \"%s\" ha sido compartido contigo por %s.",
|
||||
"{user} has shared the board %s with you." : "{user} ha compartido el tablero %s contigo. ",
|
||||
"Finished" : "Terminado",
|
||||
"To review" : "Para revisar",
|
||||
"Action needed" : "Acción requerida",
|
||||
@@ -21,7 +22,6 @@ OC.L10N.register(
|
||||
"Cancel" : "Cancelar",
|
||||
"File already exists" : "El archivo ya existe",
|
||||
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Details" : "Detalles",
|
||||
@@ -31,6 +31,7 @@ OC.L10N.register(
|
||||
"Can edit" : "Puede editar",
|
||||
"Can share" : "Puede compartir",
|
||||
"Delete" : "Borrar",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Edit" : "Editar",
|
||||
"Members" : "Miembros",
|
||||
"Comments" : "Comentarios",
|
||||
@@ -38,8 +39,6 @@ OC.L10N.register(
|
||||
"Created" : "Creado",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
@@ -51,6 +50,8 @@ OC.L10N.register(
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
"Personal" : "Personal",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
|
||||
"The board \"%s\" has been shared with you by %s." : "El tablero \"%s\" ha sido compartido contigo por %s.",
|
||||
"{user} has shared the board %s with you." : "{user} ha compartido el tablero %s contigo. ",
|
||||
"Finished" : "Terminado",
|
||||
"To review" : "Para revisar",
|
||||
"Action needed" : "Acción requerida",
|
||||
@@ -19,7 +20,6 @@
|
||||
"Cancel" : "Cancelar",
|
||||
"File already exists" : "El archivo ya existe",
|
||||
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Details" : "Detalles",
|
||||
@@ -29,6 +29,7 @@
|
||||
"Can edit" : "Puede editar",
|
||||
"Can share" : "Puede compartir",
|
||||
"Delete" : "Borrar",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Edit" : "Editar",
|
||||
"Members" : "Miembros",
|
||||
"Comments" : "Comentarios",
|
||||
@@ -36,8 +37,6 @@
|
||||
"Created" : "Creado",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
@@ -49,6 +48,8 @@
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
@@ -5,6 +5,7 @@ OC.L10N.register(
|
||||
"Personal" : "Personal",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
|
||||
"The board \"%s\" has been shared with you by %s." : "El tablero \"%s\" ha sido compartido contigo por %s.",
|
||||
"{user} has shared the board %s with you." : "{user} ha compartido el tablero %s contigo. ",
|
||||
"Finished" : "Terminado",
|
||||
"To review" : "Para revisar",
|
||||
"Action needed" : "Acción requerida",
|
||||
@@ -17,7 +18,6 @@ OC.L10N.register(
|
||||
"Cancel" : "Cancelar",
|
||||
"File already exists" : "El archivo ya existe",
|
||||
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Details" : "Detalles",
|
||||
@@ -27,6 +27,7 @@ OC.L10N.register(
|
||||
"Can edit" : "Puede editar",
|
||||
"Can share" : "Puede compartir",
|
||||
"Delete" : "Borrar",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Edit" : "Editar",
|
||||
"Members" : "Miembros",
|
||||
"Comments" : "Comentarios",
|
||||
@@ -34,8 +35,6 @@ OC.L10N.register(
|
||||
"Created" : "Creado",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
@@ -47,6 +46,8 @@ OC.L10N.register(
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
"Personal" : "Personal",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
|
||||
"The board \"%s\" has been shared with you by %s." : "El tablero \"%s\" ha sido compartido contigo por %s.",
|
||||
"{user} has shared the board %s with you." : "{user} ha compartido el tablero %s contigo. ",
|
||||
"Finished" : "Terminado",
|
||||
"To review" : "Para revisar",
|
||||
"Action needed" : "Acción requerida",
|
||||
@@ -15,7 +16,6 @@
|
||||
"Cancel" : "Cancelar",
|
||||
"File already exists" : "El archivo ya existe",
|
||||
"Do you want to overwrite it?" : "¿Deseas sobre escribirlo?",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Details" : "Detalles",
|
||||
@@ -25,6 +25,7 @@
|
||||
"Can edit" : "Puede editar",
|
||||
"Can share" : "Puede compartir",
|
||||
"Delete" : "Borrar",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Edit" : "Editar",
|
||||
"Members" : "Miembros",
|
||||
"Comments" : "Comentarios",
|
||||
@@ -32,8 +33,6 @@
|
||||
"Created" : "Creado",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"Save" : "Guardar",
|
||||
"Reply" : "Responder",
|
||||
"Update" : "Actualizar",
|
||||
@@ -45,6 +44,8 @@
|
||||
"Shared with you" : "Compartido con usted",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Edit board" : "Editar el tablero",
|
||||
"Today" : "Hoy",
|
||||
"Tomorrow" : "Mañana",
|
||||
"This week" : "Esta semana"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
@@ -21,8 +21,6 @@ OC.L10N.register(
|
||||
"Modified" : "Muudetud",
|
||||
"Created" : "Loodud",
|
||||
"Due date" : "Tähtaeg",
|
||||
"Today" : "Täna",
|
||||
"Tomorrow" : "Homme",
|
||||
"Save" : "Salvesta",
|
||||
"Reply" : "Vasta",
|
||||
"Update" : "Uuenda",
|
||||
@@ -31,6 +29,8 @@ OC.L10N.register(
|
||||
"Delete card" : "Kustuta kaart",
|
||||
"seconds ago" : "sekundit tagasi",
|
||||
"Shared with you" : "Sinuga jagatud",
|
||||
"An error occurred" : "Tekkis tõrge"
|
||||
"An error occurred" : "Tekkis tõrge",
|
||||
"Today" : "Täna",
|
||||
"Tomorrow" : "Homme"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -19,8 +19,6 @@
|
||||
"Modified" : "Muudetud",
|
||||
"Created" : "Loodud",
|
||||
"Due date" : "Tähtaeg",
|
||||
"Today" : "Täna",
|
||||
"Tomorrow" : "Homme",
|
||||
"Save" : "Salvesta",
|
||||
"Reply" : "Vasta",
|
||||
"Update" : "Uuenda",
|
||||
@@ -29,6 +27,8 @@
|
||||
"Delete card" : "Kustuta kaart",
|
||||
"seconds ago" : "sekundit tagasi",
|
||||
"Shared with you" : "Sinuga jagatud",
|
||||
"An error occurred" : "Tekkis tõrge"
|
||||
"An error occurred" : "Tekkis tõrge",
|
||||
"Today" : "Täna",
|
||||
"Tomorrow" : "Homme"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
171
l10n/eu.js
171
l10n/eu.js
@@ -1,42 +1,42 @@
|
||||
OC.L10N.register(
|
||||
"deck",
|
||||
{
|
||||
"You have created a new board {board}" : "{board} taula berria sortu duzu",
|
||||
"{user} has created a new board {board}" : "{user} erabiltzaileak {board} taula berria sortu du",
|
||||
"You have deleted the board {board}" : "{board} taula ezabatu duzu",
|
||||
"{user} has deleted the board {board}" : "{user} erabiltzaileak {board} taula ezabatu du",
|
||||
"You have restored the board {board}" : "{board} taula leheneratu duzu",
|
||||
"{user} has restored the board {board}" : "{user} erabiltzaileak {board} taula leheneratu du",
|
||||
"You have shared the board {board} with {acl}" : "{board} taula {acl} erabiltzailearekin partekatu duzu",
|
||||
"{user} has shared the board {board} with {acl}" : "{user} erabiltzaileak {board} taula {acl} erabiltzailearekin partekatu du",
|
||||
"You have removed {acl} from the board {board}" : "{acl} erabiltzailea kendu duzu {board} taulatik",
|
||||
"{user} has removed {acl} from the board {board}" : "{user} erabiltzaileak {acl} erabiltzailea kendu du {board} taulatik",
|
||||
"You have renamed the board {before} to {board}" : "{before} taula zena {board} bezala berrizendatu duzu",
|
||||
"{user} has renamed the board {before} to {board}" : "{user} erabiltzaileak {before} taula zena {board} bezala berrizendatu du",
|
||||
"You have archived the board {board}" : "{board} taula artxibatu duzu",
|
||||
"{user} has archived the board {before}" : "{user} erabiltzaileak {before} taula artxibatu du",
|
||||
"You have unarchived the board {board}" : "{board} taula artxibotik berreskuratu duzu",
|
||||
"{user} has unarchived the board {before}" : "{user} erabiltzaileak {before} taula artxibotik kendu du",
|
||||
"You have created a new list {stack} on board {board}" : "{stack} zerrenda berria sortu duzu {board} taulan",
|
||||
"{user} has created a new list {stack} on board {board}" : "{user} erabiltzaileak {stack} zerrenda berria sortu du {board} taulan",
|
||||
"You have renamed list {before} to {stack} on board {board}" : "{before} zerrenda zena {stack} bezala berrizendatu duzu {board} taulan",
|
||||
"{user} has renamed list {before} to {stack} on board {board}" : "{user} erabiltzaileak {before} zerrenda zena {stack} bezala berrizendatu du {board} taulan",
|
||||
"You have deleted list {stack} on board {board}" : "{stack} zerrenda ezabatu duzu {board} taulan",
|
||||
"{user} has deleted list {stack} on board {board}" : "{user} erabiltzaileak {stack} zerrenda ezabatu du {board} taulan",
|
||||
"You have created card {card} in list {stack} on board {board}" : "{card} txartela sortu duzu {board} taulako {stack} zerrendan",
|
||||
"{user} has created card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {card} txartela sortu du {board} taulako {stack} zerrendan",
|
||||
"You have deleted card {card} in list {stack} on board {board}" : "{card} txartela ezabatu duzu {board} taulako {stack} zerrendan",
|
||||
"{user} has deleted card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {card} txartela ezabatu du {board} taulako {stack} zerrendan",
|
||||
"You have created a new board {board}" : "{board} mahai berri bat sortu duzu",
|
||||
"{user} has created a new board {board}" : "{user} erabiltzaileak {board} mahai berri bat sortu du",
|
||||
"You have deleted the board {board}" : "{board} mahaia ezabatu duzu",
|
||||
"{user} has deleted the board {board}" : "{user} erabiltzaileak {board} mahaia ezabatu du",
|
||||
"You have restored the board {board}" : "{board} mahaia leheneratu duzu",
|
||||
"{user} has restored the board {board}" : "{user} erabiltzaileak {board} mahaia leheneratu du",
|
||||
"You have shared the board {board} with {acl}" : "{board} mahaia {acl} erabiltzailearekin partekatu duzu",
|
||||
"{user} has shared the board {board} with {acl}" : "{user} erabiltzaileak {board} mahaia {acl} erabiltzailearekin partekatu du",
|
||||
"You have removed {acl} from the board {board}" : "{acl} erabiltzailea kendu duzu {board} mahaitik",
|
||||
"{user} has removed {acl} from the board {board}" : "{user} erabiltzaileak {acl} erabiltzailea kendu du {board} mahaitik",
|
||||
"You have renamed the board {before} to {board}" : "{before} mahaia zena {board} bezala berrizendatu duzu",
|
||||
"{user} has renamed the board {before} to {board}" : "{user} erabiltzaileak {before} mahaia zena {board} bezala berrizendatu du",
|
||||
"You have archived the board {board}" : "{board} mahaia artxibatu duzu",
|
||||
"{user} has archived the board {before}" : "{user} erabiltzaileak {before} mahaia artxibatu du",
|
||||
"You have unarchived the board {board}" : "{board} mahaia artxibotik berreskuratu duzu",
|
||||
"{user} has unarchived the board {before}" : "{user} erabiltzaileak {before} mahaia artxibotik berreskuratu du",
|
||||
"You have created a new list {stack} on board {board}" : "{stack} zerrenda berria sortu duzu {board} mahaian",
|
||||
"{user} has created a new list {stack} on board {board}" : "{user} erabiltzaileak {stack} zerrenda berria sortu du {board} mahaian",
|
||||
"You have renamed list {before} to {stack} on board {board}" : "{before} zerrenda zena {stack} bezala berrizendatu duzu {board} mahaian",
|
||||
"{user} has renamed list {before} to {stack} on board {board}" : "{user} erabiltzaileak {before} zerrenda zena {stack} bezala berrizendatu du {board} mahaian",
|
||||
"You have deleted list {stack} on board {board}" : "{stack} zerrenda ezabatu duzu {board} mahaian",
|
||||
"{user} has deleted list {stack} on board {board}" : "{user} erabiltzaileak {stack} zerrenda ezabatu du {board} mahaian",
|
||||
"You have created card {card} in list {stack} on board {board}" : "{card} txartela sortu duzu {board} mahaiko {stack} zerrendan",
|
||||
"{user} has created card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {card} txartela sortu du {board} mahaiko {stack} zerrendan",
|
||||
"You have deleted card {card} in list {stack} on board {board}" : "{card} txartela ezabatu duzu {board} mahaiko {stack} zerrendan",
|
||||
"{user} has deleted card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {card} txartela ezabatu du {board} mahaiko {stack} zerrendan",
|
||||
"You have renamed the card {before} to {card}" : "{before} taula zena {card} bezala berrizendatu duzu",
|
||||
"{user} has renamed the card {before} to {card}" : "{user} erabiltzaileak {before} taula zena {card} bezala berrizendatu du",
|
||||
"You have added a description to card {card} in list {stack} on board {board}" : "{board} taulako {stack} zerrendako {card} txartelari deskripzioa gehitu diozu",
|
||||
"{user} has added a description to card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {board} taulako {stack} zerrendako {card} txartelari deskripzioa gehitu dio",
|
||||
"You have updated the description of card {card} in list {stack} on board {board}" : "{board} taulako {stack} zerrendako {card} txartelaren deskripzioa eguneratu duzu",
|
||||
"{user} has updated the description of the card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {board} taulako {stack} zerrendako {card} txartelaren deskripzioa eguneratu du",
|
||||
"You have archived card {card} in list {stack} on board {board}" : "{board} taulako {stack} zerrendako {card} txartela artxibatu duzu",
|
||||
"{user} has archived card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {board} taulako {stack} zerrendako {card} txartela artxibatu du",
|
||||
"You have unarchived card {card} in list {stack} on board {board}" : "{board} taulako {stack} zerrendako {card} txartela berreskuratu duzu artxibotik",
|
||||
"{user} has unarchived card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {board} taulako {stack} zerrendako {card} txartela berreskuratu du artxibotik",
|
||||
"You have added a description to card {card} in list {stack} on board {board}" : "{board} mahaiko {stack} zerrendako {card} txartelari deskripzioa gehitu diozu",
|
||||
"{user} has added a description to card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {board} mahaiko {stack} zerrendako {card} txartelari deskripzioa gehitu dio",
|
||||
"You have updated the description of card {card} in list {stack} on board {board}" : "{board} mahaiko {stack} zerrendako {card} txartelaren deskripzioa eguneratu duzu",
|
||||
"{user} has updated the description of the card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {board} mahaiko {stack} zerrendako {card} txartelaren deskripzioa eguneratu du",
|
||||
"You have archived card {card} in list {stack} on board {board}" : "{board} mahaiko {stack} zerrendako {card} txartela artxibatu duzu",
|
||||
"{user} has archived card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {board} mahaiko {stack} zerrendako {card} txartela artxibatu du",
|
||||
"You have unarchived card {card} in list {stack} on board {board}" : "{board} mahaiko {stack} zerrendako {card} txartela berreskuratu duzu artxibotik",
|
||||
"{user} has unarchived card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {board} mahaiko {stack} zerrendako {card} txartela berreskuratu du artxibotik",
|
||||
"You have removed the due date of card {card}" : "{card} txartelari epemuga kendu diozu",
|
||||
"{user} has removed the due date of card {card}" : "{user} erabiltzaileak {card} txartelari epemuga kendu dio",
|
||||
"You have set the due date of card {card} to {after}" : "{card} txartelari {after} epemuga ezarri diozu",
|
||||
@@ -44,13 +44,13 @@ OC.L10N.register(
|
||||
"You have updated the due date of card {card} to {after}" : "{card} txartelari epemuga eguneratu diozu: {after}",
|
||||
"{user} has updated the due date of card {card} to {after}" : "{user} erabiltzaileak {card} txartelari epemuga eguneratu dio: {after}",
|
||||
"You have added the tag {label} to card {card} in list {stack} on board {board}" : "{board} mahaiko {stack} zerrendako {card} txartelari {label} etiketa gehitu diozu",
|
||||
"{user} has added the tag {label} to card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {board} taulako {stack} zerrendako {card} txartelari {label} etiketa gehitu dio",
|
||||
"You have removed the tag {label} from card {card} in list {stack} on board {board}" : "{board} taulako {stack} zerrendako {card} txartelari {label} etiketa kendu diozu",
|
||||
"{user} has removed the tag {label} from card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {board} taulako {stack} zerrendako {card} txartelari {label} etiketa kendu dio",
|
||||
"You have assigned {assigneduser} to card {card} on board {board}" : "{board} taulako {card} txartela {assigneduser} erabiltzaileari esleitu diozu",
|
||||
"{user} has assigned {assigneduser} to card {card} on board {board}" : "{user} erabiltzaileak {board} taulako {card} txartela {assigneduser} erabiltzaileari esleitu dio",
|
||||
"You have unassigned {assigneduser} from card {card} on board {board}" : "{board} taulako {card} txartela {assigneduser} erabiltzaileari esleitzea ezeztatu duzu",
|
||||
"{user} has unassigned {assigneduser} from card {card} on board {board}" : "{user} erabiltzaileak {board} taulako {card} txartela {assigneduser} erabiltzaileari esleitzea ezeztatu du",
|
||||
"{user} has added the tag {label} to card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {board} mahaiko {stack} zerrendako {card} txartelari {label} etiketa gehitu dio",
|
||||
"You have removed the tag {label} from card {card} in list {stack} on board {board}" : "{board} mahaiko {stack} zerrendako {card} txartelari {label} etiketa kendu diozu",
|
||||
"{user} has removed the tag {label} from card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {board} mahaiko {stack} zerrendako {card} txartelari {label} etiketa kendu dio",
|
||||
"You have assigned {assigneduser} to card {card} on board {board}" : "{board} mahaiko {card} txartela {assigneduser} erabiltzaileari esleitu diozu",
|
||||
"{user} has assigned {assigneduser} to card {card} on board {board}" : "{user} erabiltzaileak {board} mahaiko {card} txartela {assigneduser} erabiltzaileari esleitu dio",
|
||||
"You have unassigned {assigneduser} from card {card} on board {board}" : "{board} mahaiko {card} txartela {assigneduser} erabiltzaileari esleitzea ezeztatu duzu",
|
||||
"{user} has unassigned {assigneduser} from card {card} on board {board}" : "{user} erabiltzaileak {board} mahaiko {card} txartela {assigneduser} erabiltzaileari esleitzea ezeztatu du",
|
||||
"You have moved the card {card} from list {stackBefore} to {stack}" : "{card} txartela {stackBefore} zerrendatik {stack} zerrendara aldatu duzu",
|
||||
"{user} has moved the card {card} from list {stackBefore} to {stack}" : "{user} erabiltzaileak {card} txartela {stackBefore} zerrendatik {stack} zerrendara aldatu du",
|
||||
"You have added the attachment {attachment} to card {card}" : "{attachment} eranskina gehitu diozu {card} txartelari",
|
||||
@@ -70,15 +70,12 @@ OC.L10N.register(
|
||||
"Upcoming cards" : "Hurrengo txartelak",
|
||||
"Personal" : "Pertsonala",
|
||||
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "\"%s\" txartela \"%s\"-n %sk esleitu zaizu.",
|
||||
"{user} has assigned the card {deck-card} on {deck-board} to you." : "{user}-k {deck-board}-ko {deck-card} txartela esleitu dizu.",
|
||||
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user}k \"%s\" txartela \"%s\"-n esleitu zaitu.",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : " \"%s\" txartela, \"%s\" -n dagoena, epe-mugara ailegatu da.",
|
||||
"The card {deck-card} on {deck-board} has reached its due date." : " {deck-board}-ko {deck-card} txartela epe-mugara ailegatu da.",
|
||||
"%s has mentioned you in a comment on \"%s\"." : "%sk aipatu dizu \"%s\"-ri buruzko iruzkin batean.",
|
||||
"{user} has mentioned you in a comment on {deck-card}." : "{user}-k zure izena aipatu du {deck-card}-ko iruzkin batean.",
|
||||
"{user} has mentioned you in a comment on \"%s\"." : "{user}k aipatu dizu \"%s\"-ri buruzko iruzkin batean.",
|
||||
"The board \"%s\" has been shared with you by %s." : "\"%s\" mahaia zurekin partekatu du %s-k",
|
||||
"{user} has shared {deck-board} with you." : "{user} erabiltzaileak {deck-board} partekatu du zurekin.",
|
||||
"Card comments" : "Txartelaren iruzkinak",
|
||||
"%s on %s" : "%s hemen: %s",
|
||||
"{user} has shared the board %s with you." : "{user} erabiltzaileak %s mahaia zurekin partekatu du.",
|
||||
"No data was provided to create an attachment." : "Ez da daturik eman eranskina sortzeko.",
|
||||
"Finished" : "Bukatuta",
|
||||
"To review" : "Errebisatzeko",
|
||||
@@ -101,25 +98,17 @@ OC.L10N.register(
|
||||
"A PHP extension stopped the file upload" : "PHP hedapen batek fitxategiaren karga gelditu du",
|
||||
"No file uploaded or file size exceeds maximum of %s" : "Ez da fitxategirik kargatu edo fitxategi-tamainak gehienezko %s muga gainditzen du",
|
||||
"Card not found" : "Txartela ez da aurkitu",
|
||||
"Path is already shared with this card" : "Bidea dagoeneko partekatu da txartel honekin",
|
||||
"Invalid date, date format must be YYYY-MM-DD" : "Data baliogabea, dataren formatuak UUUU-HH-EE izan behar du",
|
||||
"Personal planning and team project organization" : "Plangintza pertsonala eta talde proiektuen kudeaketa",
|
||||
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck aplikazioa plangintza pertsonalera eta proiektuen antolaketara zuzenduta dagoen Nextcloudekin integratutako kanban moduko tresna bat da.\n\n\n- 📥 Gehitu atazak txarteletan eta ordenatu\n- 📄 Idatzi ohar gehigarriak markdown erabiliz\n- 🔖 Esleitu etiketak antolaketa are gehiago hobetzeko\n- 👥 Partekatu zure talde, lagun edo familiarekin\n- 📎 Erantsi fitxategiak eta kapsulatu zure markdown deskribapenean\n- 💬 Eztabaidatu zure taldearekin iruzkinak erabiliz\n- ⚡ Egin aldaketen jarraipena jarduera jarioa erabiliz\n- 🚀 Antolatu zure proiektua",
|
||||
"Card details" : "Txartelaren xehetasunak",
|
||||
"Add board" : "Gehitu mahaia",
|
||||
"Select the board to link to a project" : "Hautatu taula proiektu bati estekatzeko",
|
||||
"Search by board title" : "Bilatu taula izenez",
|
||||
"Select board" : "Hautatu taula",
|
||||
"Create a new card" : "Sortu txartel berri bat",
|
||||
"Select a board" : "Hautatu taula bat",
|
||||
"Select the board to link to a project" : "Hautatu mahaia proiektu bati estekatzeko",
|
||||
"Search by board title" : "Bilatu mahai izenez",
|
||||
"Select board" : "Hautatu mahaia",
|
||||
"Select a board" : "Hautatu mahai bat",
|
||||
"Select a list" : "Hautatu zerrenda bat",
|
||||
"Card title" : "Txartelaren izenburua",
|
||||
"Cancel" : "Utzi",
|
||||
"Creating the new card …" : "Txartel berria sortzen...",
|
||||
"Card \"{card}\" was added to \"{board}\"" : "\"{card}\" txartela \"{board}\"-ra gehitu da",
|
||||
"Open card" : "Ireki txartela",
|
||||
"Close" : "Itxi",
|
||||
"Create card" : "Sortu txartela",
|
||||
"Select a card" : "Hautatu txartel bat",
|
||||
"Select the card to link to a project" : "Hautatu proiektu bati estekatzeko txartela",
|
||||
"Link to card" : "Estekatu txartelera",
|
||||
@@ -130,7 +119,6 @@ OC.L10N.register(
|
||||
"Keep existing file" : "Mantendu dagoen fitxategia",
|
||||
"This board is read only" : "Mahai hau irakurtzeko soilik da",
|
||||
"Drop your files to upload" : "Jaregin zure fitxategiak kargatzeko",
|
||||
"Add card" : "Gehitu txartela",
|
||||
"Archived cards" : "Artxibatutako txartelak",
|
||||
"Add list" : "Gehitu zerrenda",
|
||||
"List name" : "Zerrendaren izena",
|
||||
@@ -149,10 +137,10 @@ OC.L10N.register(
|
||||
"Show archived cards" : "Erakutsi artxibatutako txartelak",
|
||||
"Toggle compact mode" : "Txandakatu modu trinkoa",
|
||||
"Details" : "Xehetasunak",
|
||||
"Loading board" : "Taula kargatzen",
|
||||
"Loading board" : "Mahaia kargatzen",
|
||||
"No lists available" : "Ez dago zerrendarik eskuragarri",
|
||||
"Create a new list to add cards to this board" : "Sortu zerrenda berria, taula honetan txartelak gehitzeko",
|
||||
"Board not found" : "Ez da taula aurkitu",
|
||||
"Create a new list to add cards to this board" : "Sortu zerrenda berria, mahai honetan txartelak gehitzeko",
|
||||
"Board not found" : "Ez da mahaia aurkitu",
|
||||
"Sharing" : "Partekatzea",
|
||||
"Tags" : "Etiketak",
|
||||
"Deleted items" : "Ezabatutako elementuak",
|
||||
@@ -160,10 +148,10 @@ OC.L10N.register(
|
||||
"Deleted lists" : "Ezabatutako zerrendak",
|
||||
"Undo" : "Desegin",
|
||||
"Deleted cards" : "Ezabatutako txartelak",
|
||||
"Share board with a user, group or circle …" : "Partekatu taula erabiltzaile, talde edo zirkulu batekin...",
|
||||
"Share board with a user, group or circle …" : "Partekatu mahaia erabiltzaile, talde edo zirkulu batekin...",
|
||||
"Searching for users, groups and circles …" : "Erabiltzaileak, taldeak, zirkuluak... bilatzen",
|
||||
"No participants found" : "Ez da parte-hartzailerik aurkitu",
|
||||
"Board owner" : "Taularen jabea",
|
||||
"Board owner" : "Mahaiaren jabea",
|
||||
"(Group)" : "(Taldea)",
|
||||
"(Circle)" : "(Zirkulua)",
|
||||
"Can edit" : "Editatu dezake",
|
||||
@@ -174,34 +162,28 @@ OC.L10N.register(
|
||||
"Add a new list" : "Gehitu zerrenda berria",
|
||||
"Archive all cards" : "Artxibatu txartel guztiak",
|
||||
"Delete list" : "Zerrenda ezabatu",
|
||||
"Add card" : "Gehitu txartela",
|
||||
"Archive all cards in this list" : "Artxibatu zerrenda honetako txartel guztiak",
|
||||
"Add a new card" : "Gehitu txartel berri bat",
|
||||
"Card name" : "Txartel izena",
|
||||
"List deleted" : "Zerrenda ezabatua",
|
||||
"Edit" : "Editatu",
|
||||
"Add a new tag" : "Gehitu etiketa berri bat",
|
||||
"title and color value must be provided" : "izenburu eta kolore balioak hornitu behar dira",
|
||||
"Board name" : "Taularen izena",
|
||||
"Board name" : "Mahaiaren izena",
|
||||
"Members" : "Partaideak",
|
||||
"Upload new files" : "Kargatu fitxategi berriak",
|
||||
"Share from Files" : "Partekatu Fitxategiak-etik",
|
||||
"Pending share" : "Partekatzeko zain",
|
||||
"Add this attachment" : "Gehitu eranskin hau",
|
||||
"Show in Files" : "Erakutsi fitxategietan",
|
||||
"Remove attachment" : "Kendu eranskina",
|
||||
"Delete Attachment" : "Ezabatu eranskina",
|
||||
"Restore Attachment" : "Berezarri eranskina",
|
||||
"File to share" : "Partekatzeko fitxategia",
|
||||
"Invalid path selected" : "Bide baliogabea hautatuta",
|
||||
"Open in sidebar view" : "Ireki alboko barraren ikuspegian",
|
||||
"Open in bigger view" : "Ireki ikuspegi handiago batean",
|
||||
"Attachments" : "Eranskinak",
|
||||
"Comments" : "Iruzkinak",
|
||||
"Modified" : "Aldatua",
|
||||
"Created" : "Sortua",
|
||||
"The title cannot be empty." : "Izenburua ezin da hutsik egon.",
|
||||
"No comments yet. Begin the discussion!" : "Ez dago iruzkinik oraindik. Hasi eztabaidatzen!",
|
||||
"Failed to load comments" : "Iruzkinen kargatzeak huts egin du.",
|
||||
"Assign a tag to this card…" : "Esleitu etiketa bat txartel honi...",
|
||||
"Assign to users" : "Esleitu erabiltzaileei",
|
||||
"Assign to users/groups/circles" : "Esleitu erabiltzaile/talde/zirkuluei",
|
||||
@@ -210,15 +192,10 @@ OC.L10N.register(
|
||||
"Set a due date" : "Ezarri epe-muga",
|
||||
"Remove due date" : "Ezabatu epe-muga",
|
||||
"Select Date" : "Hautatu data",
|
||||
"Today" : "Gaur",
|
||||
"Tomorrow" : "Bihar",
|
||||
"Next week" : "Hurrengo astea",
|
||||
"Next month" : "Hurrengo hilabetea",
|
||||
"Save" : "Gorde",
|
||||
"The comment cannot be empty." : "Iruzkina ezin da hutsik egon.",
|
||||
"The comment cannot be longer than 1000 characters." : "Iruzkina ezin da 1000 karaktere baino luzeagoa izan.",
|
||||
"In reply to" : "Honi erantzunez",
|
||||
"Cancel reply" : "Utzi erantzuna bertan behera",
|
||||
"Reply" : "Erantzun",
|
||||
"Update" : "Eguneratu",
|
||||
"Description" : "Deskribapena",
|
||||
@@ -231,58 +208,44 @@ OC.L10N.register(
|
||||
"Write a description …" : "Idatzi deskribapen bat ...",
|
||||
"Choose attachment" : "Aukeratu eranskina",
|
||||
"(group)" : "(taldea)",
|
||||
"{count} comments, {unread} unread" : "{count} iruzkin, {unread} irakurri gabe",
|
||||
"(circle)" : "(zirkulua)",
|
||||
"Assign to me" : "Esleitu niri",
|
||||
"Unassign myself" : "Niri esleitzeari utzi",
|
||||
"Move card" : "Mugitu txartela",
|
||||
"Unarchive card" : "Berreskuratu txartela artxibotik",
|
||||
"Archive card" : "Artxibatu txartela",
|
||||
"Delete card" : "Ezabatu txartela",
|
||||
"Move card to another board" : "Mugitu txartela beste taula batera",
|
||||
"Card deleted" : "Txartela ezabatuta",
|
||||
"Move card to another board" : "Mugitu txartela beste mahai batera",
|
||||
"seconds ago" : "segundo lehenago",
|
||||
"All boards" : "Taula guztiak",
|
||||
"Archived boards" : "Artxibatutako taulak",
|
||||
"All boards" : "Mahai guztiak",
|
||||
"Archived boards" : "Artxibatutako mahaiak",
|
||||
"Shared with you" : "Zurekin partekatua",
|
||||
"Use bigger card view" : "Erabili txartel ikuspegi handiagoa",
|
||||
"Show boards in calendar/tasks" : "Erakutsi taulak egutegi/zereginetan",
|
||||
"Limit deck usage of groups" : "Mugatu taldeek Deck erabiltzeko aukera",
|
||||
"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 beren taula propioak sortzea eragotziko die. Erabiltzaileek beraiekin partekatu diren tauletan lan egin ahalko dute.",
|
||||
"Board details" : "Taularen xehetasunak",
|
||||
"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 beren mahai propioak sortzea eragotziko die. Erabiltzaileek beraiekin partekatu diren mahaietan lan egin ahalko dute.",
|
||||
"Board details" : "Mahaiaren xehetasunak",
|
||||
"Edit board" : "Editatu mahaia",
|
||||
"Clone board" : "Klonatu taula",
|
||||
"Unarchive board" : "Atera taula artxibotik",
|
||||
"Archive board" : "Artxibatu taula",
|
||||
"Turn on due date reminders" : "Aktibatu epemugako abisuak",
|
||||
"Turn off due date reminders" : "Desaktibatu epemugako abisuak",
|
||||
"Due date reminders" : "Epemugako abisuak",
|
||||
"All cards" : "Txartel guztiak",
|
||||
"Assigned cards" : "Esleitutako txartelak",
|
||||
"No notifications" : "Jakinarazpenik ez",
|
||||
"Delete board" : "Ezabatu taula",
|
||||
"Board {0} deleted" : "{0} taula ezabatu da",
|
||||
"Only assigned cards" : "Bakarrik esleitutako txartelak",
|
||||
"Board {0} deleted" : "{0} mahaia ezabatu da",
|
||||
"No reminder" : "Abisurik ez",
|
||||
"An error occurred" : "Errore bat gertatu da",
|
||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Ziur zaude «{title}» taula ezabatu nahi duzula? Honek taula honen datu guztiak ezabatuko ditu.",
|
||||
"Delete the board?" : "Taula ezabatu?",
|
||||
"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?",
|
||||
"Loading filtered view" : "Kargatzen iragazitako ikuspegia",
|
||||
"Today" : "Gaur",
|
||||
"Tomorrow" : "Bihar",
|
||||
"This week" : "Aste honetan",
|
||||
"No due" : "Epemugarik ez",
|
||||
"Search for {searchQuery} in all boards" : "Bilatu {searchQuery} taula guztietan",
|
||||
"No results found" : "Ez da emaitzarik aurkitu",
|
||||
"No upcoming cards" : "Ez dago hurrengo txartelik",
|
||||
"upcoming cards" : "hurrengo txartelak",
|
||||
"Link to a board" : "Estekatu taula batera",
|
||||
"Link to a board" : "Estekatu mahai batera",
|
||||
"Link to a card" : "Estekatu txartel batera",
|
||||
"Create a card" : "Sortu txartela",
|
||||
"Message from {author} in {conversationName}" : "{author} erabiltzailearen mezua {conversationName}-an",
|
||||
"Something went wrong" : "Zerbait gaizki joan da",
|
||||
"Failed to upload {name}" : "{name} kargatzeak huts egin du",
|
||||
"Maximum file size of {size} exceeded" : "Fitxategiaren gehienezko {size} tamaina gainditu da",
|
||||
"Error creating the share" : "Errorea partekatzea sortzean",
|
||||
"Share with a Deck card" : "Partekatu Deck txartel baten bidez",
|
||||
"Share {file} with a Deck card" : "Partekatu {file} Deck txartel baten bidez",
|
||||
"Share" : "Partekatu"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
171
l10n/eu.json
171
l10n/eu.json
@@ -1,40 +1,40 @@
|
||||
{ "translations": {
|
||||
"You have created a new board {board}" : "{board} taula berria sortu duzu",
|
||||
"{user} has created a new board {board}" : "{user} erabiltzaileak {board} taula berria sortu du",
|
||||
"You have deleted the board {board}" : "{board} taula ezabatu duzu",
|
||||
"{user} has deleted the board {board}" : "{user} erabiltzaileak {board} taula ezabatu du",
|
||||
"You have restored the board {board}" : "{board} taula leheneratu duzu",
|
||||
"{user} has restored the board {board}" : "{user} erabiltzaileak {board} taula leheneratu du",
|
||||
"You have shared the board {board} with {acl}" : "{board} taula {acl} erabiltzailearekin partekatu duzu",
|
||||
"{user} has shared the board {board} with {acl}" : "{user} erabiltzaileak {board} taula {acl} erabiltzailearekin partekatu du",
|
||||
"You have removed {acl} from the board {board}" : "{acl} erabiltzailea kendu duzu {board} taulatik",
|
||||
"{user} has removed {acl} from the board {board}" : "{user} erabiltzaileak {acl} erabiltzailea kendu du {board} taulatik",
|
||||
"You have renamed the board {before} to {board}" : "{before} taula zena {board} bezala berrizendatu duzu",
|
||||
"{user} has renamed the board {before} to {board}" : "{user} erabiltzaileak {before} taula zena {board} bezala berrizendatu du",
|
||||
"You have archived the board {board}" : "{board} taula artxibatu duzu",
|
||||
"{user} has archived the board {before}" : "{user} erabiltzaileak {before} taula artxibatu du",
|
||||
"You have unarchived the board {board}" : "{board} taula artxibotik berreskuratu duzu",
|
||||
"{user} has unarchived the board {before}" : "{user} erabiltzaileak {before} taula artxibotik kendu du",
|
||||
"You have created a new list {stack} on board {board}" : "{stack} zerrenda berria sortu duzu {board} taulan",
|
||||
"{user} has created a new list {stack} on board {board}" : "{user} erabiltzaileak {stack} zerrenda berria sortu du {board} taulan",
|
||||
"You have renamed list {before} to {stack} on board {board}" : "{before} zerrenda zena {stack} bezala berrizendatu duzu {board} taulan",
|
||||
"{user} has renamed list {before} to {stack} on board {board}" : "{user} erabiltzaileak {before} zerrenda zena {stack} bezala berrizendatu du {board} taulan",
|
||||
"You have deleted list {stack} on board {board}" : "{stack} zerrenda ezabatu duzu {board} taulan",
|
||||
"{user} has deleted list {stack} on board {board}" : "{user} erabiltzaileak {stack} zerrenda ezabatu du {board} taulan",
|
||||
"You have created card {card} in list {stack} on board {board}" : "{card} txartela sortu duzu {board} taulako {stack} zerrendan",
|
||||
"{user} has created card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {card} txartela sortu du {board} taulako {stack} zerrendan",
|
||||
"You have deleted card {card} in list {stack} on board {board}" : "{card} txartela ezabatu duzu {board} taulako {stack} zerrendan",
|
||||
"{user} has deleted card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {card} txartela ezabatu du {board} taulako {stack} zerrendan",
|
||||
"You have created a new board {board}" : "{board} mahai berri bat sortu duzu",
|
||||
"{user} has created a new board {board}" : "{user} erabiltzaileak {board} mahai berri bat sortu du",
|
||||
"You have deleted the board {board}" : "{board} mahaia ezabatu duzu",
|
||||
"{user} has deleted the board {board}" : "{user} erabiltzaileak {board} mahaia ezabatu du",
|
||||
"You have restored the board {board}" : "{board} mahaia leheneratu duzu",
|
||||
"{user} has restored the board {board}" : "{user} erabiltzaileak {board} mahaia leheneratu du",
|
||||
"You have shared the board {board} with {acl}" : "{board} mahaia {acl} erabiltzailearekin partekatu duzu",
|
||||
"{user} has shared the board {board} with {acl}" : "{user} erabiltzaileak {board} mahaia {acl} erabiltzailearekin partekatu du",
|
||||
"You have removed {acl} from the board {board}" : "{acl} erabiltzailea kendu duzu {board} mahaitik",
|
||||
"{user} has removed {acl} from the board {board}" : "{user} erabiltzaileak {acl} erabiltzailea kendu du {board} mahaitik",
|
||||
"You have renamed the board {before} to {board}" : "{before} mahaia zena {board} bezala berrizendatu duzu",
|
||||
"{user} has renamed the board {before} to {board}" : "{user} erabiltzaileak {before} mahaia zena {board} bezala berrizendatu du",
|
||||
"You have archived the board {board}" : "{board} mahaia artxibatu duzu",
|
||||
"{user} has archived the board {before}" : "{user} erabiltzaileak {before} mahaia artxibatu du",
|
||||
"You have unarchived the board {board}" : "{board} mahaia artxibotik berreskuratu duzu",
|
||||
"{user} has unarchived the board {before}" : "{user} erabiltzaileak {before} mahaia artxibotik berreskuratu du",
|
||||
"You have created a new list {stack} on board {board}" : "{stack} zerrenda berria sortu duzu {board} mahaian",
|
||||
"{user} has created a new list {stack} on board {board}" : "{user} erabiltzaileak {stack} zerrenda berria sortu du {board} mahaian",
|
||||
"You have renamed list {before} to {stack} on board {board}" : "{before} zerrenda zena {stack} bezala berrizendatu duzu {board} mahaian",
|
||||
"{user} has renamed list {before} to {stack} on board {board}" : "{user} erabiltzaileak {before} zerrenda zena {stack} bezala berrizendatu du {board} mahaian",
|
||||
"You have deleted list {stack} on board {board}" : "{stack} zerrenda ezabatu duzu {board} mahaian",
|
||||
"{user} has deleted list {stack} on board {board}" : "{user} erabiltzaileak {stack} zerrenda ezabatu du {board} mahaian",
|
||||
"You have created card {card} in list {stack} on board {board}" : "{card} txartela sortu duzu {board} mahaiko {stack} zerrendan",
|
||||
"{user} has created card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {card} txartela sortu du {board} mahaiko {stack} zerrendan",
|
||||
"You have deleted card {card} in list {stack} on board {board}" : "{card} txartela ezabatu duzu {board} mahaiko {stack} zerrendan",
|
||||
"{user} has deleted card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {card} txartela ezabatu du {board} mahaiko {stack} zerrendan",
|
||||
"You have renamed the card {before} to {card}" : "{before} taula zena {card} bezala berrizendatu duzu",
|
||||
"{user} has renamed the card {before} to {card}" : "{user} erabiltzaileak {before} taula zena {card} bezala berrizendatu du",
|
||||
"You have added a description to card {card} in list {stack} on board {board}" : "{board} taulako {stack} zerrendako {card} txartelari deskripzioa gehitu diozu",
|
||||
"{user} has added a description to card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {board} taulako {stack} zerrendako {card} txartelari deskripzioa gehitu dio",
|
||||
"You have updated the description of card {card} in list {stack} on board {board}" : "{board} taulako {stack} zerrendako {card} txartelaren deskripzioa eguneratu duzu",
|
||||
"{user} has updated the description of the card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {board} taulako {stack} zerrendako {card} txartelaren deskripzioa eguneratu du",
|
||||
"You have archived card {card} in list {stack} on board {board}" : "{board} taulako {stack} zerrendako {card} txartela artxibatu duzu",
|
||||
"{user} has archived card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {board} taulako {stack} zerrendako {card} txartela artxibatu du",
|
||||
"You have unarchived card {card} in list {stack} on board {board}" : "{board} taulako {stack} zerrendako {card} txartela berreskuratu duzu artxibotik",
|
||||
"{user} has unarchived card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {board} taulako {stack} zerrendako {card} txartela berreskuratu du artxibotik",
|
||||
"You have added a description to card {card} in list {stack} on board {board}" : "{board} mahaiko {stack} zerrendako {card} txartelari deskripzioa gehitu diozu",
|
||||
"{user} has added a description to card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {board} mahaiko {stack} zerrendako {card} txartelari deskripzioa gehitu dio",
|
||||
"You have updated the description of card {card} in list {stack} on board {board}" : "{board} mahaiko {stack} zerrendako {card} txartelaren deskripzioa eguneratu duzu",
|
||||
"{user} has updated the description of the card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {board} mahaiko {stack} zerrendako {card} txartelaren deskripzioa eguneratu du",
|
||||
"You have archived card {card} in list {stack} on board {board}" : "{board} mahaiko {stack} zerrendako {card} txartela artxibatu duzu",
|
||||
"{user} has archived card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {board} mahaiko {stack} zerrendako {card} txartela artxibatu du",
|
||||
"You have unarchived card {card} in list {stack} on board {board}" : "{board} mahaiko {stack} zerrendako {card} txartela berreskuratu duzu artxibotik",
|
||||
"{user} has unarchived card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {board} mahaiko {stack} zerrendako {card} txartela berreskuratu du artxibotik",
|
||||
"You have removed the due date of card {card}" : "{card} txartelari epemuga kendu diozu",
|
||||
"{user} has removed the due date of card {card}" : "{user} erabiltzaileak {card} txartelari epemuga kendu dio",
|
||||
"You have set the due date of card {card} to {after}" : "{card} txartelari {after} epemuga ezarri diozu",
|
||||
@@ -42,13 +42,13 @@
|
||||
"You have updated the due date of card {card} to {after}" : "{card} txartelari epemuga eguneratu diozu: {after}",
|
||||
"{user} has updated the due date of card {card} to {after}" : "{user} erabiltzaileak {card} txartelari epemuga eguneratu dio: {after}",
|
||||
"You have added the tag {label} to card {card} in list {stack} on board {board}" : "{board} mahaiko {stack} zerrendako {card} txartelari {label} etiketa gehitu diozu",
|
||||
"{user} has added the tag {label} to card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {board} taulako {stack} zerrendako {card} txartelari {label} etiketa gehitu dio",
|
||||
"You have removed the tag {label} from card {card} in list {stack} on board {board}" : "{board} taulako {stack} zerrendako {card} txartelari {label} etiketa kendu diozu",
|
||||
"{user} has removed the tag {label} from card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {board} taulako {stack} zerrendako {card} txartelari {label} etiketa kendu dio",
|
||||
"You have assigned {assigneduser} to card {card} on board {board}" : "{board} taulako {card} txartela {assigneduser} erabiltzaileari esleitu diozu",
|
||||
"{user} has assigned {assigneduser} to card {card} on board {board}" : "{user} erabiltzaileak {board} taulako {card} txartela {assigneduser} erabiltzaileari esleitu dio",
|
||||
"You have unassigned {assigneduser} from card {card} on board {board}" : "{board} taulako {card} txartela {assigneduser} erabiltzaileari esleitzea ezeztatu duzu",
|
||||
"{user} has unassigned {assigneduser} from card {card} on board {board}" : "{user} erabiltzaileak {board} taulako {card} txartela {assigneduser} erabiltzaileari esleitzea ezeztatu du",
|
||||
"{user} has added the tag {label} to card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {board} mahaiko {stack} zerrendako {card} txartelari {label} etiketa gehitu dio",
|
||||
"You have removed the tag {label} from card {card} in list {stack} on board {board}" : "{board} mahaiko {stack} zerrendako {card} txartelari {label} etiketa kendu diozu",
|
||||
"{user} has removed the tag {label} from card {card} in list {stack} on board {board}" : "{user} erabiltzaileak {board} mahaiko {stack} zerrendako {card} txartelari {label} etiketa kendu dio",
|
||||
"You have assigned {assigneduser} to card {card} on board {board}" : "{board} mahaiko {card} txartela {assigneduser} erabiltzaileari esleitu diozu",
|
||||
"{user} has assigned {assigneduser} to card {card} on board {board}" : "{user} erabiltzaileak {board} mahaiko {card} txartela {assigneduser} erabiltzaileari esleitu dio",
|
||||
"You have unassigned {assigneduser} from card {card} on board {board}" : "{board} mahaiko {card} txartela {assigneduser} erabiltzaileari esleitzea ezeztatu duzu",
|
||||
"{user} has unassigned {assigneduser} from card {card} on board {board}" : "{user} erabiltzaileak {board} mahaiko {card} txartela {assigneduser} erabiltzaileari esleitzea ezeztatu du",
|
||||
"You have moved the card {card} from list {stackBefore} to {stack}" : "{card} txartela {stackBefore} zerrendatik {stack} zerrendara aldatu duzu",
|
||||
"{user} has moved the card {card} from list {stackBefore} to {stack}" : "{user} erabiltzaileak {card} txartela {stackBefore} zerrendatik {stack} zerrendara aldatu du",
|
||||
"You have added the attachment {attachment} to card {card}" : "{attachment} eranskina gehitu diozu {card} txartelari",
|
||||
@@ -68,15 +68,12 @@
|
||||
"Upcoming cards" : "Hurrengo txartelak",
|
||||
"Personal" : "Pertsonala",
|
||||
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "\"%s\" txartela \"%s\"-n %sk esleitu zaizu.",
|
||||
"{user} has assigned the card {deck-card} on {deck-board} to you." : "{user}-k {deck-board}-ko {deck-card} txartela esleitu dizu.",
|
||||
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user}k \"%s\" txartela \"%s\"-n esleitu zaitu.",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : " \"%s\" txartela, \"%s\" -n dagoena, epe-mugara ailegatu da.",
|
||||
"The card {deck-card} on {deck-board} has reached its due date." : " {deck-board}-ko {deck-card} txartela epe-mugara ailegatu da.",
|
||||
"%s has mentioned you in a comment on \"%s\"." : "%sk aipatu dizu \"%s\"-ri buruzko iruzkin batean.",
|
||||
"{user} has mentioned you in a comment on {deck-card}." : "{user}-k zure izena aipatu du {deck-card}-ko iruzkin batean.",
|
||||
"{user} has mentioned you in a comment on \"%s\"." : "{user}k aipatu dizu \"%s\"-ri buruzko iruzkin batean.",
|
||||
"The board \"%s\" has been shared with you by %s." : "\"%s\" mahaia zurekin partekatu du %s-k",
|
||||
"{user} has shared {deck-board} with you." : "{user} erabiltzaileak {deck-board} partekatu du zurekin.",
|
||||
"Card comments" : "Txartelaren iruzkinak",
|
||||
"%s on %s" : "%s hemen: %s",
|
||||
"{user} has shared the board %s with you." : "{user} erabiltzaileak %s mahaia zurekin partekatu du.",
|
||||
"No data was provided to create an attachment." : "Ez da daturik eman eranskina sortzeko.",
|
||||
"Finished" : "Bukatuta",
|
||||
"To review" : "Errebisatzeko",
|
||||
@@ -99,25 +96,17 @@
|
||||
"A PHP extension stopped the file upload" : "PHP hedapen batek fitxategiaren karga gelditu du",
|
||||
"No file uploaded or file size exceeds maximum of %s" : "Ez da fitxategirik kargatu edo fitxategi-tamainak gehienezko %s muga gainditzen du",
|
||||
"Card not found" : "Txartela ez da aurkitu",
|
||||
"Path is already shared with this card" : "Bidea dagoeneko partekatu da txartel honekin",
|
||||
"Invalid date, date format must be YYYY-MM-DD" : "Data baliogabea, dataren formatuak UUUU-HH-EE izan behar du",
|
||||
"Personal planning and team project organization" : "Plangintza pertsonala eta talde proiektuen kudeaketa",
|
||||
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck aplikazioa plangintza pertsonalera eta proiektuen antolaketara zuzenduta dagoen Nextcloudekin integratutako kanban moduko tresna bat da.\n\n\n- 📥 Gehitu atazak txarteletan eta ordenatu\n- 📄 Idatzi ohar gehigarriak markdown erabiliz\n- 🔖 Esleitu etiketak antolaketa are gehiago hobetzeko\n- 👥 Partekatu zure talde, lagun edo familiarekin\n- 📎 Erantsi fitxategiak eta kapsulatu zure markdown deskribapenean\n- 💬 Eztabaidatu zure taldearekin iruzkinak erabiliz\n- ⚡ Egin aldaketen jarraipena jarduera jarioa erabiliz\n- 🚀 Antolatu zure proiektua",
|
||||
"Card details" : "Txartelaren xehetasunak",
|
||||
"Add board" : "Gehitu mahaia",
|
||||
"Select the board to link to a project" : "Hautatu taula proiektu bati estekatzeko",
|
||||
"Search by board title" : "Bilatu taula izenez",
|
||||
"Select board" : "Hautatu taula",
|
||||
"Create a new card" : "Sortu txartel berri bat",
|
||||
"Select a board" : "Hautatu taula bat",
|
||||
"Select the board to link to a project" : "Hautatu mahaia proiektu bati estekatzeko",
|
||||
"Search by board title" : "Bilatu mahai izenez",
|
||||
"Select board" : "Hautatu mahaia",
|
||||
"Select a board" : "Hautatu mahai bat",
|
||||
"Select a list" : "Hautatu zerrenda bat",
|
||||
"Card title" : "Txartelaren izenburua",
|
||||
"Cancel" : "Utzi",
|
||||
"Creating the new card …" : "Txartel berria sortzen...",
|
||||
"Card \"{card}\" was added to \"{board}\"" : "\"{card}\" txartela \"{board}\"-ra gehitu da",
|
||||
"Open card" : "Ireki txartela",
|
||||
"Close" : "Itxi",
|
||||
"Create card" : "Sortu txartela",
|
||||
"Select a card" : "Hautatu txartel bat",
|
||||
"Select the card to link to a project" : "Hautatu proiektu bati estekatzeko txartela",
|
||||
"Link to card" : "Estekatu txartelera",
|
||||
@@ -128,7 +117,6 @@
|
||||
"Keep existing file" : "Mantendu dagoen fitxategia",
|
||||
"This board is read only" : "Mahai hau irakurtzeko soilik da",
|
||||
"Drop your files to upload" : "Jaregin zure fitxategiak kargatzeko",
|
||||
"Add card" : "Gehitu txartela",
|
||||
"Archived cards" : "Artxibatutako txartelak",
|
||||
"Add list" : "Gehitu zerrenda",
|
||||
"List name" : "Zerrendaren izena",
|
||||
@@ -147,10 +135,10 @@
|
||||
"Show archived cards" : "Erakutsi artxibatutako txartelak",
|
||||
"Toggle compact mode" : "Txandakatu modu trinkoa",
|
||||
"Details" : "Xehetasunak",
|
||||
"Loading board" : "Taula kargatzen",
|
||||
"Loading board" : "Mahaia kargatzen",
|
||||
"No lists available" : "Ez dago zerrendarik eskuragarri",
|
||||
"Create a new list to add cards to this board" : "Sortu zerrenda berria, taula honetan txartelak gehitzeko",
|
||||
"Board not found" : "Ez da taula aurkitu",
|
||||
"Create a new list to add cards to this board" : "Sortu zerrenda berria, mahai honetan txartelak gehitzeko",
|
||||
"Board not found" : "Ez da mahaia aurkitu",
|
||||
"Sharing" : "Partekatzea",
|
||||
"Tags" : "Etiketak",
|
||||
"Deleted items" : "Ezabatutako elementuak",
|
||||
@@ -158,10 +146,10 @@
|
||||
"Deleted lists" : "Ezabatutako zerrendak",
|
||||
"Undo" : "Desegin",
|
||||
"Deleted cards" : "Ezabatutako txartelak",
|
||||
"Share board with a user, group or circle …" : "Partekatu taula erabiltzaile, talde edo zirkulu batekin...",
|
||||
"Share board with a user, group or circle …" : "Partekatu mahaia erabiltzaile, talde edo zirkulu batekin...",
|
||||
"Searching for users, groups and circles …" : "Erabiltzaileak, taldeak, zirkuluak... bilatzen",
|
||||
"No participants found" : "Ez da parte-hartzailerik aurkitu",
|
||||
"Board owner" : "Taularen jabea",
|
||||
"Board owner" : "Mahaiaren jabea",
|
||||
"(Group)" : "(Taldea)",
|
||||
"(Circle)" : "(Zirkulua)",
|
||||
"Can edit" : "Editatu dezake",
|
||||
@@ -172,34 +160,28 @@
|
||||
"Add a new list" : "Gehitu zerrenda berria",
|
||||
"Archive all cards" : "Artxibatu txartel guztiak",
|
||||
"Delete list" : "Zerrenda ezabatu",
|
||||
"Add card" : "Gehitu txartela",
|
||||
"Archive all cards in this list" : "Artxibatu zerrenda honetako txartel guztiak",
|
||||
"Add a new card" : "Gehitu txartel berri bat",
|
||||
"Card name" : "Txartel izena",
|
||||
"List deleted" : "Zerrenda ezabatua",
|
||||
"Edit" : "Editatu",
|
||||
"Add a new tag" : "Gehitu etiketa berri bat",
|
||||
"title and color value must be provided" : "izenburu eta kolore balioak hornitu behar dira",
|
||||
"Board name" : "Taularen izena",
|
||||
"Board name" : "Mahaiaren izena",
|
||||
"Members" : "Partaideak",
|
||||
"Upload new files" : "Kargatu fitxategi berriak",
|
||||
"Share from Files" : "Partekatu Fitxategiak-etik",
|
||||
"Pending share" : "Partekatzeko zain",
|
||||
"Add this attachment" : "Gehitu eranskin hau",
|
||||
"Show in Files" : "Erakutsi fitxategietan",
|
||||
"Remove attachment" : "Kendu eranskina",
|
||||
"Delete Attachment" : "Ezabatu eranskina",
|
||||
"Restore Attachment" : "Berezarri eranskina",
|
||||
"File to share" : "Partekatzeko fitxategia",
|
||||
"Invalid path selected" : "Bide baliogabea hautatuta",
|
||||
"Open in sidebar view" : "Ireki alboko barraren ikuspegian",
|
||||
"Open in bigger view" : "Ireki ikuspegi handiago batean",
|
||||
"Attachments" : "Eranskinak",
|
||||
"Comments" : "Iruzkinak",
|
||||
"Modified" : "Aldatua",
|
||||
"Created" : "Sortua",
|
||||
"The title cannot be empty." : "Izenburua ezin da hutsik egon.",
|
||||
"No comments yet. Begin the discussion!" : "Ez dago iruzkinik oraindik. Hasi eztabaidatzen!",
|
||||
"Failed to load comments" : "Iruzkinen kargatzeak huts egin du.",
|
||||
"Assign a tag to this card…" : "Esleitu etiketa bat txartel honi...",
|
||||
"Assign to users" : "Esleitu erabiltzaileei",
|
||||
"Assign to users/groups/circles" : "Esleitu erabiltzaile/talde/zirkuluei",
|
||||
@@ -208,15 +190,10 @@
|
||||
"Set a due date" : "Ezarri epe-muga",
|
||||
"Remove due date" : "Ezabatu epe-muga",
|
||||
"Select Date" : "Hautatu data",
|
||||
"Today" : "Gaur",
|
||||
"Tomorrow" : "Bihar",
|
||||
"Next week" : "Hurrengo astea",
|
||||
"Next month" : "Hurrengo hilabetea",
|
||||
"Save" : "Gorde",
|
||||
"The comment cannot be empty." : "Iruzkina ezin da hutsik egon.",
|
||||
"The comment cannot be longer than 1000 characters." : "Iruzkina ezin da 1000 karaktere baino luzeagoa izan.",
|
||||
"In reply to" : "Honi erantzunez",
|
||||
"Cancel reply" : "Utzi erantzuna bertan behera",
|
||||
"Reply" : "Erantzun",
|
||||
"Update" : "Eguneratu",
|
||||
"Description" : "Deskribapena",
|
||||
@@ -229,58 +206,44 @@
|
||||
"Write a description …" : "Idatzi deskribapen bat ...",
|
||||
"Choose attachment" : "Aukeratu eranskina",
|
||||
"(group)" : "(taldea)",
|
||||
"{count} comments, {unread} unread" : "{count} iruzkin, {unread} irakurri gabe",
|
||||
"(circle)" : "(zirkulua)",
|
||||
"Assign to me" : "Esleitu niri",
|
||||
"Unassign myself" : "Niri esleitzeari utzi",
|
||||
"Move card" : "Mugitu txartela",
|
||||
"Unarchive card" : "Berreskuratu txartela artxibotik",
|
||||
"Archive card" : "Artxibatu txartela",
|
||||
"Delete card" : "Ezabatu txartela",
|
||||
"Move card to another board" : "Mugitu txartela beste taula batera",
|
||||
"Card deleted" : "Txartela ezabatuta",
|
||||
"Move card to another board" : "Mugitu txartela beste mahai batera",
|
||||
"seconds ago" : "segundo lehenago",
|
||||
"All boards" : "Taula guztiak",
|
||||
"Archived boards" : "Artxibatutako taulak",
|
||||
"All boards" : "Mahai guztiak",
|
||||
"Archived boards" : "Artxibatutako mahaiak",
|
||||
"Shared with you" : "Zurekin partekatua",
|
||||
"Use bigger card view" : "Erabili txartel ikuspegi handiagoa",
|
||||
"Show boards in calendar/tasks" : "Erakutsi taulak egutegi/zereginetan",
|
||||
"Limit deck usage of groups" : "Mugatu taldeek Deck erabiltzeko aukera",
|
||||
"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 beren taula propioak sortzea eragotziko die. Erabiltzaileek beraiekin partekatu diren tauletan lan egin ahalko dute.",
|
||||
"Board details" : "Taularen xehetasunak",
|
||||
"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 beren mahai propioak sortzea eragotziko die. Erabiltzaileek beraiekin partekatu diren mahaietan lan egin ahalko dute.",
|
||||
"Board details" : "Mahaiaren xehetasunak",
|
||||
"Edit board" : "Editatu mahaia",
|
||||
"Clone board" : "Klonatu taula",
|
||||
"Unarchive board" : "Atera taula artxibotik",
|
||||
"Archive board" : "Artxibatu taula",
|
||||
"Turn on due date reminders" : "Aktibatu epemugako abisuak",
|
||||
"Turn off due date reminders" : "Desaktibatu epemugako abisuak",
|
||||
"Due date reminders" : "Epemugako abisuak",
|
||||
"All cards" : "Txartel guztiak",
|
||||
"Assigned cards" : "Esleitutako txartelak",
|
||||
"No notifications" : "Jakinarazpenik ez",
|
||||
"Delete board" : "Ezabatu taula",
|
||||
"Board {0} deleted" : "{0} taula ezabatu da",
|
||||
"Only assigned cards" : "Bakarrik esleitutako txartelak",
|
||||
"Board {0} deleted" : "{0} mahaia ezabatu da",
|
||||
"No reminder" : "Abisurik ez",
|
||||
"An error occurred" : "Errore bat gertatu da",
|
||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Ziur zaude «{title}» taula ezabatu nahi duzula? Honek taula honen datu guztiak ezabatuko ditu.",
|
||||
"Delete the board?" : "Taula ezabatu?",
|
||||
"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?",
|
||||
"Loading filtered view" : "Kargatzen iragazitako ikuspegia",
|
||||
"Today" : "Gaur",
|
||||
"Tomorrow" : "Bihar",
|
||||
"This week" : "Aste honetan",
|
||||
"No due" : "Epemugarik ez",
|
||||
"Search for {searchQuery} in all boards" : "Bilatu {searchQuery} taula guztietan",
|
||||
"No results found" : "Ez da emaitzarik aurkitu",
|
||||
"No upcoming cards" : "Ez dago hurrengo txartelik",
|
||||
"upcoming cards" : "hurrengo txartelak",
|
||||
"Link to a board" : "Estekatu taula batera",
|
||||
"Link to a board" : "Estekatu mahai batera",
|
||||
"Link to a card" : "Estekatu txartel batera",
|
||||
"Create a card" : "Sortu txartela",
|
||||
"Message from {author} in {conversationName}" : "{author} erabiltzailearen mezua {conversationName}-an",
|
||||
"Something went wrong" : "Zerbait gaizki joan da",
|
||||
"Failed to upload {name}" : "{name} kargatzeak huts egin du",
|
||||
"Maximum file size of {size} exceeded" : "Fitxategiaren gehienezko {size} tamaina gainditu da",
|
||||
"Error creating the share" : "Errorea partekatzea sortzean",
|
||||
"Share with a Deck card" : "Partekatu Deck txartel baten bidez",
|
||||
"Share {file} with a Deck card" : "Partekatu {file} Deck txartel baten bidez",
|
||||
"Share" : "Partekatu"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
@@ -55,7 +55,6 @@ OC.L10N.register(
|
||||
"Keep existing file" : "پرونده موجود حفظ شود",
|
||||
"This board is read only" : "تخته، فقط خواندنی است",
|
||||
"Drop your files to upload" : "برای بارگذاری، پروندهها را اینجا رها کنید",
|
||||
"Add card" : "افزودن کارت",
|
||||
"Archived cards" : "کارتهای بایگانیشده",
|
||||
"Add list" : "افزودن فهرست",
|
||||
"List name" : "نام فهرست",
|
||||
@@ -87,6 +86,7 @@ OC.L10N.register(
|
||||
"Can manage" : "میتواند مدیریت کند",
|
||||
"Delete" : "حذف",
|
||||
"Delete list" : "حذف فهرست",
|
||||
"Add card" : "افزودن کارت",
|
||||
"Add a new card" : "افزودن یک کارت جدید",
|
||||
"Edit" : "ویرایش",
|
||||
"Add a new tag" : "افزودن یک برچسب جدید",
|
||||
@@ -102,8 +102,6 @@ OC.L10N.register(
|
||||
"No comments yet. Begin the discussion!" : "هنوز نظری وجود ندارد. بحثی را آغاز کنید!",
|
||||
"Due date" : "موعد مقرر",
|
||||
"Select Date" : "تاریخ را انتخاب کنید",
|
||||
"Today" : "Today",
|
||||
"Tomorrow" : "فردا",
|
||||
"Save" : "ذخیره",
|
||||
"The comment cannot be empty." : "نظر نمیتواند خالی باشد.",
|
||||
"The comment cannot be longer than 1000 characters." : "نظر نمیتواند طولانیتر از ۱۰۰۰ حرف باشد.",
|
||||
@@ -119,6 +117,7 @@ OC.L10N.register(
|
||||
"Add Attachment" : "افزودن پیوست",
|
||||
"Choose attachment" : "انتخاب پیوست",
|
||||
"(group)" : "(گروه)",
|
||||
"(circle)" : "(حلقه)",
|
||||
"Move card" : "انتقال کارت",
|
||||
"Archive card" : "کارت بایگانی",
|
||||
"Delete card" : "حذف کارت",
|
||||
@@ -129,6 +128,8 @@ OC.L10N.register(
|
||||
"Shared with you" : "با شما به اشتراک گذاشته شده است",
|
||||
"Edit board" : "ویرایش تخته",
|
||||
"An error occurred" : "خطایی روی داد",
|
||||
"Today" : "Today",
|
||||
"Tomorrow" : "فردا",
|
||||
"This week" : "این هفته"
|
||||
},
|
||||
"nplurals=2; plural=(n > 1);");
|
||||
|
||||
@@ -53,7 +53,6 @@
|
||||
"Keep existing file" : "پرونده موجود حفظ شود",
|
||||
"This board is read only" : "تخته، فقط خواندنی است",
|
||||
"Drop your files to upload" : "برای بارگذاری، پروندهها را اینجا رها کنید",
|
||||
"Add card" : "افزودن کارت",
|
||||
"Archived cards" : "کارتهای بایگانیشده",
|
||||
"Add list" : "افزودن فهرست",
|
||||
"List name" : "نام فهرست",
|
||||
@@ -85,6 +84,7 @@
|
||||
"Can manage" : "میتواند مدیریت کند",
|
||||
"Delete" : "حذف",
|
||||
"Delete list" : "حذف فهرست",
|
||||
"Add card" : "افزودن کارت",
|
||||
"Add a new card" : "افزودن یک کارت جدید",
|
||||
"Edit" : "ویرایش",
|
||||
"Add a new tag" : "افزودن یک برچسب جدید",
|
||||
@@ -100,8 +100,6 @@
|
||||
"No comments yet. Begin the discussion!" : "هنوز نظری وجود ندارد. بحثی را آغاز کنید!",
|
||||
"Due date" : "موعد مقرر",
|
||||
"Select Date" : "تاریخ را انتخاب کنید",
|
||||
"Today" : "Today",
|
||||
"Tomorrow" : "فردا",
|
||||
"Save" : "ذخیره",
|
||||
"The comment cannot be empty." : "نظر نمیتواند خالی باشد.",
|
||||
"The comment cannot be longer than 1000 characters." : "نظر نمیتواند طولانیتر از ۱۰۰۰ حرف باشد.",
|
||||
@@ -117,6 +115,7 @@
|
||||
"Add Attachment" : "افزودن پیوست",
|
||||
"Choose attachment" : "انتخاب پیوست",
|
||||
"(group)" : "(گروه)",
|
||||
"(circle)" : "(حلقه)",
|
||||
"Move card" : "انتقال کارت",
|
||||
"Archive card" : "کارت بایگانی",
|
||||
"Delete card" : "حذف کارت",
|
||||
@@ -127,6 +126,8 @@
|
||||
"Shared with you" : "با شما به اشتراک گذاشته شده است",
|
||||
"Edit board" : "ویرایش تخته",
|
||||
"An error occurred" : "خطایی روی داد",
|
||||
"Today" : "Today",
|
||||
"Tomorrow" : "فردا",
|
||||
"This week" : "این هفته"
|
||||
},"pluralForm" :"nplurals=2; plural=(n > 1);"
|
||||
}
|
||||
27
l10n/fi.js
27
l10n/fi.js
@@ -58,10 +58,12 @@ OC.L10N.register(
|
||||
"Upcoming cards" : "Tulevat kortit",
|
||||
"Personal" : "Henkilökohtainen",
|
||||
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Kortti \"%s\" taululla \"%s\" on asetettu sinulle käyttäjän %s toimesta.",
|
||||
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} on asettanut kortin \"%s\" taululla \"%s\" sinulle.",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "Kortin \"%s\" on \"%s\" eräpäivä on tullut vastaan.",
|
||||
"%s has mentioned you in a comment on \"%s\"." : "%s mainitsi sinut kommentissa kortilla \"%s\".",
|
||||
"{user} has mentioned you in a comment on \"%s\"." : "{user} mainitsi sinut kommentissa kortilla \"%s\".",
|
||||
"The board \"%s\" has been shared with you by %s." : "Taulu \"%s\" on jaettu kanssasi käyttäjän %s toimesta.",
|
||||
"Card comments" : "Kortin kommentit",
|
||||
"{user} has shared the board %s with you." : "{user} on jakanut taulun %s kanssasi.",
|
||||
"Finished" : "Valmistunut",
|
||||
"To review" : "Arvosteltavana",
|
||||
"Action needed" : "Toimia vaaditaan",
|
||||
@@ -83,8 +85,6 @@ OC.L10N.register(
|
||||
"A PHP extension stopped the file upload" : "PHP:n laajennus esti tiedoston lähettämisen",
|
||||
"No file uploaded or file size exceeds maximum of %s" : "Tiedostoa ei lähetetty tai sen koko ylitti maksimin %s",
|
||||
"Card not found" : "Korttia ei löydy",
|
||||
"Path is already shared with this card" : "Polku on jo jaettu tämän kortin kanssa",
|
||||
"Invalid date, date format must be YYYY-MM-DD" : "Virheellinen päivä, päivän muodon tulee olla YYYY-MM-DD",
|
||||
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Pakka on Nextcloudissa työtään hallinnoivien tiimien käyttöön tarkoitettu kanban-tyyppinen organisointityökalu.\n\n\n- 📥 Lisää tehtävät korteille ja järjestele ne mielesi mukaan\n- 📄 Kirjoita lisätietoja markdown-kielellä\n- 🔖 Määritä tunnisteita helpottaaksesi hallintaa\n- 👥 Jaa tiimin, perheen tai kavereiden kanssa\n- 📎 Lisää tiedostoja ja upota ne lisätietoihin\n- 💬 Keskustele tiimisi kanssa kommenteilla\n- ⚡ Pidä kirjaa muutoksista tapahtumavirran avulla\n- 🚀 Pidä projektisi hallinnassa",
|
||||
"Card details" : "Näytä kortin sisältö",
|
||||
"Add board" : "Lisää taulu",
|
||||
@@ -96,8 +96,6 @@ OC.L10N.register(
|
||||
"Select a list" : "Valitse lista ",
|
||||
"Card title" : "Kortin otsikko",
|
||||
"Cancel" : "Peruuta",
|
||||
"Creating the new card …" : "Luodaan uutta korttia…",
|
||||
"Card \"{card}\" was added to \"{board}\"" : "Kortti \"{card}\" lisättiin taululle \"{board}\"",
|
||||
"Open card" : "Avaa kortti",
|
||||
"Close" : "Sulje",
|
||||
"Create card" : "Luo kortti",
|
||||
@@ -111,7 +109,6 @@ OC.L10N.register(
|
||||
"Keep existing file" : "Pidä nykyinen tiedosto",
|
||||
"This board is read only" : "Tämä taulu on kirjoitussuojattu",
|
||||
"Drop your files to upload" : "Pudota tiedostot lähettääksesi ne",
|
||||
"Add card" : "Lisää kortti",
|
||||
"Archived cards" : "Arkistoidut kortit",
|
||||
"Add list" : "Lisää lista",
|
||||
"List name" : "Listan nimi",
|
||||
@@ -153,6 +150,7 @@ OC.L10N.register(
|
||||
"Add a new list" : "Lisää uusi lista",
|
||||
"Archive all cards" : "Arkistoi kaikki kortit",
|
||||
"Delete list" : "Poista lista",
|
||||
"Add card" : "Lisää kortti",
|
||||
"Archive all cards in this list" : "Arkistoi kaikki kortit tässä listassa",
|
||||
"Add a new card" : "Lisää uusi kortti",
|
||||
"Card name" : "Kortin nimi",
|
||||
@@ -162,28 +160,20 @@ OC.L10N.register(
|
||||
"title and color value must be provided" : "tunnisteella on oltava nimi ja väri",
|
||||
"Board name" : "Taulun nimi",
|
||||
"Members" : "Jäsenet",
|
||||
"Upload new files" : "Lähetä uusia tiedostoja",
|
||||
"Add this attachment" : "Lisää tämä liite",
|
||||
"Remove attachment" : "Poista liite",
|
||||
"Delete Attachment" : "Poista liite",
|
||||
"Restore Attachment" : "Palauta liite",
|
||||
"File to share" : "Jaettava tiedosto",
|
||||
"Invalid path selected" : "Virheellinen polku valittu",
|
||||
"Open in sidebar view" : "Avaa sivupalkkinäkymään",
|
||||
"Attachments" : "Liitteet",
|
||||
"Comments" : "Kommentit",
|
||||
"Modified" : "Muokattu",
|
||||
"Created" : "Luotu",
|
||||
"The title cannot be empty." : "Otsikko ei voi olla tyhjä.",
|
||||
"No comments yet. Begin the discussion!" : "Ei vielä kommentteja. Aloita keskustelu!",
|
||||
"Failed to load comments" : "Kommenttien lataaminen epäonnistui",
|
||||
"Assign a tag to this card…" : "Lisää kortille tunniste...",
|
||||
"Due date" : "Eräpäivä",
|
||||
"Set a due date" : "Aseta eräpäivä",
|
||||
"Remove due date" : "Poista eräpäivä",
|
||||
"Select Date" : "Valitse päivä",
|
||||
"Today" : "Tänään",
|
||||
"Tomorrow" : "Huomenna",
|
||||
"Save" : "Tallenna",
|
||||
"The comment cannot be empty." : "Kommentti ei voi olla tyhjä.",
|
||||
"The comment cannot be longer than 1000 characters." : "Kommentin on oltava alle 1000 merkkiä pitkä.",
|
||||
@@ -196,10 +186,8 @@ OC.L10N.register(
|
||||
"Edit description" : "Muokkaa kuvausta",
|
||||
"View description" : "Näytä kuvaus",
|
||||
"Add Attachment" : "Lisää liite",
|
||||
"Write a description …" : "Kirjoita kuvaus…",
|
||||
"Choose attachment" : "Valitse liite",
|
||||
"(group)" : "(ryhmä)",
|
||||
"{count} comments, {unread} unread" : "{count} kommenttia, {unread} lukematonta",
|
||||
"Assign to me" : "Määritä minulle",
|
||||
"Unassign myself" : "Poista määritys minulta",
|
||||
"Move card" : "Siirrä kortti",
|
||||
@@ -216,7 +204,6 @@ OC.L10N.register(
|
||||
"Board details" : "Taulun tiedot",
|
||||
"Edit board" : "Muokkaa taulua",
|
||||
"Clone board" : "Monista taulu",
|
||||
"Archive board" : "Arkistoi taulu",
|
||||
"All cards" : "Kaikki kortit",
|
||||
"No notifications" : "Ei ilmoituksia",
|
||||
"Delete board" : "Poista taulu",
|
||||
@@ -224,18 +211,16 @@ OC.L10N.register(
|
||||
"No reminder" : "Ei muistutusta",
|
||||
"An error occurred" : "Tapahtui virhe",
|
||||
"Delete the board?" : "Poistetaanko tämä taulu?",
|
||||
"Today" : "Tänään",
|
||||
"Tomorrow" : "Huomenna",
|
||||
"This week" : "Tällä viikolla",
|
||||
"Search for {searchQuery} in all boards" : "Hae ehtoja {searchQuery} kaikilta tauluilta",
|
||||
"No results found" : "Ei tuloksia",
|
||||
"No upcoming cards" : "Ei tulevia kortteja",
|
||||
"upcoming cards" : "tulevat kortit",
|
||||
"Link to a board" : "Linkki taululle",
|
||||
"Link to a card" : "Linkitä korttiin",
|
||||
"Create a card" : "Luo kortti",
|
||||
"Something went wrong" : "Jokin meni vikaan",
|
||||
"Failed to upload {name}" : "Ei voitu lähettää {name}",
|
||||
"Maximum file size of {size} exceeded" : "Tiedoston enimmäiskoko {size} ylitetty",
|
||||
"Error creating the share" : "Virhe jakoa luotaessa",
|
||||
"Share" : "Jaa"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
27
l10n/fi.json
27
l10n/fi.json
@@ -56,10 +56,12 @@
|
||||
"Upcoming cards" : "Tulevat kortit",
|
||||
"Personal" : "Henkilökohtainen",
|
||||
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Kortti \"%s\" taululla \"%s\" on asetettu sinulle käyttäjän %s toimesta.",
|
||||
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} on asettanut kortin \"%s\" taululla \"%s\" sinulle.",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "Kortin \"%s\" on \"%s\" eräpäivä on tullut vastaan.",
|
||||
"%s has mentioned you in a comment on \"%s\"." : "%s mainitsi sinut kommentissa kortilla \"%s\".",
|
||||
"{user} has mentioned you in a comment on \"%s\"." : "{user} mainitsi sinut kommentissa kortilla \"%s\".",
|
||||
"The board \"%s\" has been shared with you by %s." : "Taulu \"%s\" on jaettu kanssasi käyttäjän %s toimesta.",
|
||||
"Card comments" : "Kortin kommentit",
|
||||
"{user} has shared the board %s with you." : "{user} on jakanut taulun %s kanssasi.",
|
||||
"Finished" : "Valmistunut",
|
||||
"To review" : "Arvosteltavana",
|
||||
"Action needed" : "Toimia vaaditaan",
|
||||
@@ -81,8 +83,6 @@
|
||||
"A PHP extension stopped the file upload" : "PHP:n laajennus esti tiedoston lähettämisen",
|
||||
"No file uploaded or file size exceeds maximum of %s" : "Tiedostoa ei lähetetty tai sen koko ylitti maksimin %s",
|
||||
"Card not found" : "Korttia ei löydy",
|
||||
"Path is already shared with this card" : "Polku on jo jaettu tämän kortin kanssa",
|
||||
"Invalid date, date format must be YYYY-MM-DD" : "Virheellinen päivä, päivän muodon tulee olla YYYY-MM-DD",
|
||||
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Pakka on Nextcloudissa työtään hallinnoivien tiimien käyttöön tarkoitettu kanban-tyyppinen organisointityökalu.\n\n\n- 📥 Lisää tehtävät korteille ja järjestele ne mielesi mukaan\n- 📄 Kirjoita lisätietoja markdown-kielellä\n- 🔖 Määritä tunnisteita helpottaaksesi hallintaa\n- 👥 Jaa tiimin, perheen tai kavereiden kanssa\n- 📎 Lisää tiedostoja ja upota ne lisätietoihin\n- 💬 Keskustele tiimisi kanssa kommenteilla\n- ⚡ Pidä kirjaa muutoksista tapahtumavirran avulla\n- 🚀 Pidä projektisi hallinnassa",
|
||||
"Card details" : "Näytä kortin sisältö",
|
||||
"Add board" : "Lisää taulu",
|
||||
@@ -94,8 +94,6 @@
|
||||
"Select a list" : "Valitse lista ",
|
||||
"Card title" : "Kortin otsikko",
|
||||
"Cancel" : "Peruuta",
|
||||
"Creating the new card …" : "Luodaan uutta korttia…",
|
||||
"Card \"{card}\" was added to \"{board}\"" : "Kortti \"{card}\" lisättiin taululle \"{board}\"",
|
||||
"Open card" : "Avaa kortti",
|
||||
"Close" : "Sulje",
|
||||
"Create card" : "Luo kortti",
|
||||
@@ -109,7 +107,6 @@
|
||||
"Keep existing file" : "Pidä nykyinen tiedosto",
|
||||
"This board is read only" : "Tämä taulu on kirjoitussuojattu",
|
||||
"Drop your files to upload" : "Pudota tiedostot lähettääksesi ne",
|
||||
"Add card" : "Lisää kortti",
|
||||
"Archived cards" : "Arkistoidut kortit",
|
||||
"Add list" : "Lisää lista",
|
||||
"List name" : "Listan nimi",
|
||||
@@ -151,6 +148,7 @@
|
||||
"Add a new list" : "Lisää uusi lista",
|
||||
"Archive all cards" : "Arkistoi kaikki kortit",
|
||||
"Delete list" : "Poista lista",
|
||||
"Add card" : "Lisää kortti",
|
||||
"Archive all cards in this list" : "Arkistoi kaikki kortit tässä listassa",
|
||||
"Add a new card" : "Lisää uusi kortti",
|
||||
"Card name" : "Kortin nimi",
|
||||
@@ -160,28 +158,20 @@
|
||||
"title and color value must be provided" : "tunnisteella on oltava nimi ja väri",
|
||||
"Board name" : "Taulun nimi",
|
||||
"Members" : "Jäsenet",
|
||||
"Upload new files" : "Lähetä uusia tiedostoja",
|
||||
"Add this attachment" : "Lisää tämä liite",
|
||||
"Remove attachment" : "Poista liite",
|
||||
"Delete Attachment" : "Poista liite",
|
||||
"Restore Attachment" : "Palauta liite",
|
||||
"File to share" : "Jaettava tiedosto",
|
||||
"Invalid path selected" : "Virheellinen polku valittu",
|
||||
"Open in sidebar view" : "Avaa sivupalkkinäkymään",
|
||||
"Attachments" : "Liitteet",
|
||||
"Comments" : "Kommentit",
|
||||
"Modified" : "Muokattu",
|
||||
"Created" : "Luotu",
|
||||
"The title cannot be empty." : "Otsikko ei voi olla tyhjä.",
|
||||
"No comments yet. Begin the discussion!" : "Ei vielä kommentteja. Aloita keskustelu!",
|
||||
"Failed to load comments" : "Kommenttien lataaminen epäonnistui",
|
||||
"Assign a tag to this card…" : "Lisää kortille tunniste...",
|
||||
"Due date" : "Eräpäivä",
|
||||
"Set a due date" : "Aseta eräpäivä",
|
||||
"Remove due date" : "Poista eräpäivä",
|
||||
"Select Date" : "Valitse päivä",
|
||||
"Today" : "Tänään",
|
||||
"Tomorrow" : "Huomenna",
|
||||
"Save" : "Tallenna",
|
||||
"The comment cannot be empty." : "Kommentti ei voi olla tyhjä.",
|
||||
"The comment cannot be longer than 1000 characters." : "Kommentin on oltava alle 1000 merkkiä pitkä.",
|
||||
@@ -194,10 +184,8 @@
|
||||
"Edit description" : "Muokkaa kuvausta",
|
||||
"View description" : "Näytä kuvaus",
|
||||
"Add Attachment" : "Lisää liite",
|
||||
"Write a description …" : "Kirjoita kuvaus…",
|
||||
"Choose attachment" : "Valitse liite",
|
||||
"(group)" : "(ryhmä)",
|
||||
"{count} comments, {unread} unread" : "{count} kommenttia, {unread} lukematonta",
|
||||
"Assign to me" : "Määritä minulle",
|
||||
"Unassign myself" : "Poista määritys minulta",
|
||||
"Move card" : "Siirrä kortti",
|
||||
@@ -214,7 +202,6 @@
|
||||
"Board details" : "Taulun tiedot",
|
||||
"Edit board" : "Muokkaa taulua",
|
||||
"Clone board" : "Monista taulu",
|
||||
"Archive board" : "Arkistoi taulu",
|
||||
"All cards" : "Kaikki kortit",
|
||||
"No notifications" : "Ei ilmoituksia",
|
||||
"Delete board" : "Poista taulu",
|
||||
@@ -222,18 +209,16 @@
|
||||
"No reminder" : "Ei muistutusta",
|
||||
"An error occurred" : "Tapahtui virhe",
|
||||
"Delete the board?" : "Poistetaanko tämä taulu?",
|
||||
"Today" : "Tänään",
|
||||
"Tomorrow" : "Huomenna",
|
||||
"This week" : "Tällä viikolla",
|
||||
"Search for {searchQuery} in all boards" : "Hae ehtoja {searchQuery} kaikilta tauluilta",
|
||||
"No results found" : "Ei tuloksia",
|
||||
"No upcoming cards" : "Ei tulevia kortteja",
|
||||
"upcoming cards" : "tulevat kortit",
|
||||
"Link to a board" : "Linkki taululle",
|
||||
"Link to a card" : "Linkitä korttiin",
|
||||
"Create a card" : "Luo kortti",
|
||||
"Something went wrong" : "Jokin meni vikaan",
|
||||
"Failed to upload {name}" : "Ei voitu lähettää {name}",
|
||||
"Maximum file size of {size} exceeded" : "Tiedoston enimmäiskoko {size} ylitetty",
|
||||
"Error creating the share" : "Virhe jakoa luotaessa",
|
||||
"Share" : "Jaa"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
34
l10n/fr.js
34
l10n/fr.js
@@ -70,15 +70,12 @@ OC.L10N.register(
|
||||
"Upcoming cards" : "Cartes à venir",
|
||||
"Personal" : "Personnel",
|
||||
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "La carte \"%s\" de \"%s\" vous a été assignée par %s.",
|
||||
"{user} has assigned the card {deck-card} on {deck-board} to you." : "{user} vous a attribué la carte {deck-card} du tableau {deck-board}.",
|
||||
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} vous a assigné la carte \"%s\" de \"%s\".",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "La date d'échéance de la carte \"%s\" de \"%s\" a été atteinte.",
|
||||
"The card {deck-card} on {deck-board} has reached its due date." : "La carte {deck-card} sur {deck-board} a atteint sa date d'échéance.",
|
||||
"%s has mentioned you in a comment on \"%s\"." : "%s vous a mentionné dans un commentaire sur \"%s\".",
|
||||
"{user} has mentioned you in a comment on {deck-card}." : "{user} vous a cité dans un commentaire sur {deck-card}.",
|
||||
"{user} has mentioned you in a comment on \"%s\"." : " {user} vous a mentionné dans un commentaire sur \"%s\".",
|
||||
"The board \"%s\" has been shared with you by %s." : "Le tableau \"%s\" a été partagé avec vous par %s.",
|
||||
"{user} has shared {deck-board} with you." : "{user} vous a partagé le tableau {deck-board}.",
|
||||
"Card comments" : "Commentaires de la carte",
|
||||
"%s on %s" : "%s sur %s",
|
||||
"{user} has shared the board %s with you." : "{user} a partagé le tableau %s avec vous.",
|
||||
"No data was provided to create an attachment." : "Aucune donnée n'a été fournie pour créer une pièce jointe.",
|
||||
"Finished" : "Terminé",
|
||||
"To review" : "A réviser",
|
||||
@@ -110,16 +107,9 @@ OC.L10N.register(
|
||||
"Select the board to link to a project" : "Sélection le tableau pour faire le lien avec un projet.",
|
||||
"Search by board title" : "Rechercher par titre du tableau",
|
||||
"Select board" : "Sélectionner le tableau",
|
||||
"Create a new card" : "Créer une nouvelle carte",
|
||||
"Select a board" : "Sélectionner un tableau",
|
||||
"Select a list" : "Sélectionner une liste",
|
||||
"Card title" : "Titre de la carte",
|
||||
"Cancel" : "Annuler",
|
||||
"Creating the new card …" : "Création de la nouvelle carte…",
|
||||
"Card \"{card}\" was added to \"{board}\"" : "La carte \"{card}\" a été ajoutée au tableau \"{board}\"",
|
||||
"Open card" : "Ouvrir la carte",
|
||||
"Close" : "Fermer",
|
||||
"Create card" : "Créer une carte",
|
||||
"Select a card" : "Sélectionnez une carte",
|
||||
"Select the card to link to a project" : "Sélectionner la carte à relier à un projet",
|
||||
"Link to card" : "Relier à une carte",
|
||||
@@ -130,7 +120,6 @@ OC.L10N.register(
|
||||
"Keep existing file" : "Conserver le fichier existant",
|
||||
"This board is read only" : "Ce tableau est en lecture seule",
|
||||
"Drop your files to upload" : "Glissez vos fichiers pour les envoyer",
|
||||
"Add card" : "Ajouter une carte",
|
||||
"Archived cards" : "Cartes archivées",
|
||||
"Add list" : "Ajouter une liste",
|
||||
"List name" : "Nom de la liste",
|
||||
@@ -174,6 +163,7 @@ OC.L10N.register(
|
||||
"Add a new list" : "Ajouter une nouvelle liste",
|
||||
"Archive all cards" : "Archiver toutes les cartes",
|
||||
"Delete list" : "Supprimer la liste",
|
||||
"Add card" : "Ajouter une carte",
|
||||
"Archive all cards in this list" : "Archiver toutes les cartes de cette liste",
|
||||
"Add a new card" : "Ajouter une nouvelle carte",
|
||||
"Card name" : "Nom de la carte",
|
||||
@@ -186,7 +176,7 @@ OC.L10N.register(
|
||||
"Upload new files" : "Téléverser de nouveaux fichiers",
|
||||
"Share from Files" : "Partager vos fichiers déjà stockés",
|
||||
"Add this attachment" : "Ajouter cette pièce jointe",
|
||||
"Show in Files" : "Afficher dans Fichiers",
|
||||
"Unshare file" : "Ne plus partager le fichier",
|
||||
"Delete Attachment" : "Supprimer la pièce jointe",
|
||||
"Restore Attachment" : "Restaurer la pièce jointe",
|
||||
"File to share" : "Fichier à partager",
|
||||
@@ -199,7 +189,6 @@ OC.L10N.register(
|
||||
"Created" : "Créé",
|
||||
"The title cannot be empty." : "Le titre ne peut pas être vide.",
|
||||
"No comments yet. Begin the discussion!" : "Aucun commentaire pour l'instant, démarrez la discussion !",
|
||||
"Failed to load comments" : "Échec du chargement des commentaires",
|
||||
"Assign a tag to this card…" : "Associer une étiquette à cette carte…",
|
||||
"Assign to users" : "Attribuer aux utilisateurs",
|
||||
"Assign to users/groups/circles" : "Attribuer à des utilisateurs / groupes / cercles",
|
||||
@@ -208,13 +197,10 @@ OC.L10N.register(
|
||||
"Set a due date" : "Définir une date d'échéance",
|
||||
"Remove due date" : "Supprimer la date d'échéance",
|
||||
"Select Date" : "Sélectionnez une date",
|
||||
"Today" : "Aujourd'hui",
|
||||
"Tomorrow" : "Demain",
|
||||
"Save" : "Enregistrer",
|
||||
"The comment cannot be empty." : "Un commentaire ne peut pas être vide.",
|
||||
"The comment cannot be longer than 1000 characters." : "Un commentaire est limité à 1 000 caractères.",
|
||||
"In reply to" : "En réponse à",
|
||||
"Cancel reply" : "Annuler la réponse",
|
||||
"Reply" : "Répondre",
|
||||
"Update" : "Mettre à jour",
|
||||
"Description" : "Description",
|
||||
@@ -227,7 +213,7 @@ OC.L10N.register(
|
||||
"Write a description …" : "Écrire une description ...",
|
||||
"Choose attachment" : "Choisir une pièce jointe",
|
||||
"(group)" : "(groupe)",
|
||||
"{count} comments, {unread} unread" : "{count} commentaires, {unread} non lus",
|
||||
"(circle)" : "(cercle)",
|
||||
"Assign to me" : "Me l'assigner",
|
||||
"Unassign myself" : "Me le désassigner",
|
||||
"Move card" : "Déplacer la carte",
|
||||
@@ -263,22 +249,18 @@ OC.L10N.register(
|
||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Êtes-vous certain de vouloir supprimer le tableau {title} ? Cela supprimera l'ensemble des données de ce tableau.",
|
||||
"Delete the board?" : "Supprimer le tableau ?",
|
||||
"Loading filtered view" : "Chargement de la vue filtrée",
|
||||
"Today" : "Aujourd'hui",
|
||||
"Tomorrow" : "Demain",
|
||||
"This week" : "Cette semaine",
|
||||
"No due" : "Sans échéance",
|
||||
"Search for {searchQuery} in all boards" : "Rechercher {searchQuery} dans tous les tableaux",
|
||||
"No results found" : "Aucun résultat",
|
||||
"No upcoming cards" : "Pas de cartes à venir",
|
||||
"upcoming cards" : "cartes à venir",
|
||||
"Link to a board" : "Relier à un tableau",
|
||||
"Link to a card" : "Relier à une carte",
|
||||
"Create a card" : "Créer une carte",
|
||||
"Message from {author} in {conversationName}" : "Message de {author} dans {conversationName}",
|
||||
"Something went wrong" : "Quelque chose s'est mal passé",
|
||||
"Failed to upload {name}" : "Échec d'envoi de {name}",
|
||||
"Maximum file size of {size} exceeded" : "Taille de fichier maximale de {size} dépassée",
|
||||
"Error creating the share" : "Erreur lors de la création du partage",
|
||||
"Share with a Deck card" : "Partager avec Deck en tant que carte",
|
||||
"Share {file} with a Deck card" : "Partager {file} avec Deck en tant que carte",
|
||||
"Share" : "Partager"
|
||||
},
|
||||
"nplurals=2; plural=(n > 1);");
|
||||
|
||||
34
l10n/fr.json
34
l10n/fr.json
@@ -68,15 +68,12 @@
|
||||
"Upcoming cards" : "Cartes à venir",
|
||||
"Personal" : "Personnel",
|
||||
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "La carte \"%s\" de \"%s\" vous a été assignée par %s.",
|
||||
"{user} has assigned the card {deck-card} on {deck-board} to you." : "{user} vous a attribué la carte {deck-card} du tableau {deck-board}.",
|
||||
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} vous a assigné la carte \"%s\" de \"%s\".",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "La date d'échéance de la carte \"%s\" de \"%s\" a été atteinte.",
|
||||
"The card {deck-card} on {deck-board} has reached its due date." : "La carte {deck-card} sur {deck-board} a atteint sa date d'échéance.",
|
||||
"%s has mentioned you in a comment on \"%s\"." : "%s vous a mentionné dans un commentaire sur \"%s\".",
|
||||
"{user} has mentioned you in a comment on {deck-card}." : "{user} vous a cité dans un commentaire sur {deck-card}.",
|
||||
"{user} has mentioned you in a comment on \"%s\"." : " {user} vous a mentionné dans un commentaire sur \"%s\".",
|
||||
"The board \"%s\" has been shared with you by %s." : "Le tableau \"%s\" a été partagé avec vous par %s.",
|
||||
"{user} has shared {deck-board} with you." : "{user} vous a partagé le tableau {deck-board}.",
|
||||
"Card comments" : "Commentaires de la carte",
|
||||
"%s on %s" : "%s sur %s",
|
||||
"{user} has shared the board %s with you." : "{user} a partagé le tableau %s avec vous.",
|
||||
"No data was provided to create an attachment." : "Aucune donnée n'a été fournie pour créer une pièce jointe.",
|
||||
"Finished" : "Terminé",
|
||||
"To review" : "A réviser",
|
||||
@@ -108,16 +105,9 @@
|
||||
"Select the board to link to a project" : "Sélection le tableau pour faire le lien avec un projet.",
|
||||
"Search by board title" : "Rechercher par titre du tableau",
|
||||
"Select board" : "Sélectionner le tableau",
|
||||
"Create a new card" : "Créer une nouvelle carte",
|
||||
"Select a board" : "Sélectionner un tableau",
|
||||
"Select a list" : "Sélectionner une liste",
|
||||
"Card title" : "Titre de la carte",
|
||||
"Cancel" : "Annuler",
|
||||
"Creating the new card …" : "Création de la nouvelle carte…",
|
||||
"Card \"{card}\" was added to \"{board}\"" : "La carte \"{card}\" a été ajoutée au tableau \"{board}\"",
|
||||
"Open card" : "Ouvrir la carte",
|
||||
"Close" : "Fermer",
|
||||
"Create card" : "Créer une carte",
|
||||
"Select a card" : "Sélectionnez une carte",
|
||||
"Select the card to link to a project" : "Sélectionner la carte à relier à un projet",
|
||||
"Link to card" : "Relier à une carte",
|
||||
@@ -128,7 +118,6 @@
|
||||
"Keep existing file" : "Conserver le fichier existant",
|
||||
"This board is read only" : "Ce tableau est en lecture seule",
|
||||
"Drop your files to upload" : "Glissez vos fichiers pour les envoyer",
|
||||
"Add card" : "Ajouter une carte",
|
||||
"Archived cards" : "Cartes archivées",
|
||||
"Add list" : "Ajouter une liste",
|
||||
"List name" : "Nom de la liste",
|
||||
@@ -172,6 +161,7 @@
|
||||
"Add a new list" : "Ajouter une nouvelle liste",
|
||||
"Archive all cards" : "Archiver toutes les cartes",
|
||||
"Delete list" : "Supprimer la liste",
|
||||
"Add card" : "Ajouter une carte",
|
||||
"Archive all cards in this list" : "Archiver toutes les cartes de cette liste",
|
||||
"Add a new card" : "Ajouter une nouvelle carte",
|
||||
"Card name" : "Nom de la carte",
|
||||
@@ -184,7 +174,7 @@
|
||||
"Upload new files" : "Téléverser de nouveaux fichiers",
|
||||
"Share from Files" : "Partager vos fichiers déjà stockés",
|
||||
"Add this attachment" : "Ajouter cette pièce jointe",
|
||||
"Show in Files" : "Afficher dans Fichiers",
|
||||
"Unshare file" : "Ne plus partager le fichier",
|
||||
"Delete Attachment" : "Supprimer la pièce jointe",
|
||||
"Restore Attachment" : "Restaurer la pièce jointe",
|
||||
"File to share" : "Fichier à partager",
|
||||
@@ -197,7 +187,6 @@
|
||||
"Created" : "Créé",
|
||||
"The title cannot be empty." : "Le titre ne peut pas être vide.",
|
||||
"No comments yet. Begin the discussion!" : "Aucun commentaire pour l'instant, démarrez la discussion !",
|
||||
"Failed to load comments" : "Échec du chargement des commentaires",
|
||||
"Assign a tag to this card…" : "Associer une étiquette à cette carte…",
|
||||
"Assign to users" : "Attribuer aux utilisateurs",
|
||||
"Assign to users/groups/circles" : "Attribuer à des utilisateurs / groupes / cercles",
|
||||
@@ -206,13 +195,10 @@
|
||||
"Set a due date" : "Définir une date d'échéance",
|
||||
"Remove due date" : "Supprimer la date d'échéance",
|
||||
"Select Date" : "Sélectionnez une date",
|
||||
"Today" : "Aujourd'hui",
|
||||
"Tomorrow" : "Demain",
|
||||
"Save" : "Enregistrer",
|
||||
"The comment cannot be empty." : "Un commentaire ne peut pas être vide.",
|
||||
"The comment cannot be longer than 1000 characters." : "Un commentaire est limité à 1 000 caractères.",
|
||||
"In reply to" : "En réponse à",
|
||||
"Cancel reply" : "Annuler la réponse",
|
||||
"Reply" : "Répondre",
|
||||
"Update" : "Mettre à jour",
|
||||
"Description" : "Description",
|
||||
@@ -225,7 +211,7 @@
|
||||
"Write a description …" : "Écrire une description ...",
|
||||
"Choose attachment" : "Choisir une pièce jointe",
|
||||
"(group)" : "(groupe)",
|
||||
"{count} comments, {unread} unread" : "{count} commentaires, {unread} non lus",
|
||||
"(circle)" : "(cercle)",
|
||||
"Assign to me" : "Me l'assigner",
|
||||
"Unassign myself" : "Me le désassigner",
|
||||
"Move card" : "Déplacer la carte",
|
||||
@@ -261,22 +247,18 @@
|
||||
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Êtes-vous certain de vouloir supprimer le tableau {title} ? Cela supprimera l'ensemble des données de ce tableau.",
|
||||
"Delete the board?" : "Supprimer le tableau ?",
|
||||
"Loading filtered view" : "Chargement de la vue filtrée",
|
||||
"Today" : "Aujourd'hui",
|
||||
"Tomorrow" : "Demain",
|
||||
"This week" : "Cette semaine",
|
||||
"No due" : "Sans échéance",
|
||||
"Search for {searchQuery} in all boards" : "Rechercher {searchQuery} dans tous les tableaux",
|
||||
"No results found" : "Aucun résultat",
|
||||
"No upcoming cards" : "Pas de cartes à venir",
|
||||
"upcoming cards" : "cartes à venir",
|
||||
"Link to a board" : "Relier à un tableau",
|
||||
"Link to a card" : "Relier à une carte",
|
||||
"Create a card" : "Créer une carte",
|
||||
"Message from {author} in {conversationName}" : "Message de {author} dans {conversationName}",
|
||||
"Something went wrong" : "Quelque chose s'est mal passé",
|
||||
"Failed to upload {name}" : "Échec d'envoi de {name}",
|
||||
"Maximum file size of {size} exceeded" : "Taille de fichier maximale de {size} dépassée",
|
||||
"Error creating the share" : "Erreur lors de la création du partage",
|
||||
"Share with a Deck card" : "Partager avec Deck en tant que carte",
|
||||
"Share {file} with a Deck card" : "Partager {file} avec Deck en tant que carte",
|
||||
"Share" : "Partager"
|
||||
},"pluralForm" :"nplurals=2; plural=(n > 1);"
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user