Compare commits

..

19 Commits

Author SHA1 Message Date
Julius Härtl
cc9dea1f2b Defer obtaining the user session in the config service which might be injected before login has hapened
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2021-08-20 16:02:48 +00:00
Nextcloud bot
b16ade905c [tx-robot] updated from transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2021-08-18 02:37:01 +00:00
Nextcloud bot
ee1bba7d99 [tx-robot] updated from transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2021-08-10 02:44:35 +00:00
Nextcloud bot
3407097e95 [tx-robot] updated from transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2021-08-06 02:38:51 +00:00
Julius Härtl
47ac3e6082 Merge pull request #3231 from nextcloud/backport/3225/stable22
[stable22] Check for null value to avoid TypeError in the group manager
2021-08-05 09:04:16 +02:00
Julius Härtl
75110bed47 Check for null value to avoid TypeError in the group manager
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2021-08-04 16:41:31 +00:00
Julius Härtl
74f0106718 Merge pull request #3224 from nextcloud/backport/3217/stable22
[stable22] Move circle checks to a unified service and improve member checks
2021-08-03 11:41:03 +02:00
Julius Härtl
958d50d9b7 Move circle checks to a unified service and improve member checks
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2021-08-03 07:43:30 +00:00
Julius Härtl
5f4aa017b6 Pin mariadb to 10.5 for tests
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2021-08-03 09:42:43 +02:00
Nextcloud bot
92c2a58f50 [tx-robot] updated from transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2021-08-01 02:12:52 +00:00
Nextcloud bot
75bf0dffe6 [tx-robot] updated from transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2021-07-15 10:52:50 +00:00
Julius Härtl
45a10f0840 Bump version to 1.5.0
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2021-07-09 11:55:34 +02:00
Julius Härtl
fbf3b1cd19 Merge pull request #3168 from nextcloud/backport/3161/stable22
[stable22] Reduce duplicate queries when fetching user boards an permissions
2021-07-06 07:54:35 +02:00
Julius Härtl
0cc4151929 Reduce duplicate queries when fetching user boards an permissions
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2021-07-05 18:27:49 +00:00
Julius Härtl
e261ade1bb Merge pull request #3165 from nextcloud/backport/3151/stable22
[stable22] Always log generic exceptions
2021-07-05 16:21:15 +02:00
Julius Härtl
5d7e54d419 Always log generic exceptions
Signed-off-by: Julius Härtl <jus@bitgrid.net>
2021-07-02 15:55:44 +00:00
Julius Härtl
3499858295 Merge remote-tracking branch 'origin/master' into stable22 2021-06-25 15:39:38 +02:00
Julius Härtl
1615e218bd Merge pull request #3148 from nextcloud/update-stable22-target-versions
Update stable22 target versions
2021-06-25 09:07:38 +02:00
Joas Schilling
9a3b859780 Update stable22 target versions
Signed-off-by: Joas Schilling <coding@schilljs.com>
2021-06-24 14:07:30 +02:00
244 changed files with 7341 additions and 6999 deletions

View File

@@ -3,10 +3,6 @@ module.exports = {
'@nextcloud', '@nextcloud',
], ],
rules: { rules: {
'jsdoc/require-param-description': ['off'], 'valid-jsdoc': ['off'],
'jsdoc/require-param-type': ['off'],
'jsdoc/check-param-names': ['off'],
'jsdoc/no-undefined-types': ['off'],
'jsdoc/require-property-description' : ['off']
}, },
} }

View File

@@ -39,13 +39,3 @@ updates:
versions: versions:
- "< 16" - "< 16"
- ">= 15.a" - ">= 15.a"
- package-ecosystem: github-actions
directory: "/"
schedule:
interval: weekly
day: saturday
time: "03:00"
timezone: Europe/Paris
open-pull-requests-limit: 10
reviewers:
- juliushaertl

25
.github/stale.yml vendored Normal file
View File

@@ -0,0 +1,25 @@
# Number of days of inactivity before an issue becomes stale
daysUntilStale: 60
# Number of days of inactivity before a stale issue is closed
daysUntilClose: 7
# Issues with these labels will never be considered stale
exemptLabels:
- "1. to develop"
- "2. developing"
- "3. to review"
- "discussion"
- "bounty"
- "bug"
- "enhancement"
# Limit the number of actions per hour, from 1-30. Default is 30
limitPerRun: 30
# Label to use when marking an issue as stale
staleLabel: stale
# Comment to post when marking an issue as stale. Set to `false` to disable
markComment: >
This issue has been automatically marked as stale because it has not had
recent activity. It will be closed if no further activity occurs. Thank you
for your contributions.

View File

@@ -12,15 +12,15 @@ jobs:
node-version: [14.x] node-version: [14.x]
steps: steps:
- uses: actions/checkout@v2.4.0 - uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }} - name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2.4.1 uses: actions/setup-node@v1
with: with:
node-version: ${{ matrix.node-version }} node-version: ${{ matrix.node-version }}
- name: Set up npm7 - name: Set up npm7
run: npm i -g npm@7 run: npm i -g npm@7
- name: Setup PHP - name: Setup PHP
uses: shivammathur/setup-php@2.16.0 uses: shivammathur/setup-php@v1
with: with:
php-version: '7.4' php-version: '7.4'
tools: composer tools: composer

View File

@@ -1,151 +0,0 @@
# This workflow is provided via the organization template repository
#
# https://github.com/nextcloud/.github
# https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization
name: Build and publish app release
on:
release:
types: [published]
env:
PHP_VERSION: 7.4
jobs:
build_and_publish:
runs-on: ubuntu-latest
# Only allowed to be run on nextcloud-releases repositories
if: ${{ github.repository_owner == 'nextcloud-releases' }}
steps:
- name: Check actor permission
uses: skjnldsv/check-actor-permission@v2
with:
require: admin
- name: Set app env
run: |
# Split and keep last
echo "APP_NAME=${GITHUB_REPOSITORY##*/}" >> $GITHUB_ENV
echo "APP_VERSION=${GITHUB_REF##*/}" >> $GITHUB_ENV
- name: Checkout
uses: actions/checkout@v2
with:
path: ${{ env.APP_NAME }}
- name: Get appinfo data
id: appinfo
uses: skjnldsv/xpath-action@master
with:
filename: ${{ env.APP_NAME }}/appinfo/info.xml
expression: "//info//dependencies//nextcloud/@min-version"
- name: Read package.json node and npm engines version
uses: skjnldsv/read-package-engines-version-actions@v1.1
id: versions
# Continue if no package.json
continue-on-error: true
with:
path: ${{ env.APP_NAME }}
fallbackNode: "^12"
fallbackNpm: "^6"
- name: Set up node ${{ steps.versions.outputs.nodeVersion }}
# Skip if no package.json
if: ${{ steps.versions.outputs.nodeVersion }}
uses: actions/setup-node@v2
with:
node-version: ${{ steps.versions.outputs.nodeVersion }}
- name: Set up npm ${{ steps.versions.outputs.npmVersion }}
# Skip if no package.json
if: ${{ steps.versions.outputs.npmVersion }}
run: npm i -g npm@"${{ steps.versions.outputs.npmVersion }}"
- name: Set up php ${{ env.PHP_VERSION }}
uses: shivammathur/setup-php@v2
with:
php-version: ${{ env.PHP_VERSION }}
coverage: none
- name: Check composer.json
id: check_composer
uses: andstor/file-existence-action@v1
with:
files: "${{ env.APP_NAME }}/composer.json"
- name: Install composer dependencies
if: steps.check_composer.outputs.files_exists == 'true'
run: |
cd ${{ env.APP_NAME }}
composer install --no-dev
- name: Build ${{ env.APP_NAME }}
# Skip if no package.json
if: ${{ steps.versions.outputs.nodeVersion }}
run: |
cd ${{ env.APP_NAME }}
npm ci
npm run build
- name: Install Krankerl
run: |
wget https://github.com/ChristophWurst/krankerl/releases/download/v0.13.0/krankerl_0.13.0_amd64.deb
sudo dpkg -i krankerl_0.13.0_amd64.deb
- name: Package ${{ env.APP_NAME }} ${{ env.APP_VERSION }}
# Try krankerl, fallback to makefile
run: |
cd ${{ env.APP_NAME }}
krankerl package || make appstore
- name: Checkout server ${{ fromJSON(steps.appinfo.outputs.result).nextcloud.min-version }}
continue-on-error: true
id: server-checkout
run: |
NCVERSION=${{ fromJSON(steps.appinfo.outputs.result).nextcloud.min-version }}
wget --quiet https://download.nextcloud.com/server/releases/latest-$NCVERSION.zip
unzip latest-$NCVERSION.zip
- name: Checkout server master fallback
uses: actions/checkout@v2
if: ${{ steps.server-checkout.outcome != 'success' }}
with:
repository: nextcloud/server
path: nextcloud
- name: Sign app
run: |
# Extracting release
cd ${{ env.APP_NAME }}/build/artifacts
tar -xvf ${{ env.APP_NAME }}.tar.gz
cd ../../../
# Setting up keys
echo "${{ secrets.APP_PRIVATE_KEY }}" > ${{ env.APP_NAME }}.key
wget --quiet "https://github.com/nextcloud/app-certificate-requests/raw/master/${{ env.APP_NAME }}/${{ env.APP_NAME }}.crt"
# Signing
php nextcloud/occ integrity:sign-app --privateKey=../${{ env.APP_NAME }}.key --certificate=../${{ env.APP_NAME }}.crt --path=../${{ env.APP_NAME }}/build/artifacts/${{ env.APP_NAME }}
# Rebuilding archive
cd ${{ env.APP_NAME }}/build/artifacts
tar -zcvf ${{ env.APP_NAME }}.tar.gz ${{ env.APP_NAME }}
- name: Attach tarball to github release
uses: svenstaro/upload-release-action@v2
id: attach_to_release
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: ${{ env.APP_NAME }}/build/artifacts/${{ env.APP_NAME }}.tar.gz
asset_name: ${{ env.APP_NAME }}-${{ env.APP_VERSION }}.tar.gz
tag: ${{ github.ref }}
overwrite: true
- name: Upload app to Nextcloud appstore
uses: nextcloud-releases/nextcloud-appstore-push-action@v1
with:
app_name: ${{ env.APP_NAME }}
appstore_token: ${{ secrets.APPSTORE_TOKEN }}
download_url: ${{ steps.attach_to_release.outputs.browser_download_url }}
app_private_key: ${{ secrets.APP_PRIVATE_KEY }}

View File

@@ -1,46 +0,0 @@
# This workflow is provided via the organization template repository
#
# https://github.com/nextcloud/.github
# https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization
name: Rebase command
on:
issue_comment:
types: created
jobs:
rebase:
runs-on: ubuntu-latest
# On pull requests and if the comment starts with `/rebase`
if: github.event.issue.pull_request != '' && startsWith(github.event.comment.body, '/rebase')
steps:
- name: Add reaction on start
uses: peter-evans/create-or-update-comment@v1
with:
token: ${{ secrets.COMMAND_BOT_PAT }}
repository: ${{ github.event.repository.full_name }}
comment-id: ${{ github.event.comment.id }}
reaction-type: "+1"
- name: Checkout the latest code
uses: actions/checkout@v2.4.0
with:
fetch-depth: 0
token: ${{ secrets.COMMAND_BOT_PAT }}
- name: Automatic Rebase
uses: cirrus-actions/rebase@1.5
env:
GITHUB_TOKEN: ${{ secrets.COMMAND_BOT_PAT }}
- name: Add reaction on failure
uses: peter-evans/create-or-update-comment@v1
if: failure()
with:
token: ${{ secrets.COMMAND_BOT_PAT }}
repository: ${{ github.event.repository.full_name }}
comment-id: ${{ github.event.comment.id }}
reaction-type: "-1"

View File

@@ -1,29 +0,0 @@
# This workflow is provided via the organization template repository
#
# https://github.com/nextcloud/.github
# https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization
name: Dependabot
on:
pull_request_target:
branches:
- master
- stable*
jobs:
auto-approve-merge:
if: github.actor == 'dependabot[bot]'
runs-on: ubuntu-latest
steps:
# Github actions bot approve
- uses: hmarr/auto-approve-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
# Nextcloud bot approve and merge request
- uses: ahmadnassri/action-dependabot-auto-merge@v2
with:
target: patch
github-token: ${{ secrets.DEPENDABOT_AUTOMERGE_TOKEN }}

View File

@@ -1,20 +0,0 @@
# This workflow is provided via the organization template repository
#
# https://github.com/nextcloud/.github
# https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization
name: Pull request checks
on: pull_request
jobs:
commit-message-check:
name: Block fixup and squash commits
runs-on: ubuntu-latest
steps:
- name: Run check
uses: xt0rted/block-autosquash-commits-action@v2
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}

View File

@@ -19,7 +19,7 @@ jobs:
matrix: matrix:
php-versions: ['7.4'] php-versions: ['7.4']
databases: ['sqlite', 'mysql', 'pgsql'] databases: ['sqlite', 'mysql', 'pgsql']
server-versions: ['master'] server-versions: ['stable22']
name: php${{ matrix.php-versions }}-${{ matrix.databases }}-${{ matrix.server-versions }} name: php${{ matrix.php-versions }}-${{ matrix.databases }}-${{ matrix.server-versions }}
@@ -43,7 +43,7 @@ jobs:
steps: steps:
- name: Checkout server - name: Checkout server
uses: actions/checkout@v2.4.0 uses: actions/checkout@v2
with: with:
repository: nextcloud/server repository: nextcloud/server
ref: ${{ matrix.server-versions }} ref: ${{ matrix.server-versions }}
@@ -56,12 +56,12 @@ jobs:
git -c "http.extraheader=$auth_header" -c protocol.version=2 submodule update --init --force --recursive --depth=1 git -c "http.extraheader=$auth_header" -c protocol.version=2 submodule update --init --force --recursive --depth=1
- name: Checkout app - name: Checkout app
uses: actions/checkout@v2.4.0 uses: actions/checkout@v2
with: with:
path: apps/${{ env.APP_NAME }} path: apps/${{ env.APP_NAME }}
- name: Set up php ${{ matrix.php-versions }} - name: Set up php ${{ matrix.php-versions }}
uses: shivammathur/setup-php@2.16.0 uses: shivammathur/setup-php@v2
with: with:
php-version: ${{ matrix.php-versions }} php-version: ${{ matrix.php-versions }}
tools: phpunit tools: phpunit

View File

@@ -17,9 +17,9 @@ jobs:
name: php${{ matrix.php-versions }} lint name: php${{ matrix.php-versions }} lint
steps: steps:
- uses: actions/checkout@v2.4.0 - uses: actions/checkout@v2
- name: Set up php${{ matrix.php-versions }} - name: Set up php${{ matrix.php-versions }}
uses: shivammathur/setup-php@2.16.0 uses: shivammathur/setup-php@v1
with: with:
php-version: ${{ matrix.php-versions }} php-version: ${{ matrix.php-versions }}
coverage: none coverage: none
@@ -31,9 +31,9 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v2.4.0 uses: actions/checkout@master
- name: Set up php - name: Set up php
uses: shivammathur/setup-php@2.16.0 uses: shivammathur/setup-php@master
with: with:
php-version: 7.4 php-version: 7.4
coverage: none coverage: none
@@ -50,9 +50,9 @@ jobs:
node-version: [14.x] node-version: [14.x]
steps: steps:
- uses: actions/checkout@v2.4.0 - uses: actions/checkout@v2
- name: Use node ${{ matrix.node-version }} - name: Use node ${{ matrix.node-version }}
uses: actions/setup-node@v2.4.1 uses: actions/setup-node@v1
with: with:
node-version: ${{ matrix.node-version }} node-version: ${{ matrix.node-version }}
- name: Set up npm7 - name: Set up npm7
@@ -67,16 +67,16 @@ jobs:
strategy: strategy:
matrix: matrix:
node-version: [14.x] node-versions: [14.x]
name: stylelint node${{ matrix.node-version }} name: stylelint node${{ matrix.node-versions }}
steps: steps:
- uses: actions/checkout@v2.4.0 - uses: actions/checkout@v2
- name: Set up node ${{ matrix.node-version }} - name: Set up node ${{ matrix.node-versions }}
uses: actions/setup-node@v2.4.1 uses: actions/setup-node@v1
with: with:
node-version: ${{ matrix.node-version }} node-versions: ${{ matrix.node-versions }}
- name: Set up npm7 - name: Set up npm7
run: npm i -g npm@7 run: npm i -g npm@7

View File

@@ -17,15 +17,15 @@ jobs:
node-version: [14.x] node-version: [14.x]
steps: steps:
- uses: actions/checkout@v2.4.0 - uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }} - name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2.4.1 uses: actions/setup-node@v1
with: with:
node-version: ${{ matrix.node-version }} node-version: ${{ matrix.node-version }}
- name: Set up npm7 - name: Set up npm7
run: npm i -g npm@7 run: npm i -g npm@7
- name: Setup PHP - name: Setup PHP
uses: shivammathur/setup-php@2.16.0 uses: shivammathur/setup-php@v1
with: with:
php-version: '7.4' php-version: '7.4'
tools: composer tools: composer

View File

@@ -12,9 +12,9 @@ jobs:
node-version: [14.x] node-version: [14.x]
steps: steps:
- uses: actions/checkout@v2.4.0 - uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }} - name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2.4.1 uses: actions/setup-node@v1
with: with:
node-version: ${{ matrix.node-version }} node-version: ${{ matrix.node-version }}
- name: Set up npm7 - name: Set up npm7

View File

@@ -20,7 +20,7 @@ jobs:
matrix: matrix:
php-versions: ['7.3', '7.4'] php-versions: ['7.3', '7.4']
databases: ['sqlite', 'mysql', 'pgsql'] databases: ['sqlite', 'mysql', 'pgsql']
server-versions: ['master'] server-versions: ['stable22']
name: php${{ matrix.php-versions }}-${{ matrix.databases }}-${{ matrix.server-versions }} name: php${{ matrix.php-versions }}-${{ matrix.databases }}-${{ matrix.server-versions }}
@@ -44,7 +44,7 @@ jobs:
steps: steps:
- name: Checkout server - name: Checkout server
uses: actions/checkout@v2.4.0 uses: actions/checkout@v2
with: with:
repository: nextcloud/server repository: nextcloud/server
ref: ${{ matrix.server-versions }} ref: ${{ matrix.server-versions }}
@@ -57,12 +57,12 @@ jobs:
git -c "http.extraheader=$auth_header" -c protocol.version=2 submodule update --init --force --recursive --depth=1 git -c "http.extraheader=$auth_header" -c protocol.version=2 submodule update --init --force --recursive --depth=1
- name: Checkout app - name: Checkout app
uses: actions/checkout@v2.4.0 uses: actions/checkout@v2
with: with:
path: apps/${{ env.APP_NAME }} path: apps/${{ env.APP_NAME }}
- name: Set up php ${{ matrix.php-versions }} - name: Set up php ${{ matrix.php-versions }}
uses: shivammathur/setup-php@2.16.0 uses: shivammathur/setup-php@v2
with: with:
php-version: ${{ matrix.php-versions }} php-version: ${{ matrix.php-versions }}
tools: phpunit tools: phpunit

View File

@@ -12,13 +12,13 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy:
matrix: matrix:
ocp-version: [ 'dev-master' ] ocp-version: [ 'dev-stable22' ]
name: Nextcloud ${{ matrix.ocp-version }} name: Nextcloud ${{ matrix.ocp-version }}
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v2.4.0 uses: actions/checkout@master
- name: Set up php - name: Set up php
uses: shivammathur/setup-php@2.16.0 uses: shivammathur/setup-php@master
with: with:
php-version: 7.4 php-version: 7.4
tools: composer:v1 tools: composer:v1

View File

@@ -1,38 +1,38 @@
# Changelog # Changelog
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
## 1.6.0-beta1 ## 1.5.0 - 2021-07-09
### Added ### Added
- #3177 Use async import for vue component on collections entrypoint @juliushaertl * Nextcloud 22 compatibility
- #2791 Open description links in new tab @fm-sys * [#3105](https://github.com/nextcloud/deck/pull/3105) Compatibility with Cirlces changes in 22
- #3344 Improve combined search @eneiluj * [#3147](https://github.com/nextcloud/deck/pull/3147) Add card button to the dashboard widget @jakobroehrl
- #3362 Improve search performance @eneiluj * [#2854](https://github.com/nextcloud/deck/pull/2854) Add card button in card overview @jakobroehrl
- #2710 Due date shortcuts in the datepicker @jakobroehrl * [#3078](https://github.com/nextcloud/deck/pull/3078) Show on shared boards unassigned cards to all users @jakobroehrl
### Fixed ### Fixed
- #3161 Reduce duplicate queries when fetching user boards an permissions @juliushaertl * [#2935](https://github.com/nextcloud/deck/pull/2935) Rich object string parameters for notifications @nickvergessen
- #3151 Always log generic exceptions @juliushaertl * [#2950](https://github.com/nextcloud/deck/pull/2950) Remove notification on unshare and add type hints
- #3217 Move circle checks to a unified service and improve member checks @juliushaertl * [#2983](https://github.com/nextcloud/deck/pull/2983) Fix codemirror description width
- #3225 Check for null value to avoid TypeError in the group manager @juliushaertl * [#2989](https://github.com/nextcloud/deck/pull/2989) Fix unified comments search with postgres
- #3263 Defer obtaining the user session in the config service @juliushaertl * [#3005](https://github.com/nextcloud/deck/pull/3005) Do not query the lookupserver when looking for sharees
- #3294 Fix print style issues @weeman1337 * [#3011](https://github.com/nextcloud/deck/pull/3011) L10n: Spelling unification @Valdnet
- #3299 Return false instead of throwing when getting calendar setting @juliushaertl * [#3014](https://github.com/nextcloud/deck/pull/3014) Proper error handling when fetching comments fails
- #3298 Delete file shares through attachments API @juliushaertl * [#3016](https://github.com/nextcloud/deck/pull/3016) Allow searching for filters without a query to match all that have a given filter set
- #3343 Fix search pagination cursor @eneiluj * [#3021](https://github.com/nextcloud/deck/pull/3021) L10n: Add word "Card" @Valdnet
- #3326 add autofocus on board edit @weeman1337 * [#3025](https://github.com/nextcloud/deck/pull/3025) Show comment counter and highlight if unread comments are available
- #3323 Extend drag-and-drop zone in card sidebar @old-green-frog * [#3036](https://github.com/nextcloud/deck/pull/3036) Add link to migration tool for Trello @maxammann
- #3364 Fix optional parameter order @juliushaertl * [#3037](https://github.com/nextcloud/deck/pull/3037) Catch any error during circle detail fetching
- #3324 Fix menu button position in card modal @valerydmitrieva * [#3038](https://github.com/nextcloud/deck/pull/3038) Get attachment from the user node instead of the share source
- #3391 Use displayname instead of uid for mentions (reopened against master) @kffl * [#3092](https://github.com/nextcloud/deck/pull/3092) Refactor update to have proper order of optional parameters
- #3316 Additional check for stacks @juliushaertl * [#3113](https://github.com/nextcloud/deck/pull/3113) Use new viewer syntax with destructuring object @azul
- #3357 Revert "Fix search pagination cursor" @juliushaertl * [#3142](https://github.com/nextcloud/deck/pull/3142) Always pass user id in share provider
- #3327 Do not show both bullets and checkboxes for checklists @Themanwhosmellslikesugar * [#3152](https://github.com/nextcloud/deck/pull/3152) Only offer stack creation in emptycontent with proper permissions
- #3375 Show absolute dates when printing @weeman1337 * [#3165](https://github.com/nextcloud/deck/pull/3165) Always log generic exceptions
- #3376 Print assignee names @weeman1337 * [#3168](https://github.com/nextcloud/deck/pull/3168) Reduce duplicate queries when fetching user boards an permissions
- #3384 Keep exceptions http response generic @juliushaertl
## 1.4.0 - 2021-04-13 ## 1.4.0 - 2021-04-13
@@ -69,15 +69,15 @@ All notable changes to this project will be documented in this file.
## 1.3.0-beta2 ## 1.3.0-beta2
### Fixed ### Fixed
* [#2700](https://github.com/nextcloud/deck/pull/2700) Attempt to copy file on dropping it to deck @juliushaertl * [#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 @juliushaertl * [#2701](https://github.com/nextcloud/deck/pull/2701) Fix uploading files by drag and drop
* [#2707](https://github.com/nextcloud/deck/pull/2707) L10n: Change to a capital letter @Valdnet * [#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 * [#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 @juliushaertl * [#2716](https://github.com/nextcloud/deck/pull/2716) Remove repair step which is no longer needed as we cleanup properly
* [#2723](https://github.com/nextcloud/deck/pull/2723) Pad random color with leading zeroes @PVince81 * [#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 * [#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 * [#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 @juliushaertl * [#2751](https://github.com/nextcloud/deck/pull/2751) Properly set author for activity events that are triggered by cron
## 1.2.2 - 2020-11-24 ## 1.2.2 - 2020-11-24
@@ -186,31 +186,31 @@ All notable changes to this project will be documented in this file.
### Fixed ### Fixed
* [#2116](https://github.com/nextcloud/deck/pull/2116) Fix navigation layout issues @juliushaertl * [#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 @juliushaertl * [#2118](https://github.com/nextcloud/deck/pull/2118) Use proper parameter when handling attachments
## 1.0.4 - 2020-06-26 ## 1.0.4 - 2020-06-26
### Fixed ### Fixed
* [#2062](https://github.com/nextcloud/deck/pull/2062) Fix saving card description after toggling checkboxes @juliushaertl * [#2062](https://github.com/nextcloud/deck/pull/2062) Fix saving card description after toggling checkboxes
* [#2065](https://github.com/nextcloud/deck/pull/2065) Adding CSS rule for Markdown Blockquotes @reox * [#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 @juliushaertl * [#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 @juliushaertl * [#2060](https://github.com/nextcloud/deck/pull/2060) Use mixing for relative date in card sidebar
## 1.0.3 - 2020-06-19 ## 1.0.3 - 2020-06-19
### Fixed ### Fixed
* [#2019](https://github.com/nextcloud/deck/pull/2019) Remove old global css rule @juliushaertl * [#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 @juliushaertl * [#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 @juliushaertl * [#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 @juliushaertl * [#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 @juliushaertl * [#2027](https://github.com/nextcloud/deck/pull/2027) Allow to unassign current user from card
* [#2029](https://github.com/nextcloud/deck/pull/2029) Fix wording : stack -> list @cloud2018 * [#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 @juliushaertl * [#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 @juliushaertl * [#2045](https://github.com/nextcloud/deck/pull/2045) Improve label styling
* [#2010](https://github.com/nextcloud/deck/pull/2010) User documentation fixes @Nyco * [#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 * [#1998](https://github.com/nextcloud/deck/pull/1998) Add Checklist explaination to the doc @4rnoP

View File

@@ -25,8 +25,7 @@ Deck is a kanban style organization tool aimed at personal planning and project
- [trello-to-deck](https://github.com/maxammann/trello-to-deck) - Migrates cards from Trello - [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 - [mail2deck](https://github.com/newroco/mail2deck) - Provides an "email in" solution
- [A-deck](https://github.com/leoossa/A-deck) - Chrome Extension that allows to create new card in selected stack based on current tab
-
## Installation/Update ## Installation/Update
This app is supposed to work on the two latest Nextcloud versions. This app is supposed to work on the two latest Nextcloud versions.

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0"?>
<info xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://apps.nextcloud.com/schema/apps/info.xsd"> <info xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://apps.nextcloud.com/schema/apps/info.xsd">
<id>deck</id> <id>deck</id>
<name>Deck</name> <name>Deck</name>
<summary>Personal planning and team project organization</summary> <summary>Personal planning and team project organization</summary>
@@ -16,12 +17,12 @@
- 🚀 Get your project organized - 🚀 Get your project organized
</description> </description>
<version>1.7.0-alpha1</version> <version>1.5.0</version>
<licence>agpl</licence> <licence>agpl</licence>
<author>Julius Härtl</author> <author>Julius Härtl</author>
<namespace>Deck</namespace> <namespace>Deck</namespace>
<types> <types>
<dav/> <dav />
</types> </types>
<category>organization</category> <category>organization</category>
<category>office</category> <category>office</category>
@@ -34,8 +35,8 @@
<php min-version="7.3"/> <php min-version="7.3"/>
<database min-version="9.4">pgsql</database> <database min-version="9.4">pgsql</database>
<database>sqlite</database> <database>sqlite</database>
<database min-version="8.0">mysql</database> <database min-version="5.5">mysql</database>
<nextcloud min-version="24" max-version="24"/> <nextcloud min-version="22" max-version="22" />
</dependencies> </dependencies>
<background-jobs> <background-jobs>
<job>OCA\Deck\Cron\DeleteCron</job> <job>OCA\Deck\Cron\DeleteCron</job>

330
composer.lock generated
View File

@@ -65,27 +65,27 @@
"packages-dev": [ "packages-dev": [
{ {
"name": "amphp/amp", "name": "amphp/amp",
"version": "v2.6.1", "version": "v2.5.2",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/amphp/amp.git", "url": "https://github.com/amphp/amp.git",
"reference": "c5fc66a78ee38d7ac9195a37bacaf940eb3f65ae" "reference": "efca2b32a7580087adb8aabbff6be1dc1bb924a9"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/amphp/amp/zipball/c5fc66a78ee38d7ac9195a37bacaf940eb3f65ae", "url": "https://api.github.com/repos/amphp/amp/zipball/efca2b32a7580087adb8aabbff6be1dc1bb924a9",
"reference": "c5fc66a78ee38d7ac9195a37bacaf940eb3f65ae", "reference": "efca2b32a7580087adb8aabbff6be1dc1bb924a9",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"php": ">=7.1" "php": ">=7"
}, },
"require-dev": { "require-dev": {
"amphp/php-cs-fixer-config": "dev-master", "amphp/php-cs-fixer-config": "dev-master",
"amphp/phpunit-util": "^1", "amphp/phpunit-util": "^1",
"ext-json": "*", "ext-json": "*",
"jetbrains/phpstorm-stubs": "^2019.3", "jetbrains/phpstorm-stubs": "^2019.3",
"phpunit/phpunit": "^7 | ^8 | ^9", "phpunit/phpunit": "^6.0.9 | ^7",
"psalm/phar": "^3.11@dev", "psalm/phar": "^3.11@dev",
"react/promise": "^2" "react/promise": "^2"
}, },
@@ -142,7 +142,7 @@
"support": { "support": {
"irc": "irc://irc.freenode.org/amphp", "irc": "irc://irc.freenode.org/amphp",
"issues": "https://github.com/amphp/amp/issues", "issues": "https://github.com/amphp/amp/issues",
"source": "https://github.com/amphp/amp/tree/v2.6.1" "source": "https://github.com/amphp/amp/tree/v2.5.2"
}, },
"funding": [ "funding": [
{ {
@@ -150,7 +150,7 @@
"type": "github" "type": "github"
} }
], ],
"time": "2021-09-23T18:43:08+00:00" "time": "2021-01-10T17:06:37+00:00"
}, },
{ {
"name": "amphp/byte-stream", "name": "amphp/byte-stream",
@@ -271,16 +271,16 @@
}, },
{ {
"name": "composer/package-versions-deprecated", "name": "composer/package-versions-deprecated",
"version": "1.11.99.4", "version": "1.11.99.2",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/composer/package-versions-deprecated.git", "url": "https://github.com/composer/package-versions-deprecated.git",
"reference": "b174585d1fe49ceed21928a945138948cb394600" "reference": "c6522afe5540d5fc46675043d3ed5a45a740b27c"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/composer/package-versions-deprecated/zipball/b174585d1fe49ceed21928a945138948cb394600", "url": "https://api.github.com/repos/composer/package-versions-deprecated/zipball/c6522afe5540d5fc46675043d3ed5a45a740b27c",
"reference": "b174585d1fe49ceed21928a945138948cb394600", "reference": "c6522afe5540d5fc46675043d3ed5a45a740b27c",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@@ -324,7 +324,7 @@
"description": "Composer plugin that provides efficient querying for installed package versions (no runtime IO)", "description": "Composer plugin that provides efficient querying for installed package versions (no runtime IO)",
"support": { "support": {
"issues": "https://github.com/composer/package-versions-deprecated/issues", "issues": "https://github.com/composer/package-versions-deprecated/issues",
"source": "https://github.com/composer/package-versions-deprecated/tree/1.11.99.4" "source": "https://github.com/composer/package-versions-deprecated/tree/1.11.99.2"
}, },
"funding": [ "funding": [
{ {
@@ -340,20 +340,20 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2021-09-13T08:41:34+00:00" "time": "2021-05-24T07:46:03+00:00"
}, },
{ {
"name": "composer/semver", "name": "composer/semver",
"version": "3.2.6", "version": "3.2.5",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/composer/semver.git", "url": "https://github.com/composer/semver.git",
"reference": "83e511e247de329283478496f7a1e114c9517506" "reference": "31f3ea725711245195f62e54ffa402d8ef2fdba9"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/composer/semver/zipball/83e511e247de329283478496f7a1e114c9517506", "url": "https://api.github.com/repos/composer/semver/zipball/31f3ea725711245195f62e54ffa402d8ef2fdba9",
"reference": "83e511e247de329283478496f7a1e114c9517506", "reference": "31f3ea725711245195f62e54ffa402d8ef2fdba9",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@@ -405,7 +405,7 @@
"support": { "support": {
"irc": "irc://irc.freenode.org/composer", "irc": "irc://irc.freenode.org/composer",
"issues": "https://github.com/composer/semver/issues", "issues": "https://github.com/composer/semver/issues",
"source": "https://github.com/composer/semver/tree/3.2.6" "source": "https://github.com/composer/semver/tree/3.2.5"
}, },
"funding": [ "funding": [
{ {
@@ -421,7 +421,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2021-10-25T11:34:17+00:00" "time": "2021-05-24T12:41:47+00:00"
}, },
{ {
"name": "composer/xdebug-handler", "name": "composer/xdebug-handler",
@@ -750,20 +750,20 @@
}, },
{ {
"name": "felixfbecker/advanced-json-rpc", "name": "felixfbecker/advanced-json-rpc",
"version": "v3.2.1", "version": "v3.2.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/felixfbecker/php-advanced-json-rpc.git", "url": "https://github.com/felixfbecker/php-advanced-json-rpc.git",
"reference": "b5f37dbff9a8ad360ca341f3240dc1c168b45447" "reference": "06f0b06043c7438959dbdeed8bb3f699a19be22e"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/felixfbecker/php-advanced-json-rpc/zipball/b5f37dbff9a8ad360ca341f3240dc1c168b45447", "url": "https://api.github.com/repos/felixfbecker/php-advanced-json-rpc/zipball/06f0b06043c7438959dbdeed8bb3f699a19be22e",
"reference": "b5f37dbff9a8ad360ca341f3240dc1c168b45447", "reference": "06f0b06043c7438959dbdeed8bb3f699a19be22e",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"netresearch/jsonmapper": "^1.0 || ^2.0 || ^3.0 || ^4.0", "netresearch/jsonmapper": "^1.0 || ^2.0",
"php": "^7.1 || ^8.0", "php": "^7.1 || ^8.0",
"phpdocumentor/reflection-docblock": "^4.3.4 || ^5.0.0" "phpdocumentor/reflection-docblock": "^4.3.4 || ^5.0.0"
}, },
@@ -789,9 +789,9 @@
"description": "A more advanced JSONRPC implementation", "description": "A more advanced JSONRPC implementation",
"support": { "support": {
"issues": "https://github.com/felixfbecker/php-advanced-json-rpc/issues", "issues": "https://github.com/felixfbecker/php-advanced-json-rpc/issues",
"source": "https://github.com/felixfbecker/php-advanced-json-rpc/tree/v3.2.1" "source": "https://github.com/felixfbecker/php-advanced-json-rpc/tree/v3.2.0"
}, },
"time": "2021-06-11T22:34:44+00:00" "time": "2021-01-10T17:48:47+00:00"
}, },
{ {
"name": "felixfbecker/language-server-protocol", "name": "felixfbecker/language-server-protocol",
@@ -1012,16 +1012,16 @@
}, },
{ {
"name": "netresearch/jsonmapper", "name": "netresearch/jsonmapper",
"version": "v4.0.0", "version": "v2.1.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/cweiske/jsonmapper.git", "url": "https://github.com/cweiske/jsonmapper.git",
"reference": "8bbc021a8edb2e4a7ea2f8ad4fa9ec9dce2fcb8d" "reference": "e0f1e33a71587aca81be5cffbb9746510e1fe04e"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/cweiske/jsonmapper/zipball/8bbc021a8edb2e4a7ea2f8ad4fa9ec9dce2fcb8d", "url": "https://api.github.com/repos/cweiske/jsonmapper/zipball/e0f1e33a71587aca81be5cffbb9746510e1fe04e",
"reference": "8bbc021a8edb2e4a7ea2f8ad4fa9ec9dce2fcb8d", "reference": "e0f1e33a71587aca81be5cffbb9746510e1fe04e",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@@ -1029,10 +1029,10 @@
"ext-pcre": "*", "ext-pcre": "*",
"ext-reflection": "*", "ext-reflection": "*",
"ext-spl": "*", "ext-spl": "*",
"php": ">=7.1" "php": ">=5.6"
}, },
"require-dev": { "require-dev": {
"phpunit/phpunit": "~7.5 || ~8.0 || ~9.0", "phpunit/phpunit": "~4.8.35 || ~5.7 || ~6.4 || ~7.0",
"squizlabs/php_codesniffer": "~3.5" "squizlabs/php_codesniffer": "~3.5"
}, },
"type": "library", "type": "library",
@@ -1057,9 +1057,9 @@
"support": { "support": {
"email": "cweiske@cweiske.de", "email": "cweiske@cweiske.de",
"issues": "https://github.com/cweiske/jsonmapper/issues", "issues": "https://github.com/cweiske/jsonmapper/issues",
"source": "https://github.com/cweiske/jsonmapper/tree/v4.0.0" "source": "https://github.com/cweiske/jsonmapper/tree/master"
}, },
"time": "2020-12-01T19:48:11+00:00" "time": "2020-04-16T18:48:43+00:00"
}, },
{ {
"name": "nextcloud/coding-standard", "name": "nextcloud/coding-standard",
@@ -1104,16 +1104,16 @@
}, },
{ {
"name": "nikic/php-parser", "name": "nikic/php-parser",
"version": "v4.13.0", "version": "v4.10.5",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/nikic/PHP-Parser.git", "url": "https://github.com/nikic/PHP-Parser.git",
"reference": "50953a2691a922aa1769461637869a0a2faa3f53" "reference": "4432ba399e47c66624bc73c8c0f811e5c109576f"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/50953a2691a922aa1769461637869a0a2faa3f53", "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/4432ba399e47c66624bc73c8c0f811e5c109576f",
"reference": "50953a2691a922aa1769461637869a0a2faa3f53", "reference": "4432ba399e47c66624bc73c8c0f811e5c109576f",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@@ -1154,9 +1154,9 @@
], ],
"support": { "support": {
"issues": "https://github.com/nikic/PHP-Parser/issues", "issues": "https://github.com/nikic/PHP-Parser/issues",
"source": "https://github.com/nikic/PHP-Parser/tree/v4.13.0" "source": "https://github.com/nikic/PHP-Parser/tree/v4.10.5"
}, },
"time": "2021-09-20T12:20:58+00:00" "time": "2021-05-03T19:11:20+00:00"
}, },
{ {
"name": "openlss/lib-array2xml", "name": "openlss/lib-array2xml",
@@ -1213,16 +1213,16 @@
}, },
{ {
"name": "phar-io/manifest", "name": "phar-io/manifest",
"version": "2.0.3", "version": "2.0.1",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/phar-io/manifest.git", "url": "https://github.com/phar-io/manifest.git",
"reference": "97803eca37d319dfa7826cc2437fc020857acb53" "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53", "url": "https://api.github.com/repos/phar-io/manifest/zipball/85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
"reference": "97803eca37d319dfa7826cc2437fc020857acb53", "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@@ -1267,9 +1267,9 @@
"description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)", "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
"support": { "support": {
"issues": "https://github.com/phar-io/manifest/issues", "issues": "https://github.com/phar-io/manifest/issues",
"source": "https://github.com/phar-io/manifest/tree/2.0.3" "source": "https://github.com/phar-io/manifest/tree/master"
}, },
"time": "2021-07-20T11:28:43+00:00" "time": "2020-06-27T14:33:11+00:00"
}, },
{ {
"name": "phar-io/version", "name": "phar-io/version",
@@ -1379,16 +1379,16 @@
}, },
{ {
"name": "php-parallel-lint/php-parallel-lint", "name": "php-parallel-lint/php-parallel-lint",
"version": "v1.3.1", "version": "v1.3.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/php-parallel-lint/PHP-Parallel-Lint.git", "url": "https://github.com/php-parallel-lint/PHP-Parallel-Lint.git",
"reference": "761f3806e30239b5fcd90a0a45d41dc2138de192" "reference": "772a954e5f119f6f5871d015b23eabed8cbdadfb"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/php-parallel-lint/PHP-Parallel-Lint/zipball/761f3806e30239b5fcd90a0a45d41dc2138de192", "url": "https://api.github.com/repos/php-parallel-lint/PHP-Parallel-Lint/zipball/772a954e5f119f6f5871d015b23eabed8cbdadfb",
"reference": "761f3806e30239b5fcd90a0a45d41dc2138de192", "reference": "772a954e5f119f6f5871d015b23eabed8cbdadfb",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@@ -1402,7 +1402,7 @@
"require-dev": { "require-dev": {
"nette/tester": "^1.3 || ^2.0", "nette/tester": "^1.3 || ^2.0",
"php-parallel-lint/php-console-highlighter": "~0.3", "php-parallel-lint/php-console-highlighter": "~0.3",
"squizlabs/php_codesniffer": "^3.6" "squizlabs/php_codesniffer": "^3.5"
}, },
"suggest": { "suggest": {
"php-parallel-lint/php-console-highlighter": "Highlight syntax in code snippet" "php-parallel-lint/php-console-highlighter": "Highlight syntax in code snippet"
@@ -1430,9 +1430,9 @@
"homepage": "https://github.com/php-parallel-lint/PHP-Parallel-Lint", "homepage": "https://github.com/php-parallel-lint/PHP-Parallel-Lint",
"support": { "support": {
"issues": "https://github.com/php-parallel-lint/PHP-Parallel-Lint/issues", "issues": "https://github.com/php-parallel-lint/PHP-Parallel-Lint/issues",
"source": "https://github.com/php-parallel-lint/PHP-Parallel-Lint/tree/v1.3.1" "source": "https://github.com/php-parallel-lint/PHP-Parallel-Lint/tree/v1.3.0"
}, },
"time": "2021-08-13T05:35:13+00:00" "time": "2021-04-07T14:42:48+00:00"
}, },
{ {
"name": "phpdocumentor/reflection-common", "name": "phpdocumentor/reflection-common",
@@ -1489,16 +1489,16 @@
}, },
{ {
"name": "phpdocumentor/reflection-docblock", "name": "phpdocumentor/reflection-docblock",
"version": "5.3.0", "version": "5.2.2",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/phpDocumentor/ReflectionDocBlock.git", "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
"reference": "622548b623e81ca6d78b721c5e029f4ce664f170" "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/622548b623e81ca6d78b721c5e029f4ce664f170", "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/069a785b2141f5bcf49f3e353548dc1cce6df556",
"reference": "622548b623e81ca6d78b721c5e029f4ce664f170", "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@@ -1509,8 +1509,7 @@
"webmozart/assert": "^1.9.1" "webmozart/assert": "^1.9.1"
}, },
"require-dev": { "require-dev": {
"mockery/mockery": "~1.3.2", "mockery/mockery": "~1.3.2"
"psalm/phar": "^4.8"
}, },
"type": "library", "type": "library",
"extra": { "extra": {
@@ -1540,22 +1539,22 @@
"description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.", "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
"support": { "support": {
"issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues", "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
"source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.3.0" "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/master"
}, },
"time": "2021-10-19T17:43:47+00:00" "time": "2020-09-03T19:13:55+00:00"
}, },
{ {
"name": "phpdocumentor/type-resolver", "name": "phpdocumentor/type-resolver",
"version": "1.5.1", "version": "1.4.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/phpDocumentor/TypeResolver.git", "url": "https://github.com/phpDocumentor/TypeResolver.git",
"reference": "a12f7e301eb7258bb68acd89d4aefa05c2906cae" "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/a12f7e301eb7258bb68acd89d4aefa05c2906cae", "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
"reference": "a12f7e301eb7258bb68acd89d4aefa05c2906cae", "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@@ -1563,8 +1562,7 @@
"phpdocumentor/reflection-common": "^2.0" "phpdocumentor/reflection-common": "^2.0"
}, },
"require-dev": { "require-dev": {
"ext-tokenizer": "*", "ext-tokenizer": "*"
"psalm/phar": "^4.8"
}, },
"type": "library", "type": "library",
"extra": { "extra": {
@@ -1590,39 +1588,39 @@
"description": "A PSR-5 based resolver of Class names, Types and Structural Element Names", "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
"support": { "support": {
"issues": "https://github.com/phpDocumentor/TypeResolver/issues", "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
"source": "https://github.com/phpDocumentor/TypeResolver/tree/1.5.1" "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.4.0"
}, },
"time": "2021-10-02T14:08:47+00:00" "time": "2020-09-17T18:55:26+00:00"
}, },
{ {
"name": "phpspec/prophecy", "name": "phpspec/prophecy",
"version": "1.14.0", "version": "1.13.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/phpspec/prophecy.git", "url": "https://github.com/phpspec/prophecy.git",
"reference": "d86dfc2e2a3cd366cee475e52c6bb3bbc371aa0e" "reference": "be1996ed8adc35c3fd795488a653f4b518be70ea"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/phpspec/prophecy/zipball/d86dfc2e2a3cd366cee475e52c6bb3bbc371aa0e", "url": "https://api.github.com/repos/phpspec/prophecy/zipball/be1996ed8adc35c3fd795488a653f4b518be70ea",
"reference": "d86dfc2e2a3cd366cee475e52c6bb3bbc371aa0e", "reference": "be1996ed8adc35c3fd795488a653f4b518be70ea",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"doctrine/instantiator": "^1.2", "doctrine/instantiator": "^1.2",
"php": "^7.2 || ~8.0, <8.2", "php": "^7.2 || ~8.0, <8.1",
"phpdocumentor/reflection-docblock": "^5.2", "phpdocumentor/reflection-docblock": "^5.2",
"sebastian/comparator": "^3.0 || ^4.0", "sebastian/comparator": "^3.0 || ^4.0",
"sebastian/recursion-context": "^3.0 || ^4.0" "sebastian/recursion-context": "^3.0 || ^4.0"
}, },
"require-dev": { "require-dev": {
"phpspec/phpspec": "^6.0 || ^7.0", "phpspec/phpspec": "^6.0",
"phpunit/phpunit": "^8.0 || ^9.0" "phpunit/phpunit": "^8.0 || ^9.0"
}, },
"type": "library", "type": "library",
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-master": "1.x-dev" "dev-master": "1.11.x-dev"
} }
}, },
"autoload": { "autoload": {
@@ -1657,29 +1655,29 @@
], ],
"support": { "support": {
"issues": "https://github.com/phpspec/prophecy/issues", "issues": "https://github.com/phpspec/prophecy/issues",
"source": "https://github.com/phpspec/prophecy/tree/1.14.0" "source": "https://github.com/phpspec/prophecy/tree/1.13.0"
}, },
"time": "2021-09-10T09:02:12+00:00" "time": "2021-03-17T13:42:18+00:00"
}, },
{ {
"name": "phpunit/php-code-coverage", "name": "phpunit/php-code-coverage",
"version": "9.2.7", "version": "9.2.6",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/sebastianbergmann/php-code-coverage.git", "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
"reference": "d4c798ed8d51506800b441f7a13ecb0f76f12218" "reference": "f6293e1b30a2354e8428e004689671b83871edde"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/d4c798ed8d51506800b441f7a13ecb0f76f12218", "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/f6293e1b30a2354e8428e004689671b83871edde",
"reference": "d4c798ed8d51506800b441f7a13ecb0f76f12218", "reference": "f6293e1b30a2354e8428e004689671b83871edde",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"ext-dom": "*", "ext-dom": "*",
"ext-libxml": "*", "ext-libxml": "*",
"ext-xmlwriter": "*", "ext-xmlwriter": "*",
"nikic/php-parser": "^4.12.0", "nikic/php-parser": "^4.10.2",
"php": ">=7.3", "php": ">=7.3",
"phpunit/php-file-iterator": "^3.0.3", "phpunit/php-file-iterator": "^3.0.3",
"phpunit/php-text-template": "^2.0.2", "phpunit/php-text-template": "^2.0.2",
@@ -1728,7 +1726,7 @@
], ],
"support": { "support": {
"issues": "https://github.com/sebastianbergmann/php-code-coverage/issues", "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
"source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.7" "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.6"
}, },
"funding": [ "funding": [
{ {
@@ -1736,7 +1734,7 @@
"type": "github" "type": "github"
} }
], ],
"time": "2021-09-17T05:39:03+00:00" "time": "2021-03-28T07:26:59+00:00"
}, },
{ {
"name": "phpunit/php-file-iterator", "name": "phpunit/php-file-iterator",
@@ -1981,16 +1979,16 @@
}, },
{ {
"name": "phpunit/phpunit", "name": "phpunit/phpunit",
"version": "9.5.10", "version": "9.5.5",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/sebastianbergmann/phpunit.git", "url": "https://github.com/sebastianbergmann/phpunit.git",
"reference": "c814a05837f2edb0d1471d6e3f4ab3501ca3899a" "reference": "89ff45ea9d70e35522fb6654a2ebc221158de276"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/c814a05837f2edb0d1471d6e3f4ab3501ca3899a", "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/89ff45ea9d70e35522fb6654a2ebc221158de276",
"reference": "c814a05837f2edb0d1471d6e3f4ab3501ca3899a", "reference": "89ff45ea9d70e35522fb6654a2ebc221158de276",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@@ -2002,11 +2000,11 @@
"ext-xml": "*", "ext-xml": "*",
"ext-xmlwriter": "*", "ext-xmlwriter": "*",
"myclabs/deep-copy": "^1.10.1", "myclabs/deep-copy": "^1.10.1",
"phar-io/manifest": "^2.0.3", "phar-io/manifest": "^2.0.1",
"phar-io/version": "^3.0.2", "phar-io/version": "^3.0.2",
"php": ">=7.3", "php": ">=7.3",
"phpspec/prophecy": "^1.12.1", "phpspec/prophecy": "^1.12.1",
"phpunit/php-code-coverage": "^9.2.7", "phpunit/php-code-coverage": "^9.2.3",
"phpunit/php-file-iterator": "^3.0.5", "phpunit/php-file-iterator": "^3.0.5",
"phpunit/php-invoker": "^3.1.1", "phpunit/php-invoker": "^3.1.1",
"phpunit/php-text-template": "^2.0.3", "phpunit/php-text-template": "^2.0.3",
@@ -2020,7 +2018,7 @@
"sebastian/global-state": "^5.0.1", "sebastian/global-state": "^5.0.1",
"sebastian/object-enumerator": "^4.0.3", "sebastian/object-enumerator": "^4.0.3",
"sebastian/resource-operations": "^3.0.3", "sebastian/resource-operations": "^3.0.3",
"sebastian/type": "^2.3.4", "sebastian/type": "^2.3.2",
"sebastian/version": "^3.0.2" "sebastian/version": "^3.0.2"
}, },
"require-dev": { "require-dev": {
@@ -2068,7 +2066,7 @@
], ],
"support": { "support": {
"issues": "https://github.com/sebastianbergmann/phpunit/issues", "issues": "https://github.com/sebastianbergmann/phpunit/issues",
"source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.10" "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.5"
}, },
"funding": [ "funding": [
{ {
@@ -2080,7 +2078,7 @@
"type": "github" "type": "github"
} }
], ],
"time": "2021-09-25T07:38:51+00:00" "time": "2021-06-05T04:49:07+00:00"
}, },
{ {
"name": "psr/container", "name": "psr/container",
@@ -3362,16 +3360,16 @@
}, },
{ {
"name": "sebastian/type", "name": "sebastian/type",
"version": "2.3.4", "version": "2.3.2",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/sebastianbergmann/type.git", "url": "https://github.com/sebastianbergmann/type.git",
"reference": "b8cd8a1c753c90bc1a0f5372170e3e489136f914" "reference": "0d1c587401514d17e8f9258a27e23527cb1b06c1"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/sebastianbergmann/type/zipball/b8cd8a1c753c90bc1a0f5372170e3e489136f914", "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/0d1c587401514d17e8f9258a27e23527cb1b06c1",
"reference": "b8cd8a1c753c90bc1a0f5372170e3e489136f914", "reference": "0d1c587401514d17e8f9258a27e23527cb1b06c1",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@@ -3406,7 +3404,7 @@
"homepage": "https://github.com/sebastianbergmann/type", "homepage": "https://github.com/sebastianbergmann/type",
"support": { "support": {
"issues": "https://github.com/sebastianbergmann/type/issues", "issues": "https://github.com/sebastianbergmann/type/issues",
"source": "https://github.com/sebastianbergmann/type/tree/2.3.4" "source": "https://github.com/sebastianbergmann/type/tree/2.3.2"
}, },
"funding": [ "funding": [
{ {
@@ -3414,7 +3412,7 @@
"type": "github" "type": "github"
} }
], ],
"time": "2021-06-15T12:49:02+00:00" "time": "2021-06-04T13:02:07+00:00"
}, },
{ {
"name": "sebastian/version", "name": "sebastian/version",
@@ -3471,16 +3469,16 @@
}, },
{ {
"name": "symfony/console", "name": "symfony/console",
"version": "v5.3.10", "version": "v5.3.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/console.git", "url": "https://github.com/symfony/console.git",
"reference": "d4e409d9fbcfbf71af0e5a940abb7b0b4bad0bd3" "reference": "058553870f7809087fa80fa734704a21b9bcaeb2"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/console/zipball/d4e409d9fbcfbf71af0e5a940abb7b0b4bad0bd3", "url": "https://api.github.com/repos/symfony/console/zipball/058553870f7809087fa80fa734704a21b9bcaeb2",
"reference": "d4e409d9fbcfbf71af0e5a940abb7b0b4bad0bd3", "reference": "058553870f7809087fa80fa734704a21b9bcaeb2",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@@ -3488,12 +3486,11 @@
"symfony/deprecation-contracts": "^2.1", "symfony/deprecation-contracts": "^2.1",
"symfony/polyfill-mbstring": "~1.0", "symfony/polyfill-mbstring": "~1.0",
"symfony/polyfill-php73": "^1.8", "symfony/polyfill-php73": "^1.8",
"symfony/polyfill-php80": "^1.16", "symfony/polyfill-php80": "^1.15",
"symfony/service-contracts": "^1.1|^2", "symfony/service-contracts": "^1.1|^2",
"symfony/string": "^5.1" "symfony/string": "^5.1"
}, },
"conflict": { "conflict": {
"psr/log": ">=3",
"symfony/dependency-injection": "<4.4", "symfony/dependency-injection": "<4.4",
"symfony/dotenv": "<5.1", "symfony/dotenv": "<5.1",
"symfony/event-dispatcher": "<4.4", "symfony/event-dispatcher": "<4.4",
@@ -3501,10 +3498,10 @@
"symfony/process": "<4.4" "symfony/process": "<4.4"
}, },
"provide": { "provide": {
"psr/log-implementation": "1.0|2.0" "psr/log-implementation": "1.0"
}, },
"require-dev": { "require-dev": {
"psr/log": "^1|^2", "psr/log": "~1.0",
"symfony/config": "^4.4|^5.0", "symfony/config": "^4.4|^5.0",
"symfony/dependency-injection": "^4.4|^5.0", "symfony/dependency-injection": "^4.4|^5.0",
"symfony/event-dispatcher": "^4.4|^5.0", "symfony/event-dispatcher": "^4.4|^5.0",
@@ -3550,7 +3547,7 @@
"terminal" "terminal"
], ],
"support": { "support": {
"source": "https://github.com/symfony/console/tree/v5.3.10" "source": "https://github.com/symfony/console/tree/v5.3.0"
}, },
"funding": [ "funding": [
{ {
@@ -3566,7 +3563,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2021-10-26T09:30:15+00:00" "time": "2021-05-26T17:43:10+00:00"
}, },
{ {
"name": "symfony/deprecation-contracts", "name": "symfony/deprecation-contracts",
@@ -3637,22 +3634,21 @@
}, },
{ {
"name": "symfony/event-dispatcher", "name": "symfony/event-dispatcher",
"version": "v4.4.34", "version": "v4.4.19",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/event-dispatcher.git", "url": "https://github.com/symfony/event-dispatcher.git",
"reference": "1a024b45369c9d55d76b6b8a241bd20c9ea1cbd8" "reference": "c352647244bd376bf7d31efbd5401f13f50dad0c"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/1a024b45369c9d55d76b6b8a241bd20c9ea1cbd8", "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/c352647244bd376bf7d31efbd5401f13f50dad0c",
"reference": "1a024b45369c9d55d76b6b8a241bd20c9ea1cbd8", "reference": "c352647244bd376bf7d31efbd5401f13f50dad0c",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
"php": ">=7.1.3", "php": ">=7.1.3",
"symfony/event-dispatcher-contracts": "^1.1", "symfony/event-dispatcher-contracts": "^1.1"
"symfony/polyfill-php80": "^1.16"
}, },
"conflict": { "conflict": {
"symfony/dependency-injection": "<3.4" "symfony/dependency-injection": "<3.4"
@@ -3662,7 +3658,7 @@
"symfony/event-dispatcher-implementation": "1.1" "symfony/event-dispatcher-implementation": "1.1"
}, },
"require-dev": { "require-dev": {
"psr/log": "^1|^2|^3", "psr/log": "~1.0",
"symfony/config": "^3.4|^4.0|^5.0", "symfony/config": "^3.4|^4.0|^5.0",
"symfony/dependency-injection": "^3.4|^4.0|^5.0", "symfony/dependency-injection": "^3.4|^4.0|^5.0",
"symfony/error-handler": "~3.4|~4.4", "symfony/error-handler": "~3.4|~4.4",
@@ -3701,7 +3697,7 @@
"description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them", "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
"homepage": "https://symfony.com", "homepage": "https://symfony.com",
"support": { "support": {
"source": "https://github.com/symfony/event-dispatcher/tree/v4.4.34" "source": "https://github.com/symfony/event-dispatcher/tree/v4.4.19"
}, },
"funding": [ "funding": [
{ {
@@ -3717,20 +3713,20 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2021-11-15T14:42:25+00:00" "time": "2021-01-27T09:09:26+00:00"
}, },
{ {
"name": "symfony/event-dispatcher-contracts", "name": "symfony/event-dispatcher-contracts",
"version": "v1.1.11", "version": "v1.1.9",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/event-dispatcher-contracts.git", "url": "https://github.com/symfony/event-dispatcher-contracts.git",
"reference": "01e9a4efac0ee33a05dfdf93b346f62e7d0e998c" "reference": "84e23fdcd2517bf37aecbd16967e83f0caee25a7"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/01e9a4efac0ee33a05dfdf93b346f62e7d0e998c", "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/84e23fdcd2517bf37aecbd16967e83f0caee25a7",
"reference": "01e9a4efac0ee33a05dfdf93b346f62e7d0e998c", "reference": "84e23fdcd2517bf37aecbd16967e83f0caee25a7",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@@ -3743,7 +3739,7 @@
"type": "library", "type": "library",
"extra": { "extra": {
"branch-alias": { "branch-alias": {
"dev-main": "1.1-dev" "dev-master": "1.1-dev"
}, },
"thanks": { "thanks": {
"name": "symfony/contracts", "name": "symfony/contracts",
@@ -3780,7 +3776,7 @@
"standards" "standards"
], ],
"support": { "support": {
"source": "https://github.com/symfony/event-dispatcher-contracts/tree/v1.1.11" "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v1.1.9"
}, },
"funding": [ "funding": [
{ {
@@ -3796,7 +3792,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2021-03-23T15:25:38+00:00" "time": "2020-07-06T13:19:58+00:00"
}, },
{ {
"name": "symfony/filesystem", "name": "symfony/filesystem",
@@ -4071,16 +4067,16 @@
}, },
{ {
"name": "symfony/polyfill-intl-grapheme", "name": "symfony/polyfill-intl-grapheme",
"version": "v1.23.1", "version": "v1.23.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/polyfill-intl-grapheme.git", "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
"reference": "16880ba9c5ebe3642d1995ab866db29270b36535" "reference": "24b72c6baa32c746a4d0840147c9715e42bb68ab"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/16880ba9c5ebe3642d1995ab866db29270b36535", "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/24b72c6baa32c746a4d0840147c9715e42bb68ab",
"reference": "16880ba9c5ebe3642d1995ab866db29270b36535", "reference": "24b72c6baa32c746a4d0840147c9715e42bb68ab",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@@ -4132,7 +4128,7 @@
"shim" "shim"
], ],
"support": { "support": {
"source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.23.1" "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.23.0"
}, },
"funding": [ "funding": [
{ {
@@ -4148,7 +4144,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2021-05-27T12:26:48+00:00" "time": "2021-05-27T09:17:38+00:00"
}, },
{ {
"name": "symfony/polyfill-intl-normalizer", "name": "symfony/polyfill-intl-normalizer",
@@ -4236,16 +4232,16 @@
}, },
{ {
"name": "symfony/polyfill-mbstring", "name": "symfony/polyfill-mbstring",
"version": "v1.23.1", "version": "v1.23.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/polyfill-mbstring.git", "url": "https://github.com/symfony/polyfill-mbstring.git",
"reference": "9174a3d80210dca8daa7f31fec659150bbeabfc6" "reference": "2df51500adbaebdc4c38dea4c89a2e131c45c8a1"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9174a3d80210dca8daa7f31fec659150bbeabfc6", "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/2df51500adbaebdc4c38dea4c89a2e131c45c8a1",
"reference": "9174a3d80210dca8daa7f31fec659150bbeabfc6", "reference": "2df51500adbaebdc4c38dea4c89a2e131c45c8a1",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@@ -4296,7 +4292,7 @@
"shim" "shim"
], ],
"support": { "support": {
"source": "https://github.com/symfony/polyfill-mbstring/tree/v1.23.1" "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.23.0"
}, },
"funding": [ "funding": [
{ {
@@ -4312,7 +4308,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2021-05-27T12:26:48+00:00" "time": "2021-05-27T09:27:20+00:00"
}, },
{ {
"name": "symfony/polyfill-php70", "name": "symfony/polyfill-php70",
@@ -4539,16 +4535,16 @@
}, },
{ {
"name": "symfony/polyfill-php80", "name": "symfony/polyfill-php80",
"version": "v1.23.1", "version": "v1.23.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/polyfill-php80.git", "url": "https://github.com/symfony/polyfill-php80.git",
"reference": "1100343ed1a92e3a38f9ae122fc0eb21602547be" "reference": "eca0bf41ed421bed1b57c4958bab16aa86b757d0"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/1100343ed1a92e3a38f9ae122fc0eb21602547be", "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/eca0bf41ed421bed1b57c4958bab16aa86b757d0",
"reference": "1100343ed1a92e3a38f9ae122fc0eb21602547be", "reference": "eca0bf41ed421bed1b57c4958bab16aa86b757d0",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@@ -4602,7 +4598,7 @@
"shim" "shim"
], ],
"support": { "support": {
"source": "https://github.com/symfony/polyfill-php80/tree/v1.23.1" "source": "https://github.com/symfony/polyfill-php80/tree/v1.23.0"
}, },
"funding": [ "funding": [
{ {
@@ -4618,7 +4614,7 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2021-07-28T13:41:28+00:00" "time": "2021-02-19T12:13:01+00:00"
}, },
{ {
"name": "symfony/process", "name": "symfony/process",
@@ -4825,16 +4821,16 @@
}, },
{ {
"name": "symfony/string", "name": "symfony/string",
"version": "v5.3.10", "version": "v5.3.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/symfony/string.git", "url": "https://github.com/symfony/string.git",
"reference": "d70c35bb20bbca71fc4ab7921e3c6bda1a82a60c" "reference": "a9a0f8b6aafc5d2d1c116dcccd1573a95153515b"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/symfony/string/zipball/d70c35bb20bbca71fc4ab7921e3c6bda1a82a60c", "url": "https://api.github.com/repos/symfony/string/zipball/a9a0f8b6aafc5d2d1c116dcccd1573a95153515b",
"reference": "d70c35bb20bbca71fc4ab7921e3c6bda1a82a60c", "reference": "a9a0f8b6aafc5d2d1c116dcccd1573a95153515b",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@@ -4888,7 +4884,7 @@
"utf8" "utf8"
], ],
"support": { "support": {
"source": "https://github.com/symfony/string/tree/v5.3.10" "source": "https://github.com/symfony/string/tree/v5.3.0"
}, },
"funding": [ "funding": [
{ {
@@ -4904,20 +4900,20 @@
"type": "tidelift" "type": "tidelift"
} }
], ],
"time": "2021-10-27T18:21:46+00:00" "time": "2021-05-26T17:43:10+00:00"
}, },
{ {
"name": "theseer/tokenizer", "name": "theseer/tokenizer",
"version": "1.2.1", "version": "1.2.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/theseer/tokenizer.git", "url": "https://github.com/theseer/tokenizer.git",
"reference": "34a41e998c2183e22995f158c581e7b5e755ab9e" "reference": "75a63c33a8577608444246075ea0af0d052e452a"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e", "url": "https://api.github.com/repos/theseer/tokenizer/zipball/75a63c33a8577608444246075ea0af0d052e452a",
"reference": "34a41e998c2183e22995f158c581e7b5e755ab9e", "reference": "75a63c33a8577608444246075ea0af0d052e452a",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@@ -4946,7 +4942,7 @@
"description": "A small library for converting tokenized PHP source code into XML and potentially other formats", "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
"support": { "support": {
"issues": "https://github.com/theseer/tokenizer/issues", "issues": "https://github.com/theseer/tokenizer/issues",
"source": "https://github.com/theseer/tokenizer/tree/1.2.1" "source": "https://github.com/theseer/tokenizer/tree/master"
}, },
"funding": [ "funding": [
{ {
@@ -4954,20 +4950,20 @@
"type": "github" "type": "github"
} }
], ],
"time": "2021-07-28T10:34:58+00:00" "time": "2020-07-12T23:59:07+00:00"
}, },
{ {
"name": "vimeo/psalm", "name": "vimeo/psalm",
"version": "4.11.2", "version": "4.7.3",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/vimeo/psalm.git", "url": "https://github.com/vimeo/psalm.git",
"reference": "6fba5eb554f9507b72932f9c75533d8af593688d" "reference": "38c452ae584467e939d55377aaf83b5a26f19dd1"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/vimeo/psalm/zipball/6fba5eb554f9507b72932f9c75533d8af593688d", "url": "https://api.github.com/repos/vimeo/psalm/zipball/38c452ae584467e939d55377aaf83b5a26f19dd1",
"reference": "6fba5eb554f9507b72932f9c75533d8af593688d", "reference": "38c452ae584467e939d55377aaf83b5a26f19dd1",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@@ -4977,7 +4973,6 @@
"composer/semver": "^1.4 || ^2.0 || ^3.0", "composer/semver": "^1.4 || ^2.0 || ^3.0",
"composer/xdebug-handler": "^1.1 || ^2.0", "composer/xdebug-handler": "^1.1 || ^2.0",
"dnoegel/php-xdg-base-dir": "^0.1.1", "dnoegel/php-xdg-base-dir": "^0.1.1",
"ext-ctype": "*",
"ext-dom": "*", "ext-dom": "*",
"ext-json": "*", "ext-json": "*",
"ext-libxml": "*", "ext-libxml": "*",
@@ -4987,7 +4982,7 @@
"felixfbecker/advanced-json-rpc": "^3.0.3", "felixfbecker/advanced-json-rpc": "^3.0.3",
"felixfbecker/language-server-protocol": "^1.5", "felixfbecker/language-server-protocol": "^1.5",
"netresearch/jsonmapper": "^1.0 || ^2.0 || ^3.0 || ^4.0", "netresearch/jsonmapper": "^1.0 || ^2.0 || ^3.0 || ^4.0",
"nikic/php-parser": "^4.13", "nikic/php-parser": "^4.10.5",
"openlss/lib-array2xml": "^1.0", "openlss/lib-array2xml": "^1.0",
"php": "^7.1|^8", "php": "^7.1|^8",
"sebastian/diff": "^3.0 || ^4.0", "sebastian/diff": "^3.0 || ^4.0",
@@ -5006,10 +5001,11 @@
"phpmyadmin/sql-parser": "5.1.0||dev-master", "phpmyadmin/sql-parser": "5.1.0||dev-master",
"phpspec/prophecy": ">=1.9.0", "phpspec/prophecy": ">=1.9.0",
"phpunit/phpunit": "^9.0", "phpunit/phpunit": "^9.0",
"psalm/plugin-phpunit": "^0.16", "psalm/plugin-phpunit": "^0.13",
"slevomat/coding-standard": "^7.0", "slevomat/coding-standard": "^7.0",
"squizlabs/php_codesniffer": "^3.5", "squizlabs/php_codesniffer": "^3.5",
"symfony/process": "^4.3 || ^5.0", "symfony/process": "^4.3",
"weirdan/phpunit-appveyor-reporter": "^1.0.0",
"weirdan/prophecy-shim": "^1.0 || ^2.0" "weirdan/prophecy-shim": "^1.0 || ^2.0"
}, },
"suggest": { "suggest": {
@@ -5057,9 +5053,9 @@
], ],
"support": { "support": {
"issues": "https://github.com/vimeo/psalm/issues", "issues": "https://github.com/vimeo/psalm/issues",
"source": "https://github.com/vimeo/psalm/tree/4.11.2" "source": "https://github.com/vimeo/psalm/tree/4.7.3"
}, },
"time": "2021-10-26T17:28:17+00:00" "time": "2021-05-24T04:09:51+00:00"
}, },
{ {
"name": "webmozart/assert", "name": "webmozart/assert",

View File

@@ -2,26 +2,21 @@
/* hide stuff */ /* hide stuff */
#body-user { #body-user {
#header, #header,
.app-navigation, div#app-navigation,
.app-sidebar, div.board-header-controls,
.board-header-controls,
.board-actions,
#app-navigation-toggle, #app-navigation-toggle,
#app-navigation-toggle-custom, #app-navigation-toggle-custom,
div#controls.ng-scope div.crumb:not(.title), div#controls.ng-scope div.crumb:not(.title),
div#controls.ng-scope div.crumb a.bullet, div#controls.ng-scope div.crumb a.bullet,
a.ng-binding + a, a.ng-binding + a,
div.card.create, div.card.create,
.stack__header .action-item,
button.card-options { button.card-options {
display: none !important; display: none !important;
} }
#content { #content {
margin: 0; margin: 0;
padding: 0; padding: 0;
} }
#app-content { #app-content {
margin: 0 !important; margin: 0 !important;
} }
@@ -80,11 +75,6 @@
margin: 2cm; margin: 2cm;
} }
.board {
max-height: none !important;
overflow: visible !important;
}
div#innerBoard { div#innerBoard {
display:flex; display:flex;
flex-wrap: wrap; flex-wrap: wrap;

View File

@@ -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 ### DELETE /boards/{boardId}/stacks/{stackId}/cards/{cardId}/attachments/{attachmentId} - Delete an attachment
#### Request parameters #### Request parameters
| Parameter | Type | Description | | Parameter | Type | Description |

View File

@@ -24,8 +24,6 @@ OC.L10N.register(
"Created" : "Geskep", "Created" : "Geskep",
"Due date" : "Sperdatum", "Due date" : "Sperdatum",
"Select Date" : "Kies Datum", "Select Date" : "Kies Datum",
"Today" : "Vandag",
"Tomorrow" : "Môre",
"Save" : "Stoor", "Save" : "Stoor",
"Reply" : "Antwoord", "Reply" : "Antwoord",
"Update" : "Werk by", "Update" : "Werk by",
@@ -33,6 +31,8 @@ OC.L10N.register(
"seconds ago" : "sekondes gelede", "seconds ago" : "sekondes gelede",
"Shared with you" : "Met u gedeel", "Shared with you" : "Met u gedeel",
"An error occurred" : "'n Fout het voorgekom", "An error occurred" : "'n Fout het voorgekom",
"Today" : "Vandag",
"Tomorrow" : "Môre",
"This week" : "Vandeesweek" "This week" : "Vandeesweek"
}, },
"nplurals=2; plural=(n != 1);"); "nplurals=2; plural=(n != 1);");

View File

@@ -22,8 +22,6 @@
"Created" : "Geskep", "Created" : "Geskep",
"Due date" : "Sperdatum", "Due date" : "Sperdatum",
"Select Date" : "Kies Datum", "Select Date" : "Kies Datum",
"Today" : "Vandag",
"Tomorrow" : "Môre",
"Save" : "Stoor", "Save" : "Stoor",
"Reply" : "Antwoord", "Reply" : "Antwoord",
"Update" : "Werk by", "Update" : "Werk by",
@@ -31,6 +29,8 @@
"seconds ago" : "sekondes gelede", "seconds ago" : "sekondes gelede",
"Shared with you" : "Met u gedeel", "Shared with you" : "Met u gedeel",
"An error occurred" : "'n Fout het voorgekom", "An error occurred" : "'n Fout het voorgekom",
"Today" : "Vandag",
"Tomorrow" : "Môre",
"This week" : "Vandeesweek" "This week" : "Vandeesweek"
},"pluralForm" :"nplurals=2; plural=(n != 1);" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@@ -187,6 +187,7 @@ OC.L10N.register(
"Share from Files" : "مشاركة من الملفات", "Share from Files" : "مشاركة من الملفات",
"Add this attachment" : "إضافة هذا المرفق", "Add this attachment" : "إضافة هذا المرفق",
"Show in Files" : "عرض في الملفات ", "Show in Files" : "عرض في الملفات ",
"Unshare file" : "عدم مشاركة الملف ",
"Delete Attachment" : "مسح المرفق", "Delete Attachment" : "مسح المرفق",
"Restore Attachment" : "إستعادة المرفق", "Restore Attachment" : "إستعادة المرفق",
"File to share" : "ملف للمشاركة", "File to share" : "ملف للمشاركة",
@@ -208,8 +209,6 @@ OC.L10N.register(
"Set a due date" : "تعيين تاريخ الانجاز", "Set a due date" : "تعيين تاريخ الانجاز",
"Remove due date" : "ازالة تاريخ الانجاز", "Remove due date" : "ازالة تاريخ الانجاز",
"Select Date" : "اختر التاريخ ", "Select Date" : "اختر التاريخ ",
"Today" : "اليوم",
"Tomorrow" : "غدا",
"Save" : "حفظ", "Save" : "حفظ",
"The comment cannot be empty." : "التعليق لايمكن ان يكون فارغا.", "The comment cannot be empty." : "التعليق لايمكن ان يكون فارغا.",
"The comment cannot be longer than 1000 characters." : "التعليق لا يمكن ان يكون اطول من 1000 حرف.", "The comment cannot be longer than 1000 characters." : "التعليق لا يمكن ان يكون اطول من 1000 حرف.",
@@ -263,6 +262,8 @@ OC.L10N.register(
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "هل انت متأكد تريد مسح اللوح {title}؟ هذا سوف يمسح جميع بيانات هذا اللوح.", "Are you sure you want to delete the board {title}? This will delete all the data of this board." : "هل انت متأكد تريد مسح اللوح {title}؟ هذا سوف يمسح جميع بيانات هذا اللوح.",
"Delete the board?" : "مسح اللوح؟", "Delete the board?" : "مسح اللوح؟",
"Loading filtered view" : "جارِ تحميل التصفية ", "Loading filtered view" : "جارِ تحميل التصفية ",
"Today" : "اليوم",
"Tomorrow" : "غدا",
"This week" : "هذا الأسبوع", "This week" : "هذا الأسبوع",
"No due" : "غير محدد", "No due" : "غير محدد",
"Search for {searchQuery} in all boards" : "البحث عن {searchQuery} في جميع اللوح", "Search for {searchQuery} in all boards" : "البحث عن {searchQuery} في جميع اللوح",

View File

@@ -185,6 +185,7 @@
"Share from Files" : "مشاركة من الملفات", "Share from Files" : "مشاركة من الملفات",
"Add this attachment" : "إضافة هذا المرفق", "Add this attachment" : "إضافة هذا المرفق",
"Show in Files" : "عرض في الملفات ", "Show in Files" : "عرض في الملفات ",
"Unshare file" : "عدم مشاركة الملف ",
"Delete Attachment" : "مسح المرفق", "Delete Attachment" : "مسح المرفق",
"Restore Attachment" : "إستعادة المرفق", "Restore Attachment" : "إستعادة المرفق",
"File to share" : "ملف للمشاركة", "File to share" : "ملف للمشاركة",
@@ -206,8 +207,6 @@
"Set a due date" : "تعيين تاريخ الانجاز", "Set a due date" : "تعيين تاريخ الانجاز",
"Remove due date" : "ازالة تاريخ الانجاز", "Remove due date" : "ازالة تاريخ الانجاز",
"Select Date" : "اختر التاريخ ", "Select Date" : "اختر التاريخ ",
"Today" : "اليوم",
"Tomorrow" : "غدا",
"Save" : "حفظ", "Save" : "حفظ",
"The comment cannot be empty." : "التعليق لايمكن ان يكون فارغا.", "The comment cannot be empty." : "التعليق لايمكن ان يكون فارغا.",
"The comment cannot be longer than 1000 characters." : "التعليق لا يمكن ان يكون اطول من 1000 حرف.", "The comment cannot be longer than 1000 characters." : "التعليق لا يمكن ان يكون اطول من 1000 حرف.",
@@ -261,6 +260,8 @@
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "هل انت متأكد تريد مسح اللوح {title}؟ هذا سوف يمسح جميع بيانات هذا اللوح.", "Are you sure you want to delete the board {title}? This will delete all the data of this board." : "هل انت متأكد تريد مسح اللوح {title}؟ هذا سوف يمسح جميع بيانات هذا اللوح.",
"Delete the board?" : "مسح اللوح؟", "Delete the board?" : "مسح اللوح؟",
"Loading filtered view" : "جارِ تحميل التصفية ", "Loading filtered view" : "جارِ تحميل التصفية ",
"Today" : "اليوم",
"Tomorrow" : "غدا",
"This week" : "هذا الأسبوع", "This week" : "هذا الأسبوع",
"No due" : "غير محدد", "No due" : "غير محدد",
"Search for {searchQuery} in all boards" : "البحث عن {searchQuery} في جميع اللوح", "Search for {searchQuery} in all boards" : "البحث عن {searchQuery} في جميع اللوح",

View File

@@ -30,8 +30,6 @@ OC.L10N.register(
"Comments" : "Comentarios", "Comments" : "Comentarios",
"Modified" : "Modificóse'l", "Modified" : "Modificóse'l",
"Created" : "Creóse", "Created" : "Creóse",
"Today" : "Güei",
"Tomorrow" : "Mañana",
"Save" : "Guardar", "Save" : "Guardar",
"Reply" : "Rempuesta", "Reply" : "Rempuesta",
"Update" : "Anovar", "Update" : "Anovar",
@@ -39,6 +37,8 @@ OC.L10N.register(
"(group)" : "(grupu)", "(group)" : "(grupu)",
"seconds ago" : "hai segundos", "seconds ago" : "hai segundos",
"Shared with you" : "Shared with you", "Shared with you" : "Shared with you",
"Today" : "Güei",
"Tomorrow" : "Mañana",
"This week" : "Esta selmana" "This week" : "Esta selmana"
}, },
"nplurals=2; plural=(n != 1);"); "nplurals=2; plural=(n != 1);");

View File

@@ -28,8 +28,6 @@
"Comments" : "Comentarios", "Comments" : "Comentarios",
"Modified" : "Modificóse'l", "Modified" : "Modificóse'l",
"Created" : "Creóse", "Created" : "Creóse",
"Today" : "Güei",
"Tomorrow" : "Mañana",
"Save" : "Guardar", "Save" : "Guardar",
"Reply" : "Rempuesta", "Reply" : "Rempuesta",
"Update" : "Anovar", "Update" : "Anovar",
@@ -37,6 +35,8 @@
"(group)" : "(grupu)", "(group)" : "(grupu)",
"seconds ago" : "hai segundos", "seconds ago" : "hai segundos",
"Shared with you" : "Shared with you", "Shared with you" : "Shared with you",
"Today" : "Güei",
"Tomorrow" : "Mañana",
"This week" : "Esta selmana" "This week" : "Esta selmana"
},"pluralForm" :"nplurals=2; plural=(n != 1);" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@@ -15,14 +15,14 @@ OC.L10N.register(
"Delete" : "Sil", "Delete" : "Sil",
"Edit" : "Dəyişiklik et", "Edit" : "Dəyişiklik et",
"Modified" : "Dəyişdirildi", "Modified" : "Dəyişdirildi",
"Today" : "Bu gün",
"Tomorrow" : "Sabah",
"Save" : "Saxla", "Save" : "Saxla",
"Reply" : "Cavab", "Reply" : "Cavab",
"Update" : "Yenilənmə", "Update" : "Yenilənmə",
"Description" : "Açıqlanma", "Description" : "Açıqlanma",
"(group)" : "(qrup)", "(group)" : "(qrup)",
"seconds ago" : "saniyələr öncə", "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);"); "nplurals=2; plural=(n != 1);");

View File

@@ -13,14 +13,14 @@
"Delete" : "Sil", "Delete" : "Sil",
"Edit" : "Dəyişiklik et", "Edit" : "Dəyişiklik et",
"Modified" : "Dəyişdirildi", "Modified" : "Dəyişdirildi",
"Today" : "Bu gün",
"Tomorrow" : "Sabah",
"Save" : "Saxla", "Save" : "Saxla",
"Reply" : "Cavab", "Reply" : "Cavab",
"Update" : "Yenilənmə", "Update" : "Yenilənmə",
"Description" : "Açıqlanma", "Description" : "Açıqlanma",
"(group)" : "(qrup)", "(group)" : "(qrup)",
"seconds ago" : "saniyələr öncə", "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);" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@@ -70,15 +70,9 @@ OC.L10N.register(
"Upcoming cards" : "Предстоящи карти", "Upcoming cards" : "Предстоящи карти",
"Personal" : "Лични", "Personal" : "Лични",
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Картата \"%s\" на \"%s\" Ви е била възложена от %s.", "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} на Вас.",
"The card \"%s\" on \"%s\" has reached its due date." : "Картата \"%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”", "%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.", "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." : "Не бяха предоставени данни за създаване на прикачен файл.", "No data was provided to create an attachment." : "Не бяха предоставени данни за създаване на прикачен файл.",
"Finished" : "Готово", "Finished" : "Готово",
"To review" : "За преглед", "To review" : "За преглед",
@@ -92,7 +86,7 @@ OC.L10N.register(
"Example Task 2" : "Примерна задача 2", "Example Task 2" : "Примерна задача 2",
"Example Task 1" : "Примерна задача 1", "Example Task 1" : "Примерна задача 1",
"The file was uploaded" : "Файлът е качен", "The file was uploaded" : "Файлът е качен",
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Размерът на каченият файл надвишава максималния размер определен от upload_max_filesize в php.ini:", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Каченият файл надвишава директивата upload_max_filesize в php.ini",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Размерът на файла надвишава максималния размер определен от MAX_FILE_SIZE в HTML формата.", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Размерът на файла надвишава максималния размер определен от MAX_FILE_SIZE в HTML формата.",
"The file was only partially uploaded" : "Файлът е качен частично", "The file was only partially uploaded" : "Файлът е качен частично",
"No file was uploaded" : "Нито един файл не е качен", "No file was uploaded" : "Нито един файл не е качен",
@@ -110,16 +104,9 @@ OC.L10N.register(
"Select the board to link to a project" : "Изберете таблото, което да свържете към проект", "Select the board to link to a project" : "Изберете таблото, което да свържете към проект",
"Search by board title" : "Търсене по заглавие на таблото", "Search by board title" : "Търсене по заглавие на таблото",
"Select board" : "Избор на табло", "Select board" : "Избор на табло",
"Create a new card" : "Създаване на нова карта",
"Select a board" : "Избор на табло", "Select a board" : "Избор на табло",
"Select a list" : "Избор на списък", "Select a list" : "Избор на списък",
"Card title" : "Заглавие на карта",
"Cancel" : "Отказ", "Cancel" : "Отказ",
"Creating the new card …" : "Създаване на новата карта ...",
"Card \"{card}\" was added to \"{board}\"" : "Карта \"{card}\" беше добавена към \"{board}\"",
"Open card" : "Отваряне на карта",
"Close" : "Затваряне",
"Create card" : "Създаване на карта",
"Select a card" : "Избор на карта", "Select a card" : "Избор на карта",
"Select the card to link to a project" : "Изберете картата, която да свържете към проект", "Select the card to link to a project" : "Изберете картата, която да свържете към проект",
"Link to card" : "Връзка към карта", "Link to card" : "Връзка към карта",
@@ -185,11 +172,9 @@ OC.L10N.register(
"Members" : "Членове", "Members" : "Членове",
"Upload new files" : "Качи нови файлове", "Upload new files" : "Качи нови файлове",
"Share from Files" : "Споделяне от Файлове", "Share from Files" : "Споделяне от Файлове",
"Pending share" : "Чакащо споделяне",
"Add this attachment" : "Добавете този прикачен файл", "Add this attachment" : "Добавете този прикачен файл",
"Show in Files" : "Показване във файлове", "Show in Files" : "Показване във файлове",
"Download" : "Изтегляне", "Unshare file" : "Прекратяване на споделянето на файла",
"Remove attachment" : "Премахване на прикачен файл",
"Delete Attachment" : "Изтриване на прикачен файл", "Delete Attachment" : "Изтриване на прикачен файл",
"Restore Attachment" : "Възстановяване на прикачен файл", "Restore Attachment" : "Възстановяване на прикачен файл",
"File to share" : "Файл за споделяне", "File to share" : "Файл за споделяне",
@@ -202,7 +187,6 @@ OC.L10N.register(
"Created" : "Създаден", "Created" : "Създаден",
"The title cannot be empty." : "Заглавието не може да бъде празно.", "The title cannot be empty." : "Заглавието не може да бъде празно.",
"No comments yet. Begin the discussion!" : "Все още няма коментари. Започнете дискусията!", "No comments yet. Begin the discussion!" : "Все още няма коментари. Започнете дискусията!",
"Failed to load comments" : "Неуспешно зареждане на коментари",
"Assign a tag to this card…" : "Присвояване на етикет на тази карта ...", "Assign a tag to this card…" : "Присвояване на етикет на тази карта ...",
"Assign to users" : "Зачисляване към потребители", "Assign to users" : "Зачисляване към потребители",
"Assign to users/groups/circles" : "Зачисляване към потребители/групи/кръгове", "Assign to users/groups/circles" : "Зачисляване към потребители/групи/кръгове",
@@ -211,15 +195,10 @@ OC.L10N.register(
"Set a due date" : "Задаване на крайна дата", "Set a due date" : "Задаване на крайна дата",
"Remove due date" : "Премахни крайната дата", "Remove due date" : "Премахни крайната дата",
"Select Date" : "Изберете дата", "Select Date" : "Изберете дата",
"Today" : "Днес",
"Tomorrow" : "Утре",
"Next week" : "Следваща седмица",
"Next month" : "Следващия месец",
"Save" : "Запазване", "Save" : "Запазване",
"The comment cannot be empty." : "Коментарът не може да бъде празен.", "The comment cannot be empty." : "Коментарът не може да бъде празен.",
"The comment cannot be longer than 1000 characters." : "Коментарът не може да бъде по-дълъг от 1000 знака.", "The comment cannot be longer than 1000 characters." : "Коментарът не може да бъде по-дълъг от 1000 знака.",
"In reply to" : "В отговор на", "In reply to" : "В отговор на",
"Cancel reply" : "Отказ на отговор",
"Reply" : "Отговори", "Reply" : "Отговори",
"Update" : "Обновяване", "Update" : "Обновяване",
"Description" : "Описание", "Description" : "Описание",
@@ -232,7 +211,6 @@ OC.L10N.register(
"Write a description …" : "Напишете описание ...", "Write a description …" : "Напишете описание ...",
"Choose attachment" : "Избор на прикачен файл", "Choose attachment" : "Избор на прикачен файл",
"(group)" : "(група)", "(group)" : "(група)",
"{count} comments, {unread} unread" : "{count} коментари, {unread} непрочетени",
"Assign to me" : "Зачисляване към мен", "Assign to me" : "Зачисляване към мен",
"Unassign myself" : "Отмяна на зачисляването към мен", "Unassign myself" : "Отмяна на зачисляването към мен",
"Move card" : "Преместване на карта", "Move card" : "Преместване на карта",
@@ -268,16 +246,14 @@ OC.L10N.register(
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Сигурни ли сте, че искате да изтриете таблото {title}? Това ще изтрие всички данни на това табло.", "Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Сигурни ли сте, че искате да изтриете таблото {title}? Това ще изтрие всички данни на това табло.",
"Delete the board?" : "Изтриване на таблото?", "Delete the board?" : "Изтриване на таблото?",
"Loading filtered view" : "Зареждане на филтриран изглед", "Loading filtered view" : "Зареждане на филтриран изглед",
"Today" : "Днес",
"Tomorrow" : "Утре",
"This week" : "Тази седмица", "This week" : "Тази седмица",
"No due" : "Не се дължи", "No due" : "Не се дължи",
"Search for {searchQuery} in all boards" : "Търсене на {searchQuery} във всички табла",
"No results found" : "Няма намерени резултати",
"No upcoming cards" : "Няма предстоящи карти", "No upcoming cards" : "Няма предстоящи карти",
"upcoming cards" : "предстоящи карти", "upcoming cards" : "предстоящи карти",
"Link to a board" : "Линк към табло", "Link to a board" : "Линк към табло",
"Link to a card" : "Линк към карта", "Link to a card" : "Линк към карта",
"Create a card" : "Създаване на карта",
"Message from {author} in {conversationName}" : "Съобщение от {author} в {conversationName}",
"Something went wrong" : "Нещо се обърка", "Something went wrong" : "Нещо се обърка",
"Failed to upload {name}" : " Неуспешно качване на {name}", "Failed to upload {name}" : " Неуспешно качване на {name}",
"Maximum file size of {size} exceeded" : "Максималният размер на файла от {size} е надвишен", "Maximum file size of {size} exceeded" : "Максималният размер на файла от {size} е надвишен",

View File

@@ -68,15 +68,9 @@
"Upcoming cards" : "Предстоящи карти", "Upcoming cards" : "Предстоящи карти",
"Personal" : "Лични", "Personal" : "Лични",
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Картата \"%s\" на \"%s\" Ви е била възложена от %s.", "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} на Вас.",
"The card \"%s\" on \"%s\" has reached its due date." : "Картата \"%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”", "%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.", "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." : "Не бяха предоставени данни за създаване на прикачен файл.", "No data was provided to create an attachment." : "Не бяха предоставени данни за създаване на прикачен файл.",
"Finished" : "Готово", "Finished" : "Готово",
"To review" : "За преглед", "To review" : "За преглед",
@@ -90,7 +84,7 @@
"Example Task 2" : "Примерна задача 2", "Example Task 2" : "Примерна задача 2",
"Example Task 1" : "Примерна задача 1", "Example Task 1" : "Примерна задача 1",
"The file was uploaded" : "Файлът е качен", "The file was uploaded" : "Файлът е качен",
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Размерът на каченият файл надвишава максималния размер определен от upload_max_filesize в php.ini:", "The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Каченият файл надвишава директивата upload_max_filesize в php.ini",
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Размерът на файла надвишава максималния размер определен от MAX_FILE_SIZE в HTML формата.", "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Размерът на файла надвишава максималния размер определен от MAX_FILE_SIZE в HTML формата.",
"The file was only partially uploaded" : "Файлът е качен частично", "The file was only partially uploaded" : "Файлът е качен частично",
"No file was uploaded" : "Нито един файл не е качен", "No file was uploaded" : "Нито един файл не е качен",
@@ -108,16 +102,9 @@
"Select the board to link to a project" : "Изберете таблото, което да свържете към проект", "Select the board to link to a project" : "Изберете таблото, което да свържете към проект",
"Search by board title" : "Търсене по заглавие на таблото", "Search by board title" : "Търсене по заглавие на таблото",
"Select board" : "Избор на табло", "Select board" : "Избор на табло",
"Create a new card" : "Създаване на нова карта",
"Select a board" : "Избор на табло", "Select a board" : "Избор на табло",
"Select a list" : "Избор на списък", "Select a list" : "Избор на списък",
"Card title" : "Заглавие на карта",
"Cancel" : "Отказ", "Cancel" : "Отказ",
"Creating the new card …" : "Създаване на новата карта ...",
"Card \"{card}\" was added to \"{board}\"" : "Карта \"{card}\" беше добавена към \"{board}\"",
"Open card" : "Отваряне на карта",
"Close" : "Затваряне",
"Create card" : "Създаване на карта",
"Select a card" : "Избор на карта", "Select a card" : "Избор на карта",
"Select the card to link to a project" : "Изберете картата, която да свържете към проект", "Select the card to link to a project" : "Изберете картата, която да свържете към проект",
"Link to card" : "Връзка към карта", "Link to card" : "Връзка към карта",
@@ -183,11 +170,9 @@
"Members" : "Членове", "Members" : "Членове",
"Upload new files" : "Качи нови файлове", "Upload new files" : "Качи нови файлове",
"Share from Files" : "Споделяне от Файлове", "Share from Files" : "Споделяне от Файлове",
"Pending share" : "Чакащо споделяне",
"Add this attachment" : "Добавете този прикачен файл", "Add this attachment" : "Добавете този прикачен файл",
"Show in Files" : "Показване във файлове", "Show in Files" : "Показване във файлове",
"Download" : "Изтегляне", "Unshare file" : "Прекратяване на споделянето на файла",
"Remove attachment" : "Премахване на прикачен файл",
"Delete Attachment" : "Изтриване на прикачен файл", "Delete Attachment" : "Изтриване на прикачен файл",
"Restore Attachment" : "Възстановяване на прикачен файл", "Restore Attachment" : "Възстановяване на прикачен файл",
"File to share" : "Файл за споделяне", "File to share" : "Файл за споделяне",
@@ -200,7 +185,6 @@
"Created" : "Създаден", "Created" : "Създаден",
"The title cannot be empty." : "Заглавието не може да бъде празно.", "The title cannot be empty." : "Заглавието не може да бъде празно.",
"No comments yet. Begin the discussion!" : "Все още няма коментари. Започнете дискусията!", "No comments yet. Begin the discussion!" : "Все още няма коментари. Започнете дискусията!",
"Failed to load comments" : "Неуспешно зареждане на коментари",
"Assign a tag to this card…" : "Присвояване на етикет на тази карта ...", "Assign a tag to this card…" : "Присвояване на етикет на тази карта ...",
"Assign to users" : "Зачисляване към потребители", "Assign to users" : "Зачисляване към потребители",
"Assign to users/groups/circles" : "Зачисляване към потребители/групи/кръгове", "Assign to users/groups/circles" : "Зачисляване към потребители/групи/кръгове",
@@ -209,15 +193,10 @@
"Set a due date" : "Задаване на крайна дата", "Set a due date" : "Задаване на крайна дата",
"Remove due date" : "Премахни крайната дата", "Remove due date" : "Премахни крайната дата",
"Select Date" : "Изберете дата", "Select Date" : "Изберете дата",
"Today" : "Днес",
"Tomorrow" : "Утре",
"Next week" : "Следваща седмица",
"Next month" : "Следващия месец",
"Save" : "Запазване", "Save" : "Запазване",
"The comment cannot be empty." : "Коментарът не може да бъде празен.", "The comment cannot be empty." : "Коментарът не може да бъде празен.",
"The comment cannot be longer than 1000 characters." : "Коментарът не може да бъде по-дълъг от 1000 знака.", "The comment cannot be longer than 1000 characters." : "Коментарът не може да бъде по-дълъг от 1000 знака.",
"In reply to" : "В отговор на", "In reply to" : "В отговор на",
"Cancel reply" : "Отказ на отговор",
"Reply" : "Отговори", "Reply" : "Отговори",
"Update" : "Обновяване", "Update" : "Обновяване",
"Description" : "Описание", "Description" : "Описание",
@@ -230,7 +209,6 @@
"Write a description …" : "Напишете описание ...", "Write a description …" : "Напишете описание ...",
"Choose attachment" : "Избор на прикачен файл", "Choose attachment" : "Избор на прикачен файл",
"(group)" : "(група)", "(group)" : "(група)",
"{count} comments, {unread} unread" : "{count} коментари, {unread} непрочетени",
"Assign to me" : "Зачисляване към мен", "Assign to me" : "Зачисляване към мен",
"Unassign myself" : "Отмяна на зачисляването към мен", "Unassign myself" : "Отмяна на зачисляването към мен",
"Move card" : "Преместване на карта", "Move card" : "Преместване на карта",
@@ -266,16 +244,14 @@
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Сигурни ли сте, че искате да изтриете таблото {title}? Това ще изтрие всички данни на това табло.", "Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Сигурни ли сте, че искате да изтриете таблото {title}? Това ще изтрие всички данни на това табло.",
"Delete the board?" : "Изтриване на таблото?", "Delete the board?" : "Изтриване на таблото?",
"Loading filtered view" : "Зареждане на филтриран изглед", "Loading filtered view" : "Зареждане на филтриран изглед",
"Today" : "Днес",
"Tomorrow" : "Утре",
"This week" : "Тази седмица", "This week" : "Тази седмица",
"No due" : "Не се дължи", "No due" : "Не се дължи",
"Search for {searchQuery} in all boards" : "Търсене на {searchQuery} във всички табла",
"No results found" : "Няма намерени резултати",
"No upcoming cards" : "Няма предстоящи карти", "No upcoming cards" : "Няма предстоящи карти",
"upcoming cards" : "предстоящи карти", "upcoming cards" : "предстоящи карти",
"Link to a board" : "Линк към табло", "Link to a board" : "Линк към табло",
"Link to a card" : "Линк към карта", "Link to a card" : "Линк към карта",
"Create a card" : "Създаване на карта",
"Message from {author} in {conversationName}" : "Съобщение от {author} в {conversationName}",
"Something went wrong" : "Нещо се обърка", "Something went wrong" : "Нещо се обърка",
"Failed to upload {name}" : " Неуспешно качване на {name}", "Failed to upload {name}" : " Неуспешно качване на {name}",
"Maximum file size of {size} exceeded" : "Максималният размер на файла от {size} е надвишен", "Maximum file size of {size} exceeded" : "Максималният размер на файла от {size} е надвишен",

View File

@@ -15,14 +15,14 @@ OC.L10N.register(
"Delete" : "মুছে", "Delete" : "মুছে",
"Edit" : "সম্পাদনা", "Edit" : "সম্পাদনা",
"Modified" : "পরিবর্তিত", "Modified" : "পরিবর্তিত",
"Today" : "আজ",
"Tomorrow" : "আগামীকাল",
"Save" : "সংরক্ষণ", "Save" : "সংরক্ষণ",
"Reply" : "জবাব", "Reply" : "জবাব",
"Update" : "পরিবর্ধন", "Update" : "পরিবর্ধন",
"Description" : "বিবরণ", "Description" : "বিবরণ",
"(group)" : "(গোষ্ঠি)", "(group)" : "(গোষ্ঠি)",
"seconds ago" : "সেকেন্ড পূর্বে", "seconds ago" : "সেকেন্ড পূর্বে",
"Shared with you" : "Shared with you" "Shared with you" : "Shared with you",
"Today" : "আজ",
"Tomorrow" : "আগামীকাল"
}, },
"nplurals=2; plural=(n != 1);"); "nplurals=2; plural=(n != 1);");

View File

@@ -13,14 +13,14 @@
"Delete" : "মুছে", "Delete" : "মুছে",
"Edit" : "সম্পাদনা", "Edit" : "সম্পাদনা",
"Modified" : "পরিবর্তিত", "Modified" : "পরিবর্তিত",
"Today" : "আজ",
"Tomorrow" : "আগামীকাল",
"Save" : "সংরক্ষণ", "Save" : "সংরক্ষণ",
"Reply" : "জবাব", "Reply" : "জবাব",
"Update" : "পরিবর্ধন", "Update" : "পরিবর্ধন",
"Description" : "বিবরণ", "Description" : "বিবরণ",
"(group)" : "(গোষ্ঠি)", "(group)" : "(গোষ্ঠি)",
"seconds ago" : "সেকেন্ড পূর্বে", "seconds ago" : "সেকেন্ড পূর্বে",
"Shared with you" : "Shared with you" "Shared with you" : "Shared with you",
"Today" : "আজ",
"Tomorrow" : "আগামীকাল"
},"pluralForm" :"nplurals=2; plural=(n != 1);" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@@ -16,8 +16,6 @@ OC.L10N.register(
"Edit" : "Cheñch", "Edit" : "Cheñch",
"Comments" : "Displegadennoù", "Comments" : "Displegadennoù",
"Modified" : "Cheñchet", "Modified" : "Cheñchet",
"Today" : "Hiziv",
"Tomorrow" : "Warc'hoaz",
"Save" : "Enrollañ", "Save" : "Enrollañ",
"Reply" : "Respont", "Reply" : "Respont",
"Update" : "Adnevesaat", "Update" : "Adnevesaat",
@@ -25,6 +23,8 @@ OC.L10N.register(
"(group)" : "(strollad)", "(group)" : "(strollad)",
"seconds ago" : "eilenn zo", "seconds ago" : "eilenn zo",
"Shared with you" : "Rannet ganeoc'h", "Shared with you" : "Rannet ganeoc'h",
"Today" : "Hiziv",
"Tomorrow" : "Warc'hoaz",
"This week" : "Er sizhun-mañ" "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);"); "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);");

View File

@@ -14,8 +14,6 @@
"Edit" : "Cheñch", "Edit" : "Cheñch",
"Comments" : "Displegadennoù", "Comments" : "Displegadennoù",
"Modified" : "Cheñchet", "Modified" : "Cheñchet",
"Today" : "Hiziv",
"Tomorrow" : "Warc'hoaz",
"Save" : "Enrollañ", "Save" : "Enrollañ",
"Reply" : "Respont", "Reply" : "Respont",
"Update" : "Adnevesaat", "Update" : "Adnevesaat",
@@ -23,6 +21,8 @@
"(group)" : "(strollad)", "(group)" : "(strollad)",
"seconds ago" : "eilenn zo", "seconds ago" : "eilenn zo",
"Shared with you" : "Rannet ganeoc'h", "Shared with you" : "Rannet ganeoc'h",
"Today" : "Hiziv",
"Tomorrow" : "Warc'hoaz",
"This week" : "Er sizhun-mañ" "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);" },"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);"
} }

View File

@@ -15,12 +15,12 @@ OC.L10N.register(
"Members" : "Članovi", "Members" : "Članovi",
"Comments" : "Komentari", "Comments" : "Komentari",
"Modified" : "Izmijenjeno", "Modified" : "Izmijenjeno",
"Today" : "Danas",
"Tomorrow" : "Sutra",
"Save" : "Spremi", "Save" : "Spremi",
"Update" : "Ažuriraj", "Update" : "Ažuriraj",
"Description" : "Opis", "Description" : "Opis",
"Shared with you" : "Shared with you", "Shared with you" : "Shared with you",
"Today" : "Danas",
"Tomorrow" : "Sutra",
"Maximum file size of {size} exceeded" : "Maksimalna veličina datoteke prekoračena" "Maximum file size of {size} exceeded" : "Maksimalna veličina datoteke prekoračena"
}, },
"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"); "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);");

View File

@@ -13,12 +13,12 @@
"Members" : "Članovi", "Members" : "Članovi",
"Comments" : "Komentari", "Comments" : "Komentari",
"Modified" : "Izmijenjeno", "Modified" : "Izmijenjeno",
"Today" : "Danas",
"Tomorrow" : "Sutra",
"Save" : "Spremi", "Save" : "Spremi",
"Update" : "Ažuriraj", "Update" : "Ažuriraj",
"Description" : "Opis", "Description" : "Opis",
"Shared with you" : "Shared with you", "Shared with you" : "Shared with you",
"Today" : "Danas",
"Tomorrow" : "Sutra",
"Maximum file size of {size} exceeded" : "Maksimalna veličina datoteke prekoračena" "Maximum file size of {size} exceeded" : "Maksimalna veličina datoteke prekoračena"
},"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);" },"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"
} }

View File

@@ -70,15 +70,9 @@ OC.L10N.register(
"Upcoming cards" : "Pròximes targetes", "Upcoming cards" : "Pròximes targetes",
"Personal" : "Personal", "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.", "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 {deck-card} on {deck-board} to you." : "{user} us ha assignat la targeta {deck-card} a {deck-board}.",
"The card \"%s\" on \"%s\" has reached its due date." : "La targeta \"%s\" sobre \"%s\" ha assolit la seva data de venciment.", "The card \"%s\" on \"%s\" has reached its due date." : "La targeta \"%s\" sobre \"%s\" ha assolit la seva data de venciment.",
"The card {deck-card} on {deck-board} has reached its due date." : "La targeta {deck-card} a {deck-board} ha assolit la seva data de caducitat.",
"%s has mentioned you in a comment on \"%s\"." : "%s us ha anomenat en un comentari sobre \"%s\".", "%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 {deck-card}." : "{user} us ha mencionat en un comentari a {deck-card}.",
"The board \"%s\" has been shared with you by %s." : "El tauler \"%s\" se us ha compartit per %s.", "The board \"%s\" has been shared with you by %s." : "El tauler \"%s\" se us ha compartit per %s.",
"{user} has shared {deck-board} with you." : "{user} us ha compartit {board}.",
"Card comments" : "Comentaris de la targeta",
"%s on %s" : "%s a %s",
"No data was provided to create an attachment." : "No sha proporcionat cap dada per crear un fitxer adjunt.", "No data was provided to create an attachment." : "No sha proporcionat cap dada per crear un fitxer adjunt.",
"Finished" : "Acabat", "Finished" : "Acabat",
"To review" : "Per revisar", "To review" : "Per revisar",
@@ -100,9 +94,6 @@ OC.L10N.register(
"Could not write file to disk" : "No sha pogut escriure el fitxer al disc", "Could not write file to disk" : "No sha pogut escriure el fitxer al disc",
"A PHP extension stopped the file upload" : "Una extensió del PHP ha aturat la carregada del fitxer", "A PHP extension stopped the file upload" : "Una extensió del PHP ha aturat la carregada del fitxer",
"No file uploaded or file size exceeds maximum of %s" : "No s'ha carregat cap fitxer o la mida del fitxer sobrepassa el màxim de %s", "No file uploaded or file size exceeds maximum of %s" : "No s'ha carregat cap fitxer o la mida del fitxer sobrepassa el màxim de %s",
"Card not found" : "No s'ha trobat la targeta",
"Path is already shared with this card" : "Aquesta ruta ja ha estat compartida amb aquesta targeta",
"Invalid date, date format must be YYYY-MM-DD" : "La data no és vàlida, el format de la data ha de ser YYYY-MM-DD",
"Personal planning and team project organization" : "Planificació personal i organització de projectes en equip", "Personal planning and team project organization" : "Planificació personal i organització de projectes en equip",
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Tauler és una eina d'organització a l'estil kanban dirigida a la planificació personal i a l'organització de projectes per equips integrada a Nextcloud.\n\n\n- 📥 Afegiu les tasques en targetes i poseu-les en ordre\n- 📄 Apunteu notes addicionals en markdown\n- 🔖 Assigneu etiquetes per una organització encara millor\n- 👥 Compartiu amb el vostre equip, família o amics\n- 📎 Adjunteu fitxers i encasteu-los en la descripció en markdown\n- 💬 Debateu amb el vostre equip fent servir comentaris\n- ⚡ Mantingueu el seguiment de canvis al flux d'activitat\n- 🚀 Tingueu el vostre projecte organitzat", "Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Tauler és una eina d'organització a l'estil kanban dirigida a la planificació personal i a l'organització de projectes per equips integrada a Nextcloud.\n\n\n- 📥 Afegiu les tasques en targetes i poseu-les en ordre\n- 📄 Apunteu notes addicionals en markdown\n- 🔖 Assigneu etiquetes per una organització encara millor\n- 👥 Compartiu amb el vostre equip, família o amics\n- 📎 Adjunteu fitxers i encasteu-los en la descripció en markdown\n- 💬 Debateu amb el vostre equip fent servir comentaris\n- ⚡ Mantingueu el seguiment de canvis al flux d'activitat\n- 🚀 Tingueu el vostre projecte organitzat",
"Card details" : "Detalls de la targeta", "Card details" : "Detalls de la targeta",
@@ -110,16 +101,9 @@ OC.L10N.register(
"Select the board to link to a project" : "Selecciona el tauler per enllaçar a un projecte", "Select the board to link to a project" : "Selecciona el tauler per enllaçar a un projecte",
"Search by board title" : "Cerca per títol del tauler", "Search by board title" : "Cerca per títol del tauler",
"Select board" : "Selecciona un tauler", "Select board" : "Selecciona un tauler",
"Create a new card" : "Crea una nova targeta",
"Select a board" : "Selecciona un tauler", "Select a board" : "Selecciona un tauler",
"Select a list" : "Seleccioneu una llista", "Select a list" : "Seleccioneu una llista",
"Card title" : "Títol de la targeta",
"Cancel" : "Cancel·la", "Cancel" : "Cancel·la",
"Creating the new card …" : "Creant la nova targeta",
"Card \"{card}\" was added to \"{board}\"" : "La targeta \"{card}\" s'ha afegit a \"{board}\"",
"Open card" : "Obre la targeta",
"Close" : "Tanca",
"Create card" : "Crea una targeta",
"Select a card" : "Selecciona una targeta", "Select a card" : "Selecciona una targeta",
"Select the card to link to a project" : "Selecciona la targeta per enllaçar a un projecte", "Select the card to link to a project" : "Selecciona la targeta per enllaçar a un projecte",
"Link to card" : "Enllaç a la targeta", "Link to card" : "Enllaç a la targeta",
@@ -183,16 +167,9 @@ OC.L10N.register(
"title and color value must be provided" : "sha de proporcionar el valor del títol i del color", "title and color value must be provided" : "sha de proporcionar el valor del títol i del color",
"Board name" : "Nom del taulell", "Board name" : "Nom del taulell",
"Members" : "Membres", "Members" : "Membres",
"Upload new files" : "Puja nous fitxers",
"Share from Files" : "Comparteix des de Fitxers",
"Pending share" : "Compartició pendent",
"Add this attachment" : "Afegeix aquest adjunt", "Add this attachment" : "Afegeix aquest adjunt",
"Show in Files" : "Mostra a Fitxers",
"Remove attachment" : "Treu l'adjunt",
"Delete Attachment" : "Suprimeix ladjunt", "Delete Attachment" : "Suprimeix ladjunt",
"Restore Attachment" : "Restaura l'adjunt", "Restore Attachment" : "Restaura l'adjunt",
"File to share" : "Fitxer a compartir",
"Invalid path selected" : "S'ha seleccionat una ruta invàlida",
"Open in sidebar view" : "Obre a la vista de la barra lateral", "Open in sidebar view" : "Obre a la vista de la barra lateral",
"Open in bigger view" : "Obre a la vista més gran", "Open in bigger view" : "Obre a la vista més gran",
"Attachments" : "Adjunts", "Attachments" : "Adjunts",
@@ -201,7 +178,6 @@ OC.L10N.register(
"Created" : "Creat", "Created" : "Creat",
"The title cannot be empty." : "El títol no pot estar buit", "The title cannot be empty." : "El títol no pot estar buit",
"No comments yet. Begin the discussion!" : "No hi ha comentaris encara. Començar la discussió!", "No comments yet. Begin the discussion!" : "No hi ha comentaris encara. Començar la discussió!",
"Failed to load comments" : "No s'han pogut carregar els comentaris",
"Assign a tag to this card…" : "Assigna una etiqueta a aquesta targeta…", "Assign a tag to this card…" : "Assigna una etiqueta a aquesta targeta…",
"Assign to users" : "Assigna als usuaris", "Assign to users" : "Assigna als usuaris",
"Assign to users/groups/circles" : "Assigna a usuaris/grups/cercles", "Assign to users/groups/circles" : "Assigna a usuaris/grups/cercles",
@@ -210,15 +186,10 @@ OC.L10N.register(
"Set a due date" : "Definir una data de venciment", "Set a due date" : "Definir una data de venciment",
"Remove due date" : "Elimina la data de venciment", "Remove due date" : "Elimina la data de venciment",
"Select Date" : "Selecciona la data", "Select Date" : "Selecciona la data",
"Today" : "Avui",
"Tomorrow" : "Demà",
"Next week" : "Setmana següent",
"Next month" : "Mes següent",
"Save" : "Desa", "Save" : "Desa",
"The comment cannot be empty." : "El comentari no pot estar buit.", "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.", "The comment cannot be longer than 1000 characters." : "El comentari no pot ser més llarg que 1000 caràcters.",
"In reply to" : "En resposta a", "In reply to" : "En resposta a",
"Cancel reply" : "Cancel·la la resposta",
"Reply" : "Respon", "Reply" : "Respon",
"Update" : "Actualitza", "Update" : "Actualitza",
"Description" : "Descripció", "Description" : "Descripció",
@@ -231,7 +202,6 @@ OC.L10N.register(
"Write a description …" : "Escriviu una descripció...", "Write a description …" : "Escriviu una descripció...",
"Choose attachment" : "Triar adjunt", "Choose attachment" : "Triar adjunt",
"(group)" : "(grup)", "(group)" : "(grup)",
"{count} comments, {unread} unread" : "{count} comentaris, {unread} no llegits",
"Assign to me" : "Assigna'm a mi", "Assign to me" : "Assigna'm a mi",
"Unassign myself" : "Desasignar a mi mateix", "Unassign myself" : "Desasignar a mi mateix",
"Move card" : "Mou la targeta", "Move card" : "Mou la targeta",
@@ -248,7 +218,7 @@ OC.L10N.register(
"Show boards in calendar/tasks" : "Mostra els taulers al calendari/tasques", "Show boards in calendar/tasks" : "Mostra els taulers al calendari/tasques",
"Limit deck usage of groups" : "Limitar l'ús del tauler de grups", "Limit deck usage of groups" : "Limitar l'ús del tauler de grups",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Limitant el Tauler bloquejarà la creació de taulers als usuaris que no són part d'aquests grups. Els usuaris podran seguir treballant en els taulers que hagin estat compartits amb ells.", "Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Limitant el Tauler bloquejarà la creació de taulers als usuaris que no són part d'aquests grups. Els usuaris podran seguir treballant en els taulers que hagin estat compartits amb ells.",
"Board details" : "Detalls del tauler", "Board details" : "Detalls de la junta",
"Edit board" : "Edita el tauler", "Edit board" : "Edita el tauler",
"Clone board" : "Clonar tauler", "Clone board" : "Clonar tauler",
"Unarchive board" : "Desarxiva el tauler", "Unarchive board" : "Desarxiva el tauler",
@@ -267,22 +237,16 @@ 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.", "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?", "Delete the board?" : "Voleu suprimir el tauler?",
"Loading filtered view" : "S'està carregant la visualització filtrada", "Loading filtered view" : "S'està carregant la visualització filtrada",
"Today" : "Avui",
"Tomorrow" : "Demà",
"This week" : "Aquesta setmana", "This week" : "Aquesta setmana",
"No due" : "Sense venciment", "No due" : "Sense venciment",
"Search for {searchQuery} in all boards" : "Busca {searchQuery} a tots els taulers",
"No results found" : "No s'han trobat resultats",
"No upcoming cards" : "No hi ha pròximes targetes", "No upcoming cards" : "No hi ha pròximes targetes",
"upcoming cards" : "pròximes targetes", "upcoming cards" : "pròximes targetes",
"Link to a board" : "Enllaça a un tauler", "Link to a board" : "Enllaça a un tauler",
"Link to a card" : "Enllaç una targeta", "Link to a card" : "Enllaç una targeta",
"Create a card" : "Crea una targeta",
"Message from {author} in {conversationName}" : "Missatge de {author} a {conversationName}",
"Something went wrong" : "Alguna cosa ha anat malament", "Something went wrong" : "Alguna cosa ha anat malament",
"Failed to upload {name}" : "No s'ha pogut pujar {name}", "Failed to upload {name}" : "No s'ha pogut pujar {name}",
"Maximum file size of {size} exceeded" : "S'ha superat la mida màxima per fitxer de {size}", "Maximum file size of {size} exceeded" : "S'ha superat la mida màxima per fitxer de {size}"
"Error creating the share" : "S'ha produït un error en crear la compartició",
"Share with a Deck card" : "Compartir amb una targeta de Deck",
"Share {file} with a Deck card" : "Compartir {file} amb una targeta de Deck",
"Share" : "Compartir"
}, },
"nplurals=2; plural=(n != 1);"); "nplurals=2; plural=(n != 1);");

View File

@@ -68,15 +68,9 @@
"Upcoming cards" : "Pròximes targetes", "Upcoming cards" : "Pròximes targetes",
"Personal" : "Personal", "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.", "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 {deck-card} on {deck-board} to you." : "{user} us ha assignat la targeta {deck-card} a {deck-board}.",
"The card \"%s\" on \"%s\" has reached its due date." : "La targeta \"%s\" sobre \"%s\" ha assolit la seva data de venciment.", "The card \"%s\" on \"%s\" has reached its due date." : "La targeta \"%s\" sobre \"%s\" ha assolit la seva data de venciment.",
"The card {deck-card} on {deck-board} has reached its due date." : "La targeta {deck-card} a {deck-board} ha assolit la seva data de caducitat.",
"%s has mentioned you in a comment on \"%s\"." : "%s us ha anomenat en un comentari sobre \"%s\".", "%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 {deck-card}." : "{user} us ha mencionat en un comentari a {deck-card}.",
"The board \"%s\" has been shared with you by %s." : "El tauler \"%s\" se us ha compartit per %s.", "The board \"%s\" has been shared with you by %s." : "El tauler \"%s\" se us ha compartit per %s.",
"{user} has shared {deck-board} with you." : "{user} us ha compartit {board}.",
"Card comments" : "Comentaris de la targeta",
"%s on %s" : "%s a %s",
"No data was provided to create an attachment." : "No sha proporcionat cap dada per crear un fitxer adjunt.", "No data was provided to create an attachment." : "No sha proporcionat cap dada per crear un fitxer adjunt.",
"Finished" : "Acabat", "Finished" : "Acabat",
"To review" : "Per revisar", "To review" : "Per revisar",
@@ -98,9 +92,6 @@
"Could not write file to disk" : "No sha pogut escriure el fitxer al disc", "Could not write file to disk" : "No sha pogut escriure el fitxer al disc",
"A PHP extension stopped the file upload" : "Una extensió del PHP ha aturat la carregada del fitxer", "A PHP extension stopped the file upload" : "Una extensió del PHP ha aturat la carregada del fitxer",
"No file uploaded or file size exceeds maximum of %s" : "No s'ha carregat cap fitxer o la mida del fitxer sobrepassa el màxim de %s", "No file uploaded or file size exceeds maximum of %s" : "No s'ha carregat cap fitxer o la mida del fitxer sobrepassa el màxim de %s",
"Card not found" : "No s'ha trobat la targeta",
"Path is already shared with this card" : "Aquesta ruta ja ha estat compartida amb aquesta targeta",
"Invalid date, date format must be YYYY-MM-DD" : "La data no és vàlida, el format de la data ha de ser YYYY-MM-DD",
"Personal planning and team project organization" : "Planificació personal i organització de projectes en equip", "Personal planning and team project organization" : "Planificació personal i organització de projectes en equip",
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Tauler és una eina d'organització a l'estil kanban dirigida a la planificació personal i a l'organització de projectes per equips integrada a Nextcloud.\n\n\n- 📥 Afegiu les tasques en targetes i poseu-les en ordre\n- 📄 Apunteu notes addicionals en markdown\n- 🔖 Assigneu etiquetes per una organització encara millor\n- 👥 Compartiu amb el vostre equip, família o amics\n- 📎 Adjunteu fitxers i encasteu-los en la descripció en markdown\n- 💬 Debateu amb el vostre equip fent servir comentaris\n- ⚡ Mantingueu el seguiment de canvis al flux d'activitat\n- 🚀 Tingueu el vostre projecte organitzat", "Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Tauler és una eina d'organització a l'estil kanban dirigida a la planificació personal i a l'organització de projectes per equips integrada a Nextcloud.\n\n\n- 📥 Afegiu les tasques en targetes i poseu-les en ordre\n- 📄 Apunteu notes addicionals en markdown\n- 🔖 Assigneu etiquetes per una organització encara millor\n- 👥 Compartiu amb el vostre equip, família o amics\n- 📎 Adjunteu fitxers i encasteu-los en la descripció en markdown\n- 💬 Debateu amb el vostre equip fent servir comentaris\n- ⚡ Mantingueu el seguiment de canvis al flux d'activitat\n- 🚀 Tingueu el vostre projecte organitzat",
"Card details" : "Detalls de la targeta", "Card details" : "Detalls de la targeta",
@@ -108,16 +99,9 @@
"Select the board to link to a project" : "Selecciona el tauler per enllaçar a un projecte", "Select the board to link to a project" : "Selecciona el tauler per enllaçar a un projecte",
"Search by board title" : "Cerca per títol del tauler", "Search by board title" : "Cerca per títol del tauler",
"Select board" : "Selecciona un tauler", "Select board" : "Selecciona un tauler",
"Create a new card" : "Crea una nova targeta",
"Select a board" : "Selecciona un tauler", "Select a board" : "Selecciona un tauler",
"Select a list" : "Seleccioneu una llista", "Select a list" : "Seleccioneu una llista",
"Card title" : "Títol de la targeta",
"Cancel" : "Cancel·la", "Cancel" : "Cancel·la",
"Creating the new card …" : "Creant la nova targeta",
"Card \"{card}\" was added to \"{board}\"" : "La targeta \"{card}\" s'ha afegit a \"{board}\"",
"Open card" : "Obre la targeta",
"Close" : "Tanca",
"Create card" : "Crea una targeta",
"Select a card" : "Selecciona una targeta", "Select a card" : "Selecciona una targeta",
"Select the card to link to a project" : "Selecciona la targeta per enllaçar a un projecte", "Select the card to link to a project" : "Selecciona la targeta per enllaçar a un projecte",
"Link to card" : "Enllaç a la targeta", "Link to card" : "Enllaç a la targeta",
@@ -181,16 +165,9 @@
"title and color value must be provided" : "sha de proporcionar el valor del títol i del color", "title and color value must be provided" : "sha de proporcionar el valor del títol i del color",
"Board name" : "Nom del taulell", "Board name" : "Nom del taulell",
"Members" : "Membres", "Members" : "Membres",
"Upload new files" : "Puja nous fitxers",
"Share from Files" : "Comparteix des de Fitxers",
"Pending share" : "Compartició pendent",
"Add this attachment" : "Afegeix aquest adjunt", "Add this attachment" : "Afegeix aquest adjunt",
"Show in Files" : "Mostra a Fitxers",
"Remove attachment" : "Treu l'adjunt",
"Delete Attachment" : "Suprimeix ladjunt", "Delete Attachment" : "Suprimeix ladjunt",
"Restore Attachment" : "Restaura l'adjunt", "Restore Attachment" : "Restaura l'adjunt",
"File to share" : "Fitxer a compartir",
"Invalid path selected" : "S'ha seleccionat una ruta invàlida",
"Open in sidebar view" : "Obre a la vista de la barra lateral", "Open in sidebar view" : "Obre a la vista de la barra lateral",
"Open in bigger view" : "Obre a la vista més gran", "Open in bigger view" : "Obre a la vista més gran",
"Attachments" : "Adjunts", "Attachments" : "Adjunts",
@@ -199,7 +176,6 @@
"Created" : "Creat", "Created" : "Creat",
"The title cannot be empty." : "El títol no pot estar buit", "The title cannot be empty." : "El títol no pot estar buit",
"No comments yet. Begin the discussion!" : "No hi ha comentaris encara. Començar la discussió!", "No comments yet. Begin the discussion!" : "No hi ha comentaris encara. Començar la discussió!",
"Failed to load comments" : "No s'han pogut carregar els comentaris",
"Assign a tag to this card…" : "Assigna una etiqueta a aquesta targeta…", "Assign a tag to this card…" : "Assigna una etiqueta a aquesta targeta…",
"Assign to users" : "Assigna als usuaris", "Assign to users" : "Assigna als usuaris",
"Assign to users/groups/circles" : "Assigna a usuaris/grups/cercles", "Assign to users/groups/circles" : "Assigna a usuaris/grups/cercles",
@@ -208,15 +184,10 @@
"Set a due date" : "Definir una data de venciment", "Set a due date" : "Definir una data de venciment",
"Remove due date" : "Elimina la data de venciment", "Remove due date" : "Elimina la data de venciment",
"Select Date" : "Selecciona la data", "Select Date" : "Selecciona la data",
"Today" : "Avui",
"Tomorrow" : "Demà",
"Next week" : "Setmana següent",
"Next month" : "Mes següent",
"Save" : "Desa", "Save" : "Desa",
"The comment cannot be empty." : "El comentari no pot estar buit.", "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.", "The comment cannot be longer than 1000 characters." : "El comentari no pot ser més llarg que 1000 caràcters.",
"In reply to" : "En resposta a", "In reply to" : "En resposta a",
"Cancel reply" : "Cancel·la la resposta",
"Reply" : "Respon", "Reply" : "Respon",
"Update" : "Actualitza", "Update" : "Actualitza",
"Description" : "Descripció", "Description" : "Descripció",
@@ -229,7 +200,6 @@
"Write a description …" : "Escriviu una descripció...", "Write a description …" : "Escriviu una descripció...",
"Choose attachment" : "Triar adjunt", "Choose attachment" : "Triar adjunt",
"(group)" : "(grup)", "(group)" : "(grup)",
"{count} comments, {unread} unread" : "{count} comentaris, {unread} no llegits",
"Assign to me" : "Assigna'm a mi", "Assign to me" : "Assigna'm a mi",
"Unassign myself" : "Desasignar a mi mateix", "Unassign myself" : "Desasignar a mi mateix",
"Move card" : "Mou la targeta", "Move card" : "Mou la targeta",
@@ -246,7 +216,7 @@
"Show boards in calendar/tasks" : "Mostra els taulers al calendari/tasques", "Show boards in calendar/tasks" : "Mostra els taulers al calendari/tasques",
"Limit deck usage of groups" : "Limitar l'ús del tauler de grups", "Limit deck usage of groups" : "Limitar l'ús del tauler de grups",
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Limitant el Tauler bloquejarà la creació de taulers als usuaris que no són part d'aquests grups. Els usuaris podran seguir treballant en els taulers que hagin estat compartits amb ells.", "Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Limitant el Tauler bloquejarà la creació de taulers als usuaris que no són part d'aquests grups. Els usuaris podran seguir treballant en els taulers que hagin estat compartits amb ells.",
"Board details" : "Detalls del tauler", "Board details" : "Detalls de la junta",
"Edit board" : "Edita el tauler", "Edit board" : "Edita el tauler",
"Clone board" : "Clonar tauler", "Clone board" : "Clonar tauler",
"Unarchive board" : "Desarxiva el tauler", "Unarchive board" : "Desarxiva el tauler",
@@ -265,22 +235,16 @@
"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.", "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?", "Delete the board?" : "Voleu suprimir el tauler?",
"Loading filtered view" : "S'està carregant la visualització filtrada", "Loading filtered view" : "S'està carregant la visualització filtrada",
"Today" : "Avui",
"Tomorrow" : "Demà",
"This week" : "Aquesta setmana", "This week" : "Aquesta setmana",
"No due" : "Sense venciment", "No due" : "Sense venciment",
"Search for {searchQuery} in all boards" : "Busca {searchQuery} a tots els taulers",
"No results found" : "No s'han trobat resultats",
"No upcoming cards" : "No hi ha pròximes targetes", "No upcoming cards" : "No hi ha pròximes targetes",
"upcoming cards" : "pròximes targetes", "upcoming cards" : "pròximes targetes",
"Link to a board" : "Enllaça a un tauler", "Link to a board" : "Enllaça a un tauler",
"Link to a card" : "Enllaç una targeta", "Link to a card" : "Enllaç una targeta",
"Create a card" : "Crea una targeta",
"Message from {author} in {conversationName}" : "Missatge de {author} a {conversationName}",
"Something went wrong" : "Alguna cosa ha anat malament", "Something went wrong" : "Alguna cosa ha anat malament",
"Failed to upload {name}" : "No s'ha pogut pujar {name}", "Failed to upload {name}" : "No s'ha pogut pujar {name}",
"Maximum file size of {size} exceeded" : "S'ha superat la mida màxima per fitxer de {size}", "Maximum file size of {size} exceeded" : "S'ha superat la mida màxima per fitxer de {size}"
"Error creating the share" : "S'ha produït un error en crear la compartició",
"Share with a Deck card" : "Compartir amb una targeta de Deck",
"Share {file} with a Deck card" : "Compartir {file} amb una targeta de Deck",
"Share" : "Compartir"
},"pluralForm" :"nplurals=2; plural=(n != 1);" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@@ -85,7 +85,7 @@ OC.L10N.register(
"Action needed" : "Nutná akce", "Action needed" : "Nutná akce",
"Later" : "Později", "Later" : "Později",
"copy" : "kopie", "copy" : "kopie",
"To do" : "Zbývá udělat", "To do" : "Udělat",
"Doing" : "Provádí se", "Doing" : "Provádí se",
"Done" : "Hotovo", "Done" : "Hotovo",
"Example Task 3" : "Třetí úkol pro ukázku", "Example Task 3" : "Třetí úkol pro ukázku",
@@ -101,7 +101,7 @@ OC.L10N.register(
"A PHP extension stopped the file upload" : "PHP rozšíření zastavilo nahrávání souboru.", "A PHP extension stopped the file upload" : "PHP rozšíření zastavilo nahrávání souboru.",
"No file uploaded or file size exceeds maximum of %s" : "Nebyl nahrán žádný soubor nebo jeho velikost přesáhla %s", "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", "Card not found" : "Karta nebyla nalezena",
"Path is already shared with this card" : "Popis umístění už je touto kartou sdíleno", "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 je třeba, aby formát data byl RRRR-MM-DD",
"Personal planning and team project organization" : "Osobní plánování a organizování týmového projektu", "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", "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",
@@ -185,11 +185,9 @@ OC.L10N.register(
"Members" : "Členové", "Members" : "Členové",
"Upload new files" : "Nahrát nové soubory", "Upload new files" : "Nahrát nové soubory",
"Share from Files" : "Sdílet ze Souborů", "Share from Files" : "Sdílet ze Souborů",
"Pending share" : "Čekající sdílení",
"Add this attachment" : "Přidat tuto přílohu", "Add this attachment" : "Přidat tuto přílohu",
"Show in Files" : "Zobrazit v Souborech", "Show in Files" : "Zobrazit v Souborech",
"Download" : "Stáhnout", "Unshare file" : "Přestat sdílet soubor",
"Remove attachment" : "Odebrat přílohu",
"Delete Attachment" : "Smazat přílohu", "Delete Attachment" : "Smazat přílohu",
"Restore Attachment" : "Obnovit přílohu", "Restore Attachment" : "Obnovit přílohu",
"File to share" : "Soubor ke sdílení", "File to share" : "Soubor ke sdílení",
@@ -211,10 +209,6 @@ OC.L10N.register(
"Set a due date" : "Vybrat termín", "Set a due date" : "Vybrat termín",
"Remove due date" : "Odstranit termín", "Remove due date" : "Odstranit termín",
"Select Date" : "Vybrat datum", "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", "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ů.", "The comment cannot be longer than 1000 characters." : "Délka komentáře může být nejvýše 1 000 znaků.",
@@ -268,6 +262,8 @@ 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.", "Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Opravdu chcete tabuly {title} smazat? Toto smaže veškerá data této tabule.",
"Delete the board?" : "Smazat tabuli?", "Delete the board?" : "Smazat tabuli?",
"Loading filtered view" : "Načítání filtrovaného pohledu", "Loading filtered view" : "Načítání filtrovaného pohledu",
"Today" : "Dnes",
"Tomorrow" : "Zítra",
"This week" : "Tento týden", "This week" : "Tento týden",
"No due" : "Žádný termín", "No due" : "Žádný termín",
"Search for {searchQuery} in all boards" : "Hledat {searchQuery} na všech tabulích", "Search for {searchQuery} in all boards" : "Hledat {searchQuery} na všech tabulích",

View File

@@ -83,7 +83,7 @@
"Action needed" : "Nutná akce", "Action needed" : "Nutná akce",
"Later" : "Později", "Later" : "Později",
"copy" : "kopie", "copy" : "kopie",
"To do" : "Zbývá udělat", "To do" : "Udělat",
"Doing" : "Provádí se", "Doing" : "Provádí se",
"Done" : "Hotovo", "Done" : "Hotovo",
"Example Task 3" : "Třetí úkol pro ukázku", "Example Task 3" : "Třetí úkol pro ukázku",
@@ -99,7 +99,7 @@
"A PHP extension stopped the file upload" : "PHP rozšíření zastavilo nahrávání souboru.", "A PHP extension stopped the file upload" : "PHP rozšíření zastavilo nahrávání souboru.",
"No file uploaded or file size exceeds maximum of %s" : "Nebyl nahrán žádný soubor nebo jeho velikost přesáhla %s", "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", "Card not found" : "Karta nebyla nalezena",
"Path is already shared with this card" : "Popis umístění už je touto kartou sdíleno", "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 je třeba, aby formát data byl RRRR-MM-DD",
"Personal planning and team project organization" : "Osobní plánování a organizování týmového projektu", "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", "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",
@@ -183,11 +183,9 @@
"Members" : "Členové", "Members" : "Členové",
"Upload new files" : "Nahrát nové soubory", "Upload new files" : "Nahrát nové soubory",
"Share from Files" : "Sdílet ze Souborů", "Share from Files" : "Sdílet ze Souborů",
"Pending share" : "Čekající sdílení",
"Add this attachment" : "Přidat tuto přílohu", "Add this attachment" : "Přidat tuto přílohu",
"Show in Files" : "Zobrazit v Souborech", "Show in Files" : "Zobrazit v Souborech",
"Download" : "Stáhnout", "Unshare file" : "Přestat sdílet soubor",
"Remove attachment" : "Odebrat přílohu",
"Delete Attachment" : "Smazat přílohu", "Delete Attachment" : "Smazat přílohu",
"Restore Attachment" : "Obnovit přílohu", "Restore Attachment" : "Obnovit přílohu",
"File to share" : "Soubor ke sdílení", "File to share" : "Soubor ke sdílení",
@@ -209,10 +207,6 @@
"Set a due date" : "Vybrat termín", "Set a due date" : "Vybrat termín",
"Remove due date" : "Odstranit termín", "Remove due date" : "Odstranit termín",
"Select Date" : "Vybrat datum", "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", "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ů.", "The comment cannot be longer than 1000 characters." : "Délka komentáře může být nejvýše 1 000 znaků.",
@@ -266,6 +260,8 @@
"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.", "Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Opravdu chcete tabuly {title} smazat? Toto smaže veškerá data této tabule.",
"Delete the board?" : "Smazat tabuli?", "Delete the board?" : "Smazat tabuli?",
"Loading filtered view" : "Načítání filtrovaného pohledu", "Loading filtered view" : "Načítání filtrovaného pohledu",
"Today" : "Dnes",
"Tomorrow" : "Zítra",
"This week" : "Tento týden", "This week" : "Tento týden",
"No due" : "Žádný termín", "No due" : "Žádný termín",
"Search for {searchQuery} in all boards" : "Hledat {searchQuery} na všech tabulích", "Search for {searchQuery} in all boards" : "Hledat {searchQuery} na všech tabulích",

View File

@@ -16,13 +16,13 @@ OC.L10N.register(
"Edit" : "Golygu", "Edit" : "Golygu",
"Modified" : "Addaswyd", "Modified" : "Addaswyd",
"Select Date" : "Dewis Dyddiad", "Select Date" : "Dewis Dyddiad",
"Today" : "Heddiw",
"Save" : "Cadw", "Save" : "Cadw",
"Update" : "Diweddaru", "Update" : "Diweddaru",
"Description" : "Disgrifiad", "Description" : "Disgrifiad",
"seconds ago" : "eiliad yn ôl", "seconds ago" : "eiliad yn ôl",
"Shared with you" : "Shared with you", "Shared with you" : "Shared with you",
"An error occurred" : "Digwyddodd gwall", "An error occurred" : "Digwyddodd gwall",
"Today" : "Heddiw",
"This week" : "Wythnos yma" "This week" : "Wythnos yma"
}, },
"nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;"); "nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;");

View File

@@ -14,13 +14,13 @@
"Edit" : "Golygu", "Edit" : "Golygu",
"Modified" : "Addaswyd", "Modified" : "Addaswyd",
"Select Date" : "Dewis Dyddiad", "Select Date" : "Dewis Dyddiad",
"Today" : "Heddiw",
"Save" : "Cadw", "Save" : "Cadw",
"Update" : "Diweddaru", "Update" : "Diweddaru",
"Description" : "Disgrifiad", "Description" : "Disgrifiad",
"seconds ago" : "eiliad yn ôl", "seconds ago" : "eiliad yn ôl",
"Shared with you" : "Shared with you", "Shared with you" : "Shared with you",
"An error occurred" : "Digwyddodd gwall", "An error occurred" : "Digwyddodd gwall",
"Today" : "Heddiw",
"This week" : "Wythnos yma" "This week" : "Wythnos yma"
},"pluralForm" :"nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;" },"pluralForm" :"nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;"
} }

View File

@@ -137,6 +137,7 @@ OC.L10N.register(
"Share from Files" : "Del fra Filer", "Share from Files" : "Del fra Filer",
"Add this attachment" : "Tilføj denne vedhæftning", "Add this attachment" : "Tilføj denne vedhæftning",
"Show in Files" : "Vis i Filer", "Show in Files" : "Vis i Filer",
"Unshare file" : "Stop deling af fil",
"Delete Attachment" : "Slet vedhæftning", "Delete Attachment" : "Slet vedhæftning",
"Restore Attachment" : "Genskab vedhæftning", "Restore Attachment" : "Genskab vedhæftning",
"File to share" : "Vælg fil til deling", "File to share" : "Vælg fil til deling",
@@ -157,8 +158,6 @@ OC.L10N.register(
"Set a due date" : "Sæt en forfaldsdato", "Set a due date" : "Sæt en forfaldsdato",
"Remove due date" : "Fjern forfaldsdato", "Remove due date" : "Fjern forfaldsdato",
"Select Date" : "Vælg dato", "Select Date" : "Vælg dato",
"Today" : "I dag",
"Tomorrow" : "I morgen",
"Save" : "Gem", "Save" : "Gem",
"The comment cannot be empty." : "Kommentaren kan ikke være tom.", "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.", "The comment cannot be longer than 1000 characters." : "Kommentaren kan ikke være længere end 1000 tegn.",
@@ -210,6 +209,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.", "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?", "Delete the board?" : "Slet tavlen?",
"Loading filtered view" : "Indlæser filtreret visning", "Loading filtered view" : "Indlæser filtreret visning",
"Today" : "I dag",
"Tomorrow" : "I morgen",
"This week" : "Denne uge", "This week" : "Denne uge",
"No due" : "Ikke forfalden", "No due" : "Ikke forfalden",
"No upcoming cards" : "Ingen kommende kort", "No upcoming cards" : "Ingen kommende kort",

View File

@@ -135,6 +135,7 @@
"Share from Files" : "Del fra Filer", "Share from Files" : "Del fra Filer",
"Add this attachment" : "Tilføj denne vedhæftning", "Add this attachment" : "Tilføj denne vedhæftning",
"Show in Files" : "Vis i Filer", "Show in Files" : "Vis i Filer",
"Unshare file" : "Stop deling af fil",
"Delete Attachment" : "Slet vedhæftning", "Delete Attachment" : "Slet vedhæftning",
"Restore Attachment" : "Genskab vedhæftning", "Restore Attachment" : "Genskab vedhæftning",
"File to share" : "Vælg fil til deling", "File to share" : "Vælg fil til deling",
@@ -155,8 +156,6 @@
"Set a due date" : "Sæt en forfaldsdato", "Set a due date" : "Sæt en forfaldsdato",
"Remove due date" : "Fjern forfaldsdato", "Remove due date" : "Fjern forfaldsdato",
"Select Date" : "Vælg dato", "Select Date" : "Vælg dato",
"Today" : "I dag",
"Tomorrow" : "I morgen",
"Save" : "Gem", "Save" : "Gem",
"The comment cannot be empty." : "Kommentaren kan ikke være tom.", "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.", "The comment cannot be longer than 1000 characters." : "Kommentaren kan ikke være længere end 1000 tegn.",
@@ -208,6 +207,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.", "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?", "Delete the board?" : "Slet tavlen?",
"Loading filtered view" : "Indlæser filtreret visning", "Loading filtered view" : "Indlæser filtreret visning",
"Today" : "I dag",
"Tomorrow" : "I morgen",
"This week" : "Denne uge", "This week" : "Denne uge",
"No due" : "Ikke forfalden", "No due" : "Ikke forfalden",
"No upcoming cards" : "Ingen kommende kort", "No upcoming cards" : "Ingen kommende kort",

View File

@@ -185,11 +185,9 @@ OC.L10N.register(
"Members" : "Mitglieder", "Members" : "Mitglieder",
"Upload new files" : "Neue Dateien hochladen", "Upload new files" : "Neue Dateien hochladen",
"Share from Files" : "Aus Dateien heraus teilen", "Share from Files" : "Aus Dateien heraus teilen",
"Pending share" : "Ausstehende Freigabe",
"Add this attachment" : "Diesen Anhang anhängen", "Add this attachment" : "Diesen Anhang anhängen",
"Show in Files" : "In Dateien anzeigen", "Show in Files" : "In Dateien anzeigen",
"Download" : "Herunterladen", "Unshare file" : "Datei nicht mehr teilen",
"Remove attachment" : "Anhang entfernen",
"Delete Attachment" : "Anhang löschen", "Delete Attachment" : "Anhang löschen",
"Restore Attachment" : "Anhang wiederherstellen", "Restore Attachment" : "Anhang wiederherstellen",
"File to share" : "Zu teilende Datei", "File to share" : "Zu teilende Datei",
@@ -211,10 +209,6 @@ OC.L10N.register(
"Set a due date" : "Ein Ablaufdatum setzen", "Set a due date" : "Ein Ablaufdatum setzen",
"Remove due date" : "Fälligkeitsdatum löschen", "Remove due date" : "Fälligkeitsdatum löschen",
"Select Date" : "Datum auswählen", "Select Date" : "Datum auswählen",
"Today" : "Heute",
"Tomorrow" : "Morgen",
"Next week" : "Nächste Woche",
"Next month" : "Nächster Monat",
"Save" : "Speichern", "Save" : "Speichern",
"The comment cannot be empty." : "Der Kommentar darf nicht leer sein.", "The comment cannot be empty." : "Der Kommentar darf nicht leer sein.",
"The comment cannot be longer than 1000 characters." : "Der Kommentar darf nicht länger als 1000 Zeichen sein.", "The comment cannot be longer than 1000 characters." : "Der Kommentar darf nicht länger als 1000 Zeichen sein.",
@@ -268,6 +262,8 @@ OC.L10N.register(
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Möchtest Du wirklich das Board {title} mit all seinen Daten löschen?", "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?",
"Delete the board?" : "Das Board löschen?", "Delete the board?" : "Das Board löschen?",
"Loading filtered view" : "Lade gefilterte Ansicht", "Loading filtered view" : "Lade gefilterte Ansicht",
"Today" : "Heute",
"Tomorrow" : "Morgen",
"This week" : "Diese Woche", "This week" : "Diese Woche",
"No due" : "Kein Fälligkeitsdatum", "No due" : "Kein Fälligkeitsdatum",
"Search for {searchQuery} in all boards" : "Suche nach {searchQuery} in allen Boards", "Search for {searchQuery} in all boards" : "Suche nach {searchQuery} in allen Boards",

View File

@@ -183,11 +183,9 @@
"Members" : "Mitglieder", "Members" : "Mitglieder",
"Upload new files" : "Neue Dateien hochladen", "Upload new files" : "Neue Dateien hochladen",
"Share from Files" : "Aus Dateien heraus teilen", "Share from Files" : "Aus Dateien heraus teilen",
"Pending share" : "Ausstehende Freigabe",
"Add this attachment" : "Diesen Anhang anhängen", "Add this attachment" : "Diesen Anhang anhängen",
"Show in Files" : "In Dateien anzeigen", "Show in Files" : "In Dateien anzeigen",
"Download" : "Herunterladen", "Unshare file" : "Datei nicht mehr teilen",
"Remove attachment" : "Anhang entfernen",
"Delete Attachment" : "Anhang löschen", "Delete Attachment" : "Anhang löschen",
"Restore Attachment" : "Anhang wiederherstellen", "Restore Attachment" : "Anhang wiederherstellen",
"File to share" : "Zu teilende Datei", "File to share" : "Zu teilende Datei",
@@ -209,10 +207,6 @@
"Set a due date" : "Ein Ablaufdatum setzen", "Set a due date" : "Ein Ablaufdatum setzen",
"Remove due date" : "Fälligkeitsdatum löschen", "Remove due date" : "Fälligkeitsdatum löschen",
"Select Date" : "Datum auswählen", "Select Date" : "Datum auswählen",
"Today" : "Heute",
"Tomorrow" : "Morgen",
"Next week" : "Nächste Woche",
"Next month" : "Nächster Monat",
"Save" : "Speichern", "Save" : "Speichern",
"The comment cannot be empty." : "Der Kommentar darf nicht leer sein.", "The comment cannot be empty." : "Der Kommentar darf nicht leer sein.",
"The comment cannot be longer than 1000 characters." : "Der Kommentar darf nicht länger als 1000 Zeichen sein.", "The comment cannot be longer than 1000 characters." : "Der Kommentar darf nicht länger als 1000 Zeichen sein.",
@@ -266,6 +260,8 @@
"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 das Board {title} mit all seinen Daten löschen?",
"Delete the board?" : "Das Board löschen?", "Delete the board?" : "Das Board löschen?",
"Loading filtered view" : "Lade gefilterte Ansicht", "Loading filtered view" : "Lade gefilterte Ansicht",
"Today" : "Heute",
"Tomorrow" : "Morgen",
"This week" : "Diese Woche", "This week" : "Diese Woche",
"No due" : "Kein Fälligkeitsdatum", "No due" : "Kein Fälligkeitsdatum",
"Search for {searchQuery} in all boards" : "Suche nach {searchQuery} in allen Boards", "Search for {searchQuery} in all boards" : "Suche nach {searchQuery} in allen Boards",

View File

@@ -185,11 +185,9 @@ OC.L10N.register(
"Members" : "Mitglieder", "Members" : "Mitglieder",
"Upload new files" : "Neue Dateien hochladen", "Upload new files" : "Neue Dateien hochladen",
"Share from Files" : "Aus Dateien heraus teilen", "Share from Files" : "Aus Dateien heraus teilen",
"Pending share" : "Ausstehende Freigabe",
"Add this attachment" : "Diesen Anhang anhängen", "Add this attachment" : "Diesen Anhang anhängen",
"Show in Files" : "In Dateien anzeigen", "Show in Files" : "In Dateien anzeigen",
"Download" : "Herunterladen", "Unshare file" : "Datei nicht mehr teilen",
"Remove attachment" : "Anhang entfernen",
"Delete Attachment" : "Anhang löschen", "Delete Attachment" : "Anhang löschen",
"Restore Attachment" : "Anhang wiederherstellen", "Restore Attachment" : "Anhang wiederherstellen",
"File to share" : "Zu teilende Datei", "File to share" : "Zu teilende Datei",
@@ -211,10 +209,6 @@ OC.L10N.register(
"Set a due date" : "Ein Ablaufdatum setzen", "Set a due date" : "Ein Ablaufdatum setzen",
"Remove due date" : "Fälligkeitsdatum löschen", "Remove due date" : "Fälligkeitsdatum löschen",
"Select Date" : "Datum auswählen", "Select Date" : "Datum auswählen",
"Today" : "Heute",
"Tomorrow" : "Morgen",
"Next week" : "Nächste Woche",
"Next month" : "Nächsten Monat",
"Save" : "Speichern", "Save" : "Speichern",
"The comment cannot be empty." : "Der Kommentar darf nicht leer sein.", "The comment cannot be empty." : "Der Kommentar darf nicht leer sein.",
"The comment cannot be longer than 1000 characters." : "Der Kommentar darf nicht länger als 1000 Zeichen sein.", "The comment cannot be longer than 1000 characters." : "Der Kommentar darf nicht länger als 1000 Zeichen sein.",
@@ -268,6 +262,8 @@ 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?", "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?", "Delete the board?" : "Das Board löschen?",
"Loading filtered view" : "Lade gefilterte Ansicht", "Loading filtered view" : "Lade gefilterte Ansicht",
"Today" : "Heute",
"Tomorrow" : "Morgen",
"This week" : "Diese Woche", "This week" : "Diese Woche",
"No due" : "Kein Fälligkeitsdatum", "No due" : "Kein Fälligkeitsdatum",
"Search for {searchQuery} in all boards" : "Suche nach {searchQuery} in allen Boards", "Search for {searchQuery} in all boards" : "Suche nach {searchQuery} in allen Boards",

View File

@@ -183,11 +183,9 @@
"Members" : "Mitglieder", "Members" : "Mitglieder",
"Upload new files" : "Neue Dateien hochladen", "Upload new files" : "Neue Dateien hochladen",
"Share from Files" : "Aus Dateien heraus teilen", "Share from Files" : "Aus Dateien heraus teilen",
"Pending share" : "Ausstehende Freigabe",
"Add this attachment" : "Diesen Anhang anhängen", "Add this attachment" : "Diesen Anhang anhängen",
"Show in Files" : "In Dateien anzeigen", "Show in Files" : "In Dateien anzeigen",
"Download" : "Herunterladen", "Unshare file" : "Datei nicht mehr teilen",
"Remove attachment" : "Anhang entfernen",
"Delete Attachment" : "Anhang löschen", "Delete Attachment" : "Anhang löschen",
"Restore Attachment" : "Anhang wiederherstellen", "Restore Attachment" : "Anhang wiederherstellen",
"File to share" : "Zu teilende Datei", "File to share" : "Zu teilende Datei",
@@ -209,10 +207,6 @@
"Set a due date" : "Ein Ablaufdatum setzen", "Set a due date" : "Ein Ablaufdatum setzen",
"Remove due date" : "Fälligkeitsdatum löschen", "Remove due date" : "Fälligkeitsdatum löschen",
"Select Date" : "Datum auswählen", "Select Date" : "Datum auswählen",
"Today" : "Heute",
"Tomorrow" : "Morgen",
"Next week" : "Nächste Woche",
"Next month" : "Nächsten Monat",
"Save" : "Speichern", "Save" : "Speichern",
"The comment cannot be empty." : "Der Kommentar darf nicht leer sein.", "The comment cannot be empty." : "Der Kommentar darf nicht leer sein.",
"The comment cannot be longer than 1000 characters." : "Der Kommentar darf nicht länger als 1000 Zeichen sein.", "The comment cannot be longer than 1000 characters." : "Der Kommentar darf nicht länger als 1000 Zeichen sein.",
@@ -266,6 +260,8 @@
"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?", "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?", "Delete the board?" : "Das Board löschen?",
"Loading filtered view" : "Lade gefilterte Ansicht", "Loading filtered view" : "Lade gefilterte Ansicht",
"Today" : "Heute",
"Tomorrow" : "Morgen",
"This week" : "Diese Woche", "This week" : "Diese Woche",
"No due" : "Kein Fälligkeitsdatum", "No due" : "Kein Fälligkeitsdatum",
"Search for {searchQuery} in all boards" : "Suche nach {searchQuery} in allen Boards", "Search for {searchQuery} in all boards" : "Suche nach {searchQuery} in allen Boards",

View File

@@ -179,6 +179,7 @@ OC.L10N.register(
"Share from Files" : "Κοινή χρήση από αρχεία", "Share from Files" : "Κοινή χρήση από αρχεία",
"Add this attachment" : "Προσθήκη αυτού του συνημμένου", "Add this attachment" : "Προσθήκη αυτού του συνημμένου",
"Show in Files" : "Εμφάνιση σε αρχεία", "Show in Files" : "Εμφάνιση σε αρχεία",
"Unshare file" : "Κατάργηση κοινής χρήσης αρχείου",
"Delete Attachment" : "Διαγραφή Συνημμένου", "Delete Attachment" : "Διαγραφή Συνημμένου",
"Restore Attachment" : "Επαναφορά Συνημμένου", "Restore Attachment" : "Επαναφορά Συνημμένου",
"File to share" : "Αρχείο για κοινή χρήση", "File to share" : "Αρχείο για κοινή χρήση",
@@ -199,8 +200,6 @@ OC.L10N.register(
"Set a due date" : "Καθορίστε ημερομηνίας λήξης", "Set a due date" : "Καθορίστε ημερομηνίας λήξης",
"Remove due date" : "Αφαίρεση ημερομηνίας λήξης", "Remove due date" : "Αφαίρεση ημερομηνίας λήξης",
"Select Date" : "Επέλεξε Ημέρα", "Select Date" : "Επέλεξε Ημέρα",
"Today" : "Σήμερα",
"Tomorrow" : "Αύριο",
"Save" : "Αποθήκευση", "Save" : "Αποθήκευση",
"The comment cannot be empty." : "Το σχόλιο δεν μπορεί να είναι κενό.", "The comment cannot be empty." : "Το σχόλιο δεν μπορεί να είναι κενό.",
"The comment cannot be longer than 1000 characters." : "Το σχόλιο δεν μπορεί να έχι περισσότερους από 1000 χαρακτήρες.", "The comment cannot be longer than 1000 characters." : "Το σχόλιο δεν μπορεί να έχι περισσότερους από 1000 χαρακτήρες.",
@@ -252,6 +251,8 @@ OC.L10N.register(
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Είστε βέβαιοι ότι θέλετε να διαγράψετε τον πίνακα {title}; Θα διαγραφούν όλα τα δεδομένα.", "Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Είστε βέβαιοι ότι θέλετε να διαγράψετε τον πίνακα {title}; Θα διαγραφούν όλα τα δεδομένα.",
"Delete the board?" : "Διαγραφή πίνακα;", "Delete the board?" : "Διαγραφή πίνακα;",
"Loading filtered view" : "Φόρτωση εμφάνισης με βάση το φίλτρο", "Loading filtered view" : "Φόρτωση εμφάνισης με βάση το φίλτρο",
"Today" : "Σήμερα",
"Tomorrow" : "Αύριο",
"This week" : "Αυτή την εβδομάδα", "This week" : "Αυτή την εβδομάδα",
"No due" : "Χωρίς λήξη", "No due" : "Χωρίς λήξη",
"No upcoming cards" : "Δεν υπάρχουν επερχόμενες κάρτες", "No upcoming cards" : "Δεν υπάρχουν επερχόμενες κάρτες",

View File

@@ -177,6 +177,7 @@
"Share from Files" : "Κοινή χρήση από αρχεία", "Share from Files" : "Κοινή χρήση από αρχεία",
"Add this attachment" : "Προσθήκη αυτού του συνημμένου", "Add this attachment" : "Προσθήκη αυτού του συνημμένου",
"Show in Files" : "Εμφάνιση σε αρχεία", "Show in Files" : "Εμφάνιση σε αρχεία",
"Unshare file" : "Κατάργηση κοινής χρήσης αρχείου",
"Delete Attachment" : "Διαγραφή Συνημμένου", "Delete Attachment" : "Διαγραφή Συνημμένου",
"Restore Attachment" : "Επαναφορά Συνημμένου", "Restore Attachment" : "Επαναφορά Συνημμένου",
"File to share" : "Αρχείο για κοινή χρήση", "File to share" : "Αρχείο για κοινή χρήση",
@@ -197,8 +198,6 @@
"Set a due date" : "Καθορίστε ημερομηνίας λήξης", "Set a due date" : "Καθορίστε ημερομηνίας λήξης",
"Remove due date" : "Αφαίρεση ημερομηνίας λήξης", "Remove due date" : "Αφαίρεση ημερομηνίας λήξης",
"Select Date" : "Επέλεξε Ημέρα", "Select Date" : "Επέλεξε Ημέρα",
"Today" : "Σήμερα",
"Tomorrow" : "Αύριο",
"Save" : "Αποθήκευση", "Save" : "Αποθήκευση",
"The comment cannot be empty." : "Το σχόλιο δεν μπορεί να είναι κενό.", "The comment cannot be empty." : "Το σχόλιο δεν μπορεί να είναι κενό.",
"The comment cannot be longer than 1000 characters." : "Το σχόλιο δεν μπορεί να έχι περισσότερους από 1000 χαρακτήρες.", "The comment cannot be longer than 1000 characters." : "Το σχόλιο δεν μπορεί να έχι περισσότερους από 1000 χαρακτήρες.",
@@ -250,6 +249,8 @@
"Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Είστε βέβαιοι ότι θέλετε να διαγράψετε τον πίνακα {title}; Θα διαγραφούν όλα τα δεδομένα.", "Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Είστε βέβαιοι ότι θέλετε να διαγράψετε τον πίνακα {title}; Θα διαγραφούν όλα τα δεδομένα.",
"Delete the board?" : "Διαγραφή πίνακα;", "Delete the board?" : "Διαγραφή πίνακα;",
"Loading filtered view" : "Φόρτωση εμφάνισης με βάση το φίλτρο", "Loading filtered view" : "Φόρτωση εμφάνισης με βάση το φίλτρο",
"Today" : "Σήμερα",
"Tomorrow" : "Αύριο",
"This week" : "Αυτή την εβδομάδα", "This week" : "Αυτή την εβδομάδα",
"No due" : "Χωρίς λήξη", "No due" : "Χωρίς λήξη",
"No upcoming cards" : "Δεν υπάρχουν επερχόμενες κάρτες", "No upcoming cards" : "Δεν υπάρχουν επερχόμενες κάρτες",

View File

@@ -41,8 +41,6 @@ OC.L10N.register(
"Created" : "Created", "Created" : "Created",
"Due date" : "Due date", "Due date" : "Due date",
"Remove due date" : "Remove due date", "Remove due date" : "Remove due date",
"Today" : "Today",
"Tomorrow" : "Tomorrow",
"Save" : "Save", "Save" : "Save",
"Reply" : "Reply", "Reply" : "Reply",
"Update" : "Update", "Update" : "Update",
@@ -56,6 +54,8 @@ OC.L10N.register(
"Shared with you" : "Shared with you", "Shared with you" : "Shared with you",
"Board details" : "Board details", "Board details" : "Board details",
"Edit board" : "Edit board", "Edit board" : "Edit board",
"Today" : "Today",
"Tomorrow" : "Tomorrow",
"This week" : "This week" "This week" : "This week"
}, },
"nplurals=2; plural=(n != 1);"); "nplurals=2; plural=(n != 1);");

View File

@@ -39,8 +39,6 @@
"Created" : "Created", "Created" : "Created",
"Due date" : "Due date", "Due date" : "Due date",
"Remove due date" : "Remove due date", "Remove due date" : "Remove due date",
"Today" : "Today",
"Tomorrow" : "Tomorrow",
"Save" : "Save", "Save" : "Save",
"Reply" : "Reply", "Reply" : "Reply",
"Update" : "Update", "Update" : "Update",
@@ -54,6 +52,8 @@
"Shared with you" : "Shared with you", "Shared with you" : "Shared with you",
"Board details" : "Board details", "Board details" : "Board details",
"Edit board" : "Edit board", "Edit board" : "Edit board",
"Today" : "Today",
"Tomorrow" : "Tomorrow",
"This week" : "This week" "This week" : "This week"
},"pluralForm" :"nplurals=2; plural=(n != 1);" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@@ -99,8 +99,6 @@ OC.L10N.register(
"Due date" : "Limdato", "Due date" : "Limdato",
"Remove due date" : "Viŝi limdaton", "Remove due date" : "Viŝi limdaton",
"Select Date" : "Elekti daton", "Select Date" : "Elekti daton",
"Today" : "Hodiaŭ",
"Tomorrow" : "Morgaŭ",
"Save" : "Konservi", "Save" : "Konservi",
"Reply" : "Respondi", "Reply" : "Respondi",
"Update" : "Ĝisdatigi", "Update" : "Ĝisdatigi",
@@ -116,6 +114,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.", "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", "Edit board" : "Modifi tabulon",
"An error occurred" : "Eraro okazis", "An error occurred" : "Eraro okazis",
"Today" : "Hodiaŭ",
"Tomorrow" : "Morgaŭ",
"Link to a board" : "Ligilo al tabulo", "Link to a board" : "Ligilo al tabulo",
"Maximum file size of {size} exceeded" : "Maksimuma dosiergrando {size} transpasita" "Maximum file size of {size} exceeded" : "Maksimuma dosiergrando {size} transpasita"
}, },

View File

@@ -97,8 +97,6 @@
"Due date" : "Limdato", "Due date" : "Limdato",
"Remove due date" : "Viŝi limdaton", "Remove due date" : "Viŝi limdaton",
"Select Date" : "Elekti daton", "Select Date" : "Elekti daton",
"Today" : "Hodiaŭ",
"Tomorrow" : "Morgaŭ",
"Save" : "Konservi", "Save" : "Konservi",
"Reply" : "Respondi", "Reply" : "Respondi",
"Update" : "Ĝisdatigi", "Update" : "Ĝisdatigi",
@@ -114,6 +112,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.", "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", "Edit board" : "Modifi tabulon",
"An error occurred" : "Eraro okazis", "An error occurred" : "Eraro okazis",
"Today" : "Hodiaŭ",
"Tomorrow" : "Morgaŭ",
"Link to a board" : "Ligilo al tabulo", "Link to a board" : "Ligilo al tabulo",
"Maximum file size of {size} exceeded" : "Maksimuma dosiergrando {size} transpasita" "Maximum file size of {size} exceeded" : "Maksimuma dosiergrando {size} transpasita"
},"pluralForm" :"nplurals=2; plural=(n != 1);" },"pluralForm" :"nplurals=2; plural=(n != 1);"

View File

@@ -185,11 +185,9 @@ OC.L10N.register(
"Members" : "Miembros", "Members" : "Miembros",
"Upload new files" : "Subir nuevos archivos", "Upload new files" : "Subir nuevos archivos",
"Share from Files" : "Compartir desde Archivos", "Share from Files" : "Compartir desde Archivos",
"Pending share" : "Pendiente de compartir",
"Add this attachment" : "Añadir este adjunto", "Add this attachment" : "Añadir este adjunto",
"Show in Files" : "Mostrar en Archivos", "Show in Files" : "Mostrar en Archivos",
"Download" : "Descargar", "Unshare file" : "Dejar de compartir archivo",
"Remove attachment" : "Quitar adjunto",
"Delete Attachment" : "Borrar adjunto", "Delete Attachment" : "Borrar adjunto",
"Restore Attachment" : "Restaurar Adjunto", "Restore Attachment" : "Restaurar Adjunto",
"File to share" : "Archivo a compartir", "File to share" : "Archivo a compartir",
@@ -211,10 +209,6 @@ OC.L10N.register(
"Set a due date" : "Fijar una fecha límite", "Set a due date" : "Fijar una fecha límite",
"Remove due date" : "Eliminar fecha límite", "Remove due date" : "Eliminar fecha límite",
"Select Date" : "Seleccione la fecha", "Select Date" : "Seleccione la fecha",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Next week" : "Semana siguiente",
"Next month" : "Mes siguiente",
"Save" : "Guardar", "Save" : "Guardar",
"The comment cannot be empty." : "El comentario no puede estar vacío.", "The comment cannot be empty." : "El comentario no puede estar vacío.",
"The comment cannot be longer than 1000 characters." : "El comentario no puede tener más de 1000 caracteres.", "The comment cannot be longer than 1000 characters." : "El comentario no puede tener más de 1000 caracteres.",
@@ -268,6 +262,8 @@ 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.", "Are you sure you want to delete the board {title}? This will delete all the data of this board." : "¿Estas seguro de que quieres eliminar el tablero {title}? Esto eliminará todos los datos del tablero.",
"Delete the board?" : "¿Borrar el tablero?", "Delete the board?" : "¿Borrar el tablero?",
"Loading filtered view" : "Cargando vista filtrada", "Loading filtered view" : "Cargando vista filtrada",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"This week" : "Esta semana", "This week" : "Esta semana",
"No due" : "Sin finalizar", "No due" : "Sin finalizar",
"Search for {searchQuery} in all boards" : "Buscar {searchQuery} en todos los tableros", "Search for {searchQuery} in all boards" : "Buscar {searchQuery} en todos los tableros",

View File

@@ -183,11 +183,9 @@
"Members" : "Miembros", "Members" : "Miembros",
"Upload new files" : "Subir nuevos archivos", "Upload new files" : "Subir nuevos archivos",
"Share from Files" : "Compartir desde Archivos", "Share from Files" : "Compartir desde Archivos",
"Pending share" : "Pendiente de compartir",
"Add this attachment" : "Añadir este adjunto", "Add this attachment" : "Añadir este adjunto",
"Show in Files" : "Mostrar en Archivos", "Show in Files" : "Mostrar en Archivos",
"Download" : "Descargar", "Unshare file" : "Dejar de compartir archivo",
"Remove attachment" : "Quitar adjunto",
"Delete Attachment" : "Borrar adjunto", "Delete Attachment" : "Borrar adjunto",
"Restore Attachment" : "Restaurar Adjunto", "Restore Attachment" : "Restaurar Adjunto",
"File to share" : "Archivo a compartir", "File to share" : "Archivo a compartir",
@@ -209,10 +207,6 @@
"Set a due date" : "Fijar una fecha límite", "Set a due date" : "Fijar una fecha límite",
"Remove due date" : "Eliminar fecha límite", "Remove due date" : "Eliminar fecha límite",
"Select Date" : "Seleccione la fecha", "Select Date" : "Seleccione la fecha",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Next week" : "Semana siguiente",
"Next month" : "Mes siguiente",
"Save" : "Guardar", "Save" : "Guardar",
"The comment cannot be empty." : "El comentario no puede estar vacío.", "The comment cannot be empty." : "El comentario no puede estar vacío.",
"The comment cannot be longer than 1000 characters." : "El comentario no puede tener más de 1000 caracteres.", "The comment cannot be longer than 1000 characters." : "El comentario no puede tener más de 1000 caracteres.",
@@ -266,6 +260,8 @@
"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.", "Are you sure you want to delete the board {title}? This will delete all the data of this board." : "¿Estas seguro de que quieres eliminar el tablero {title}? Esto eliminará todos los datos del tablero.",
"Delete the board?" : "¿Borrar el tablero?", "Delete the board?" : "¿Borrar el tablero?",
"Loading filtered view" : "Cargando vista filtrada", "Loading filtered view" : "Cargando vista filtrada",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"This week" : "Esta semana", "This week" : "Esta semana",
"No due" : "Sin finalizar", "No due" : "Sin finalizar",
"Search for {searchQuery} in all boards" : "Buscar {searchQuery} en todos los tableros", "Search for {searchQuery} in all boards" : "Buscar {searchQuery} en todos los tableros",

View File

@@ -35,8 +35,6 @@ OC.L10N.register(
"Created" : "Creado", "Created" : "Creado",
"Due date" : "Fecha de vencimiento", "Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración", "Remove due date" : "Eliminar fecha de expiración",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Save" : "Guardar", "Save" : "Guardar",
"Reply" : "Responder", "Reply" : "Responder",
"Update" : "Actualizar", "Update" : "Actualizar",
@@ -48,6 +46,8 @@ OC.L10N.register(
"Shared with you" : "Compartido con usted", "Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero", "Board details" : "Detalles del tablero",
"Edit board" : "Editar el tablero", "Edit board" : "Editar el tablero",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"This week" : "Esta semana" "This week" : "Esta semana"
}, },
"nplurals=2; plural=(n != 1);"); "nplurals=2; plural=(n != 1);");

View File

@@ -33,8 +33,6 @@
"Created" : "Creado", "Created" : "Creado",
"Due date" : "Fecha de vencimiento", "Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración", "Remove due date" : "Eliminar fecha de expiración",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Save" : "Guardar", "Save" : "Guardar",
"Reply" : "Responder", "Reply" : "Responder",
"Update" : "Actualizar", "Update" : "Actualizar",
@@ -46,6 +44,8 @@
"Shared with you" : "Compartido con usted", "Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero", "Board details" : "Detalles del tablero",
"Edit board" : "Editar el tablero", "Edit board" : "Editar el tablero",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"This week" : "Esta semana" "This week" : "Esta semana"
},"pluralForm" :"nplurals=2; plural=(n != 1);" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@@ -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", "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 ", "No file was uploaded" : "No se subió ningún archivo ",
"Missing a temporary folder" : "Falta un directorio temporal", "Missing a temporary folder" : "Falta un directorio temporal",
"Add board" : "Nuevo Tablero",
"Cancel" : "Cancelar", "Cancel" : "Cancelar",
"Hide archived cards" : "Ocultar tarjetas archivadas", "Hide archived cards" : "Ocultar tarjetas archivadas",
"Show archived cards" : "Mostrar tarjetas archivadas", "Show archived cards" : "Mostrar tarjetas archivadas",
@@ -31,8 +30,6 @@ OC.L10N.register(
"Created" : "Creado", "Created" : "Creado",
"Due date" : "Fecha de vencimiento", "Due date" : "Fecha de vencimiento",
"Select Date" : "Seleccionar fecha", "Select Date" : "Seleccionar fecha",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Save" : "Guardar", "Save" : "Guardar",
"Reply" : "Responder", "Reply" : "Responder",
"Update" : "Actualizar", "Update" : "Actualizar",
@@ -40,13 +37,11 @@ OC.L10N.register(
"Formatting help" : "Ayuda de formato", "Formatting help" : "Ayuda de formato",
"(group)" : "(grupo)", "(group)" : "(grupo)",
"seconds ago" : "segundos", "seconds ago" : "segundos",
"All boards" : "Todos los Tableros",
"Shared with you" : "Compartido con usted", "Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero", "Board details" : "Detalles del tablero",
"Edit board" : "Editar Tablero",
"Clone board" : "Clonar Tablero",
"Delete board" : "Eliminar Tablero",
"An error occurred" : "Ocurrió un error", "An error occurred" : "Ocurrió un error",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"This week" : "Esta semana" "This week" : "Esta semana"
}, },
"nplurals=2; plural=(n != 1);"); "nplurals=2; plural=(n != 1);");

View File

@@ -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", "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 ", "No file was uploaded" : "No se subió ningún archivo ",
"Missing a temporary folder" : "Falta un directorio temporal", "Missing a temporary folder" : "Falta un directorio temporal",
"Add board" : "Nuevo Tablero",
"Cancel" : "Cancelar", "Cancel" : "Cancelar",
"Hide archived cards" : "Ocultar tarjetas archivadas", "Hide archived cards" : "Ocultar tarjetas archivadas",
"Show archived cards" : "Mostrar tarjetas archivadas", "Show archived cards" : "Mostrar tarjetas archivadas",
@@ -29,8 +28,6 @@
"Created" : "Creado", "Created" : "Creado",
"Due date" : "Fecha de vencimiento", "Due date" : "Fecha de vencimiento",
"Select Date" : "Seleccionar fecha", "Select Date" : "Seleccionar fecha",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Save" : "Guardar", "Save" : "Guardar",
"Reply" : "Responder", "Reply" : "Responder",
"Update" : "Actualizar", "Update" : "Actualizar",
@@ -38,13 +35,11 @@
"Formatting help" : "Ayuda de formato", "Formatting help" : "Ayuda de formato",
"(group)" : "(grupo)", "(group)" : "(grupo)",
"seconds ago" : "segundos", "seconds ago" : "segundos",
"All boards" : "Todos los Tableros",
"Shared with you" : "Compartido con usted", "Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero", "Board details" : "Detalles del tablero",
"Edit board" : "Editar Tablero",
"Clone board" : "Clonar Tablero",
"Delete board" : "Eliminar Tablero",
"An error occurred" : "Ocurrió un error", "An error occurred" : "Ocurrió un error",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"This week" : "Esta semana" "This week" : "Esta semana"
},"pluralForm" :"nplurals=2; plural=(n != 1);" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@@ -38,8 +38,6 @@ OC.L10N.register(
"Created" : "Creado", "Created" : "Creado",
"Due date" : "Fecha de vencimiento", "Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración", "Remove due date" : "Eliminar fecha de expiración",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Save" : "Guardar", "Save" : "Guardar",
"Reply" : "Responder", "Reply" : "Responder",
"Update" : "Actualizar", "Update" : "Actualizar",
@@ -51,6 +49,8 @@ OC.L10N.register(
"Shared with you" : "Compartido con usted", "Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero", "Board details" : "Detalles del tablero",
"Edit board" : "Editar el tablero", "Edit board" : "Editar el tablero",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"This week" : "Esta semana" "This week" : "Esta semana"
}, },
"nplurals=2; plural=(n != 1);"); "nplurals=2; plural=(n != 1);");

View File

@@ -36,8 +36,6 @@
"Created" : "Creado", "Created" : "Creado",
"Due date" : "Fecha de vencimiento", "Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración", "Remove due date" : "Eliminar fecha de expiración",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Save" : "Guardar", "Save" : "Guardar",
"Reply" : "Responder", "Reply" : "Responder",
"Update" : "Actualizar", "Update" : "Actualizar",
@@ -49,6 +47,8 @@
"Shared with you" : "Compartido con usted", "Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero", "Board details" : "Detalles del tablero",
"Edit board" : "Editar el tablero", "Edit board" : "Editar el tablero",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"This week" : "Esta semana" "This week" : "Esta semana"
},"pluralForm" :"nplurals=2; plural=(n != 1);" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@@ -39,8 +39,6 @@ OC.L10N.register(
"Created" : "Creado", "Created" : "Creado",
"Due date" : "Fecha de vencimiento", "Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración", "Remove due date" : "Eliminar fecha de expiración",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Save" : "Guardar", "Save" : "Guardar",
"Reply" : "Responder", "Reply" : "Responder",
"Update" : "Actualizar", "Update" : "Actualizar",
@@ -52,6 +50,8 @@ OC.L10N.register(
"Shared with you" : "Compartido con usted", "Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero", "Board details" : "Detalles del tablero",
"Edit board" : "Editar el tablero", "Edit board" : "Editar el tablero",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"This week" : "Esta semana" "This week" : "Esta semana"
}, },
"nplurals=2; plural=(n != 1);"); "nplurals=2; plural=(n != 1);");

View File

@@ -37,8 +37,6 @@
"Created" : "Creado", "Created" : "Creado",
"Due date" : "Fecha de vencimiento", "Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración", "Remove due date" : "Eliminar fecha de expiración",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Save" : "Guardar", "Save" : "Guardar",
"Reply" : "Responder", "Reply" : "Responder",
"Update" : "Actualizar", "Update" : "Actualizar",
@@ -50,6 +48,8 @@
"Shared with you" : "Compartido con usted", "Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero", "Board details" : "Detalles del tablero",
"Edit board" : "Editar el tablero", "Edit board" : "Editar el tablero",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"This week" : "Esta semana" "This week" : "Esta semana"
},"pluralForm" :"nplurals=2; plural=(n != 1);" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@@ -38,8 +38,6 @@ OC.L10N.register(
"Created" : "Creado", "Created" : "Creado",
"Due date" : "Fecha de vencimiento", "Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración", "Remove due date" : "Eliminar fecha de expiración",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Save" : "Guardar", "Save" : "Guardar",
"Reply" : "Responder", "Reply" : "Responder",
"Update" : "Actualizar", "Update" : "Actualizar",
@@ -51,6 +49,8 @@ OC.L10N.register(
"Shared with you" : "Compartido con usted", "Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero", "Board details" : "Detalles del tablero",
"Edit board" : "Editar el tablero", "Edit board" : "Editar el tablero",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"This week" : "Esta semana" "This week" : "Esta semana"
}, },
"nplurals=2; plural=(n != 1);"); "nplurals=2; plural=(n != 1);");

View File

@@ -36,8 +36,6 @@
"Created" : "Creado", "Created" : "Creado",
"Due date" : "Fecha de vencimiento", "Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración", "Remove due date" : "Eliminar fecha de expiración",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Save" : "Guardar", "Save" : "Guardar",
"Reply" : "Responder", "Reply" : "Responder",
"Update" : "Actualizar", "Update" : "Actualizar",
@@ -49,6 +47,8 @@
"Shared with you" : "Compartido con usted", "Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero", "Board details" : "Detalles del tablero",
"Edit board" : "Editar el tablero", "Edit board" : "Editar el tablero",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"This week" : "Esta semana" "This week" : "Esta semana"
},"pluralForm" :"nplurals=2; plural=(n != 1);" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@@ -38,8 +38,6 @@ OC.L10N.register(
"Created" : "Creado", "Created" : "Creado",
"Due date" : "Fecha de vencimiento", "Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración", "Remove due date" : "Eliminar fecha de expiración",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Save" : "Guardar", "Save" : "Guardar",
"Reply" : "Responder", "Reply" : "Responder",
"Update" : "Actualizar", "Update" : "Actualizar",
@@ -51,6 +49,8 @@ OC.L10N.register(
"Shared with you" : "Compartido con usted", "Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero", "Board details" : "Detalles del tablero",
"Edit board" : "Editar el tablero", "Edit board" : "Editar el tablero",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"This week" : "Esta semana" "This week" : "Esta semana"
}, },
"nplurals=2; plural=(n != 1);"); "nplurals=2; plural=(n != 1);");

View File

@@ -36,8 +36,6 @@
"Created" : "Creado", "Created" : "Creado",
"Due date" : "Fecha de vencimiento", "Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración", "Remove due date" : "Eliminar fecha de expiración",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Save" : "Guardar", "Save" : "Guardar",
"Reply" : "Responder", "Reply" : "Responder",
"Update" : "Actualizar", "Update" : "Actualizar",
@@ -49,6 +47,8 @@
"Shared with you" : "Compartido con usted", "Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero", "Board details" : "Detalles del tablero",
"Edit board" : "Editar el tablero", "Edit board" : "Editar el tablero",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"This week" : "Esta semana" "This week" : "Esta semana"
},"pluralForm" :"nplurals=2; plural=(n != 1);" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@@ -38,8 +38,6 @@ OC.L10N.register(
"Created" : "Creado", "Created" : "Creado",
"Due date" : "Fecha de vencimiento", "Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración", "Remove due date" : "Eliminar fecha de expiración",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Save" : "Guardar", "Save" : "Guardar",
"Reply" : "Responder", "Reply" : "Responder",
"Update" : "Actualizar", "Update" : "Actualizar",
@@ -51,6 +49,8 @@ OC.L10N.register(
"Shared with you" : "Compartido con usted", "Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero", "Board details" : "Detalles del tablero",
"Edit board" : "Editar el tablero", "Edit board" : "Editar el tablero",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"This week" : "Esta semana" "This week" : "Esta semana"
}, },
"nplurals=2; plural=(n != 1);"); "nplurals=2; plural=(n != 1);");

View File

@@ -36,8 +36,6 @@
"Created" : "Creado", "Created" : "Creado",
"Due date" : "Fecha de vencimiento", "Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración", "Remove due date" : "Eliminar fecha de expiración",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Save" : "Guardar", "Save" : "Guardar",
"Reply" : "Responder", "Reply" : "Responder",
"Update" : "Actualizar", "Update" : "Actualizar",
@@ -49,6 +47,8 @@
"Shared with you" : "Compartido con usted", "Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero", "Board details" : "Detalles del tablero",
"Edit board" : "Editar el tablero", "Edit board" : "Editar el tablero",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"This week" : "Esta semana" "This week" : "Esta semana"
},"pluralForm" :"nplurals=2; plural=(n != 1);" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@@ -38,8 +38,6 @@ OC.L10N.register(
"Created" : "Creado", "Created" : "Creado",
"Due date" : "Fecha de vencimiento", "Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración", "Remove due date" : "Eliminar fecha de expiración",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Save" : "Guardar", "Save" : "Guardar",
"Reply" : "Responder", "Reply" : "Responder",
"Update" : "Actualizar", "Update" : "Actualizar",
@@ -51,6 +49,8 @@ OC.L10N.register(
"Shared with you" : "Compartido con usted", "Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero", "Board details" : "Detalles del tablero",
"Edit board" : "Editar el tablero", "Edit board" : "Editar el tablero",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"This week" : "Esta semana" "This week" : "Esta semana"
}, },
"nplurals=2; plural=(n != 1);"); "nplurals=2; plural=(n != 1);");

View File

@@ -36,8 +36,6 @@
"Created" : "Creado", "Created" : "Creado",
"Due date" : "Fecha de vencimiento", "Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración", "Remove due date" : "Eliminar fecha de expiración",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Save" : "Guardar", "Save" : "Guardar",
"Reply" : "Responder", "Reply" : "Responder",
"Update" : "Actualizar", "Update" : "Actualizar",
@@ -49,6 +47,8 @@
"Shared with you" : "Compartido con usted", "Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero", "Board details" : "Detalles del tablero",
"Edit board" : "Editar el tablero", "Edit board" : "Editar el tablero",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"This week" : "Esta semana" "This week" : "Esta semana"
},"pluralForm" :"nplurals=2; plural=(n != 1);" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@@ -34,8 +34,6 @@ OC.L10N.register(
"Created" : "Creado", "Created" : "Creado",
"Due date" : "Fecha de vencimiento", "Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración", "Remove due date" : "Eliminar fecha de expiración",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Save" : "Guardar", "Save" : "Guardar",
"Reply" : "Responder", "Reply" : "Responder",
"Update" : "Actualizar", "Update" : "Actualizar",
@@ -47,6 +45,8 @@ OC.L10N.register(
"Shared with you" : "Compartido con usted", "Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero", "Board details" : "Detalles del tablero",
"Edit board" : "Editar el tablero", "Edit board" : "Editar el tablero",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"This week" : "Esta semana" "This week" : "Esta semana"
}, },
"nplurals=2; plural=(n != 1);"); "nplurals=2; plural=(n != 1);");

View File

@@ -32,8 +32,6 @@
"Created" : "Creado", "Created" : "Creado",
"Due date" : "Fecha de vencimiento", "Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración", "Remove due date" : "Eliminar fecha de expiración",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Save" : "Guardar", "Save" : "Guardar",
"Reply" : "Responder", "Reply" : "Responder",
"Update" : "Actualizar", "Update" : "Actualizar",
@@ -45,6 +43,8 @@
"Shared with you" : "Compartido con usted", "Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero", "Board details" : "Detalles del tablero",
"Edit board" : "Editar el tablero", "Edit board" : "Editar el tablero",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"This week" : "Esta semana" "This week" : "Esta semana"
},"pluralForm" :"nplurals=2; plural=(n != 1);" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@@ -40,8 +40,6 @@ OC.L10N.register(
"Created" : "Creado", "Created" : "Creado",
"Due date" : "Fecha de vencimiento", "Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración", "Remove due date" : "Eliminar fecha de expiración",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Save" : "Guardar", "Save" : "Guardar",
"Reply" : "Responder", "Reply" : "Responder",
"Update" : "Actualizar", "Update" : "Actualizar",
@@ -54,6 +52,8 @@ OC.L10N.register(
"Board details" : "Detalles del tablero", "Board details" : "Detalles del tablero",
"Edit board" : "Editar el tablero", "Edit board" : "Editar el tablero",
"An error occurred" : "Ha ocurrido un error", "An error occurred" : "Ha ocurrido un error",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"This week" : "Esta semana" "This week" : "Esta semana"
}, },
"nplurals=2; plural=(n != 1);"); "nplurals=2; plural=(n != 1);");

View File

@@ -38,8 +38,6 @@
"Created" : "Creado", "Created" : "Creado",
"Due date" : "Fecha de vencimiento", "Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración", "Remove due date" : "Eliminar fecha de expiración",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Save" : "Guardar", "Save" : "Guardar",
"Reply" : "Responder", "Reply" : "Responder",
"Update" : "Actualizar", "Update" : "Actualizar",
@@ -52,6 +50,8 @@
"Board details" : "Detalles del tablero", "Board details" : "Detalles del tablero",
"Edit board" : "Editar el tablero", "Edit board" : "Editar el tablero",
"An error occurred" : "Ha ocurrido un error", "An error occurred" : "Ha ocurrido un error",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"This week" : "Esta semana" "This week" : "Esta semana"
},"pluralForm" :"nplurals=2; plural=(n != 1);" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@@ -34,8 +34,6 @@ OC.L10N.register(
"Created" : "Creado", "Created" : "Creado",
"Due date" : "Fecha de vencimiento", "Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración", "Remove due date" : "Eliminar fecha de expiración",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Save" : "Guardar", "Save" : "Guardar",
"Reply" : "Responder", "Reply" : "Responder",
"Update" : "Actualizar", "Update" : "Actualizar",
@@ -47,6 +45,8 @@ OC.L10N.register(
"Shared with you" : "Compartido con usted", "Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero", "Board details" : "Detalles del tablero",
"Edit board" : "Editar el tablero", "Edit board" : "Editar el tablero",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"This week" : "Esta semana" "This week" : "Esta semana"
}, },
"nplurals=2; plural=(n != 1);"); "nplurals=2; plural=(n != 1);");

View File

@@ -32,8 +32,6 @@
"Created" : "Creado", "Created" : "Creado",
"Due date" : "Fecha de vencimiento", "Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración", "Remove due date" : "Eliminar fecha de expiración",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Save" : "Guardar", "Save" : "Guardar",
"Reply" : "Responder", "Reply" : "Responder",
"Update" : "Actualizar", "Update" : "Actualizar",
@@ -45,6 +43,8 @@
"Shared with you" : "Compartido con usted", "Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero", "Board details" : "Detalles del tablero",
"Edit board" : "Editar el tablero", "Edit board" : "Editar el tablero",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"This week" : "Esta semana" "This week" : "Esta semana"
},"pluralForm" :"nplurals=2; plural=(n != 1);" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@@ -34,8 +34,6 @@ OC.L10N.register(
"Created" : "Creado", "Created" : "Creado",
"Due date" : "Fecha de vencimiento", "Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración", "Remove due date" : "Eliminar fecha de expiración",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Save" : "Guardar", "Save" : "Guardar",
"Reply" : "Responder", "Reply" : "Responder",
"Update" : "Actualizar", "Update" : "Actualizar",
@@ -47,6 +45,8 @@ OC.L10N.register(
"Shared with you" : "Compartido con usted", "Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero", "Board details" : "Detalles del tablero",
"Edit board" : "Editar el tablero", "Edit board" : "Editar el tablero",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"This week" : "Esta semana" "This week" : "Esta semana"
}, },
"nplurals=2; plural=(n != 1);"); "nplurals=2; plural=(n != 1);");

View File

@@ -32,8 +32,6 @@
"Created" : "Creado", "Created" : "Creado",
"Due date" : "Fecha de vencimiento", "Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración", "Remove due date" : "Eliminar fecha de expiración",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Save" : "Guardar", "Save" : "Guardar",
"Reply" : "Responder", "Reply" : "Responder",
"Update" : "Actualizar", "Update" : "Actualizar",
@@ -45,6 +43,8 @@
"Shared with you" : "Compartido con usted", "Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero", "Board details" : "Detalles del tablero",
"Edit board" : "Editar el tablero", "Edit board" : "Editar el tablero",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"This week" : "Esta semana" "This week" : "Esta semana"
},"pluralForm" :"nplurals=2; plural=(n != 1);" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@@ -34,8 +34,6 @@ OC.L10N.register(
"Created" : "Creado", "Created" : "Creado",
"Due date" : "Fecha de vencimiento", "Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración", "Remove due date" : "Eliminar fecha de expiración",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Save" : "Guardar", "Save" : "Guardar",
"Reply" : "Responder", "Reply" : "Responder",
"Update" : "Actualizar", "Update" : "Actualizar",
@@ -47,6 +45,8 @@ OC.L10N.register(
"Shared with you" : "Compartido con usted", "Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero", "Board details" : "Detalles del tablero",
"Edit board" : "Editar el tablero", "Edit board" : "Editar el tablero",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"This week" : "Esta semana" "This week" : "Esta semana"
}, },
"nplurals=2; plural=(n != 1);"); "nplurals=2; plural=(n != 1);");

View File

@@ -32,8 +32,6 @@
"Created" : "Creado", "Created" : "Creado",
"Due date" : "Fecha de vencimiento", "Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración", "Remove due date" : "Eliminar fecha de expiración",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Save" : "Guardar", "Save" : "Guardar",
"Reply" : "Responder", "Reply" : "Responder",
"Update" : "Actualizar", "Update" : "Actualizar",
@@ -45,6 +43,8 @@
"Shared with you" : "Compartido con usted", "Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero", "Board details" : "Detalles del tablero",
"Edit board" : "Editar el tablero", "Edit board" : "Editar el tablero",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"This week" : "Esta semana" "This week" : "Esta semana"
},"pluralForm" :"nplurals=2; plural=(n != 1);" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@@ -34,8 +34,6 @@ OC.L10N.register(
"Created" : "Creado", "Created" : "Creado",
"Due date" : "Fecha de vencimiento", "Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración", "Remove due date" : "Eliminar fecha de expiración",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Save" : "Guardar", "Save" : "Guardar",
"Reply" : "Responder", "Reply" : "Responder",
"Update" : "Actualizar", "Update" : "Actualizar",
@@ -47,6 +45,8 @@ OC.L10N.register(
"Shared with you" : "Compartido con usted", "Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero", "Board details" : "Detalles del tablero",
"Edit board" : "Editar el tablero", "Edit board" : "Editar el tablero",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"This week" : "Esta semana" "This week" : "Esta semana"
}, },
"nplurals=2; plural=(n != 1);"); "nplurals=2; plural=(n != 1);");

View File

@@ -32,8 +32,6 @@
"Created" : "Creado", "Created" : "Creado",
"Due date" : "Fecha de vencimiento", "Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración", "Remove due date" : "Eliminar fecha de expiración",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Save" : "Guardar", "Save" : "Guardar",
"Reply" : "Responder", "Reply" : "Responder",
"Update" : "Actualizar", "Update" : "Actualizar",
@@ -45,6 +43,8 @@
"Shared with you" : "Compartido con usted", "Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero", "Board details" : "Detalles del tablero",
"Edit board" : "Editar el tablero", "Edit board" : "Editar el tablero",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"This week" : "Esta semana" "This week" : "Esta semana"
},"pluralForm" :"nplurals=2; plural=(n != 1);" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@@ -35,8 +35,6 @@ OC.L10N.register(
"Created" : "Creado", "Created" : "Creado",
"Due date" : "Fecha de vencimiento", "Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración", "Remove due date" : "Eliminar fecha de expiración",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Save" : "Guardar", "Save" : "Guardar",
"Reply" : "Responder", "Reply" : "Responder",
"Update" : "Actualizar", "Update" : "Actualizar",
@@ -49,6 +47,8 @@ OC.L10N.register(
"Board details" : "Detalles del tablero", "Board details" : "Detalles del tablero",
"Edit board" : "Editar el tablero", "Edit board" : "Editar el tablero",
"An error occurred" : "Se presentó un error", "An error occurred" : "Se presentó un error",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"This week" : "Esta semana" "This week" : "Esta semana"
}, },
"nplurals=2; plural=(n != 1);"); "nplurals=2; plural=(n != 1);");

View File

@@ -33,8 +33,6 @@
"Created" : "Creado", "Created" : "Creado",
"Due date" : "Fecha de vencimiento", "Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración", "Remove due date" : "Eliminar fecha de expiración",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Save" : "Guardar", "Save" : "Guardar",
"Reply" : "Responder", "Reply" : "Responder",
"Update" : "Actualizar", "Update" : "Actualizar",
@@ -47,6 +45,8 @@
"Board details" : "Detalles del tablero", "Board details" : "Detalles del tablero",
"Edit board" : "Editar el tablero", "Edit board" : "Editar el tablero",
"An error occurred" : "Se presentó un error", "An error occurred" : "Se presentó un error",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"This week" : "Esta semana" "This week" : "Esta semana"
},"pluralForm" :"nplurals=2; plural=(n != 1);" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@@ -38,8 +38,6 @@ OC.L10N.register(
"Created" : "Creado", "Created" : "Creado",
"Due date" : "Fecha de vencimiento", "Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración", "Remove due date" : "Eliminar fecha de expiración",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Save" : "Guardar", "Save" : "Guardar",
"Reply" : "Responder", "Reply" : "Responder",
"Update" : "Actualizar", "Update" : "Actualizar",
@@ -51,6 +49,8 @@ OC.L10N.register(
"Shared with you" : "Compartido con usted", "Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero", "Board details" : "Detalles del tablero",
"Edit board" : "Editar el tablero", "Edit board" : "Editar el tablero",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"This week" : "Esta semana" "This week" : "Esta semana"
}, },
"nplurals=2; plural=(n != 1);"); "nplurals=2; plural=(n != 1);");

View File

@@ -36,8 +36,6 @@
"Created" : "Creado", "Created" : "Creado",
"Due date" : "Fecha de vencimiento", "Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración", "Remove due date" : "Eliminar fecha de expiración",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Save" : "Guardar", "Save" : "Guardar",
"Reply" : "Responder", "Reply" : "Responder",
"Update" : "Actualizar", "Update" : "Actualizar",
@@ -49,6 +47,8 @@
"Shared with you" : "Compartido con usted", "Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero", "Board details" : "Detalles del tablero",
"Edit board" : "Editar el tablero", "Edit board" : "Editar el tablero",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"This week" : "Esta semana" "This week" : "Esta semana"
},"pluralForm" :"nplurals=2; plural=(n != 1);" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@@ -34,8 +34,6 @@ OC.L10N.register(
"Created" : "Creado", "Created" : "Creado",
"Due date" : "Fecha de vencimiento", "Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración", "Remove due date" : "Eliminar fecha de expiración",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Save" : "Guardar", "Save" : "Guardar",
"Reply" : "Responder", "Reply" : "Responder",
"Update" : "Actualizar", "Update" : "Actualizar",
@@ -47,6 +45,8 @@ OC.L10N.register(
"Shared with you" : "Compartido con usted", "Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero", "Board details" : "Detalles del tablero",
"Edit board" : "Editar el tablero", "Edit board" : "Editar el tablero",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"This week" : "Esta semana" "This week" : "Esta semana"
}, },
"nplurals=2; plural=(n != 1);"); "nplurals=2; plural=(n != 1);");

View File

@@ -32,8 +32,6 @@
"Created" : "Creado", "Created" : "Creado",
"Due date" : "Fecha de vencimiento", "Due date" : "Fecha de vencimiento",
"Remove due date" : "Eliminar fecha de expiración", "Remove due date" : "Eliminar fecha de expiración",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"Save" : "Guardar", "Save" : "Guardar",
"Reply" : "Responder", "Reply" : "Responder",
"Update" : "Actualizar", "Update" : "Actualizar",
@@ -45,6 +43,8 @@
"Shared with you" : "Compartido con usted", "Shared with you" : "Compartido con usted",
"Board details" : "Detalles del tablero", "Board details" : "Detalles del tablero",
"Edit board" : "Editar el tablero", "Edit board" : "Editar el tablero",
"Today" : "Hoy",
"Tomorrow" : "Mañana",
"This week" : "Esta semana" "This week" : "Esta semana"
},"pluralForm" :"nplurals=2; plural=(n != 1);" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@@ -21,8 +21,6 @@ OC.L10N.register(
"Modified" : "Muudetud", "Modified" : "Muudetud",
"Created" : "Loodud", "Created" : "Loodud",
"Due date" : "Tähtaeg", "Due date" : "Tähtaeg",
"Today" : "Täna",
"Tomorrow" : "Homme",
"Save" : "Salvesta", "Save" : "Salvesta",
"Reply" : "Vasta", "Reply" : "Vasta",
"Update" : "Uuenda", "Update" : "Uuenda",
@@ -31,6 +29,8 @@ OC.L10N.register(
"Delete card" : "Kustuta kaart", "Delete card" : "Kustuta kaart",
"seconds ago" : "sekundit tagasi", "seconds ago" : "sekundit tagasi",
"Shared with you" : "Sinuga jagatud", "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);"); "nplurals=2; plural=(n != 1);");

View File

@@ -19,8 +19,6 @@
"Modified" : "Muudetud", "Modified" : "Muudetud",
"Created" : "Loodud", "Created" : "Loodud",
"Due date" : "Tähtaeg", "Due date" : "Tähtaeg",
"Today" : "Täna",
"Tomorrow" : "Homme",
"Save" : "Salvesta", "Save" : "Salvesta",
"Reply" : "Vasta", "Reply" : "Vasta",
"Update" : "Uuenda", "Update" : "Uuenda",
@@ -29,6 +27,8 @@
"Delete card" : "Kustuta kaart", "Delete card" : "Kustuta kaart",
"seconds ago" : "sekundit tagasi", "seconds ago" : "sekundit tagasi",
"Shared with you" : "Sinuga jagatud", "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);" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@@ -185,11 +185,9 @@ OC.L10N.register(
"Members" : "Partaideak", "Members" : "Partaideak",
"Upload new files" : "Kargatu fitxategi berriak", "Upload new files" : "Kargatu fitxategi berriak",
"Share from Files" : "Partekatu Fitxategiak-etik", "Share from Files" : "Partekatu Fitxategiak-etik",
"Pending share" : "Partekatzeko zain",
"Add this attachment" : "Gehitu eranskin hau", "Add this attachment" : "Gehitu eranskin hau",
"Show in Files" : "Erakutsi fitxategietan", "Show in Files" : "Erakutsi fitxategietan",
"Download" : "Deskargatu", "Unshare file" : "Utzi fitxategia partekatzen",
"Remove attachment" : "Kendu eranskina",
"Delete Attachment" : "Ezabatu eranskina", "Delete Attachment" : "Ezabatu eranskina",
"Restore Attachment" : "Berezarri eranskina", "Restore Attachment" : "Berezarri eranskina",
"File to share" : "Partekatzeko fitxategia", "File to share" : "Partekatzeko fitxategia",
@@ -211,10 +209,6 @@ OC.L10N.register(
"Set a due date" : "Ezarri epe-muga", "Set a due date" : "Ezarri epe-muga",
"Remove due date" : "Ezabatu epe-muga", "Remove due date" : "Ezabatu epe-muga",
"Select Date" : "Hautatu data", "Select Date" : "Hautatu data",
"Today" : "Gaur",
"Tomorrow" : "Bihar",
"Next week" : "Hurrengo astea",
"Next month" : "Hurrengo hilabetea",
"Save" : "Gorde", "Save" : "Gorde",
"The comment cannot be empty." : "Iruzkina ezin da hutsik egon.", "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.", "The comment cannot be longer than 1000 characters." : "Iruzkina ezin da 1000 karaktere baino luzeagoa izan.",
@@ -268,6 +262,8 @@ OC.L10N.register(
"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.", "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?", "Delete the board?" : "Taula ezabatu?",
"Loading filtered view" : "Kargatzen iragazitako ikuspegia", "Loading filtered view" : "Kargatzen iragazitako ikuspegia",
"Today" : "Gaur",
"Tomorrow" : "Bihar",
"This week" : "Aste honetan", "This week" : "Aste honetan",
"No due" : "Epemugarik ez", "No due" : "Epemugarik ez",
"Search for {searchQuery} in all boards" : "Bilatu {searchQuery} taula guztietan", "Search for {searchQuery} in all boards" : "Bilatu {searchQuery} taula guztietan",

View File

@@ -183,11 +183,9 @@
"Members" : "Partaideak", "Members" : "Partaideak",
"Upload new files" : "Kargatu fitxategi berriak", "Upload new files" : "Kargatu fitxategi berriak",
"Share from Files" : "Partekatu Fitxategiak-etik", "Share from Files" : "Partekatu Fitxategiak-etik",
"Pending share" : "Partekatzeko zain",
"Add this attachment" : "Gehitu eranskin hau", "Add this attachment" : "Gehitu eranskin hau",
"Show in Files" : "Erakutsi fitxategietan", "Show in Files" : "Erakutsi fitxategietan",
"Download" : "Deskargatu", "Unshare file" : "Utzi fitxategia partekatzen",
"Remove attachment" : "Kendu eranskina",
"Delete Attachment" : "Ezabatu eranskina", "Delete Attachment" : "Ezabatu eranskina",
"Restore Attachment" : "Berezarri eranskina", "Restore Attachment" : "Berezarri eranskina",
"File to share" : "Partekatzeko fitxategia", "File to share" : "Partekatzeko fitxategia",
@@ -209,10 +207,6 @@
"Set a due date" : "Ezarri epe-muga", "Set a due date" : "Ezarri epe-muga",
"Remove due date" : "Ezabatu epe-muga", "Remove due date" : "Ezabatu epe-muga",
"Select Date" : "Hautatu data", "Select Date" : "Hautatu data",
"Today" : "Gaur",
"Tomorrow" : "Bihar",
"Next week" : "Hurrengo astea",
"Next month" : "Hurrengo hilabetea",
"Save" : "Gorde", "Save" : "Gorde",
"The comment cannot be empty." : "Iruzkina ezin da hutsik egon.", "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.", "The comment cannot be longer than 1000 characters." : "Iruzkina ezin da 1000 karaktere baino luzeagoa izan.",
@@ -266,6 +260,8 @@
"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.", "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?", "Delete the board?" : "Taula ezabatu?",
"Loading filtered view" : "Kargatzen iragazitako ikuspegia", "Loading filtered view" : "Kargatzen iragazitako ikuspegia",
"Today" : "Gaur",
"Tomorrow" : "Bihar",
"This week" : "Aste honetan", "This week" : "Aste honetan",
"No due" : "Epemugarik ez", "No due" : "Epemugarik ez",
"Search for {searchQuery} in all boards" : "Bilatu {searchQuery} taula guztietan", "Search for {searchQuery} in all boards" : "Bilatu {searchQuery} taula guztietan",

View File

@@ -102,8 +102,6 @@ OC.L10N.register(
"No comments yet. Begin the discussion!" : "هنوز نظری وجود ندارد. بحثی را آغاز کنید!", "No comments yet. Begin the discussion!" : "هنوز نظری وجود ندارد. بحثی را آغاز کنید!",
"Due date" : "موعد مقرر", "Due date" : "موعد مقرر",
"Select Date" : "تاریخ را انتخاب کنید", "Select Date" : "تاریخ را انتخاب کنید",
"Today" : "Today",
"Tomorrow" : "فردا",
"Save" : "ذخیره", "Save" : "ذخیره",
"The comment cannot be empty." : "نظر نمی‌تواند خالی باشد.", "The comment cannot be empty." : "نظر نمی‌تواند خالی باشد.",
"The comment cannot be longer than 1000 characters." : "نظر نمی‌تواند طولانی‌تر از ۱۰۰۰ حرف باشد.", "The comment cannot be longer than 1000 characters." : "نظر نمی‌تواند طولانی‌تر از ۱۰۰۰ حرف باشد.",
@@ -129,6 +127,8 @@ OC.L10N.register(
"Shared with you" : "با شما به اشتراک گذاشته شده است", "Shared with you" : "با شما به اشتراک گذاشته شده است",
"Edit board" : "ویرایش تخته", "Edit board" : "ویرایش تخته",
"An error occurred" : "خطایی روی داد", "An error occurred" : "خطایی روی داد",
"Today" : "Today",
"Tomorrow" : "فردا",
"This week" : "این هفته" "This week" : "این هفته"
}, },
"nplurals=2; plural=(n > 1);"); "nplurals=2; plural=(n > 1);");

View File

@@ -100,8 +100,6 @@
"No comments yet. Begin the discussion!" : "هنوز نظری وجود ندارد. بحثی را آغاز کنید!", "No comments yet. Begin the discussion!" : "هنوز نظری وجود ندارد. بحثی را آغاز کنید!",
"Due date" : "موعد مقرر", "Due date" : "موعد مقرر",
"Select Date" : "تاریخ را انتخاب کنید", "Select Date" : "تاریخ را انتخاب کنید",
"Today" : "Today",
"Tomorrow" : "فردا",
"Save" : "ذخیره", "Save" : "ذخیره",
"The comment cannot be empty." : "نظر نمی‌تواند خالی باشد.", "The comment cannot be empty." : "نظر نمی‌تواند خالی باشد.",
"The comment cannot be longer than 1000 characters." : "نظر نمی‌تواند طولانی‌تر از ۱۰۰۰ حرف باشد.", "The comment cannot be longer than 1000 characters." : "نظر نمی‌تواند طولانی‌تر از ۱۰۰۰ حرف باشد.",
@@ -127,6 +125,8 @@
"Shared with you" : "با شما به اشتراک گذاشته شده است", "Shared with you" : "با شما به اشتراک گذاشته شده است",
"Edit board" : "ویرایش تخته", "Edit board" : "ویرایش تخته",
"An error occurred" : "خطایی روی داد", "An error occurred" : "خطایی روی داد",
"Today" : "Today",
"Tomorrow" : "فردا",
"This week" : "این هفته" "This week" : "این هفته"
},"pluralForm" :"nplurals=2; plural=(n > 1);" },"pluralForm" :"nplurals=2; plural=(n > 1);"
} }

View File

@@ -61,7 +61,6 @@ OC.L10N.register(
"The card \"%s\" on \"%s\" has reached its due date." : "Kortin \"%s\" on \"%s\" eräpäivä on tullut vastaan.", "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\".", "%s has mentioned you in a comment on \"%s\"." : "%s 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.", "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",
"Finished" : "Valmistunut", "Finished" : "Valmistunut",
"To review" : "Arvosteltavana", "To review" : "Arvosteltavana",
"Action needed" : "Toimia vaaditaan", "Action needed" : "Toimia vaaditaan",
@@ -83,8 +82,6 @@ OC.L10N.register(
"A PHP extension stopped the file upload" : "PHP:n laajennus esti tiedoston lähettämisen", "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", "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", "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", "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ö", "Card details" : "Näytä kortin sisältö",
"Add board" : "Lisää taulu", "Add board" : "Lisää taulu",
@@ -96,8 +93,6 @@ OC.L10N.register(
"Select a list" : "Valitse lista ", "Select a list" : "Valitse lista ",
"Card title" : "Kortin otsikko", "Card title" : "Kortin otsikko",
"Cancel" : "Peruuta", "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", "Open card" : "Avaa kortti",
"Close" : "Sulje", "Close" : "Sulje",
"Create card" : "Luo kortti", "Create card" : "Luo kortti",
@@ -162,30 +157,20 @@ OC.L10N.register(
"title and color value must be provided" : "tunnisteella on oltava nimi ja väri", "title and color value must be provided" : "tunnisteella on oltava nimi ja väri",
"Board name" : "Taulun nimi", "Board name" : "Taulun nimi",
"Members" : "Jäsenet", "Members" : "Jäsenet",
"Upload new files" : "Lähetä uusia tiedostoja",
"Add this attachment" : "Lisää tämä liite", "Add this attachment" : "Lisää tämä liite",
"Remove attachment" : "Poista liite",
"Delete Attachment" : "Poista liite", "Delete Attachment" : "Poista liite",
"Restore Attachment" : "Palauta liite", "Restore Attachment" : "Palauta liite",
"File to share" : "Jaettava tiedosto", "File to share" : "Jaettava tiedosto",
"Invalid path selected" : "Virheellinen polku valittu",
"Open in sidebar view" : "Avaa sivupalkkinäkymään",
"Attachments" : "Liitteet", "Attachments" : "Liitteet",
"Comments" : "Kommentit", "Comments" : "Kommentit",
"Modified" : "Muokattu", "Modified" : "Muokattu",
"Created" : "Luotu", "Created" : "Luotu",
"The title cannot be empty." : "Otsikko ei voi olla tyhjä.",
"No comments yet. Begin the discussion!" : "Ei vielä kommentteja. Aloita keskustelu!", "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...", "Assign a tag to this card…" : "Lisää kortille tunniste...",
"Due date" : "Eräpäivä", "Due date" : "Eräpäivä",
"Set a due date" : "Aseta eräpäivä", "Set a due date" : "Aseta eräpäivä",
"Remove due date" : "Poista eräpäivä", "Remove due date" : "Poista eräpäivä",
"Select Date" : "Valitse päivä", "Select Date" : "Valitse päivä",
"Today" : "Tänään",
"Tomorrow" : "Huomenna",
"Next week" : "Seuraava viikko",
"Next month" : "Seuraava kuukausi",
"Save" : "Tallenna", "Save" : "Tallenna",
"The comment cannot be empty." : "Kommentti ei voi olla tyhjä.", "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ä.", "The comment cannot be longer than 1000 characters." : "Kommentin on oltava alle 1000 merkkiä pitkä.",
@@ -198,10 +183,8 @@ OC.L10N.register(
"Edit description" : "Muokkaa kuvausta", "Edit description" : "Muokkaa kuvausta",
"View description" : "Näytä kuvaus", "View description" : "Näytä kuvaus",
"Add Attachment" : "Lisää liite", "Add Attachment" : "Lisää liite",
"Write a description …" : "Kirjoita kuvaus…",
"Choose attachment" : "Valitse liite", "Choose attachment" : "Valitse liite",
"(group)" : "(ryhmä)", "(group)" : "(ryhmä)",
"{count} comments, {unread} unread" : "{count} kommenttia, {unread} lukematonta",
"Assign to me" : "Määritä minulle", "Assign to me" : "Määritä minulle",
"Unassign myself" : "Poista määritys minulta", "Unassign myself" : "Poista määritys minulta",
"Move card" : "Siirrä kortti", "Move card" : "Siirrä kortti",
@@ -218,7 +201,6 @@ OC.L10N.register(
"Board details" : "Taulun tiedot", "Board details" : "Taulun tiedot",
"Edit board" : "Muokkaa taulua", "Edit board" : "Muokkaa taulua",
"Clone board" : "Monista taulu", "Clone board" : "Monista taulu",
"Archive board" : "Arkistoi taulu",
"All cards" : "Kaikki kortit", "All cards" : "Kaikki kortit",
"No notifications" : "Ei ilmoituksia", "No notifications" : "Ei ilmoituksia",
"Delete board" : "Poista taulu", "Delete board" : "Poista taulu",
@@ -226,18 +208,16 @@ OC.L10N.register(
"No reminder" : "Ei muistutusta", "No reminder" : "Ei muistutusta",
"An error occurred" : "Tapahtui virhe", "An error occurred" : "Tapahtui virhe",
"Delete the board?" : "Poistetaanko tämä taulu?", "Delete the board?" : "Poistetaanko tämä taulu?",
"Today" : "Tänään",
"Tomorrow" : "Huomenna",
"This week" : "Tällä viikolla", "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", "No upcoming cards" : "Ei tulevia kortteja",
"upcoming cards" : "tulevat kortit", "upcoming cards" : "tulevat kortit",
"Link to a board" : "Linkki taululle", "Link to a board" : "Linkki taululle",
"Link to a card" : "Linkitä korttiin", "Link to a card" : "Linkitä korttiin",
"Create a card" : "Luo kortti", "Create a card" : "Luo kortti",
"Something went wrong" : "Jokin meni vikaan", "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", "Maximum file size of {size} exceeded" : "Tiedoston enimmäiskoko {size} ylitetty",
"Error creating the share" : "Virhe jakoa luotaessa",
"Share" : "Jaa" "Share" : "Jaa"
}, },
"nplurals=2; plural=(n != 1);"); "nplurals=2; plural=(n != 1);");

View File

@@ -59,7 +59,6 @@
"The card \"%s\" on \"%s\" has reached its due date." : "Kortin \"%s\" on \"%s\" eräpäivä on tullut vastaan.", "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\".", "%s has mentioned you in a comment on \"%s\"." : "%s 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.", "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",
"Finished" : "Valmistunut", "Finished" : "Valmistunut",
"To review" : "Arvosteltavana", "To review" : "Arvosteltavana",
"Action needed" : "Toimia vaaditaan", "Action needed" : "Toimia vaaditaan",
@@ -81,8 +80,6 @@
"A PHP extension stopped the file upload" : "PHP:n laajennus esti tiedoston lähettämisen", "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", "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", "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", "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ö", "Card details" : "Näytä kortin sisältö",
"Add board" : "Lisää taulu", "Add board" : "Lisää taulu",
@@ -94,8 +91,6 @@
"Select a list" : "Valitse lista ", "Select a list" : "Valitse lista ",
"Card title" : "Kortin otsikko", "Card title" : "Kortin otsikko",
"Cancel" : "Peruuta", "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", "Open card" : "Avaa kortti",
"Close" : "Sulje", "Close" : "Sulje",
"Create card" : "Luo kortti", "Create card" : "Luo kortti",
@@ -160,30 +155,20 @@
"title and color value must be provided" : "tunnisteella on oltava nimi ja väri", "title and color value must be provided" : "tunnisteella on oltava nimi ja väri",
"Board name" : "Taulun nimi", "Board name" : "Taulun nimi",
"Members" : "Jäsenet", "Members" : "Jäsenet",
"Upload new files" : "Lähetä uusia tiedostoja",
"Add this attachment" : "Lisää tämä liite", "Add this attachment" : "Lisää tämä liite",
"Remove attachment" : "Poista liite",
"Delete Attachment" : "Poista liite", "Delete Attachment" : "Poista liite",
"Restore Attachment" : "Palauta liite", "Restore Attachment" : "Palauta liite",
"File to share" : "Jaettava tiedosto", "File to share" : "Jaettava tiedosto",
"Invalid path selected" : "Virheellinen polku valittu",
"Open in sidebar view" : "Avaa sivupalkkinäkymään",
"Attachments" : "Liitteet", "Attachments" : "Liitteet",
"Comments" : "Kommentit", "Comments" : "Kommentit",
"Modified" : "Muokattu", "Modified" : "Muokattu",
"Created" : "Luotu", "Created" : "Luotu",
"The title cannot be empty." : "Otsikko ei voi olla tyhjä.",
"No comments yet. Begin the discussion!" : "Ei vielä kommentteja. Aloita keskustelu!", "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...", "Assign a tag to this card…" : "Lisää kortille tunniste...",
"Due date" : "Eräpäivä", "Due date" : "Eräpäivä",
"Set a due date" : "Aseta eräpäivä", "Set a due date" : "Aseta eräpäivä",
"Remove due date" : "Poista eräpäivä", "Remove due date" : "Poista eräpäivä",
"Select Date" : "Valitse päivä", "Select Date" : "Valitse päivä",
"Today" : "Tänään",
"Tomorrow" : "Huomenna",
"Next week" : "Seuraava viikko",
"Next month" : "Seuraava kuukausi",
"Save" : "Tallenna", "Save" : "Tallenna",
"The comment cannot be empty." : "Kommentti ei voi olla tyhjä.", "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ä.", "The comment cannot be longer than 1000 characters." : "Kommentin on oltava alle 1000 merkkiä pitkä.",
@@ -196,10 +181,8 @@
"Edit description" : "Muokkaa kuvausta", "Edit description" : "Muokkaa kuvausta",
"View description" : "Näytä kuvaus", "View description" : "Näytä kuvaus",
"Add Attachment" : "Lisää liite", "Add Attachment" : "Lisää liite",
"Write a description …" : "Kirjoita kuvaus…",
"Choose attachment" : "Valitse liite", "Choose attachment" : "Valitse liite",
"(group)" : "(ryhmä)", "(group)" : "(ryhmä)",
"{count} comments, {unread} unread" : "{count} kommenttia, {unread} lukematonta",
"Assign to me" : "Määritä minulle", "Assign to me" : "Määritä minulle",
"Unassign myself" : "Poista määritys minulta", "Unassign myself" : "Poista määritys minulta",
"Move card" : "Siirrä kortti", "Move card" : "Siirrä kortti",
@@ -216,7 +199,6 @@
"Board details" : "Taulun tiedot", "Board details" : "Taulun tiedot",
"Edit board" : "Muokkaa taulua", "Edit board" : "Muokkaa taulua",
"Clone board" : "Monista taulu", "Clone board" : "Monista taulu",
"Archive board" : "Arkistoi taulu",
"All cards" : "Kaikki kortit", "All cards" : "Kaikki kortit",
"No notifications" : "Ei ilmoituksia", "No notifications" : "Ei ilmoituksia",
"Delete board" : "Poista taulu", "Delete board" : "Poista taulu",
@@ -224,18 +206,16 @@
"No reminder" : "Ei muistutusta", "No reminder" : "Ei muistutusta",
"An error occurred" : "Tapahtui virhe", "An error occurred" : "Tapahtui virhe",
"Delete the board?" : "Poistetaanko tämä taulu?", "Delete the board?" : "Poistetaanko tämä taulu?",
"Today" : "Tänään",
"Tomorrow" : "Huomenna",
"This week" : "Tällä viikolla", "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", "No upcoming cards" : "Ei tulevia kortteja",
"upcoming cards" : "tulevat kortit", "upcoming cards" : "tulevat kortit",
"Link to a board" : "Linkki taululle", "Link to a board" : "Linkki taululle",
"Link to a card" : "Linkitä korttiin", "Link to a card" : "Linkitä korttiin",
"Create a card" : "Luo kortti", "Create a card" : "Luo kortti",
"Something went wrong" : "Jokin meni vikaan", "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", "Maximum file size of {size} exceeded" : "Tiedoston enimmäiskoko {size} ylitetty",
"Error creating the share" : "Virhe jakoa luotaessa",
"Share" : "Jaa" "Share" : "Jaa"
},"pluralForm" :"nplurals=2; plural=(n != 1);" },"pluralForm" :"nplurals=2; plural=(n != 1);"
} }

View File

@@ -185,11 +185,9 @@ OC.L10N.register(
"Members" : "Membres", "Members" : "Membres",
"Upload new files" : "Téléverser de nouveaux fichiers", "Upload new files" : "Téléverser de nouveaux fichiers",
"Share from Files" : "Partager vos fichiers déjà stockés", "Share from Files" : "Partager vos fichiers déjà stockés",
"Pending share" : "Partage en attente",
"Add this attachment" : "Ajouter cette pièce jointe", "Add this attachment" : "Ajouter cette pièce jointe",
"Show in Files" : "Afficher dans Fichiers", "Show in Files" : "Afficher dans Fichiers",
"Download" : "Télécharger", "Unshare file" : "Ne plus partager le fichier",
"Remove attachment" : "Supprimer la pièce jointe",
"Delete Attachment" : "Supprimer la pièce jointe", "Delete Attachment" : "Supprimer la pièce jointe",
"Restore Attachment" : "Restaurer la pièce jointe", "Restore Attachment" : "Restaurer la pièce jointe",
"File to share" : "Fichier à partager", "File to share" : "Fichier à partager",
@@ -211,10 +209,6 @@ OC.L10N.register(
"Set a due date" : "Définir une date d'échéance", "Set a due date" : "Définir une date d'échéance",
"Remove due date" : "Supprimer la date d'échéance", "Remove due date" : "Supprimer la date d'échéance",
"Select Date" : "Sélectionnez une date", "Select Date" : "Sélectionnez une date",
"Today" : "Aujourd'hui",
"Tomorrow" : "Demain",
"Next week" : "Semaine suivante",
"Next month" : "Mois suivant",
"Save" : "Enregistrer", "Save" : "Enregistrer",
"The comment cannot be empty." : "Un commentaire ne peut pas être vide.", "The comment cannot be empty." : "Un commentaire ne peut pas être vide.",
"The comment cannot be longer than 1000 characters." : "Un commentaire est limité à 1 000 caractères.", "The comment cannot be longer than 1000 characters." : "Un commentaire est limité à 1 000 caractères.",
@@ -268,6 +262,8 @@ 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.", "Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Êtes-vous certain de vouloir supprimer le tableau {title} ? Cela supprimera l'ensemble des données de ce tableau.",
"Delete the board?" : "Supprimer le tableau ?", "Delete the board?" : "Supprimer le tableau ?",
"Loading filtered view" : "Chargement de la vue filtrée", "Loading filtered view" : "Chargement de la vue filtrée",
"Today" : "Aujourd'hui",
"Tomorrow" : "Demain",
"This week" : "Cette semaine", "This week" : "Cette semaine",
"No due" : "Sans échéance", "No due" : "Sans échéance",
"Search for {searchQuery} in all boards" : "Rechercher {searchQuery} dans tous les tableaux", "Search for {searchQuery} in all boards" : "Rechercher {searchQuery} dans tous les tableaux",

View File

@@ -183,11 +183,9 @@
"Members" : "Membres", "Members" : "Membres",
"Upload new files" : "Téléverser de nouveaux fichiers", "Upload new files" : "Téléverser de nouveaux fichiers",
"Share from Files" : "Partager vos fichiers déjà stockés", "Share from Files" : "Partager vos fichiers déjà stockés",
"Pending share" : "Partage en attente",
"Add this attachment" : "Ajouter cette pièce jointe", "Add this attachment" : "Ajouter cette pièce jointe",
"Show in Files" : "Afficher dans Fichiers", "Show in Files" : "Afficher dans Fichiers",
"Download" : "Télécharger", "Unshare file" : "Ne plus partager le fichier",
"Remove attachment" : "Supprimer la pièce jointe",
"Delete Attachment" : "Supprimer la pièce jointe", "Delete Attachment" : "Supprimer la pièce jointe",
"Restore Attachment" : "Restaurer la pièce jointe", "Restore Attachment" : "Restaurer la pièce jointe",
"File to share" : "Fichier à partager", "File to share" : "Fichier à partager",
@@ -209,10 +207,6 @@
"Set a due date" : "Définir une date d'échéance", "Set a due date" : "Définir une date d'échéance",
"Remove due date" : "Supprimer la date d'échéance", "Remove due date" : "Supprimer la date d'échéance",
"Select Date" : "Sélectionnez une date", "Select Date" : "Sélectionnez une date",
"Today" : "Aujourd'hui",
"Tomorrow" : "Demain",
"Next week" : "Semaine suivante",
"Next month" : "Mois suivant",
"Save" : "Enregistrer", "Save" : "Enregistrer",
"The comment cannot be empty." : "Un commentaire ne peut pas être vide.", "The comment cannot be empty." : "Un commentaire ne peut pas être vide.",
"The comment cannot be longer than 1000 characters." : "Un commentaire est limité à 1 000 caractères.", "The comment cannot be longer than 1000 characters." : "Un commentaire est limité à 1 000 caractères.",
@@ -266,6 +260,8 @@
"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.", "Are you sure you want to delete the board {title}? This will delete all the data of this board." : "Êtes-vous certain de vouloir supprimer le tableau {title} ? Cela supprimera l'ensemble des données de ce tableau.",
"Delete the board?" : "Supprimer le tableau ?", "Delete the board?" : "Supprimer le tableau ?",
"Loading filtered view" : "Chargement de la vue filtrée", "Loading filtered view" : "Chargement de la vue filtrée",
"Today" : "Aujourd'hui",
"Tomorrow" : "Demain",
"This week" : "Cette semaine", "This week" : "Cette semaine",
"No due" : "Sans échéance", "No due" : "Sans échéance",
"Search for {searchQuery} in all boards" : "Rechercher {searchQuery} dans tous les tableaux", "Search for {searchQuery} in all boards" : "Rechercher {searchQuery} dans tous les tableaux",

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