Compare commits

..

1 commit

Author SHA1 Message Date
Raimund Schlüßler
09245a16b6
Implement calculating the manual sort order
Signed-off-by: Raimund Schlüßler <raimund.schluessler@mailbox.org>
2019-07-17 19:22:24 +02:00
312 changed files with 12659 additions and 28291 deletions

View file

@ -5,7 +5,12 @@ module.exports = {
],
presets: [
[
'@babel/preset-env'
'@babel/preset-env',
{
targets: {
browsers: ['last 2 versions', 'ie >= 11']
}
}
]
]
}

View file

@ -1,13 +1,75 @@
module.exports = {
root: true,
env: {
browser: true,
es6: true,
node: true,
jest: true
},
globals: {
t: false,
n: false,
OC: false,
OCA: false,
moment: true,
$appVersion: true,
appVersion: true,
},
parserOptions: {
parser: 'babel-eslint'
},
extends: [
'@nextcloud',
'eslint:recommended',
'plugin:node/recommended',
'plugin:vue/recommended',
'standard'
],
plugins: ['vue', 'node'],
rules: {
// space before function ()
'space-before-function-paren': ['error', 'never'],
// curly braces always space
'object-curly-spacing': ['error', 'always'],
// stay consistent with array brackets
'array-bracket-newline': ['error', 'consistent'],
// 1tbs brace style
'brace-style': 'error',
// tabs only
indent: ['error', 'tab'],
'no-tabs': 0,
'vue/html-indent': ['error', 'tab'],
// only debug console
'no-console': ['error', { allow: ['error', 'warn', 'debug'] }],
// classes blocks
'padded-blocks': ['error', { classes: 'always' }],
// always add a trailing comma, for diff readability
'comma-dangle': ["error", "only-multiline"],
// always have the operator in front
'operator-linebreak': ['error', 'before'],
// ternary on multiline
'multiline-ternary': ['error', 'always-multiline'],
// force proper JSDocs
'valid-jsdoc': [2, {
'prefer': {
'return': 'returns'
},
'requireReturn': false,
'requireReturnDescription': false
}],
// es6 import/export and require
'node/no-unpublished-require': ['off'],
'node/no-unsupported-features/es-syntax': ['off'],
// space before self-closing elements
'vue/html-closing-bracket-spacing': 'error',
// code spacing with attributes
'vue/max-attributes-per-line': [
'error',
{
singleline: 3,
multiline: {
max: 3,
allowFirstLine: true
}
}
]
}
};

View file

@ -1,20 +0,0 @@
name: Build
on:
pull_request:
push:
branches:
- master
- stable*
jobs:
node-build:
runs-on: ubuntu-latest
name: Javascript build
steps:
- uses: actions/checkout@master
- name: Set up Node
uses: actions/setup-node@v1
with:
node-version: 12.x
- name: Make
run: make

View file

@ -1,48 +0,0 @@
name: Lint
on:
pull_request:
push:
branches:
- master
- stable*
jobs:
php-linters:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: ['7.2', '7.3', '7.4']
name: php${{ matrix.php-versions }} lint
steps:
- name: Checkout
uses: actions/checkout@master
- name: Set up php${{ matrix.php-versions }}
uses: shivammathur/setup-php@master
with:
php-version: ${{ matrix.php-versions }}
coverage: none
- name: Lint
run: composer run lint
- name: Download schema
run: wget https://apps.nextcloud.com/schema/apps/info.xsd
- name: Lint info.xml
uses: ChristophWurst/xmllint-action@v1
with:
xml-file: ./appinfo/info.xml
xml-schema-file: ./info.xsd
node-linters:
runs-on: ubuntu-latest
name: ESLint
steps:
- uses: actions/checkout@master
- name: Set up Node
uses: actions/setup-node@v1
with:
node-version: 12.x
- name: npm install
run: npm ci
- name: eslint
run: npm run lint
env:
CI: true

View file

@ -1,79 +0,0 @@
name: Test
on:
pull_request:
push:
branches:
- master
- stable*
jobs:
php-test:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: ['7.2', '7.3', '7.4']
name: php${{ matrix.php-versions }} test
steps:
- name: Checkout
uses: actions/checkout@master
- name: Set up php${{ matrix.php-versions }}
if: matrix.php-versions != '7.4'
uses: shivammathur/setup-php@master
with:
php-version: ${{ matrix.php-versions }}
coverage: none
- name: Set up php${{ matrix.php-versions }} with coverage
if: matrix.php-versions == '7.4'
uses: shivammathur/setup-php@master
with:
php-version: ${{ matrix.php-versions }}
coverage: xdebug
- name: Setup Nextcloud
run: |
mysql -u root -proot -e 'create database oc_autotest;'
mysql -u root -proot -e "CREATE USER 'oc_autotest'@'localhost' IDENTIFIED BY '';"
mysql -u root -proot -e "GRANT ALL ON oc_autotest.* TO 'oc_autotest'@'localhost';"
cd ..
git clone https://github.com/nextcloud/server.git --recursive --depth 1 -b master core
cp -r tasks core/apps/
php -f core/occ maintenance:install --database-name oc_autotest --database-user oc_autotest --admin-user admin --admin-pass admin --database mysql --database-pass=''
- name: Setup Tasks
run: |
cd ..
php -f ./core/occ app:enable tasks
# Enable app twice to check occ errors of registered commands
php -f core/occ app:enable tasks
cd core/apps/tasks
php ../../occ app:check-code tasks
- name: Test PHP
if: matrix.php-versions != '7.4'
run: |
cd ../core/apps/tasks
make test-php
# Check php test coverage and upload to codecov
- name: Test PHP with coverage
if: matrix.php-versions == '7.4'
run: |
cd ../core/apps/tasks
make test-php-coverage
bash <(curl -s https://codecov.io/bash) -cF php -t ${{ secrets.CODECOV_TOKEN }};
node-test:
runs-on: ubuntu-latest
name: Javascript test
steps:
- uses: actions/checkout@master
- name: Set up Node
uses: actions/setup-node@v1
with:
node-version: 12.x
- name: npm install
run: npm ci
- name: Set up Codecov
run: npm install -g codecov
- name: Test
run: npm run test
env:
CI: true
- name: Upload coverage
run: bash <(curl -s https://codecov.io/bash) -cF javascript -t ${{ secrets.CODECOV_TOKEN }};

5
.gitignore vendored
View file

@ -3,8 +3,8 @@
######################
/css/src/sprites-bw.scss
/css/src/sprites-color.scss
/img/sprt-bw.svg
/img/sprt-color.svg
/img/bw.svg
/img/color.svg
/js/
#################
@ -248,4 +248,3 @@ Various
build/
coverage
.phpunit.result.cache

128
.travis.yml Normal file
View file

@ -0,0 +1,128 @@
dist: trusty
addons:
apt:
packages:
- mysql-server-5.6
- mysql-client-core-5.6
- mysql-client-5.6
- libxml2-utils
branches:
only:
- master
- /^stable\d+(\.\d+)?$/
cache:
directories:
- "$HOME/.composer/cache/files"
- "$HOME/.npm"
env:
global:
- CORE_BRANCH=master
- PHP_COVERAGE=FALSE
- DB=mysql
before_install:
- php --info
# Set up DB
- if [[ "$DB" == 'pgsql' ]]; then createuser -U travis -s oc_autotest; fi
- if [[ "$DB" == 'mysql' ]]; then mysql -u root -e 'create database oc_autotest;'; fi
- if [[ "$DB" == 'mysql' ]]; then mysql -u root -e "CREATE USER 'oc_autotest'@'localhost' IDENTIFIED BY '';"; fi
- if [[ "$DB" == 'mysql' ]]; then mysql -u root -e "GRANT ALL ON oc_autotest.* TO 'oc_autotest'@'localhost';"; fi
- cd ..
- git clone https://github.com/nextcloud/server.git --recursive --depth 1 -b $CORE_BRANCH core
- mv tasks core/apps/
before_script:
# Set up core
- php -f core/occ maintenance:install --database-name oc_autotest --database-user oc_autotest --admin-user admin --admin-pass admin --database $DB --database-pass=''
# Set up app
- php -f core/occ app:enable tasks
# Enable app twice to check occ errors of registered commands
- php -f core/occ app:enable tasks
- cd core/apps/tasks
# Run JS tests
- npm install -g npm@latest
- make dev-setup
# XDebug is only needed if we report coverage -> speeds up other builds
- if [[ "$PHP_COVERAGE" = "FALSE" ]];
then phpenv config-rm xdebug.ini;
fi
script:
# Check info.xml schema validity
- wget https://apps.nextcloud.com/schema/apps/info.xsd
- xmllint appinfo/info.xml --schema info.xsd --noout
- rm info.xsd
# Check PHP syntax errors
- find . -name \*.php -not -path './vendor/*' -exec php -l "{}" \;
# Run server's app code checker
- php ../../occ app:check-code tasks
# Test php
- make test-php
- if [[ "$PHP_COVERAGE" = "TRUE" ]];
then make test-php-coverage;
else make test-php;
fi
after_success:
- if [[ "$PHP_COVERAGE" = "TRUE" ]];
then bash <(curl -s https://codecov.io/bash) -cF php;
fi
after_failure:
- cat ../../data/nextcloud.log
matrix:
include:
- stage: build
language: node_js
node_js:
- "10"
before_install:
before_script:
script:
- make
after_failure:
after_success:
- stage: test
language: node_js
node_js:
- "10"
before_install:
before_script:
install:
- npm install -g codecov
script:
- make dev-setup
- make test
- bash <(curl -s https://codecov.io/bash) -cF javascript;
after_failure:
after_success:
- language: php
php: 7.1
- language: php
php: 7.2
- language: php
php: 7.3
env: "DB=mysql CORE_BRANCH=master PHP_COVERAGE=TRUE"
fast_finish: true

View file

@ -1,83 +1,3 @@
## 0.12.1 - 2020-03-08
### Fixed
- Don't break the app by subscribed calendars #911
## 0.12.0 - 2020-03-08
### Added
- Properly show all tasks matching a collection (including subtasks) #83 #431
- Implement pinning a task, works with [OpenTasks](https://github.com/dmfs/opentasks) #695
- Allow to set task status #655
- Save last value of all-day setting and apply to new dates #657
- Load tasks from server if not found locally #608
- Adjust sort-order dropdown style #736
- Navigate to newly created calendar after creation #825
- Allow strike-through and italic in notes field #682 #702
- Use new icons for start and due date in details view #865
- Show user avatars for shared lists and in share view #862
- Move task body actions into dropdown #866
- Move to Github actions #844
- Move app-navigation to vue-components #818
- Remove padding on content area for small screens #900
- Updated translations
- Updated dependencies
- Code cleanup #632 #696 #698 #712 #713 #721 #722 #723 #843 #846 #853 #868
### Fixed
- Regression: Don't open detail view when toggling completed state #681
- Prevent editing non-public tasks in lists shared with me #862
- Prevent moving non-public tasks to lists shared with me #902
- Increase size of clickable area to 44x44 px to follow Nextcloud standard #734 #735
- Fix color of checked checkboxes in dark mode #679
- Fix error when clicking successful sync status #699
- Prevent adding a sharee twice #782
- Set primary color on default calendar creation #839
- Fix issues with very long task titles #840
- Prevent read-only calendars as default calendar #841
- Hide superfluous scrollbar in task list #842
- Better handle calendars without assigned color #904
## 0.11.3 - 2019-09-17
### Added
- Updated translations
- Updated dependencies
### Fixed
- Minor design fix for checkboxes on Nextcloud 16 #605
- Fix scrolling on Android #613
## 0.11.2 - 2019-09-10
### Added
- Support for Nextcloud 17 #579
- Adjust checkbox design to match overall Nextcloud style #572
- Rework task item layout #598
- Updated translations
- Updated dependencies
### Fixed
- Fix problems with Chrome 77 #593
- Don't show raw JSON when adding categories #416
- Only show toggle-all-day checkbox when a date is set #576
- Fix the key in `v-for` for tasks #578
- Slightly reduced the bundlesize #571
- Properly scope instance properties #586
- Use built-in replace functionality for translations #591
- Remove legacy code #600
## 0.11.1 - 2019-08-08
### Added
- Add possibility to drop tasks on calendars and collections in left sidebar #399
- Updated translations
- Updated dependencies
- Added unit- and integration tests for PHP code #511
### Fixed
- Enable showing calendars with percent-encoded characters in their URI #480
- Fix double-encoded calendar names and task name placeholders #486
- Correctly handle tasks in read-only calendars #523, #529
## 0.11.0 - 2019-06-25
### Added
- Implement sharing task lists with other users #410

View file

@ -111,15 +111,12 @@ appstore: clean build-svg-sprite build-js-production
mkdir -p $(appstore_build_directory) $(appstore_artifact_directory)
rsync -av . $(appstore_build_directory) \
--exclude=/.git \
--exclude=/.github \
--exclude=/.babelrc \
--exclude=/.babelrc.js \
--exclude=/.codecov.yml \
--exclude=/.editorconfig \
--exclude=/.eslintrc.js \
--exclude=/.gitattributes \
--exclude=/.gitignore \
--exclude=/.phpunit.result.cache \
--exclude=/.gitlab-ci.yml \
--exclude=/.prettierrc.js \
--exclude=/.scrutinizer.yml \
@ -128,15 +125,12 @@ appstore: clean build-svg-sprite build-js-production
--exclude=/.tx \
--exclude=/.v8flags*.json \
--exclude=/build.xml \
--exclude=/composer.json \
--exclude=/CONTRIBUTING.md \
--exclude=/issue_template.md \
--exclude=/gulpfile.js \
--exclude=/Makefile \
--exclude=/package-lock.json \
--exclude=/package.json \
--exclude=/phpunit.xml \
--exclude=/phpunit.integration.xml \
--exclude=/README.md \
--exclude=/svg-sprite-bw.json \
--exclude=/svg-sprite-bw.tmpl \

View file

@ -17,19 +17,6 @@
In your Nextcloud, simply navigate to »Apps«, choose the category »Organization«, find the Tasks app and enable it.
Then open the Tasks app from the app menu.
## Apps which sync with Nextcloud Tasks (using CalDAV)
* Apple Reminders (iOS, MacOS)
* [2Do](https://www.2doapp.com/) (Android, iOS, MacOS)
* [Davx5](https://www.davx5.com/) (Android)
* [OpenTasks](https://opentasks.app/) [(Android)](https://play.google.com/store/apps/details?id=org.dmfs.tasks)
* [Outlook Caldav Synchronizer](https://caldavsynchronizer.org/) (Windows)
* [Tasks: Astrid Todo List Clone](https://tasks.org/) [(Android)](https://play.google.com/store/apps/details?id=org.tasks&pcampaignid=MKT-Other-global-all-co-prtnr-py-PartBadge-Mar2515-1)
* [Qownnotes](https://www.qownnotes.org/) (Read-only, Cross Platform Desktop App)
* [Thunderbird Lightning Plugin](https://addons.thunderbird.net/en-US/thunderbird/addon/lightning/) (Cross Platform Desktop App)
* [Vdirsyncer](https://vdirsyncer.pimutils.org/en/stable/) (Linux)
* [BusyCal](https://www.busymac.com/busycal) (MacOS)
## Maintainers
[Raimund Schlüßler](https://github.com/raimund-schluessler) [and many more](https://github.com/nextcloud/tasks/graphs/contributors)

24
appinfo/app.php Normal file
View file

@ -0,0 +1,24 @@
<?php
/**
* Nextcloud - Tasks
*
* @author Raimund Schlüßler
* @copyright 2018 Raimund Schlüßler <raimund.schluessler@mailbox.org>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
* License as published by the Free Software Foundation; either
* version 3 of the License, or any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU AFFERO GENERAL PUBLIC LICENSE for more details.
*
* You should have received a copy of the GNU Affero General Public
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
*
*/
$app = new \OCA\Tasks\AppInfo\Application();
$app->registerNavigation();

View file

@ -4,8 +4,8 @@
<id>tasks</id>
<name>Tasks</name>
<summary>The Tasks app for Nextcloud</summary>
<description><![CDATA[Once enabled, a new Tasks menu will appear in your Nextcloud apps menu. From there you can add and delete tasks, edit their title, description, start and due dates and mark them as important. Tasks can be shared between users. Tasks can be synchronized using CalDav (each task list is linked to an Nextcloud calendar, to sync it to your local client - Thunderbird, Evolution, KDE Kontact, iCal, … - just add the calendar as a remote calendar in your client). You can download your tasks as ICS files using the download button for each calendar.]]></description>
<version>0.12.1</version>
<description><![CDATA[Once enabled, a new Tasks menu will appear in your Nextcloud apps menu. From there you can add and delete tasks, edit their title, description, start and due dates, reminder times, mark them as important, and add comments on them. Tasks can be shared between users. Tasks can be synchronized using CalDav (each task list is linked to an Nextcloud calendar, to sync it to your local client - Thunderbird, Evolution, KDE Kontact, iCal... - just add the calendar as a remote calendar in you client). You can download your tasks as ICS files using the download button for each calendar.]]></description>
<version>0.11.0</version>
<licence>agpl</licence>
<author mail="raimund.schluessler@mailbox.org">Raimund Schlüßler</author>
<namespace>Tasks</namespace>
@ -20,15 +20,6 @@
<repository>https://github.com/nextcloud/tasks.git</repository>
<screenshot>https://raw.githubusercontent.com/nextcloud/tasks/master/screenshots/tasks-1.png</screenshot>
<dependencies>
<nextcloud min-version="16" max-version="19"/>
<nextcloud min-version="15" max-version="17"/>
</dependencies>
<navigations>
<navigation>
<id>tasks</id>
<name>Tasks</name>
<route>tasks.page.index</route>
<icon>tasks.svg</icon>
<order>100</order>
</navigation>
</navigations>
</info>

View file

@ -19,12 +19,26 @@
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
*
*/
return [
'routes' => [
['name' => 'page#index', 'url' => '/', 'verb' => 'GET'],
['name' => 'collections#getCollections','url' => '/collections', 'verb' => 'GET'],
['name' => 'collections#setVisibility', 'url' => '/collection/{collectionID}/visibility/{visibility}', 'verb' => 'POST'],
['name' => 'settings#get', 'url' => '/settings', 'verb' => 'GET'],
['name' => 'settings#set', 'url' => '/settings/{setting}/{value}', 'verb' => 'POST'],
]
];
namespace OCA\Tasks;
// use \OCP\AppFramework\App;
use \OCA\Tasks\AppInfo\Application;
$application = new Application();
$application->registerRoutes($this, array('routes' => array(
// page
array('name' => 'page#index', 'url' => '/', 'verb' => 'GET'),
// templates
array('name' => 'page#templates', 'url' => '/templates/{template}', 'verb' => 'GET'),
// collections
array('name' => 'collections#getCollections', 'url' => '/collections', 'verb' => 'GET'),
array('name' => 'collections#setVisibility', 'url' => '/collection/{collectionID}/visibility/{visibility}', 'verb' => 'POST'),
// settings
array('name' => 'settings#get', 'url' => '/settings', 'verb' => 'GET'),
array('name' => 'settings#set', 'url' => '/settings/{setting}/{value}', 'verb' => 'POST'),
)));

View file

@ -1,12 +0,0 @@
{
"name": "nextcloud/tasks",
"description": "Lint config for nextcloud/tasks",
"license": "MIT",
"config": {
"optimize-autoloader": true,
"classmap-authoritative": true
},
"scripts": {
"lint": "find . -name \\*.php -not -path './vendor/*' -exec php -l \"{}\" \\;"
}
}

View file

@ -0,0 +1,85 @@
/**
* @copyright Copyright (c) 2019 John Molakvoæ <skjnldsv@protonmail.com>
*
* @author John Molakvoæ <skjnldsv@protonmail.com>
* @author Team Popcorn <teampopcornberlin@gmail.com>
* @author Raimund Schlüßler <raimund.schluessler@mailbox.org>
*
* @license GNU AGPL version 3 or any later version
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
.calendar-sharee {
padding: 0 5px;
display: inline-flex;
align-items: center;
width: 100%;
.icon {
margin-right: 5px;
opacity: 0.2;
width: 16px;
height: 16px;
display: inline-block;
margin-bottom: 2px;
&.icon-loading-small {
opacity: 1;
}
}
&__identifier {
width: 100%;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
display: inline-block;
vertical-align: top;
opacity: 0.7;
}
&__utils {
padding: 0 !important;
float: right;
position: relative !important;
display: inline-flex;
align-items: center;
flex-shrink: 0;
height: 20px;
.icon-delete {
display: inline-block;
width: 20px;
height: 20px;
opacity: 0.4;
margin-bottom: 2px;
margin-left: 4px;
&:hover {
box-shadow: unset !important;
}
}
// loading state
&--disabled {
opacity: .2 !important;
}
.checkbox + label {
padding: 0 !important;
}
label {
opacity: 0.7;
}
}
}

View file

@ -23,49 +23,40 @@
*/
.calendar-shares {
width: calc(100% - 6px);
margin: 6px;
&__list {
margin-top: 8px;
margin-bottom: 12px;
display: flex;
flex-direction: column;
}
&__shareematch--bold {
font-weight: bold;
}
.app-navigation-entry {
padding-left: 0 !important;
.avatar {
width: 32px;
height: 32px;
background-color: var(--color-border-dark);
background-size: 16px;
}
&__utils {
.action-checkbox__label {
padding-right: 0 !important;
}
.action-checkbox__label::before {
margin: 4px 4px 0 !important;
}
.icon-loading::after {
top: 70%;
left: 95%;
height: 14px;
width: 14px;
}
.multiselect {
width: inherit;
margin: 0;
.multiselect__tags:focus-within,
.multiselect__tags:hover {
border-color: var(--color-primary-element);
}
&__multiselect {
padding-left: 6px !important;
.multiselect {
width: calc(100% - 14px);
margin: 0;
.multiselect__tags:focus-within,
.multiselect__tags:hover {
border-color: var(--color-primary-element);
}
&:not(.showContent) .multiselect__content-wrapper {
display: none;
}
&:not(.showContent) .multiselect__content-wrapper {
display: none;
}
.multiselect__content-wrapper {
z-index: 101 !important;
}
}
.multiselect__content-wrapper {
z-index: 101 !important;
}
}
}

8
css/src/markdown.scss Executable file → Normal file
View file

@ -21,14 +21,6 @@
text-decoration: underline;
}
s {
text-decoration: line-through;
}
em {
font-style: italic;
}
ol,
ul {
margin-left: 20px;

File diff suppressed because it is too large Load diff

View file

@ -27,3 +27,4 @@
@import './src/Calendars/Calendar.scss';
@import './src/Calendars/CalendarShares.scss';
@import './src/Calendars/CalendarSharee.scss';

1
img/arrow-left.svg Normal file
View file

@ -0,0 +1 @@
<svg width="16" height="16" version="1.1" viewbox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="m5.5 8 6 6v1l-7-7 7-7v1z"/></svg>

After

Width:  |  Height:  |  Size: 140 B

1
img/arrow-right.svg Normal file
View file

@ -0,0 +1 @@
<svg width="16" height="16" version="1.1" viewbox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="m10.5 8-6-6v-1l7 7-7 7v-1z"/></svg>

After

Width:  |  Height:  |  Size: 142 B

View file

@ -1 +0,0 @@
<svg width="32" height="16" version="1.1" viewBox="0 0 32 16" xmlns="http://www.w3.org/2000/svg"><path d="m17 14h-2v-5h-5v-2h5v-5h2v5l5-0.028v2.028h-5z"/><path d="m24 6 4 4 4-3.994z" style="text-indent:0;text-transform:none"/></svg>

Before

Width:  |  Height:  |  Size: 233 B

View file

@ -1 +0,0 @@
<svg width="32" height="16" version="1.1" viewBox="0 0 32 16" xmlns="http://www.w3.org/2000/svg"><path d="m17 14h-2v-5h-5v-2h5v-5h2v5l5-0.028v2.028h-5z"/><path d="m32 10-4-4-4 3.994z" style="text-indent:0;text-transform:none"/></svg>

Before

Width:  |  Height:  |  Size: 234 B

View file

@ -1 +0,0 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M9.02 13.98h-2v-5h-5v-2h5v-5h2v5l5-.028V8.98h-5z"/></svg>

Before

Width:  |  Height:  |  Size: 150 B

View file

@ -1 +0,0 @@
<svg width="32" height="16" version="1.1" viewBox="0 0 32 16" xmlns="http://www.w3.org/2000/svg"><path d="m24 12.5h-1.9141l-0.76111-2.0444h-3.482l-0.71962 2.044h-1.8661l3.394-9h1.8604l3.4886 9zm-3.2393-3.5611-1.2003-3.3393-1.1775 3.3393z"/><path d="m8 12.5v-1.6387l4.5763-5.8387h-4.0597v-1.5226h6.3772v1.4123l-4.7719 6.071h4.9569v1.5167z"/><path d="m24 6 4 4 4-3.994z" style="text-indent:0;text-transform:none"/></svg>

Before

Width:  |  Height:  |  Size: 419 B

View file

@ -1 +0,0 @@
<svg width="32" height="16" version="1.1" viewBox="0 0 32 16" xmlns="http://www.w3.org/2000/svg"><path d="m16.743 12.5h-1.9141l-0.76109-2.0444h-3.4819l-0.7196 2.044h-1.8661l3.3939-9h1.8604l3.4885 9zm-3.2392-3.5611-1.2003-3.3393-1.1775 3.3393z"/><path d="m16.921 12.5v-1.6387l4.5763-5.8387h-4.0597v-1.5226h6.3772v1.4123l-4.7719 6.071h4.9569v1.5167z"/><path d="m32 10-4-4-4 3.994z" style="text-indent:0;text-transform:none"/></svg>

Before

Width:  |  Height:  |  Size: 430 B

View file

@ -1 +0,0 @@
<svg width="16" height="16" version="1.1" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="m8.7428 12.5h-1.9141l-0.76109-2.0444h-3.4819l-0.7196 2.044h-1.8661l3.3939-9h1.8604l3.4885 9zm-3.2392-3.5611-1.2003-3.3393-1.1775 3.3393h2.3778z"/><path d="m8.9212 12.5v-1.6387l4.5763-5.8387h-4.0597v-1.5226h6.3772v1.4123l-4.7719 6.071h4.9569v1.5167h-7.0788z"/></svg>

Before

Width:  |  Height:  |  Size: 372 B

View file

@ -1 +0,0 @@
<svg width="32" height="16" version="1.1" viewBox="0 0 32 16" xmlns="http://www.w3.org/2000/svg"><path d="m10.35 7.3 4 4 7.3-7.3" fill="none" stroke="#000" stroke-width="2"/><path d="m24 6 4 4 4-3.994z" style="text-indent:0;text-transform:none"/></svg>

Before

Width:  |  Height:  |  Size: 253 B

View file

@ -1 +0,0 @@
<svg width="32" height="16" version="1.1" viewBox="0 0 32 16" xmlns="http://www.w3.org/2000/svg"><path d="m10.35 7.3 4 4 7.3-7.3" fill="none" stroke="#000" stroke-width="2"/><path d="m32 10-4-4-4 3.994z" style="text-indent:0;text-transform:none"/></svg>

Before

Width:  |  Height:  |  Size: 254 B

View file

@ -1 +0,0 @@
<svg width="16" height="16" version="1.1" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="m2.35 7.3 4 4 7.3-7.3" fill="none" stroke="#000" stroke-width="2"/></svg>

Before

Width:  |  Height:  |  Size: 180 B

View file

@ -1 +0,0 @@
<svg width="32" height="16" version="1.1" viewbox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="m12 1c-0.554 0-1 0.446-1 1v2c0 0.554 0.446 1 1 1s1-0.446 1-1v-2c0-0.554-0.446-1-1-1zm8 0c-0.554 0-1 0.446-1 1v2c0 0.554 0.446 1 1 1s1-0.446 1-1v-2c0-0.554-0.446-1-1-1zm-6.5 2v1c0 0.831-0.669 1.5-1.5 1.5s-1.5-0.669-1.5-1.5v-0.9375c-0.8841 0.227-1.5017 1.0247-1.5 1.9375v3h2v-0.95312c-0.0012-0.02644 0.020435-0.04808 0.046875-0.046875h9.9062c0.02644-0.0012 0.04808 0.020435 0.04687 0.046875v5.9062c0.0012 0.02644-0.02043 0.04808-0.04687 0.04687h-9.9062c-0.02644 0.0012-0.04808-0.02044-0.04687-0.04687v-0.95312h-2v1c0 1.108 0.892 2 2 2h10c1.108 0 2-0.892 2-2v-8c0.0017-0.9128-0.61588-1.7105-1.5-1.9375v0.9375c0 0.831-0.669 1.5-1.5 1.5s-1.5-0.669-1.5-1.5v-1z"/><path d="m12 7v1.5h-3v3h3v1.5l4-3z" fill="#070000" style="paint-order:normal"/><path d="m24 6 4 4 4-3.994z" style="text-indent:0;text-transform:none"/></svg>

Before

Width:  |  Height:  |  Size: 921 B

View file

@ -1 +0,0 @@
<svg width="32" height="16" version="1.1" viewbox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="m12 1c-0.554 0-1 0.446-1 1v2c0 0.554 0.446 1 1 1s1-0.446 1-1v-2c0-0.554-0.446-1-1-1zm8 0c-0.554 0-1 0.446-1 1v2c0 0.554 0.446 1 1 1s1-0.446 1-1v-2c0-0.554-0.446-1-1-1zm-6.5 2v1c0 0.831-0.669 1.5-1.5 1.5s-1.5-0.669-1.5-1.5v-0.9375c-0.8841 0.227-1.5017 1.0247-1.5 1.9375v3h2v-0.95312c-0.0012-0.02644 0.020435-0.04808 0.046875-0.046875h9.9062c0.02644-0.0012 0.04808 0.020435 0.04687 0.046875v5.9062c0.0012 0.02644-0.02043 0.04808-0.04687 0.04687h-9.9062c-0.02644 0.0012-0.04808-0.02044-0.04687-0.04687v-0.95312h-2v1c0 1.108 0.892 2 2 2h10c1.108 0 2-0.892 2-2v-8c0.0017-0.9128-0.61588-1.7105-1.5-1.9375v0.9375c0 0.831-0.669 1.5-1.5 1.5s-1.5-0.669-1.5-1.5v-1z"/><path d="m12 7v1.5h-3v3h3v1.5l4-3z" fill="#070000" style="paint-order:normal"/><path d="m32 10-4-4-4 3.994z" style="text-indent:0;text-transform:none"/></svg>

Before

Width:  |  Height:  |  Size: 922 B

View file

@ -1 +0,0 @@
<svg width="16" height="16" version="1.1" viewbox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="m4 1c-0.554 0-1 0.446-1 1v2c0 0.554 0.446 1 1 1s1-0.446 1-1v-2c0-0.554-0.446-1-1-1zm8 0c-0.554 0-1 0.446-1 1v2c0 0.554 0.446 1 1 1s1-0.446 1-1v-2c0-0.554-0.446-1-1-1zm-6.5 2v1c0 0.831-0.669 1.5-1.5 1.5s-1.5-0.669-1.5-1.5v-0.9375c-0.8841 0.227-1.5017 1.0247-1.5 1.9375v3h2v-0.95312c-0.0012-0.02644 0.020435-0.04808 0.046875-0.046875h9.9062c0.02644-0.0012 0.048075 0.020435 0.046875 0.046875v5.9062c0.0012 0.02644-0.020435 0.048075-0.046875 0.046875h-9.9062c-0.02644 0.0012-0.048079-0.020435-0.046875-0.046875v-0.95312h-2v1c0 1.108 0.892 2 2 2h10c1.108 0 2-0.892 2-2v-8c0.0017-0.9128-0.61588-1.7105-1.5-1.9375v0.9375c0 0.831-0.669 1.5-1.5 1.5s-1.5-0.669-1.5-1.5v-1z"/><path d="m4 7v1.5h-3v3h3v1.5l4-3z" fill="#070000" style="paint-order:normal"/></svg>

Before

Width:  |  Height:  |  Size: 857 B

View file

@ -1 +0,0 @@
<svg width="32" height="16" version="1.1" viewbox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="m14 2v2h8v-2zm0 5v2h8v-2zm0 5v2h8v-2z"/><path d="m10 2v2h2v-2zm0 5v2h2v-2zm0 5v2h2v-2z" stroke-width=".5"/><path d="m24 6 4 4 4-3.994z" style="text-indent:0;text-transform:none"/></svg>

Before

Width:  |  Height:  |  Size: 292 B

View file

@ -1 +0,0 @@
<svg width="32" height="16" version="1.1" viewbox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="m14 2v2h8v-2zm0 5v2h8v-2zm0 5v2h8v-2z"/><path d="m10 2v2h2v-2zm0 5v2h2v-2zm0 5v2h2v-2z" stroke-width=".5"/><path d="m32 10-4-4-4 3.994z" style="text-indent:0;text-transform:none"/></svg>

Before

Width:  |  Height:  |  Size: 293 B

View file

@ -1 +0,0 @@
<svg width="16" height="16" version="1.1" viewbox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="m6 2v2h8v-2zm0 5v2h8v-2zm0 5v2h8v-2z"/><path d="m2 2v2h2v-2zm0 5v2h2v-2zm0 5v2h2v-2z" stroke-width=".5"/></svg>

Before

Width:  |  Height:  |  Size: 218 B

View file

@ -1 +0,0 @@
<svg width="32" height="16" version="1.1" viewBox="0 0 32 16" xmlns="http://www.w3.org/2000/svg"><g transform="translate(8)" fill="none" fill-opacity="0" stroke="#000" stroke-linejoin="round" stroke-width="1.5"><rect x="4.75" y="1.75" width="9.5" height="9.5"/><polyline points="3.5 4.75 1.75 4.75 1.75 7"/><polyline points="1.75 12 1.75 14.25 4 14.25"/><polyline points="9 14.25 11.25 14.25 11.25 13"/><line x1="1.75" x2="1.75" y1="8" y2="11"/><line x1="5" x2="8" y1="14.25" y2="14.25"/></g><path d="m24 6 4 4 4-3.994z" style="text-indent:0;text-transform:none"/></svg>

Before

Width:  |  Height:  |  Size: 571 B

View file

@ -1 +0,0 @@
<svg width="32" height="16" version="1.1" viewBox="0 0 32 16" xmlns="http://www.w3.org/2000/svg"><g transform="translate(8)" fill="none" fill-opacity="0" stroke="#000" stroke-linejoin="round" stroke-width="1.5"><rect x="4.75" y="1.75" width="9.5" height="9.5"/><polyline points="3.5 4.75 1.75 4.75 1.75 7"/><polyline points="1.75 12 1.75 14.25 4 14.25"/><polyline points="9 14.25 11.25 14.25 11.25 13"/><line x1="1.75" x2="1.75" y1="8" y2="11"/><line x1="5" x2="8" y1="14.25" y2="14.25"/></g><path d="m32 10-4-4-4 3.994z" style="text-indent:0;text-transform:none"/></svg>

Before

Width:  |  Height:  |  Size: 572 B

View file

@ -1 +0,0 @@
<svg width="16" height="16" version="1.1" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-opacity="0" stroke="#000" stroke-linejoin="round" stroke-width="1.5"><rect x="4.75" y="1.75" width="9.5" height="9.5"/><polyline points="3.5 4.75 1.75 4.75 1.75 7"/><polyline points="1.75 12 1.75 14.25 4 14.25"/><polyline points="9 14.25 11.25 14.25 11.25 13"/><line x1="1.75" x2="1.75" y1="8" y2="11"/><line x1="5" x2="8" y1="14.25" y2="14.25"/></g></svg>

Before

Width:  |  Height:  |  Size: 474 B

View file

@ -1 +0,0 @@
<svg width="32" height="16" version="1.1" viewBox="0 0 32 16" xmlns="http://www.w3.org/2000/svg"><path d="m20.594 1.344c-0.532-0.03-1.094 0.156-1.594 0.656l3 3c1.5-1.5 0.188-3.563-1.406-3.656zm-2.594 1.656-7 7-2 5 5-2 7-7zm-6.5 7.5 2 2-2.5 1.5-1-1z"/><path d="m24 6 4 4 4-4z"/></svg>

Before

Width:  |  Height:  |  Size: 284 B

View file

@ -1 +0,0 @@
<svg width="32" height="16" version="1.1" viewBox="0 0 32 16" xmlns="http://www.w3.org/2000/svg"><path d="m20.594 1.344c-0.532-0.03-1.094 0.156-1.594 0.656l3 3c1.5-1.5 0.188-3.563-1.406-3.656zm-2.594 1.656-7 7-2 5 5-2 7-7zm-6.5 7.5 2 2-2.5 1.5-1-1z"/><path d="m32 10-4-4-4 4z"/></svg>

Before

Width:  |  Height:  |  Size: 285 B

View file

@ -1 +0,0 @@
<svg width="16" height="16" version="1.1" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M12.594 1.344C12.062 1.314 11.5 1.5 11 2l3 3c1.5-1.5.188-3.563-1.406-3.656zM10 3l-7 7-2 5 5-2 7-7-3-3zm-6.5 7.5l2 2L3 14l-1-1 1.5-2.5z"/></svg>

Before

Width:  |  Height:  |  Size: 250 B

View file

@ -1 +0,0 @@
<svg width="32" height="16" version="1.1" viewbox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="m12 1c-0.554 0-1 0.446-1 1v2c0 0.554 0.446 1 1 1s1-0.446 1-1v-2c0-0.554-0.446-1-1-1zm8 0c-0.554 0-1 0.446-1 1v2c0 0.554 0.446 1 1 1s1-0.446 1-1v-2c0-0.554-0.446-1-1-1zm-6.5 2v1c0 0.831-0.669 1.5-1.5 1.5s-1.5-0.669-1.5-1.5v-0.9375c-0.8841 0.227-1.5017 1.0247-1.5 1.9375v8c0 1.108 0.892 2 2 2h10c1.108 0 2-0.892 2-2v-2.5l-2 1.5v0.95312c0.0012 0.02644-0.02043 0.04808-0.04687 0.04687h-9.9062c-0.02644 0.0012-0.04808-0.02044-0.04687-0.04687v-5.9062c-0.00121-0.02644 0.020425-0.04808 0.046865-0.046875h9.9062c0.02644-0.0012 0.04808 0.020435 0.04687 0.046875v0.95312l2 1.5v-4.5c0.0017-0.9128-0.61588-1.7105-1.5-1.9375v0.9375c0 0.831-0.669 1.5-1.5 1.5s-1.5-0.669-1.5-1.5v-1z"/><path d="m19 7v1.5h-3v3h3v1.5l4-3z" fill="#070000" style="paint-order:normal"/><path d="m24 6 4 4 4-3.994z" style="text-indent:0;text-transform:none"/></svg>

Before

Width:  |  Height:  |  Size: 934 B

View file

@ -1 +0,0 @@
<svg width="32" height="16" version="1.1" viewbox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="m12 1c-0.554 0-1 0.446-1 1v2c0 0.554 0.446 1 1 1s1-0.446 1-1v-2c0-0.554-0.446-1-1-1zm8 0c-0.554 0-1 0.446-1 1v2c0 0.554 0.446 1 1 1s1-0.446 1-1v-2c0-0.554-0.446-1-1-1zm-6.5 2v1c0 0.831-0.669 1.5-1.5 1.5s-1.5-0.669-1.5-1.5v-0.9375c-0.8841 0.227-1.5017 1.0247-1.5 1.9375v8c0 1.108 0.892 2 2 2h10c1.108 0 2-0.892 2-2v-2.5l-2 1.5v0.95312c0.0012 0.02644-0.02043 0.04808-0.04687 0.04687h-9.9062c-0.02644 0.0012-0.04808-0.02044-0.04687-0.04687v-5.9062c-0.00121-0.02644 0.020425-0.04808 0.046865-0.046875h9.9062c0.02644-0.0012 0.04808 0.020435 0.04687 0.046875v0.95312l2 1.5v-4.5c0.0017-0.9128-0.61588-1.7105-1.5-1.9375v0.9375c0 0.831-0.669 1.5-1.5 1.5s-1.5-0.669-1.5-1.5v-1z"/><path d="m19 7v1.5h-3v3h3v1.5l4-3z" fill="#070000" style="paint-order:normal"/><path d="m32 10-4-4-4 3.994z" style="text-indent:0;text-transform:none"/></svg>

Before

Width:  |  Height:  |  Size: 935 B

View file

@ -1 +0,0 @@
<svg width="16" height="16" version="1.1" viewbox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="m4 1c-0.554 0-1 0.446-1 1v2c0 0.554 0.446 1 1 1s1-0.446 1-1v-2c0-0.554-0.446-1-1-1zm8 0c-0.554 0-1 0.446-1 1v2c0 0.554 0.446 1 1 1s1-0.446 1-1v-2c0-0.554-0.446-1-1-1zm-6.5 2v1c0 0.831-0.669 1.5-1.5 1.5s-1.5-0.669-1.5-1.5v-0.9375c-0.8841 0.227-1.5017 1.0247-1.5 1.9375v8c0 1.108 0.892 2 2 2h10c1.108 0 2-0.892 2-2v-2.5l-2 1.5v0.95312c0.0012 0.02644-0.020435 0.048075-0.046875 0.046875h-9.9062c-0.02644 0.0012-0.048079-0.020435-0.046875-0.046875v-5.9062c-0.0012-0.02644 0.020435-0.04808 0.046875-0.046875h9.9062c0.02644-0.0012 0.048075 0.020435 0.046875 0.046875v0.95312l2 1.5v-4.5c0.0017-0.9128-0.61588-1.7105-1.5-1.9375v0.9375c0 0.831-0.669 1.5-1.5 1.5s-1.5-0.669-1.5-1.5v-1z"/><path d="m11 7v1.5h-3v3h3v1.5l4-3z" fill="#070000" style="paint-order:normal"/></svg>

Before

Width:  |  Height:  |  Size: 870 B

View file

@ -1 +0,0 @@
<svg width="16" height="16" version="1.1" viewbox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="m2 2v2h12v-2z"/><path d="m6 7v2h8v-2zm4 5v2h4v-2z" opacity=".5"/></svg>

Before

Width:  |  Height:  |  Size: 178 B

View file

@ -1 +0,0 @@
<svg width="32" height="16" version="1.1" viewBox="0 0 32 16" xmlns="http://www.w3.org/2000/svg"><path d="m16 0.2 2.2 5.5 5.8 0.4-4.5 3.7 1.5 5.7-5-3.1-5 3.1 1.5-5.7-4.5-3.7 5.8-0.4z"/><path d="m24 6 4 4 4-3.994z" style="text-indent:0;text-transform:none"/></svg>

Before

Width:  |  Height:  |  Size: 264 B

View file

@ -1 +0,0 @@
<svg width="32" height="16" version="1.1" viewBox="0 0 32 16" xmlns="http://www.w3.org/2000/svg"><path d="m16 0.2 2.2 5.5 5.8 0.4-4.5 3.7 1.5 5.7-5-3.1-5 3.1 1.5-5.7-4.5-3.7 5.8-0.4z"/><path d="m32 10-4-4-4 3.994z" style="text-indent:0;text-transform:none"/></svg>

Before

Width:  |  Height:  |  Size: 265 B

View file

@ -1 +0,0 @@
<svg width="16" height="16" version="1.1" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="m8 0.2 2.2 5.5 5.8 0.4-4.5 3.7 1.5 5.7-5-3.1-5 3.1 1.5-5.7-4.5-3.7 5.8-0.4z"/></svg>

Before

Width:  |  Height:  |  Size: 191 B

View file

@ -1 +0,0 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="m8 3c-3.11 0-5.927 1.72-8 4.5 2.073 2.78 4.89 4.5 8 4.5s5.927-1.72 8-4.5c-2.073-2.78-4.89-4.5-8-4.5zm0 1.5a3 3 0 1 1 0 6 3 3 0 0 1 0-6zm0 1.5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3z"/></svg>

Before

Width:  |  Height:  |  Size: 280 B

View file

@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.1" viewBox="0 0 16 16"><path d="m2.35 7.3 4 4l7.3-7.3" stroke="#000" stroke-width="2" fill="none"/></svg>
<svg width="16" height="16" version="1.1" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="m7.1754 13.693c2.5618-5.7886 5.8526-9.6003 7.3076-11.335 1.183-1.401 0.719-1.177 0.199-0.8234-2.137 1.4563-6.1287 6.1399-7.6559 7.7638-0.2793 0.299-0.9223 1.0036-1.067 1.0036-0.1596 0-0.7052-0.263-1.0197-0.4552-1.1895-0.7316-2.3298-1.4514-3.0451-1.7203-1.5226-0.5738-1.0921-0.0263-1.0048 0.1568 0.2709 0.5679 3.9479 3.6637 5.1652 5.1237 0.66413 0.7746 0.72507 1.2925 1.1207 0.286z" stroke="#000" stroke-miterlimit="10" stroke-width=".535"/></svg>

Before

Width:  |  Height:  |  Size: 180 B

After

Width:  |  Height:  |  Size: 553 B

View file

@ -1 +0,0 @@
<svg width="16" height="16" version="1.1" viewbox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="m4 1c-0.554 0-1 0.446-1 1v2c0 0.554 0.446 1 1 1s1-0.446 1-1v-2c0-0.554-0.446-1-1-1zm8 0c-0.554 0-1 0.446-1 1v2c0 0.554 0.446 1 1 1s1-0.446 1-1v-2c0-0.554-0.446-1-1-1zm-6.5 2v1c0 0.831-0.669 1.5-1.5 1.5s-1.5-0.669-1.5-1.5v-0.9375c-0.8841 0.227-1.5017 1.0247-1.5 1.9375v3h2v-0.95312c-0.0012-0.02644 0.020435-0.04808 0.046875-0.046875h9.9062c0.02644-0.0012 0.048075 0.020435 0.046875 0.046875v5.9062c0.0012 0.02644-0.020435 0.048075-0.046875 0.046875h-9.9062c-0.02644 0.0012-0.048079-0.020435-0.046875-0.046875v-0.95312h-2v1c0 1.108 0.892 2 2 2h10c1.108 0 2-0.892 2-2v-8c0.0017-0.9128-0.61588-1.7105-1.5-1.9375v0.9375c0 0.831-0.669 1.5-1.5 1.5s-1.5-0.669-1.5-1.5v-1z"/><path d="m4 7v1.5h-3v3h3v1.5l4-3z" fill="#070000" style="paint-order:normal"/></svg>

Before

Width:  |  Height:  |  Size: 857 B

View file

@ -1 +0,0 @@
<svg width="16" height="16" version="1.0" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g transform="matrix(0.05333333,0,0,-0.05333333,-1.5999999,17.599999)" style="fill:#000000;stroke:none"><path d="m 100,315 c 0,-8 5,-15 10,-15 6,0 10,-10 10,-23 0,-15 24,-46 68,-90 37,-37 71,-67 75,-67 13,0 7,37 -8,50 -17,14 -22,130 -5,130 6,0 10,7 10,15 0,12 -16,15 -80,15 -64,0 -80,-3 -80,-15 z" /><path d="m 30,288 c 0,-7 20,-33 46,-59 39,-40 43,-47 30,-59 -9,-7 -16,-21 -16,-31 0,-15 7,-19 35,-19 35,0 35,0 35,-45 0,-38 3,-45 20,-45 16,0 20,7 20,37 v 37 L 238,67 C 277,29 300,20 300,43 300,59 59,300 42,300 36,300 30,295 30,288 Z" /></g></svg>

Before

Width:  |  Height:  |  Size: 645 B

View file

@ -1 +0,0 @@
<svg width="16" height="16" version="1.0" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><g transform="matrix(0.05333333,0,0,-0.05333333,-8.9728808,16.481355)" style="fill:#000000;stroke:none"><path d="m 238.24153,294.02543 c 0,-8 5,-15 10,-15 17,0 12,-116.00001 -5,-130.00001 -8,-7 -15,-21 -15,-31 0,-15 7,-18.999996 35,-18.999996 35,0 35,0 35,-45 0,-38 3,-45.0000003 20,-45.0000003 17,0 20,7.0000003 20,45.0000003 0,45 0,45 35,45 28,0 35,3.999996 35,18.999996 0,10 -7,24 -15,31 -17,14 -22,130.00001 -5,130.00001 6,0 10,7 10,15 0,12 -16,15 -80,15 -64,0 -80,-3 -80,-15 z" /></g></svg>

Before

Width:  |  Height:  |  Size: 593 B

1
img/src/bw/random.svg Normal file
View file

@ -0,0 +1 @@
<svg width="16" height="16" version="1.1" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="m15 4-3 3v-6z"/><path d="m15 12-3 3v-6z"/><path d="m1 3v2c1.8999 0 2.7807 0.4248 3.3418 0.9688 0.1998 0.1937 0.3592 0.433 0.5078 0.6914 0.2256-0.6267 0.5193-1.3219 1.002-2.002-0.0402-0.0419-0.0749-0.0859-0.1172-0.127-0.9861-0.956-2.5111-1.5312-4.7344-1.5312zm7.1504 6.3398c-0.2256 0.6267-0.5193 1.3222-1.002 2.0022 0.0402 0.042 0.0749 0.086 0.1172 0.127 0.9861 0.956 2.5111 1.531 4.7344 1.531v-2c-1.9 0-2.7807-0.425-3.3418-0.969-0.1998-0.1935-0.3592-0.4328-0.5078-0.6912z"/><path d="m1 12c8.2464 0 2.7536-8 11-8" fill="none" stroke="#000" stroke-width="2"/></svg>

After

Width:  |  Height:  |  Size: 670 B

1
img/src/bw/settings.svg Normal file
View file

@ -0,0 +1 @@
<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M6.938 0A.43.43 0 0 0 6.5.438v1.25a5.818 5.818 0 0 0-1.53.656l-.907-.906a.436.436 0 0 0-.625 0l-1.5 1.5a.436.436 0 0 0 0 .624l.906.907c-.285.48-.514.976-.656 1.53H.938a.43.43 0 0 0-.438.438v2.125C.5 8.81.69 9 .938 9h1.25a5.82 5.82 0 0 0 .656 1.53l-.907.908a.436.436 0 0 0 0 .625l1.5 1.5c.176.176.45.176.625 0l.907-.907c.48.285.976.514 1.53.656v1.25c0 .25.19.438.437.438h2.125a.43.43 0 0 0 .438-.438v-1.25a5.82 5.82 0 0 0 1.53-.657l.907.907c.176.175.45.175.625 0l1.5-1.5a.436.436 0 0 0 0-.625l-.906-.906A5.79 5.79 0 0 0 13.812 9h1.25a.43.43 0 0 0 .438-.438V6.437A.43.43 0 0 0 15.062 6h-1.25a5.79 5.79 0 0 0-.656-1.532l.906-.906a.436.436 0 0 0 0-.625l-1.5-1.5a.436.436 0 0 0-.625 0l-.906.906a5.816 5.816 0 0 0-1.53-.656V.437A.43.43 0 0 0 9.063 0zM8 4.157a3.344 3.344 0 0 1 0 6.686 3.344 3.344 0 0 1 0-6.686z"/></svg>

After

Width:  |  Height:  |  Size: 907 B

1
img/src/bw/sort-down.svg Normal file
View file

@ -0,0 +1 @@
<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg"><path d="m4 6 4 4 4-3.994z" style="block-progression:tb;text-indent:0;text-transform:none"/></svg>

After

Width:  |  Height:  |  Size: 162 B

1
img/src/bw/sort-up.svg Normal file
View file

@ -0,0 +1 @@
<svg width="16" height="16" xmlns="http://www.w3.org/2000/svg"><path d="m12 10-4-4-4 3.994z" style="block-progression:tb;text-indent:0;text-transform:none"/></svg>

After

Width:  |  Height:  |  Size: 164 B

View file

@ -1 +0,0 @@
<svg width="16" height="16" version="1.1" viewbox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="m4 1c-0.554 0-1 0.446-1 1v2c0 0.554 0.446 1 1 1s1-0.446 1-1v-2c0-0.554-0.446-1-1-1zm8 0c-0.554 0-1 0.446-1 1v2c0 0.554 0.446 1 1 1s1-0.446 1-1v-2c0-0.554-0.446-1-1-1zm-6.5 2v1c0 0.831-0.669 1.5-1.5 1.5s-1.5-0.669-1.5-1.5v-0.9375c-0.8841 0.227-1.5017 1.0247-1.5 1.9375v8c0 1.108 0.892 2 2 2h10c1.108 0 2-0.892 2-2v-2.5l-2 1.5v0.95312c0.0012 0.02644-0.020435 0.048075-0.046875 0.046875h-9.9062c-0.02644 0.0012-0.048079-0.020435-0.046875-0.046875v-5.9062c-0.0012-0.02644 0.020435-0.04808 0.046875-0.046875h9.9062c0.02644-0.0012 0.048075 0.020435 0.046875 0.046875v0.95312l2 1.5v-4.5c0.0017-0.9128-0.61588-1.7105-1.5-1.9375v0.9375c0 0.831-0.669 1.5-1.5 1.5s-1.5-0.669-1.5-1.5v-1z"/><path d="m11 7v1.5h-3v3h3v1.5l4-3z" fill="#070000" style="paint-order:normal"/></svg>

Before

Width:  |  Height:  |  Size: 870 B

View file

Before

Width:  |  Height:  |  Size: 153 B

After

Width:  |  Height:  |  Size: 153 B

View file

@ -1 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" height="16" width="16" version="1.1" viewBox="0 0 16 16"><path d="m2.35 7.3 4 4l7.3-7.3" stroke="#71b73d" stroke-width="2" fill="none"/></svg>
<svg width="16" height="16" version="1.1" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="m7.1754 13.693c2.5618-5.7886 5.8526-9.6003 7.3076-11.335 1.183-1.401 0.719-1.177 0.199-0.8234-2.137 1.4563-6.1287 6.1399-7.6559 7.7638-0.2793 0.299-0.9223 1.0036-1.067 1.0036-0.1596 0-0.7052-0.263-1.0197-0.4552-1.1895-0.7316-2.3298-1.4514-3.0451-1.7203-1.5226-0.5738-1.0921-0.0263-1.0048 0.1568 0.2709 0.5679 3.9479 3.6637 5.1652 5.1237 0.66413 0.7746 0.72507 1.2925 1.1207 0.286z" fill="#71b73d" stroke="#71b73d" stroke-miterlimit="10" stroke-width=".535"/></svg>

Before

Width:  |  Height:  |  Size: 183 B

After

Width:  |  Height:  |  Size: 571 B

View file

@ -1 +0,0 @@
<svg width="16" height="16" version="1.1" viewbox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="m4 1c-0.554 0-1 0.446-1 1v2c0 0.554 0.446 1 1 1s1-0.446 1-1v-2c0-0.554-0.446-1-1-1zm8 0c-0.554 0-1 0.446-1 1v2c0 0.554 0.446 1 1 1s1-0.446 1-1v-2c0-0.554-0.446-1-1-1zm-6.5 2v1c0 0.831-0.669 1.5-1.5 1.5s-1.5-0.669-1.5-1.5v-0.9375c-0.8841 0.227-1.5017 1.0247-1.5 1.9375v3h2v-0.95312c-0.0012-0.02644 0.020435-0.04808 0.046875-0.046875h9.9062c0.02644-0.0012 0.048075 0.020435 0.046875 0.046875v5.9062c0.0012 0.02644-0.020435 0.048075-0.046875 0.046875h-9.9062c-0.02644 0.0012-0.048079-0.020435-0.046875-0.046875v-0.95312h-2v1c0 1.108 0.892 2 2 2h10c1.108 0 2-0.892 2-2v-8c0.0017-0.9128-0.61588-1.7105-1.5-1.9375v0.9375c0 0.831-0.669 1.5-1.5 1.5s-1.5-0.669-1.5-1.5v-1z" fill="#4574A9"/><path d="m4 7v1.5h-3v3h3v1.5l4-3z" fill="#4574A9" style="paint-order:normal"/></svg>

Before

Width:  |  Height:  |  Size: 872 B

View file

@ -1 +0,0 @@
<svg width="16" height="16" version="1.1" viewbox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="m4 1c-0.554 0-1 0.446-1 1v2c0 0.554 0.446 1 1 1s1-0.446 1-1v-2c0-0.554-0.446-1-1-1zm8 0c-0.554 0-1 0.446-1 1v2c0 0.554 0.446 1 1 1s1-0.446 1-1v-2c0-0.554-0.446-1-1-1zm-6.5 2v1c0 0.831-0.669 1.5-1.5 1.5s-1.5-0.669-1.5-1.5v-0.9375c-0.8841 0.227-1.5017 1.0247-1.5 1.9375v3h2v-0.95312c-0.0012-0.02644 0.020435-0.04808 0.046875-0.046875h9.9062c0.02644-0.0012 0.048075 0.020435 0.046875 0.046875v5.9062c0.0012 0.02644-0.020435 0.048075-0.046875 0.046875h-9.9062c-0.02644 0.0012-0.048079-0.020435-0.046875-0.046875v-0.95312h-2v1c0 1.108 0.892 2 2 2h10c1.108 0 2-0.892 2-2v-8c0.0017-0.9128-0.61588-1.7105-1.5-1.9375v0.9375c0 0.831-0.669 1.5-1.5 1.5s-1.5-0.669-1.5-1.5v-1z" fill="#CE3433"/><path d="m4 7v1.5h-3v3h3v1.5l4-3z" fill="#CE3433" style="paint-order:normal"/></svg>

Before

Width:  |  Height:  |  Size: 872 B

View file

@ -1 +0,0 @@
<svg width="16" height="16" version="1.1" viewbox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="m4 1c-0.554 0-1 0.446-1 1v2c0 0.554 0.446 1 1 1s1-0.446 1-1v-2c0-0.554-0.446-1-1-1zm8 0c-0.554 0-1 0.446-1 1v2c0 0.554 0.446 1 1 1s1-0.446 1-1v-2c0-0.554-0.446-1-1-1zm-6.5 2v1c0 0.831-0.669 1.5-1.5 1.5s-1.5-0.669-1.5-1.5v-0.9375c-0.8841 0.227-1.5017 1.0247-1.5 1.9375v8c0 1.108 0.892 2 2 2h10c1.108 0 2-0.892 2-2v-2.5l-2 1.5v0.95312c0.0012 0.02644-0.020435 0.048075-0.046875 0.046875h-9.9062c-0.02644 0.0012-0.048079-0.020435-0.046875-0.046875v-5.9062c-0.0012-0.02644 0.020435-0.04808 0.046875-0.046875h9.9062c0.02644-0.0012 0.048075 0.020435 0.046875 0.046875v0.95312l2 1.5v-4.5c0.0017-0.9128-0.61588-1.7105-1.5-1.9375v0.9375c0 0.831-0.669 1.5-1.5 1.5s-1.5-0.669-1.5-1.5v-1z" fill="#4574A9"/><path d="m11 7v1.5h-3v3h3v1.5l4-3z" fill="#4574A9" style="paint-order:normal"/></svg>

Before

Width:  |  Height:  |  Size: 885 B

View file

@ -1 +0,0 @@
<svg width="16" height="16" version="1.1" viewbox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="m4 1c-0.554 0-1 0.446-1 1v2c0 0.554 0.446 1 1 1s1-0.446 1-1v-2c0-0.554-0.446-1-1-1zm8 0c-0.554 0-1 0.446-1 1v2c0 0.554 0.446 1 1 1s1-0.446 1-1v-2c0-0.554-0.446-1-1-1zm-6.5 2v1c0 0.831-0.669 1.5-1.5 1.5s-1.5-0.669-1.5-1.5v-0.9375c-0.8841 0.227-1.5017 1.0247-1.5 1.9375v8c0 1.108 0.892 2 2 2h10c1.108 0 2-0.892 2-2v-2.5l-2 1.5v0.95312c0.0012 0.02644-0.020435 0.048075-0.046875 0.046875h-9.9062c-0.02644 0.0012-0.048079-0.020435-0.046875-0.046875v-5.9062c-0.0012-0.02644 0.020435-0.04808 0.046875-0.046875h9.9062c0.02644-0.0012 0.048075 0.020435 0.046875 0.046875v0.95312l2 1.5v-4.5c0.0017-0.9128-0.61588-1.7105-1.5-1.9375v0.9375c0 0.831-0.669 1.5-1.5 1.5s-1.5-0.669-1.5-1.5v-1z" fill="#CE3433"/><path d="m11 7v1.5h-3v3h3v1.5l4-3z" fill="#CE3433" style="paint-order:normal"/></svg>

Before

Width:  |  Height:  |  Size: 885 B

View file

@ -1 +0,0 @@
<svg width="16" height="16" version="1.1" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="m1 8h4l1.5-4.0935 3 8.1875 1.5-4.094h4" fill="none" stroke="#4574A9" stroke-miterlimit="10" stroke-width="2"/></svg>

Before

Width:  |  Height:  |  Size: 223 B

View file

@ -1,4 +1,4 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
<svg width="32px" height="32px" enable-background="new 0 0 32 32" version="1.1" viewBox="0 0 32 32" xml:space="preserve" xmlns="http://www.w3.org/2000/svg">
<path d="m14.383 26.764s0.259-0.716 0.563-1.367c4.908-10.57 11.212-17.53 14.008-20.69 2.264-2.559 1.378-2.156 0.375-1.503-4.09 2.659-11.742 11.206-14.668 14.169-0.542 0.545-1.769 1.833-2.045 1.833-0.313 0-1.358-0.481-1.955-0.833-2.282-1.338-4.464-2.643-5.834-3.136-2.917-1.049-2.092-0.052-1.926 0.281 0.521 1.042 7.566 6.689 9.899 9.356 0.722 0.824 1.583 1.89 1.583 1.89z" fill="#fff" stroke="#fff" stroke-miterlimit="10" stroke-width=".75"/>
</svg>

Before

Width:  |  Height:  |  Size: 662 B

After

Width:  |  Height:  |  Size: 708 B

View file

@ -1,34 +1,19 @@
OC.L10N.register(
"tasks",
{
"Tasks" : "Take",
"Important" : "Belangrik",
"Today" : "Vandag",
"Week" : "Week",
"All" : "Alle",
"Current" : "Huidige",
"Completed" : "Voltooid",
"Tasks" : "Take",
"Share with users or groups" : "Deel met gebruikers of groepe",
"No users or groups" : "Geen gebruikers of groepe",
"can edit" : "kan wysig",
"New List" : "Nuwe lys",
"Cancel" : "Kanselleer",
"Save" : "Stoor",
"An empty name is not allowed." : "n Leë naam word nie toegestaan nie.",
"Edit" : "Wysig",
"Copied" : "Gekopieer",
"Can not copy" : "Kan nie kopieer nie",
"Download" : "Laai Af",
"Delete" : "Skrap",
"Unshare" : "Ontdeel",
"Visibility of Smart Collections" : "Sigbaarheid van Slimversamelings",
"Hidden" : "Versteek",
"Visible" : "Sigbaar",
"Automatic" : "Outomaties",
"Cancel" : "Kanselleer",
"Change sort order" : "Verander sorteer volgorde",
"Start date" : "Begindatum",
"Default" : "Verstek",
"Due date" : "Sperdatum",
"Last modified" : "Laas gewysig",
"Start date" : "Begindatum",
"Priority" : "Prioriteit",
"Manually" : "Handmatig",
"Alphabetically" : "Alfabeties",
@ -39,6 +24,17 @@ OC.L10N.register(
"Set due date" : "Stel sperdatum",
"All day" : "Heeldag",
"Task not found!" : "Taak nie gevind!",
"An error occurred" : "'n Fout het voorgekom"
"%s %% completed" : "%s %% voltooi",
"Edit" : "Wysig",
"Download" : "Laai Af",
"Save" : "Stoor",
"New List" : "Nuwe lys",
"The name \"%s\" is already used." : "Die naam “%s” bestaan reeds.",
"An empty name is not allowed." : "n Leë naam word nie toegestaan nie.",
"Settings" : "Instellings",
"Visibility of Smart Collections" : "Sigbaarheid van Slimversamelings",
"Hidden" : "Versteek",
"Visible" : "Sigbaar",
"Automatic" : "Outomaties"
},
"nplurals=2; plural=(n != 1);");

View file

@ -1,32 +1,17 @@
{ "translations": {
"Tasks" : "Take",
"Important" : "Belangrik",
"Today" : "Vandag",
"Week" : "Week",
"All" : "Alle",
"Current" : "Huidige",
"Completed" : "Voltooid",
"Tasks" : "Take",
"Share with users or groups" : "Deel met gebruikers of groepe",
"No users or groups" : "Geen gebruikers of groepe",
"can edit" : "kan wysig",
"New List" : "Nuwe lys",
"Cancel" : "Kanselleer",
"Save" : "Stoor",
"An empty name is not allowed." : "n Leë naam word nie toegestaan nie.",
"Edit" : "Wysig",
"Copied" : "Gekopieer",
"Can not copy" : "Kan nie kopieer nie",
"Download" : "Laai Af",
"Delete" : "Skrap",
"Unshare" : "Ontdeel",
"Visibility of Smart Collections" : "Sigbaarheid van Slimversamelings",
"Hidden" : "Versteek",
"Visible" : "Sigbaar",
"Automatic" : "Outomaties",
"Cancel" : "Kanselleer",
"Change sort order" : "Verander sorteer volgorde",
"Start date" : "Begindatum",
"Default" : "Verstek",
"Due date" : "Sperdatum",
"Last modified" : "Laas gewysig",
"Start date" : "Begindatum",
"Priority" : "Prioriteit",
"Manually" : "Handmatig",
"Alphabetically" : "Alfabeties",
@ -37,6 +22,17 @@
"Set due date" : "Stel sperdatum",
"All day" : "Heeldag",
"Task not found!" : "Taak nie gevind!",
"An error occurred" : "'n Fout het voorgekom"
"%s %% completed" : "%s %% voltooi",
"Edit" : "Wysig",
"Download" : "Laai Af",
"Save" : "Stoor",
"New List" : "Nuwe lys",
"The name \"%s\" is already used." : "Die naam “%s” bestaan reeds.",
"An empty name is not allowed." : "n Leë naam word nie toegestaan nie.",
"Settings" : "Instellings",
"Visibility of Smart Collections" : "Sigbaarheid van Slimversamelings",
"Hidden" : "Versteek",
"Visible" : "Sigbaar",
"Automatic" : "Outomaties"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View file

@ -1,31 +1,25 @@
OC.L10N.register(
"tasks",
{
"Tasks" : "المهام",
"Important" : "مهم",
"Today" : "اليوم",
"Week" : "أسبوع",
"All" : "الكل",
"Current" : "الحالي",
"Completed" : "مكتمل",
"Tasks" : "المهام",
"Share with users or groups" : "شارك مع مستخدمين او مجموعات",
"can edit" : "يمكن التعديل",
"New List" : "قائمة جديدة",
"Delete" : "حذف ",
"Cancel" : "إلغاء",
"Save" : "حفظ",
"An empty name is not allowed." : "غير مسموح بإسم فارغ",
"No errors" : "لا توجد أخطاء",
"Default" : "افتراضي",
"Tomorrow" : "غدا",
"Edit" : "تعديل",
"Download" : "تحميل",
"Delete" : "حذف ",
"Unshare" : "إلغاء المشاركة",
"Save" : "حفظ",
"New List" : "قائمة جديدة",
"An empty name is not allowed." : "غير مسموح بإسم فارغ",
"Settings" : "الإعدادات",
"Hidden" : "مخفي",
"Automatic" : "تلقائي",
"No errors" : "لا توجد أخطاء",
"Last modified" : "آخر تعديل",
"Tomorrow" : "غدا",
"When shared show full event" : "عرض الحدث كاملاً عند مشاركته",
"When shared show only busy" : "عرض مشغول عند مشاركة الحدث",
"When shared hide this event" : "إخفاء الحدث عند مشاركته",
"An error occurred" : "طرأ هناك خطأ"
"Automatic" : "تلقائي"
},
"nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;");

View file

@ -1,29 +1,23 @@
{ "translations": {
"Tasks" : "المهام",
"Important" : "مهم",
"Today" : "اليوم",
"Week" : "أسبوع",
"All" : "الكل",
"Current" : "الحالي",
"Completed" : "مكتمل",
"Tasks" : "المهام",
"Share with users or groups" : "شارك مع مستخدمين او مجموعات",
"can edit" : "يمكن التعديل",
"New List" : "قائمة جديدة",
"Delete" : "حذف ",
"Cancel" : "إلغاء",
"Save" : "حفظ",
"An empty name is not allowed." : "غير مسموح بإسم فارغ",
"No errors" : "لا توجد أخطاء",
"Default" : "افتراضي",
"Tomorrow" : "غدا",
"Edit" : "تعديل",
"Download" : "تحميل",
"Delete" : "حذف ",
"Unshare" : "إلغاء المشاركة",
"Save" : "حفظ",
"New List" : "قائمة جديدة",
"An empty name is not allowed." : "غير مسموح بإسم فارغ",
"Settings" : "الإعدادات",
"Hidden" : "مخفي",
"Automatic" : "تلقائي",
"No errors" : "لا توجد أخطاء",
"Last modified" : "آخر تعديل",
"Tomorrow" : "غدا",
"When shared show full event" : "عرض الحدث كاملاً عند مشاركته",
"When shared show only busy" : "عرض مشغول عند مشاركة الحدث",
"When shared hide this event" : "إخفاء الحدث عند مشاركته",
"An error occurred" : "طرأ هناك خطأ"
"Automatic" : "تلقائي"
},"pluralForm" :"nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;"
}

View file

@ -1,28 +1,17 @@
OC.L10N.register(
"tasks",
{
"Tasks" : "Xeres",
"Important" : "Importante",
"Today" : "Güei",
"Week" : "Selmana",
"All" : "Toos",
"Current" : "Actual",
"Completed" : "Completáu",
"Tasks" : "Xeres",
"Share with users or groups" : "Compartir con usuarios y grupos",
"can edit" : "pue editar",
"New List" : "Nueva Llista",
"Cancel" : "Encaboxar",
"Save" : "Guardar",
"An empty name is not allowed." : "Nun s'almite un nome baleru",
"Edit" : "Editar",
"Download" : "Baxar",
"Delete" : "Desaniciar",
"Unshare" : "Dexar de compartir",
"Visibility of Smart Collections" : "Visibilidá de Coleiciones Intelixentes",
"Hidden" : "Anubríu",
"Visible" : "Visible",
"Automatic" : "Automáticu",
"Cancel" : "Encaboxar",
"Change sort order" : "Camudar orde d'ordenación",
"Default" : "Predetermináu",
"Priority" : "Prioridá",
"Manually" : "A mano",
"Alphabetically" : "Alfabéticamente",
@ -33,8 +22,17 @@ OC.L10N.register(
"Set due date" : "Afitar la data de caducidá",
"All day" : "Tol día",
"Task not found!" : "¡Xera non atopada!",
"When shared show full event" : "Amosar l'eventu completu al compartir",
"When shared show only busy" : "Amosar namás ocupáu al compartir",
"When shared hide this event" : "Anubrir l'eventu al compartir"
"%s %% completed" : "%s %% completáu",
"Edit" : "Editar",
"Download" : "Baxar",
"Save" : "Guardar",
"New List" : "Nueva Llista",
"The name \"%s\" is already used." : "El nome \"%s\" yá ta usándose.",
"An empty name is not allowed." : "Nun s'almite un nome baleru",
"Settings" : "Axustes",
"Visibility of Smart Collections" : "Visibilidá de Coleiciones Intelixentes",
"Hidden" : "Anubríu",
"Visible" : "Visible",
"Automatic" : "Automáticu"
},
"nplurals=2; plural=(n != 1);");

View file

@ -1,26 +1,15 @@
{ "translations": {
"Tasks" : "Xeres",
"Important" : "Importante",
"Today" : "Güei",
"Week" : "Selmana",
"All" : "Toos",
"Current" : "Actual",
"Completed" : "Completáu",
"Tasks" : "Xeres",
"Share with users or groups" : "Compartir con usuarios y grupos",
"can edit" : "pue editar",
"New List" : "Nueva Llista",
"Cancel" : "Encaboxar",
"Save" : "Guardar",
"An empty name is not allowed." : "Nun s'almite un nome baleru",
"Edit" : "Editar",
"Download" : "Baxar",
"Delete" : "Desaniciar",
"Unshare" : "Dexar de compartir",
"Visibility of Smart Collections" : "Visibilidá de Coleiciones Intelixentes",
"Hidden" : "Anubríu",
"Visible" : "Visible",
"Automatic" : "Automáticu",
"Cancel" : "Encaboxar",
"Change sort order" : "Camudar orde d'ordenación",
"Default" : "Predetermináu",
"Priority" : "Prioridá",
"Manually" : "A mano",
"Alphabetically" : "Alfabéticamente",
@ -31,8 +20,17 @@
"Set due date" : "Afitar la data de caducidá",
"All day" : "Tol día",
"Task not found!" : "¡Xera non atopada!",
"When shared show full event" : "Amosar l'eventu completu al compartir",
"When shared show only busy" : "Amosar namás ocupáu al compartir",
"When shared hide this event" : "Anubrir l'eventu al compartir"
"%s %% completed" : "%s %% completáu",
"Edit" : "Editar",
"Download" : "Baxar",
"Save" : "Guardar",
"New List" : "Nueva Llista",
"The name \"%s\" is already used." : "El nome \"%s\" yá ta usándose.",
"An empty name is not allowed." : "Nun s'almite un nome baleru",
"Settings" : "Axustes",
"Visibility of Smart Collections" : "Visibilidá de Coleiciones Intelixentes",
"Hidden" : "Anubríu",
"Visible" : "Visible",
"Automatic" : "Automáticu"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View file

@ -1,30 +1,31 @@
OC.L10N.register(
"tasks",
{
"Tasks" : "Tapşırıqlar",
"Important" : "Vacib",
"Today" : "Bu gün",
"Week" : "Həftə",
"All" : "Hamısı",
"Current" : "Mövcud",
"Completed" : "Bitmişdir",
"Tasks" : "Tapşırıqlar",
"can edit" : "dəyişmək olar",
"New List" : "Yeni Siyahı",
"Cancel" : "Dayandır",
"Save" : "Saxla",
"An empty name is not allowed." : "Boş ada izin verilmir.",
"Edit" : "Dəyişiklik et",
"Download" : "Yüklə",
"Delete" : "Sil",
"Unshare" : "Paylaşımı durdur",
"Visibility of Smart Collections" : "Ağıllı yiğımların görünməsi",
"Hidden" : "Gizli",
"Visible" : "Görünən",
"Automatic" : "Avtomatik",
"Cancel" : "Dayandır",
"Default" : "Susmaya görə",
"_%n Completed Task_::_%n Completed Tasks_" : ["\"%s\" Bitmiş Tapşırıqlar","Completed Tasks"],
"Tomorrow" : "Sabah",
"Set start date" : "Başlanğıc tarixini işə sal",
"Set due date" : "Vaxtı təyin et",
"Task not found!" : "Tapşırıq tapılmadı!"
"Task not found!" : "Tapşırıq tapılmadı!",
"%s %% completed" : "%s %% bitmişdir",
"Edit" : "Dəyişiklik et",
"Download" : "Yüklə",
"Save" : "Saxla",
"New List" : "Yeni Siyahı",
"The name \"%s\" is already used." : "Ad \"%s\" artıq istifadə edilir.",
"An empty name is not allowed." : "Boş ada izin verilmir.",
"Visibility of Smart Collections" : "Ağıllı yiğımların görünməsi",
"Hidden" : "Gizli",
"Visible" : "Görünən",
"Automatic" : "Avtomatik"
},
"nplurals=2; plural=(n != 1);");

View file

@ -1,28 +1,29 @@
{ "translations": {
"Tasks" : "Tapşırıqlar",
"Important" : "Vacib",
"Today" : "Bu gün",
"Week" : "Həftə",
"All" : "Hamısı",
"Current" : "Mövcud",
"Completed" : "Bitmişdir",
"Tasks" : "Tapşırıqlar",
"can edit" : "dəyişmək olar",
"New List" : "Yeni Siyahı",
"Cancel" : "Dayandır",
"Save" : "Saxla",
"An empty name is not allowed." : "Boş ada izin verilmir.",
"Edit" : "Dəyişiklik et",
"Download" : "Yüklə",
"Delete" : "Sil",
"Unshare" : "Paylaşımı durdur",
"Visibility of Smart Collections" : "Ağıllı yiğımların görünməsi",
"Hidden" : "Gizli",
"Visible" : "Görünən",
"Automatic" : "Avtomatik",
"Cancel" : "Dayandır",
"Default" : "Susmaya görə",
"_%n Completed Task_::_%n Completed Tasks_" : ["\"%s\" Bitmiş Tapşırıqlar","Completed Tasks"],
"Tomorrow" : "Sabah",
"Set start date" : "Başlanğıc tarixini işə sal",
"Set due date" : "Vaxtı təyin et",
"Task not found!" : "Tapşırıq tapılmadı!"
"Task not found!" : "Tapşırıq tapılmadı!",
"%s %% completed" : "%s %% bitmişdir",
"Edit" : "Dəyişiklik et",
"Download" : "Yüklə",
"Save" : "Saxla",
"New List" : "Yeni Siyahı",
"The name \"%s\" is already used." : "Ad \"%s\" artıq istifadə edilir.",
"An empty name is not allowed." : "Boş ada izin verilmir.",
"Visibility of Smart Collections" : "Ağıllı yiğımların görünməsi",
"Hidden" : "Gizli",
"Visible" : "Görünən",
"Automatic" : "Avtomatik"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View file

@ -1,42 +1,30 @@
OC.L10N.register(
"tasks",
{
"Tasks" : "Задачи",
"Important" : "Важно",
"Today" : "Днес",
"Week" : "Седмица",
"All" : "Всички",
"Current" : "Текущ",
"Completed" : "Завършено",
"Tasks" : "Задачи",
"The Tasks app for Nextcloud" : "Задачи за NextCloud",
"Share with users or groups" : "Сподели с потребители или групи",
"Once enabled, a new Tasks menu will appear in your Nextcloud apps menu. From there you can add and delete tasks, edit their title, description, start and due dates, reminder times, mark them as important, and add comments on them. Tasks can be shared between users. Tasks can be synchronized using CalDav (each task list is linked to an Nextcloud calendar, to sync it to your local client - Thunderbird, Evolution, KDE Kontact, iCal... - just add the calendar as a remote calendar in you client). You can download your tasks as ICS files using the download button for each calendar." : "След като бъде активиран, ще се бъде добавено \"Задачи\" в менюто с приложения на на NextCloud. От там ще може да добавяте или изтривате задачи, редактиране на заглавието им, описание, начална и крайна дата, време за напомняне, да ги маркирате като важни и да добавяте коментари към тях. Задачите могат да се споделят между потребителите. Задачите могат да бъдат синхронизирани чрез CalDav (всеки списък със задачи е свързан с календарa Nextcloud, за да го синхронизирате с локалния си клиент - Thunderbird, Evolution, KDE Kontact, iCal ... - просто добавете календара като отдалечен календар в клиента си). Можете да изтеглите задачите си като ICS файлове, като използвате бутона за изтегляне за всеки календар.",
"can edit" : "може да редактира",
"New List" : "Нов списък",
"Cancel" : "Отказ",
"Save" : "Запазване",
"An empty name is not allowed." : "Празно име не е разрешено.",
"Edit" : "Редакция",
"Copy private link" : "Копирай скритата връзка",
"Download" : "Изтегляне",
"Delete" : "Изтриване",
"Unshare" : "Прекрати споделянето",
"Calendar link copied to clipboard." : "Копирано в клипборда",
"Visibility of Smart Collections" : "Видимост на \"Smart\" колекции",
"Hidden" : "Скрито",
"Visible" : "Видимо",
"Automatic" : "Автоматично",
"No errors" : "Няма грешки",
"Cancel" : "Отказ",
"Load all completed tasks." : "Зареди всички завършени задачи.",
"Change sort order" : "Промени подредбата",
"Start date" : "Начална дата",
"Default" : "Стандартно",
"Due date" : "Крайна дата",
"Start date" : "Начална дата",
"Created date" : "Създадена",
"Last modified" : "Променена",
"Priority" : "Приоритет",
"Manually" : "Ръчно",
"Alphabetically" : "По азбучен ред",
"Task is completed" : "Задачата е завършена",
"{complete} % completed" : "{complete} % завършени",
"Task is completed" : "Задачата е завършена",
"[Yesterday]" : "[вчера]",
"[Today]" : "[днес]",
"[Tomorrow]" : "[утре]",
@ -51,9 +39,19 @@ OC.L10N.register(
"Select categories" : "Избор на категории",
"Add this as a new category" : "Добави като нова категория",
"Task not found!" : "Задачата не е намерена!",
"When shared show full event" : "При споделяне, показвай цялото събитие",
"When shared show only busy" : "При споделяне, показвай само статус \"зает\"",
"When shared hide this event" : "При споделяне, скривай това събитие",
"An error occurred" : "Възникна грешка"
"%s %% completed" : "%s %% завършени",
"Last modified %s" : "Последна промяна: %s",
"Edit" : "Редакция",
"Download" : "Изтегляне",
"Save" : "Запазване",
"New List" : "Нов списък",
"The name \"%s\" is already used." : "Името \"%s\" вече е използвано.",
"An empty name is not allowed." : "Празно име не е разрешено.",
"This will delete the calendar \"%s\" and all corresponding events and tasks." : "Това действие ще изтрие календар \"%s\" и всички съпътстващи събития и задачи.",
"Settings" : "Настройки",
"Visibility of Smart Collections" : "Видимост на \"Smart\" колекции",
"Hidden" : "Скрито",
"Visible" : "Видимо",
"Automatic" : "Автоматично"
},
"nplurals=2; plural=(n != 1);");

View file

@ -1,40 +1,28 @@
{ "translations": {
"Tasks" : "Задачи",
"Important" : "Важно",
"Today" : "Днес",
"Week" : "Седмица",
"All" : "Всички",
"Current" : "Текущ",
"Completed" : "Завършено",
"Tasks" : "Задачи",
"The Tasks app for Nextcloud" : "Задачи за NextCloud",
"Share with users or groups" : "Сподели с потребители или групи",
"Once enabled, a new Tasks menu will appear in your Nextcloud apps menu. From there you can add and delete tasks, edit their title, description, start and due dates, reminder times, mark them as important, and add comments on them. Tasks can be shared between users. Tasks can be synchronized using CalDav (each task list is linked to an Nextcloud calendar, to sync it to your local client - Thunderbird, Evolution, KDE Kontact, iCal... - just add the calendar as a remote calendar in you client). You can download your tasks as ICS files using the download button for each calendar." : "След като бъде активиран, ще се бъде добавено \"Задачи\" в менюто с приложения на на NextCloud. От там ще може да добавяте или изтривате задачи, редактиране на заглавието им, описание, начална и крайна дата, време за напомняне, да ги маркирате като важни и да добавяте коментари към тях. Задачите могат да се споделят между потребителите. Задачите могат да бъдат синхронизирани чрез CalDav (всеки списък със задачи е свързан с календарa Nextcloud, за да го синхронизирате с локалния си клиент - Thunderbird, Evolution, KDE Kontact, iCal ... - просто добавете календара като отдалечен календар в клиента си). Можете да изтеглите задачите си като ICS файлове, като използвате бутона за изтегляне за всеки календар.",
"can edit" : "може да редактира",
"New List" : "Нов списък",
"Cancel" : "Отказ",
"Save" : "Запазване",
"An empty name is not allowed." : "Празно име не е разрешено.",
"Edit" : "Редакция",
"Copy private link" : "Копирай скритата връзка",
"Download" : "Изтегляне",
"Delete" : "Изтриване",
"Unshare" : "Прекрати споделянето",
"Calendar link copied to clipboard." : "Копирано в клипборда",
"Visibility of Smart Collections" : "Видимост на \"Smart\" колекции",
"Hidden" : "Скрито",
"Visible" : "Видимо",
"Automatic" : "Автоматично",
"No errors" : "Няма грешки",
"Cancel" : "Отказ",
"Load all completed tasks." : "Зареди всички завършени задачи.",
"Change sort order" : "Промени подредбата",
"Start date" : "Начална дата",
"Default" : "Стандартно",
"Due date" : "Крайна дата",
"Start date" : "Начална дата",
"Created date" : "Създадена",
"Last modified" : "Променена",
"Priority" : "Приоритет",
"Manually" : "Ръчно",
"Alphabetically" : "По азбучен ред",
"Task is completed" : "Задачата е завършена",
"{complete} % completed" : "{complete} % завършени",
"Task is completed" : "Задачата е завършена",
"[Yesterday]" : "[вчера]",
"[Today]" : "[днес]",
"[Tomorrow]" : "[утре]",
@ -49,9 +37,19 @@
"Select categories" : "Избор на категории",
"Add this as a new category" : "Добави като нова категория",
"Task not found!" : "Задачата не е намерена!",
"When shared show full event" : "При споделяне, показвай цялото събитие",
"When shared show only busy" : "При споделяне, показвай само статус \"зает\"",
"When shared hide this event" : "При споделяне, скривай това събитие",
"An error occurred" : "Възникна грешка"
"%s %% completed" : "%s %% завършени",
"Last modified %s" : "Последна промяна: %s",
"Edit" : "Редакция",
"Download" : "Изтегляне",
"Save" : "Запазване",
"New List" : "Нов списък",
"The name \"%s\" is already used." : "Името \"%s\" вече е използвано.",
"An empty name is not allowed." : "Празно име не е разрешено.",
"This will delete the calendar \"%s\" and all corresponding events and tasks." : "Това действие ще изтрие календар \"%s\" и всички съпътстващи събития и задачи.",
"Settings" : "Настройки",
"Visibility of Smart Collections" : "Видимост на \"Smart\" колекции",
"Hidden" : "Скрито",
"Visible" : "Видимо",
"Automatic" : "Автоматично"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View file

@ -1,29 +1,30 @@
OC.L10N.register(
"tasks",
{
"Tasks" : "কর্ম",
"Important" : "গুরুত্বপূর্ণ",
"Today" : "আজ",
"Week" : "সপ্তাহ",
"All" : "সবাই",
"Current" : "বর্তমান",
"Completed" : "সুসম্পন্ন",
"Tasks" : "কর্ম",
"can edit" : "সম্পাদনা করতে পারবেন",
"New List" : "নতুন তালিকা",
"Cancel" : "বাতিল",
"Save" : "সংরক্ষণ",
"An empty name is not allowed." : "একটি শুন্য নাম গ্রহণযোগ্য নয়।",
"Edit" : "সম্পাদনা",
"Download" : "ডাউনলোড",
"Delete" : "মুছে",
"Unshare" : "ভাগাভাগি বাতিল ",
"Visibility of Smart Collections" : "চটপট সংগ্রহের দর্শনযোগ্যতা",
"Hidden" : "লুকনো",
"Visible" : "দর্শনযোগ্য",
"Automatic" : "স্বয়ংক্রিয়",
"Cancel" : "বাতিল",
"Default" : "পূর্বনির্ধারিত",
"_%n Completed Task_::_%n Completed Tasks_" : ["%n সুসম্পন্ন কাজ","%n সুসম্পন্ন কাজ"],
"Tomorrow" : "আগামীকাল",
"Set start date" : "আরম্ভের তারিখ নির্ধারণ করুন",
"Set due date" : "কার্যকারিতার তারিখ নির্ধারণ করুন"
"Set due date" : "কার্যকারিতার তারিখ নির্ধারণ করুন",
"%s %% completed" : "%s %% সুসম্পন্ন",
"Edit" : "সম্পাদনা",
"Download" : "ডাউনলোড",
"Save" : "সংরক্ষণ",
"New List" : "নতুন তালিকা",
"The name \"%s\" is already used." : "\"%s\" নামটি ইতোমধ্যে ব্যবহৃত হচ্ছে।",
"An empty name is not allowed." : "একটি শুন্য নাম গ্রহণযোগ্য নয়।",
"Visibility of Smart Collections" : "চটপট সংগ্রহের দর্শনযোগ্যতা",
"Hidden" : "লুকনো",
"Visible" : "দর্শনযোগ্য",
"Automatic" : "স্বয়ংক্রিয়"
},
"nplurals=2; plural=(n != 1);");

View file

@ -1,27 +1,28 @@
{ "translations": {
"Tasks" : "কর্ম",
"Important" : "গুরুত্বপূর্ণ",
"Today" : "আজ",
"Week" : "সপ্তাহ",
"All" : "সবাই",
"Current" : "বর্তমান",
"Completed" : "সুসম্পন্ন",
"Tasks" : "কর্ম",
"can edit" : "সম্পাদনা করতে পারবেন",
"New List" : "নতুন তালিকা",
"Cancel" : "বাতিল",
"Save" : "সংরক্ষণ",
"An empty name is not allowed." : "একটি শুন্য নাম গ্রহণযোগ্য নয়।",
"Edit" : "সম্পাদনা",
"Download" : "ডাউনলোড",
"Delete" : "মুছে",
"Unshare" : "ভাগাভাগি বাতিল ",
"Visibility of Smart Collections" : "চটপট সংগ্রহের দর্শনযোগ্যতা",
"Hidden" : "লুকনো",
"Visible" : "দর্শনযোগ্য",
"Automatic" : "স্বয়ংক্রিয়",
"Cancel" : "বাতিল",
"Default" : "পূর্বনির্ধারিত",
"_%n Completed Task_::_%n Completed Tasks_" : ["%n সুসম্পন্ন কাজ","%n সুসম্পন্ন কাজ"],
"Tomorrow" : "আগামীকাল",
"Set start date" : "আরম্ভের তারিখ নির্ধারণ করুন",
"Set due date" : "কার্যকারিতার তারিখ নির্ধারণ করুন"
"Set due date" : "কার্যকারিতার তারিখ নির্ধারণ করুন",
"%s %% completed" : "%s %% সুসম্পন্ন",
"Edit" : "সম্পাদনা",
"Download" : "ডাউনলোড",
"Save" : "সংরক্ষণ",
"New List" : "নতুন তালিকা",
"The name \"%s\" is already used." : "\"%s\" নামটি ইতোমধ্যে ব্যবহৃত হচ্ছে।",
"An empty name is not allowed." : "একটি শুন্য নাম গ্রহণযোগ্য নয়।",
"Visibility of Smart Collections" : "চটপট সংগ্রহের দর্শনযোগ্যতা",
"Hidden" : "লুকনো",
"Visible" : "দর্শনযোগ্য",
"Automatic" : "স্বয়ংক্রিয়"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View file

@ -1,20 +1,19 @@
OC.L10N.register(
"tasks",
{
"Tasks" : "Zadaci",
"Important" : "Važno",
"Today" : "Danas",
"Week" : "Sedmica",
"All" : "Svi",
"Current" : "Trenutno",
"Completed" : "Zavrženo",
"Tasks" : "Zadaci",
"can edit" : "mogu mijenjati",
"Delete" : "Obriši",
"Cancel" : "Odustani",
"Save" : "Spremi",
"Default" : "Zadano",
"Tomorrow" : "Sutra",
"Edit" : "Izmjeni",
"Download" : "Preuzmi",
"Delete" : "Obriši",
"Unshare" : "Prestani dijeliti",
"Tomorrow" : "Sutra"
"Save" : "Spremi"
},
"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

@ -1,18 +1,17 @@
{ "translations": {
"Tasks" : "Zadaci",
"Important" : "Važno",
"Today" : "Danas",
"Week" : "Sedmica",
"All" : "Svi",
"Current" : "Trenutno",
"Completed" : "Zavrženo",
"Tasks" : "Zadaci",
"can edit" : "mogu mijenjati",
"Delete" : "Obriši",
"Cancel" : "Odustani",
"Save" : "Spremi",
"Default" : "Zadano",
"Tomorrow" : "Sutra",
"Edit" : "Izmjeni",
"Download" : "Preuzmi",
"Delete" : "Obriši",
"Unshare" : "Prestani dijeliti",
"Tomorrow" : "Sutra"
"Save" : "Spremi"
},"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

@ -1,80 +1,55 @@
OC.L10N.register(
"tasks",
{
"Tasks" : "Tasques",
"Important" : "Importants",
"Today" : "Avui",
"Week" : "Setmana",
"All" : "Totes",
"Current" : "Actuals",
"Completed" : "Completades",
"Tasks" : "Tasques",
"The Tasks app for Nextcloud" : "L'app de tasques per Nextcloud",
"Once enabled, a new Tasks menu will appear in your Nextcloud apps menu. From there you can add and delete tasks, edit their title, description, start and due dates, reminder times, mark them as important, and add comments on them. Tasks can be shared between users. Tasks can be synchronized using CalDav (each task list is linked to an Nextcloud calendar, to sync it to your local client - Thunderbird, Evolution, KDE Kontact, iCal... - just add the calendar as a remote calendar in you client). You can download your tasks as ICS files using the download button for each calendar." : "Una vegada permès, apareixerà un nou menú de Tasques al seu menú d'aplicacions Nextcloud. Des d'allà pot afegir i suprimir les tasques, editar seu títol, descripció, dates dinici i venciments, hores de recordatoris, marcar-les com importants i afegir comentaris sobre elles. Les tasques es poden compartir entre usuaris. Les tasques es poden sincronitzar mitjançant CalDav (cada llista de tasques està vinculada a un calendari de Nextcloud, per sincronitzar amb el seu client local - Thunderbird, Evolution, KDE Kontact, iCal... - només afegeixi el calendari com a calendari remot en el teu client). Pots descarregar les teves tasques com a fitxers ICS utilitzant el botó de descàrrega per a cada calendari.",
"Share with users or groups" : "Comparteix amb usuaris o grups",
"No users or groups" : "No hi ha usuaris ni grups",
"can edit" : "pot editar",
"Unable to delete the share." : "No s'ha pogut suprimir la compartició.",
"Unable to change permissions." : "No s'han pogut canviar els permisos.",
"Add List…" : "Afegeix una llista...",
"New List" : "Crea una llista",
"Cancel" : "Cancel·la",
"Save" : "Desa",
"The name \"{calendar}\" is already used." : "El nom \"[calendar]\" ja està usat.",
"An empty name is not allowed." : "No es permet un nom buit.",
"Edit" : "Edita",
"Copy private link" : "Copia l'enllaç privat",
"Copied" : "Copiat",
"Can not copy" : "No s'ha pogut copiar",
"Download" : "Baixa",
"Delete" : "Esborra",
"Unshare" : "Deixa de compartir",
"This will delete the calendar \"{calendar}\" and all corresponding events and tasks." : "Això suprimirà el calendari \"{calendar}\" i tots els esdeveniments i tasques corresponents.",
"Calendar link copied to clipboard." : "S'ha copiat l'enllaç del calendari al porta-retalls",
"Calendar link could not be copied to clipboard." : "No s'ha copiat l'enllaç del calendari al porta-retalls.",
"An error occurred, unable to delete the calendar." : "S'ha produït un error. No s'ha suprimit el calendari.",
"_Shared with {num} entity_::_Shared with {num} entities_" : ["Compartit amb {num} entitats","Compartit amb [num] entitats"],
"Default list" : "Llista per defecte",
"Visibility of Smart Collections" : "Visibilitat de les col·leccions intel·ligents",
"Hidden" : "Ocult",
"Visible" : "Visible",
"Automatic" : "Automàtic",
"Delete all completed tasks." : "Suprimeix totes les tasques completades.",
"Delete completed tasks." : "Suprimeix les tasques completades.",
"Deleted all completed tasks from calendar \"{calendar}\"." : "S'han suprimit totes les tasques completades del calendari \"{calendar}\".",
"Cancel" : "Cancel·la",
"Delete all completed tasks." : "Eliminar totes les tasques completades.",
"Delete completed tasks." : "Eliminar les tasques completades.",
"No errors" : "Sense errors",
"Open your browser console for more details" : "Obriu la consola del navegador per veure més detalls",
"_This will delete {taskCount} completed task and its subtasks from calendar \"{calendar}\"._::_This will delete {taskCount} completed tasks and their subtasks from calendar \"{calendar}\"._" : ["Això esborrarà {taskCount} tasques i subtasques completades del calendari \"{calendar}\".","This will delete {taskCount} completed tasks and their subtasks from calendar \"{calendar}\"."],
"_Could not delete {failedCount} task._::_Could not delete {failedCount} tasks._" : ["{failedCount} tasques no s'han pogut esborrar..","No s'han pogut suprimit {failedCount} tasques."],
"_Could not delete {failedCount} task._::_Could not delete {failedCount} tasks._" : ["{failedCount} tasques no s'han pogut esborrar..","{failedCount} tasques no s'han pogut esborrar."],
"Load all completed tasks." : "Carrega totes les tasques completades.",
"Change sort order" : "Canvia l'ordre",
"Sort by completed state, due date, priority, start date and summary." : "Ordena per estat de completat, data de venciment, prioritat, data d'inici i resum.",
"Start date" : "Data d'inici",
"Sort by start date and summary." : "Ordena per data d'inici i resum.",
"Default" : "Per defecte",
"Sort by completed state, due date, priority, start date and summary." : "Ordenar per estat de completat, data de venciment, prioritat, data d'inici i resum.",
"Due date" : "Per la data",
"Sort by due date and summary." : "Ordena per estat, prioritat, data d'inici i resum.",
"Start date" : "Data d'inici",
"Sort by start date and summary." : "Ordenar per data d'inici i resum.",
"Created date" : "Data de creació",
"Sort by created date and summary." : "Ordena per data de creació i resum.",
"Sort by created date and summary." : "Ordenar per data de creació i resum.",
"Last modified" : "Darrera modificació",
"Sort by last-modified date and summary." : "Ordena per darrera modificació i resum.",
"Sort by last-modified date and summary." : "Ordenar per darrera modificació i resum.",
"Completed date" : "Data de completat",
"Sort by completed date." : "Ordena per data de completat",
"Sort by completed date." : "Ordenar per data de completat",
"Priority" : "Prioritat",
"Sort by priority and summary." : "Ordena per prioritat i resum.",
"Sort by priority and summary." : "Ordenar per prioritat i resum.",
"Manually" : "Manual",
"Sort by manual order." : "Ordena manualment.",
"Sort by manual order." : "Ordenar manualment.",
"Alphabetically" : "Alfabèticament",
"Sort by summary and priority." : "Ordena per resum i prioritat.",
"Task is completed" : "Completat",
"Sort by summary and priority." : "Ordenar per resum i prioritat.",
"{complete} % completed" : "{complete} % completat",
"Task is completed" : "Completat",
"Toggle visibility of all subtasks." : "Commuta la visibilitat de totes les subtasques.",
"Toggle visibility of completed subtasks." : "Commuta la visibilitat de les subtasques completades.",
"[Yesterday]" : "[Ahir]",
"[Today]" : "[Avui]",
"[Tomorrow]" : "[Demà]",
"Add a subtask to \"{task}\"…" : "Afegeix una subtasca a \"{task}\"...",
"Add a task to \"{task}\"…" : "Afegeix una tasca a \"{task}\"…",
"_%n Completed Task_::_%n Completed Tasks_" : ["%n Tasca Completada","%n Tasques Completades"],
"Add an important task to \"{calendar}\"…" : "Afegeix una tasca important a \"{calendar}\"...",
"Add a task due today to \"{calendar}\"…" : "Afegeix un tasca per a avui a \"{calendar}\"…",
"Add a current task to \"{calendar}\"…" : "Afegeix una tasca en curs a \"{calendar}\"…",
"Add a task to \"{calendar}\"…" : "Afegeix una tasca a \"{calendar}\"...",
"Tomorrow" : "Demà",
"Set start date" : "Assigna una data d'inici",
"Set start time" : "Assigna una hora d'inici",
@ -82,18 +57,10 @@ OC.L10N.register(
"Set due time" : "Estableix la hora de venciment",
"All day" : "Tot el dia",
"Select a calendar" : "Selecciona un calendari",
"Select a classification" : "Selecciona una classificació",
"Select a status" : "Seleccioneu un estat",
"Select a classification" : "Seleccionar una classificació",
"Select categories" : "Selecciona categories",
"Add this as a new category" : "Afegeix-ho com una nova categoria",
"Loading task from server." : "Es carrega la tasca del servidor.",
"Add this as a new category" : "Afegir-ho com una nova categoria",
"Task not found!" : "No s'ha trobat la tasca!",
"When shared show full event" : "Quan es comparteix, mostra l'esdeveniment complet",
"When shared show only busy" : "Quan es comparteix, mostra només si està ocupat",
"When shared hide this event" : "Quan es comparteix, amaga aquest esdeveniment",
"Needs action" : "Cal una acció",
"In process" : "En procés",
"Canceled" : "Cancel·lat",
"[Starts today]" : "[Comença avui]",
"[Starts tomorrow]" : "[Comença demà]",
"[Starts on] LL" : "[Comença el] LL",
@ -116,19 +83,43 @@ OC.L10N.register(
"[Due on] LL [at] LT" : "[Finalitza el] LL [a les] LT",
"[Was due yesterday at] LT" : "[Va finalitzar ahir a les] LT",
"[Was due on] LL [at] LT" : "[Va finalitzar el] LL [a les] LT",
"Last modified {date}" : "Darrera modificació: {date}",
"Created {date}" : "Data de creació: {date}",
"Completed {date}" : "Data de compleció: {date}",
"No priority assigned" : "Sense prioritat assignada",
"Priority {priority}: high" : "Prioritat {priority}: alta",
"Priority {priority}: medium" : "Prioritat {priority}: mitjana",
"Priority {priority}: low" : "Prioritat {priority}: baixa",
"{percent} % completed" : "{percent} % completat",
"Could not delete the task." : "No s'ha pogut suprimir la tasca.",
"Priority %s: high" : "Prioritat %s: alta",
"Priority %s: medium" : "Prioritat %s: mitja",
"Priority %s: low" : "Prioritat %s: baixa",
"%s %% completed" : "%s %% completat",
"When shared show full event" : "Quan es comparteix, mostra l'esdeveniment complet",
"When shared show only busy" : "Quan es comparteix, mostra només si està ocupat",
"When shared hide this event" : "Quan es comparteix, amaga aquest esdeveniment",
"Last modified %s" : "Darrera modificació %s",
"Created %s" : "Creat %s",
"Completed %s" : "Completat %s",
"Edit" : "Edita",
"Copy private link" : "Copia l'enllaç privat",
"Copied" : "Copiat",
"Can not copy" : "No s'ha pogut copiar",
"Download" : "Baixa",
"Save" : "Desa",
"Add List…" : "Afegeix una llista...",
"New List" : "Crea una llista",
"Calendar link copied to clipboard." : "S'ha copiat l'enllaç del calendari al porta-retalls",
"Calendar link could not be copied to clipboard." : "No s'ha copiat l'enllaç del calendari al porta-retalls.",
"The name \"%s\" is already used." : "El nom \"%s\" ja està usat.",
"An empty name is not allowed." : "No es permet un nom buit.",
"This will delete the calendar \"%s\" and all corresponding events and tasks." : "Això suprimirà el calendari \"%s\" i tots els esdeveniments corresponents i tasques.",
"_Shared with {num} entity_::_Shared with {num} entities_" : ["Compartit amb {num} entitats","Compartit amb [num] entitats"],
"Settings" : "Paràmetres",
"Default list" : "Llista per defecte",
"Visibility of Smart Collections" : "Visibilitat de les col·leccions intel·ligents",
"Hidden" : "Ocult",
"Visible" : "Visible",
"Automatic" : "Automàtic",
"Could not delete the task." : "No s'ha pogut eliminar la tasca.",
"Synchronizing to the server." : "Sincronitzant amb el servidor.",
"Task successfully saved to server." : "Tasca desada correctament al servidor.",
"Could not update the task because it was changed on the server. Please click to refresh it, local changes will be discarded." : "No s'ha pogut actualitzar la tasca perquè aquesta ha canviat al servidor. Si us plau refresqueu la tasca, es perdran els canvis locals.",
"Could not update the task." : "No s'ha pogut actualitzar la tasca.",
"Could not update the task because it was changed on the server. Please click to refresh it, local changes will be discared." : "No s'ha pogut actualitzar la tasca perquè aquesta ha canviat al servidor. Si us plau refresqueu la tasca, es perdran els canvis locals.",
"An error occurred" : "S'ha produït un error"
},
"nplurals=2; plural=(n != 1);");

View file

@ -1,78 +1,53 @@
{ "translations": {
"Tasks" : "Tasques",
"Important" : "Importants",
"Today" : "Avui",
"Week" : "Setmana",
"All" : "Totes",
"Current" : "Actuals",
"Completed" : "Completades",
"Tasks" : "Tasques",
"The Tasks app for Nextcloud" : "L'app de tasques per Nextcloud",
"Once enabled, a new Tasks menu will appear in your Nextcloud apps menu. From there you can add and delete tasks, edit their title, description, start and due dates, reminder times, mark them as important, and add comments on them. Tasks can be shared between users. Tasks can be synchronized using CalDav (each task list is linked to an Nextcloud calendar, to sync it to your local client - Thunderbird, Evolution, KDE Kontact, iCal... - just add the calendar as a remote calendar in you client). You can download your tasks as ICS files using the download button for each calendar." : "Una vegada permès, apareixerà un nou menú de Tasques al seu menú d'aplicacions Nextcloud. Des d'allà pot afegir i suprimir les tasques, editar seu títol, descripció, dates dinici i venciments, hores de recordatoris, marcar-les com importants i afegir comentaris sobre elles. Les tasques es poden compartir entre usuaris. Les tasques es poden sincronitzar mitjançant CalDav (cada llista de tasques està vinculada a un calendari de Nextcloud, per sincronitzar amb el seu client local - Thunderbird, Evolution, KDE Kontact, iCal... - només afegeixi el calendari com a calendari remot en el teu client). Pots descarregar les teves tasques com a fitxers ICS utilitzant el botó de descàrrega per a cada calendari.",
"Share with users or groups" : "Comparteix amb usuaris o grups",
"No users or groups" : "No hi ha usuaris ni grups",
"can edit" : "pot editar",
"Unable to delete the share." : "No s'ha pogut suprimir la compartició.",
"Unable to change permissions." : "No s'han pogut canviar els permisos.",
"Add List…" : "Afegeix una llista...",
"New List" : "Crea una llista",
"Cancel" : "Cancel·la",
"Save" : "Desa",
"The name \"{calendar}\" is already used." : "El nom \"[calendar]\" ja està usat.",
"An empty name is not allowed." : "No es permet un nom buit.",
"Edit" : "Edita",
"Copy private link" : "Copia l'enllaç privat",
"Copied" : "Copiat",
"Can not copy" : "No s'ha pogut copiar",
"Download" : "Baixa",
"Delete" : "Esborra",
"Unshare" : "Deixa de compartir",
"This will delete the calendar \"{calendar}\" and all corresponding events and tasks." : "Això suprimirà el calendari \"{calendar}\" i tots els esdeveniments i tasques corresponents.",
"Calendar link copied to clipboard." : "S'ha copiat l'enllaç del calendari al porta-retalls",
"Calendar link could not be copied to clipboard." : "No s'ha copiat l'enllaç del calendari al porta-retalls.",
"An error occurred, unable to delete the calendar." : "S'ha produït un error. No s'ha suprimit el calendari.",
"_Shared with {num} entity_::_Shared with {num} entities_" : ["Compartit amb {num} entitats","Compartit amb [num] entitats"],
"Default list" : "Llista per defecte",
"Visibility of Smart Collections" : "Visibilitat de les col·leccions intel·ligents",
"Hidden" : "Ocult",
"Visible" : "Visible",
"Automatic" : "Automàtic",
"Delete all completed tasks." : "Suprimeix totes les tasques completades.",
"Delete completed tasks." : "Suprimeix les tasques completades.",
"Deleted all completed tasks from calendar \"{calendar}\"." : "S'han suprimit totes les tasques completades del calendari \"{calendar}\".",
"Cancel" : "Cancel·la",
"Delete all completed tasks." : "Eliminar totes les tasques completades.",
"Delete completed tasks." : "Eliminar les tasques completades.",
"No errors" : "Sense errors",
"Open your browser console for more details" : "Obriu la consola del navegador per veure més detalls",
"_This will delete {taskCount} completed task and its subtasks from calendar \"{calendar}\"._::_This will delete {taskCount} completed tasks and their subtasks from calendar \"{calendar}\"._" : ["Això esborrarà {taskCount} tasques i subtasques completades del calendari \"{calendar}\".","This will delete {taskCount} completed tasks and their subtasks from calendar \"{calendar}\"."],
"_Could not delete {failedCount} task._::_Could not delete {failedCount} tasks._" : ["{failedCount} tasques no s'han pogut esborrar..","No s'han pogut suprimit {failedCount} tasques."],
"_Could not delete {failedCount} task._::_Could not delete {failedCount} tasks._" : ["{failedCount} tasques no s'han pogut esborrar..","{failedCount} tasques no s'han pogut esborrar."],
"Load all completed tasks." : "Carrega totes les tasques completades.",
"Change sort order" : "Canvia l'ordre",
"Sort by completed state, due date, priority, start date and summary." : "Ordena per estat de completat, data de venciment, prioritat, data d'inici i resum.",
"Start date" : "Data d'inici",
"Sort by start date and summary." : "Ordena per data d'inici i resum.",
"Default" : "Per defecte",
"Sort by completed state, due date, priority, start date and summary." : "Ordenar per estat de completat, data de venciment, prioritat, data d'inici i resum.",
"Due date" : "Per la data",
"Sort by due date and summary." : "Ordena per estat, prioritat, data d'inici i resum.",
"Start date" : "Data d'inici",
"Sort by start date and summary." : "Ordenar per data d'inici i resum.",
"Created date" : "Data de creació",
"Sort by created date and summary." : "Ordena per data de creació i resum.",
"Sort by created date and summary." : "Ordenar per data de creació i resum.",
"Last modified" : "Darrera modificació",
"Sort by last-modified date and summary." : "Ordena per darrera modificació i resum.",
"Sort by last-modified date and summary." : "Ordenar per darrera modificació i resum.",
"Completed date" : "Data de completat",
"Sort by completed date." : "Ordena per data de completat",
"Sort by completed date." : "Ordenar per data de completat",
"Priority" : "Prioritat",
"Sort by priority and summary." : "Ordena per prioritat i resum.",
"Sort by priority and summary." : "Ordenar per prioritat i resum.",
"Manually" : "Manual",
"Sort by manual order." : "Ordena manualment.",
"Sort by manual order." : "Ordenar manualment.",
"Alphabetically" : "Alfabèticament",
"Sort by summary and priority." : "Ordena per resum i prioritat.",
"Task is completed" : "Completat",
"Sort by summary and priority." : "Ordenar per resum i prioritat.",
"{complete} % completed" : "{complete} % completat",
"Task is completed" : "Completat",
"Toggle visibility of all subtasks." : "Commuta la visibilitat de totes les subtasques.",
"Toggle visibility of completed subtasks." : "Commuta la visibilitat de les subtasques completades.",
"[Yesterday]" : "[Ahir]",
"[Today]" : "[Avui]",
"[Tomorrow]" : "[Demà]",
"Add a subtask to \"{task}\"…" : "Afegeix una subtasca a \"{task}\"...",
"Add a task to \"{task}\"…" : "Afegeix una tasca a \"{task}\"…",
"_%n Completed Task_::_%n Completed Tasks_" : ["%n Tasca Completada","%n Tasques Completades"],
"Add an important task to \"{calendar}\"…" : "Afegeix una tasca important a \"{calendar}\"...",
"Add a task due today to \"{calendar}\"…" : "Afegeix un tasca per a avui a \"{calendar}\"…",
"Add a current task to \"{calendar}\"…" : "Afegeix una tasca en curs a \"{calendar}\"…",
"Add a task to \"{calendar}\"…" : "Afegeix una tasca a \"{calendar}\"...",
"Tomorrow" : "Demà",
"Set start date" : "Assigna una data d'inici",
"Set start time" : "Assigna una hora d'inici",
@ -80,18 +55,10 @@
"Set due time" : "Estableix la hora de venciment",
"All day" : "Tot el dia",
"Select a calendar" : "Selecciona un calendari",
"Select a classification" : "Selecciona una classificació",
"Select a status" : "Seleccioneu un estat",
"Select a classification" : "Seleccionar una classificació",
"Select categories" : "Selecciona categories",
"Add this as a new category" : "Afegeix-ho com una nova categoria",
"Loading task from server." : "Es carrega la tasca del servidor.",
"Add this as a new category" : "Afegir-ho com una nova categoria",
"Task not found!" : "No s'ha trobat la tasca!",
"When shared show full event" : "Quan es comparteix, mostra l'esdeveniment complet",
"When shared show only busy" : "Quan es comparteix, mostra només si està ocupat",
"When shared hide this event" : "Quan es comparteix, amaga aquest esdeveniment",
"Needs action" : "Cal una acció",
"In process" : "En procés",
"Canceled" : "Cancel·lat",
"[Starts today]" : "[Comença avui]",
"[Starts tomorrow]" : "[Comença demà]",
"[Starts on] LL" : "[Comença el] LL",
@ -114,19 +81,43 @@
"[Due on] LL [at] LT" : "[Finalitza el] LL [a les] LT",
"[Was due yesterday at] LT" : "[Va finalitzar ahir a les] LT",
"[Was due on] LL [at] LT" : "[Va finalitzar el] LL [a les] LT",
"Last modified {date}" : "Darrera modificació: {date}",
"Created {date}" : "Data de creació: {date}",
"Completed {date}" : "Data de compleció: {date}",
"No priority assigned" : "Sense prioritat assignada",
"Priority {priority}: high" : "Prioritat {priority}: alta",
"Priority {priority}: medium" : "Prioritat {priority}: mitjana",
"Priority {priority}: low" : "Prioritat {priority}: baixa",
"{percent} % completed" : "{percent} % completat",
"Could not delete the task." : "No s'ha pogut suprimir la tasca.",
"Priority %s: high" : "Prioritat %s: alta",
"Priority %s: medium" : "Prioritat %s: mitja",
"Priority %s: low" : "Prioritat %s: baixa",
"%s %% completed" : "%s %% completat",
"When shared show full event" : "Quan es comparteix, mostra l'esdeveniment complet",
"When shared show only busy" : "Quan es comparteix, mostra només si està ocupat",
"When shared hide this event" : "Quan es comparteix, amaga aquest esdeveniment",
"Last modified %s" : "Darrera modificació %s",
"Created %s" : "Creat %s",
"Completed %s" : "Completat %s",
"Edit" : "Edita",
"Copy private link" : "Copia l'enllaç privat",
"Copied" : "Copiat",
"Can not copy" : "No s'ha pogut copiar",
"Download" : "Baixa",
"Save" : "Desa",
"Add List…" : "Afegeix una llista...",
"New List" : "Crea una llista",
"Calendar link copied to clipboard." : "S'ha copiat l'enllaç del calendari al porta-retalls",
"Calendar link could not be copied to clipboard." : "No s'ha copiat l'enllaç del calendari al porta-retalls.",
"The name \"%s\" is already used." : "El nom \"%s\" ja està usat.",
"An empty name is not allowed." : "No es permet un nom buit.",
"This will delete the calendar \"%s\" and all corresponding events and tasks." : "Això suprimirà el calendari \"%s\" i tots els esdeveniments corresponents i tasques.",
"_Shared with {num} entity_::_Shared with {num} entities_" : ["Compartit amb {num} entitats","Compartit amb [num] entitats"],
"Settings" : "Paràmetres",
"Default list" : "Llista per defecte",
"Visibility of Smart Collections" : "Visibilitat de les col·leccions intel·ligents",
"Hidden" : "Ocult",
"Visible" : "Visible",
"Automatic" : "Automàtic",
"Could not delete the task." : "No s'ha pogut eliminar la tasca.",
"Synchronizing to the server." : "Sincronitzant amb el servidor.",
"Task successfully saved to server." : "Tasca desada correctament al servidor.",
"Could not update the task because it was changed on the server. Please click to refresh it, local changes will be discarded." : "No s'ha pogut actualitzar la tasca perquè aquesta ha canviat al servidor. Si us plau refresqueu la tasca, es perdran els canvis locals.",
"Could not update the task." : "No s'ha pogut actualitzar la tasca.",
"Could not update the task because it was changed on the server. Please click to refresh it, local changes will be discared." : "No s'ha pogut actualitzar la tasca perquè aquesta ha canviat al servidor. Si us plau refresqueu la tasca, es perdran els canvis locals.",
"An error occurred" : "S'ha produït un error"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View file

@ -1,62 +1,32 @@
OC.L10N.register(
"tasks",
{
"Tasks" : "Úkoly",
"Important" : "Důležité",
"Today" : "Dnes",
"Week" : "Týden",
"All" : "Vše",
"Current" : "Stávající",
"Current" : "Aktuální",
"Completed" : "Dokončeno",
"Tasks" : "Úkoly",
"The Tasks app for Nextcloud" : "Aplikace Úkoly pro Nextcloud",
"Once enabled, a new Tasks menu will appear in your Nextcloud apps menu. From there you can add and delete tasks, edit their title, description, start and due dates and mark them as important. Tasks can be shared between users. Tasks can be synchronized using CalDav (each task list is linked to an Nextcloud calendar, to sync it to your local client - Thunderbird, Evolution, KDE Kontact, iCal, … - just add the calendar as a remote calendar in your client). You can download your tasks as ICS files using the download button for each calendar." : "Jakmile je zapnuto, zobrazí se nová nabídky Úkoly v nabídce Nextcloud aplikací. Odtud je možné přidávat a mazat úkoly, upravovat jejich nadpis, popis, data zahájení a termínu a označovat je jako důležité. Úkoly je možné sdílet mezi uživateli. Úkoly je možné synchronizovat pomocí CalDav (každý seznam úkolů je připojen jako Nextcloud kalendář, pro synchronizaci na místního klienta Thunderbird, Evolution, KDE Kontact, iCal… stačí v klientovi přidat kalendář jako vzdálený kalendář). Své úkoly si můžete stáhnout jako ICS soubory pomocí tlačítka stahování u každého kalendáře.",
"Once enabled, a new Tasks menu will appear in your Nextcloud apps menu. From there you can add and delete tasks, edit their title, description, start and due dates, reminder times, mark them as important, and add comments on them. Tasks can be shared between users. Tasks can be synchronized using CalDav (each task list is linked to an Nextcloud calendar, to sync it to your local client - Thunderbird, Evolution, KDE Kontact, iCal... - just add the calendar as a remote calendar in you client). You can download your tasks as ICS files using the download button for each calendar." : "Jakmile je zapnuto, zobrazí se nová nabídky Úkoly v nabídce Nextcloud aplikací. Odtud je možné přidávat a mazat úkoly, upravovat jejich nadpis, popis, data zahájení a termínu, časy připomínek, označovat je jako důležité a přidávat k nim komentáře. Úkoly je možné sdílet mezi uživateli. Úkoly je možné synchronizovat pomocí CalDav (každý seznam úkolů je připojen jako Nextcloud kalendář, pro synchronizaci na místního klienta Thunderbird, Evolution, KDE Kontact, iCal… stačí v klientovi přidat kalendář jako vzdálený kalendář). Své úkoly si můžete stáhnout jako ICS soubory pomocí tlačítka stahování u každého kalendáře.",
"Share with users or groups" : "Sdílet s uživateli či skupinami",
"No users or groups" : "Žádní uživatelé či skupiny",
"can edit" : "může upravovat",
"Unshare with {displayName}" : "Přestat sdílet s {displayName}",
"Unable to delete the share." : "Sdílení se nedaří smazat.",
"Unable to change permissions." : "Oprávnění se nedaří změnit",
"Add List…" : "Přidat seznam…",
"New List" : "Nový seznam",
"Cancel" : "Storno",
"Save" : "Uložit",
"The name \"{calendar}\" is already used." : "Název „{calendar}“ už je používán.",
"An empty name is not allowed." : "Prázdný název není povolen.",
"Edit" : "Upravit",
"Copy private link" : "Zkopírovat soukromý odkaz",
"Copied" : "Zkopírováno",
"Can not copy" : "Nedaří se zkopírovat",
"Download" : "Stáhnout",
"Delete" : "Smazat",
"Unshare" : "Zrušit sdílení",
"This will delete the calendar \"{calendar}\" and all corresponding events and tasks." : "Toto smaže kalendář „{calendar}“ a všechny odpovídající události a úkoly.",
"This will unshare the calendar \"{calendar}\"." : "Toto zruší sdílení kalendáře „{calendar}“.",
"Calendar link copied to clipboard." : "Odkaz do kalendáře zkopírován do schránky.",
"Calendar link could not be copied to clipboard." : "Odkaz do kalendáře se nepodařilo zkopírovat do schránky.",
"An error occurred, unable to delete the calendar." : "Došlo k chybě, kalendář se nepodařilo smazat.",
"_Deleting the calendar in {countdown} second_::_Deleting the calendar in {countdown} seconds_" : ["Kalendář bude smazán za {countdown} sekundu","Kalendář bude smazán za {countdown} sekundy","Kalendář bude smazán za {countdown} sekund","Kalendář bude smazán za {countdown} sekundy"],
"_Unsharing the calendar in {countdown} second_::_Unsharing the calendar in {countdown} seconds_" : ["Kalendář přestane být sdílen za {countdown} sekundu","Kalendář přestane být sdílen za {countdown} sekundy","Kalendář přestane být sdílen za {countdown} sekund","Kalendář přestane být sdílen za {countdown} sekundy"],
"_Shared with {num} entity_::_Shared with {num} entities_" : ["Sdíleno s {num} entitou","Sdíleno s {num} entitami","Sdíleno s {num} entitami","Sdíleno s {num} entitami"],
"Default list" : "Výchozí seznam",
"Visibility of Smart Collections" : "Viditelnost Chytrých kolekcí",
"Hidden" : "Skrytý",
"Visible" : "Viditelný",
"Automatic" : "Automatický",
"Cancel" : "Storno",
"Delete all completed tasks." : "Smazat všechny dokončené úlohy.",
"Delete completed tasks." : "Smazat dokončené úkoly.",
"Deleted all completed tasks from calendar \"{calendar}\"." : "Smazány všechny dokončené úkoly z kalendáře „{calendar}“.",
"No errors" : "Bez chyb",
"Open your browser console for more details" : "Další podrobnosti získáte otevřením konzole webového prohlížeče",
"_This will delete {taskCount} completed task and its subtasks from calendar \"{calendar}\"._::_This will delete {taskCount} completed tasks and their subtasks from calendar \"{calendar}\"._" : ["Toto vymaže {taskCount} dokončený úkol a jeho dílčí úkoly z „{calendar}“.","Toto vymaže {taskCount} dokončené úkoly a jejich dílčí úkoly z „{calendar}“.","Toto vymaže {taskCount} dokončených úkolů a jejich dílčí úkoly z „{calendar}“.","Toto vymaže {taskCount} dokončené úkoly a jejich dílčí úkoly z „{calendar}“."],
"_Could not delete {failedCount} task._::_Could not delete {failedCount} tasks._" : ["Nedaří se smazat {failedCount} úkol.","Nedaří se smazat {failedCount} úkoly.","Nedaří se smazat {failedCount} úkolů.","Nedaří se smazat {failedCount} úkoly."],
"Load all completed tasks." : "Načíst všechny dokončené úkoly.",
"Load all completed tasks." : "Načíst všechny dokončené úlohy.",
"Change sort order" : "Změnit řazení",
"Relevance" : "Relevantnost",
"Sort by completed state, due date, priority, start date and summary." : "Seřadit podle stupně dokončenosti, termínu, priority, data zahájení a shrnutí.",
"Start date" : "Datum počátku",
"Sort by start date and summary." : "Seřadit podle data zahájení a shrnutí.",
"Default" : "Výchozí",
"Sort by completed state, due date, priority, start date and summary." : "Seřadit podle stavu dokončení, termínu, priority, data zahájení a shrnutí.",
"Due date" : "Datum ukončení",
"Sort by due date and summary." : "Seřadit podle termínu a shrnutí.",
"Start date" : "Datum počátku",
"Sort by start date and summary." : "Seřadit podle data zahájení a shrnutí.",
"Created date" : "Datum vytvoření",
"Sort by created date and summary." : "Seřadit podle data a shrnutí.",
"Last modified" : "Naposledy upraveno",
@ -69,26 +39,14 @@ OC.L10N.register(
"Sort by manual order." : "Seřadit ručně.",
"Alphabetically" : "Abecedně",
"Sort by summary and priority." : "Seřadit podle shrnutí a priority.",
"{complete} % completed" : "{complete} % dokončeno",
"Task is completed" : "Úkol je dokončen",
"{complete} % completed" : "{complete}% dokončeno",
"Add subtask" : "Přidat dílčí úkol",
"Show subtasks" : "Zobrazit dílčí úkoly",
"Hide subtasks" : "Skrýt dílčí úkoly",
"Show completed subtasks" : "Zobrazit dokončené dílčí úkoly",
"Hide completed subtasks" : "Skrýt dokončené dílčí úkoly",
"Delete task" : "Smazat úkol",
"Toggle visibility of all subtasks." : "Vyp/zap. viditelnost všech podúkolů",
"Toggle visibility of completed subtasks." : "Vyp/zap. viditelnost dokončených podúkolů.",
"[Yesterday]" : "[Včera]",
"[Today]" : "[Dnes]",
"[Tomorrow]" : "[Zítra]",
"Add a subtask to \"{task}\"…" : "Přidat dílčí úkol k „{task}“…",
"An error occurred, unable to delete the task." : "Došlo k chybě, úkol se nepodařilo smazat.",
"_Deleting the task in {countdown} second_::_Deleting the task in {countdown} seconds_" : ["Úkol bude smazán za {countdown} sekundu","Úkol bude smazán za {countdown} sekundy","Úkol bude smazán za {countdown} sekund","Úkol bude smazán za {countdown} sekundy"],
"Add a task to \"{task}\"…" : "Přidat úkol do „{task}“…",
"_%n Completed Task_::_%n Completed Tasks_" : ["%n dokončený úkol","%n dokončené úkoly","%n dokončených úkolů","%n dokončené úkoly"],
"Add an important task to \"{calendar}\"…" : "Přidat důležitý úkol k \"{calendar}\"…",
"Add a task due today to \"{calendar}\"…" : "Přidat úkol s termínem dnes do „{calendar}“…",
"Add a current task to \"{calendar}\"…" : "Přidat stávající úkol do „{calendar}“…",
"Add a task to \"{calendar}\"…" : "Přidat úkol do „{calendar}“…",
"_%n Completed Task_::_%n Completed Tasks_" : ["%n dokončený úkol","%n dokončené úkoly","%n dokončených úkolů","%n dokončených úkolů"],
"Tomorrow" : "Zítra",
"Set start date" : "Nastavit počáteční datum",
"Set start time" : "Nastavit datum zahájení",
@ -97,17 +55,9 @@ OC.L10N.register(
"All day" : "Celý den",
"Select a calendar" : "Vybrat kalendář",
"Select a classification" : "Vybrat klasifikaci",
"Select a status" : "Vybrat stav",
"Select categories" : "Vybrat kategorie",
"Add this as a new category" : "Přidat toto jako novou kategorii",
"Loading task from server." : "Načítání úkolů ze serveru.",
"Task not found!" : "Úkol nenalezen!",
"When shared show full event" : "Když sdíleno zobrazit úplnou událost",
"When shared show only busy" : "Když sdíleno zobrazit pouze zaneprázdněno",
"When shared hide this event" : "Když sdíleno skrýt tuto událost",
"Needs action" : "Vyžaduje akci",
"In process" : "V procesu",
"Canceled" : "Zrušeno",
"[Starts today]" : "[Začíná dnes]",
"[Starts tomorrow]" : "[Začíná zítra]",
"[Starts on] LL" : "[Začíná] LL",
@ -130,22 +80,39 @@ OC.L10N.register(
"[Due on] LL [at] LT" : "[Termín] LL [v] LT",
"[Was due yesterday at] LT" : "[Termín byl včera v] LT",
"[Was due on] LL [at] LT" : "[Termín byl] LL [v] LT",
"Last modified {date}" : "Naposledy změněno {date}",
"Created {date}" : "Vytvořeno {date}",
"Completed {date}" : "Dokončeno {date}",
"No priority assigned" : "Nepřiřazena žádná priorita",
"Priority {priority}: high" : "Priorita {priority}: vysoká",
"Priority {priority}: medium" : "Priorita {priority}: střední",
"Priority {priority}: low" : "Priorita {priority}: nízká",
"{percent} % completed" : "{percent} % dokončeno",
"Successfully created the task." : "Úkol úspěšně vytvořen.",
"Priority %s: high" : "Priorita %s: vysoká",
"Priority %s: medium" : "Priorita %s: střední",
"Priority %s: low" : "Priorita %s: nízká",
"%s %% completed" : "%s %% dokončeno",
"Last modified %s" : "Naposledy upraveno %s",
"Created %s" : "Vytvořeno %s",
"Completed %s" : "Dokončeno %s",
"Edit" : "Upravit",
"Copy private link" : "Zkopírovat soukromý odkaz",
"Copied" : "Zkopírováno",
"Can not copy" : "Nedaří se zkopírovat",
"Download" : "Stáhnout",
"Save" : "Uložit",
"Add List…" : "Přidat seznam...",
"New List" : "Nový seznam",
"Calendar link copied to clipboard." : "Odkaz do kalendáře zkopírován do schránky.",
"Calendar link could not be copied to clipboard." : "Odkaz do kalendáře se nepodařilo zkopírovat do schránky.",
"The name \"%s\" is already used." : "Název „%s“ je už používán.",
"An empty name is not allowed." : "Prázdný název není povolen.",
"This will delete the calendar \"%s\" and all corresponding events and tasks." : "Toto smaže kalendář „%s“ a všechny události a úkoly v něm.",
"Settings" : "Nastavení",
"Default list" : "Výchozí seznam",
"Visibility of Smart Collections" : "Viditelnost Chytrých kolekcí",
"Hidden" : "Skrytý",
"Visible" : "Viditelný",
"Automatic" : "Automatický",
"Could not delete the task." : "Úkol se nedaří smazat.",
"Synchronizing to the server." : "Synchronizuje se se serverem.",
"Task successfully saved to server." : "Úkol úspěšně uložen na server.",
"Could not update the task because it was changed on the server. Please click to refresh it, local changes will be discarded." : "Úkol se nepodařilo se zaktualizovat, protože byl mezitím změněn na serveru. Klikněte pro jeho opětovné načtení. Vámi provedené změny budou ztraceny.",
"Could not update the task because it was changed on the server. Please click to refresh it, local changes will be discarded." : "Nepodařilo se aktualizovat úkol, protože byl mezitím změněn na serveru. Prosím, klikněte pro jeho obnovení. Vámi provedené změny budou ztraceny.",
"Could not update the task." : "Úkol se nedaří aktualizovat.",
"Successfully updated the task." : "Úkol úspěšně aktualizován.",
"Task successfully moved to new calendar." : "Úkol úspěšně přesunut do nového kalendáře.",
"Could not update the task because it was changed on the server. Please click to refresh it, local changes will be discared." : "Úkol se nepodařilo aktualizovat protože byl mezitím změněn na serveru. Klikněte pro jeho opětovné načtení, vámi provedené změny ovšem budou ztraceny.",
"An error occurred" : "Došlo k chybě"
},
"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;");

View file

@ -1,60 +1,30 @@
{ "translations": {
"Tasks" : "Úkoly",
"Important" : "Důležité",
"Today" : "Dnes",
"Week" : "Týden",
"All" : "Vše",
"Current" : "Stávající",
"Current" : "Aktuální",
"Completed" : "Dokončeno",
"Tasks" : "Úkoly",
"The Tasks app for Nextcloud" : "Aplikace Úkoly pro Nextcloud",
"Once enabled, a new Tasks menu will appear in your Nextcloud apps menu. From there you can add and delete tasks, edit their title, description, start and due dates and mark them as important. Tasks can be shared between users. Tasks can be synchronized using CalDav (each task list is linked to an Nextcloud calendar, to sync it to your local client - Thunderbird, Evolution, KDE Kontact, iCal, … - just add the calendar as a remote calendar in your client). You can download your tasks as ICS files using the download button for each calendar." : "Jakmile je zapnuto, zobrazí se nová nabídky Úkoly v nabídce Nextcloud aplikací. Odtud je možné přidávat a mazat úkoly, upravovat jejich nadpis, popis, data zahájení a termínu a označovat je jako důležité. Úkoly je možné sdílet mezi uživateli. Úkoly je možné synchronizovat pomocí CalDav (každý seznam úkolů je připojen jako Nextcloud kalendář, pro synchronizaci na místního klienta Thunderbird, Evolution, KDE Kontact, iCal… stačí v klientovi přidat kalendář jako vzdálený kalendář). Své úkoly si můžete stáhnout jako ICS soubory pomocí tlačítka stahování u každého kalendáře.",
"Once enabled, a new Tasks menu will appear in your Nextcloud apps menu. From there you can add and delete tasks, edit their title, description, start and due dates, reminder times, mark them as important, and add comments on them. Tasks can be shared between users. Tasks can be synchronized using CalDav (each task list is linked to an Nextcloud calendar, to sync it to your local client - Thunderbird, Evolution, KDE Kontact, iCal... - just add the calendar as a remote calendar in you client). You can download your tasks as ICS files using the download button for each calendar." : "Jakmile je zapnuto, zobrazí se nová nabídky Úkoly v nabídce Nextcloud aplikací. Odtud je možné přidávat a mazat úkoly, upravovat jejich nadpis, popis, data zahájení a termínu, časy připomínek, označovat je jako důležité a přidávat k nim komentáře. Úkoly je možné sdílet mezi uživateli. Úkoly je možné synchronizovat pomocí CalDav (každý seznam úkolů je připojen jako Nextcloud kalendář, pro synchronizaci na místního klienta Thunderbird, Evolution, KDE Kontact, iCal… stačí v klientovi přidat kalendář jako vzdálený kalendář). Své úkoly si můžete stáhnout jako ICS soubory pomocí tlačítka stahování u každého kalendáře.",
"Share with users or groups" : "Sdílet s uživateli či skupinami",
"No users or groups" : "Žádní uživatelé či skupiny",
"can edit" : "může upravovat",
"Unshare with {displayName}" : "Přestat sdílet s {displayName}",
"Unable to delete the share." : "Sdílení se nedaří smazat.",
"Unable to change permissions." : "Oprávnění se nedaří změnit",
"Add List…" : "Přidat seznam…",
"New List" : "Nový seznam",
"Cancel" : "Storno",
"Save" : "Uložit",
"The name \"{calendar}\" is already used." : "Název „{calendar}“ už je používán.",
"An empty name is not allowed." : "Prázdný název není povolen.",
"Edit" : "Upravit",
"Copy private link" : "Zkopírovat soukromý odkaz",
"Copied" : "Zkopírováno",
"Can not copy" : "Nedaří se zkopírovat",
"Download" : "Stáhnout",
"Delete" : "Smazat",
"Unshare" : "Zrušit sdílení",
"This will delete the calendar \"{calendar}\" and all corresponding events and tasks." : "Toto smaže kalendář „{calendar}“ a všechny odpovídající události a úkoly.",
"This will unshare the calendar \"{calendar}\"." : "Toto zruší sdílení kalendáře „{calendar}“.",
"Calendar link copied to clipboard." : "Odkaz do kalendáře zkopírován do schránky.",
"Calendar link could not be copied to clipboard." : "Odkaz do kalendáře se nepodařilo zkopírovat do schránky.",
"An error occurred, unable to delete the calendar." : "Došlo k chybě, kalendář se nepodařilo smazat.",
"_Deleting the calendar in {countdown} second_::_Deleting the calendar in {countdown} seconds_" : ["Kalendář bude smazán za {countdown} sekundu","Kalendář bude smazán za {countdown} sekundy","Kalendář bude smazán za {countdown} sekund","Kalendář bude smazán za {countdown} sekundy"],
"_Unsharing the calendar in {countdown} second_::_Unsharing the calendar in {countdown} seconds_" : ["Kalendář přestane být sdílen za {countdown} sekundu","Kalendář přestane být sdílen za {countdown} sekundy","Kalendář přestane být sdílen za {countdown} sekund","Kalendář přestane být sdílen za {countdown} sekundy"],
"_Shared with {num} entity_::_Shared with {num} entities_" : ["Sdíleno s {num} entitou","Sdíleno s {num} entitami","Sdíleno s {num} entitami","Sdíleno s {num} entitami"],
"Default list" : "Výchozí seznam",
"Visibility of Smart Collections" : "Viditelnost Chytrých kolekcí",
"Hidden" : "Skrytý",
"Visible" : "Viditelný",
"Automatic" : "Automatický",
"Cancel" : "Storno",
"Delete all completed tasks." : "Smazat všechny dokončené úlohy.",
"Delete completed tasks." : "Smazat dokončené úkoly.",
"Deleted all completed tasks from calendar \"{calendar}\"." : "Smazány všechny dokončené úkoly z kalendáře „{calendar}“.",
"No errors" : "Bez chyb",
"Open your browser console for more details" : "Další podrobnosti získáte otevřením konzole webového prohlížeče",
"_This will delete {taskCount} completed task and its subtasks from calendar \"{calendar}\"._::_This will delete {taskCount} completed tasks and their subtasks from calendar \"{calendar}\"._" : ["Toto vymaže {taskCount} dokončený úkol a jeho dílčí úkoly z „{calendar}“.","Toto vymaže {taskCount} dokončené úkoly a jejich dílčí úkoly z „{calendar}“.","Toto vymaže {taskCount} dokončených úkolů a jejich dílčí úkoly z „{calendar}“.","Toto vymaže {taskCount} dokončené úkoly a jejich dílčí úkoly z „{calendar}“."],
"_Could not delete {failedCount} task._::_Could not delete {failedCount} tasks._" : ["Nedaří se smazat {failedCount} úkol.","Nedaří se smazat {failedCount} úkoly.","Nedaří se smazat {failedCount} úkolů.","Nedaří se smazat {failedCount} úkoly."],
"Load all completed tasks." : "Načíst všechny dokončené úkoly.",
"Load all completed tasks." : "Načíst všechny dokončené úlohy.",
"Change sort order" : "Změnit řazení",
"Relevance" : "Relevantnost",
"Sort by completed state, due date, priority, start date and summary." : "Seřadit podle stupně dokončenosti, termínu, priority, data zahájení a shrnutí.",
"Start date" : "Datum počátku",
"Sort by start date and summary." : "Seřadit podle data zahájení a shrnutí.",
"Default" : "Výchozí",
"Sort by completed state, due date, priority, start date and summary." : "Seřadit podle stavu dokončení, termínu, priority, data zahájení a shrnutí.",
"Due date" : "Datum ukončení",
"Sort by due date and summary." : "Seřadit podle termínu a shrnutí.",
"Start date" : "Datum počátku",
"Sort by start date and summary." : "Seřadit podle data zahájení a shrnutí.",
"Created date" : "Datum vytvoření",
"Sort by created date and summary." : "Seřadit podle data a shrnutí.",
"Last modified" : "Naposledy upraveno",
@ -67,26 +37,14 @@
"Sort by manual order." : "Seřadit ručně.",
"Alphabetically" : "Abecedně",
"Sort by summary and priority." : "Seřadit podle shrnutí a priority.",
"{complete} % completed" : "{complete} % dokončeno",
"Task is completed" : "Úkol je dokončen",
"{complete} % completed" : "{complete}% dokončeno",
"Add subtask" : "Přidat dílčí úkol",
"Show subtasks" : "Zobrazit dílčí úkoly",
"Hide subtasks" : "Skrýt dílčí úkoly",
"Show completed subtasks" : "Zobrazit dokončené dílčí úkoly",
"Hide completed subtasks" : "Skrýt dokončené dílčí úkoly",
"Delete task" : "Smazat úkol",
"Toggle visibility of all subtasks." : "Vyp/zap. viditelnost všech podúkolů",
"Toggle visibility of completed subtasks." : "Vyp/zap. viditelnost dokončených podúkolů.",
"[Yesterday]" : "[Včera]",
"[Today]" : "[Dnes]",
"[Tomorrow]" : "[Zítra]",
"Add a subtask to \"{task}\"…" : "Přidat dílčí úkol k „{task}“…",
"An error occurred, unable to delete the task." : "Došlo k chybě, úkol se nepodařilo smazat.",
"_Deleting the task in {countdown} second_::_Deleting the task in {countdown} seconds_" : ["Úkol bude smazán za {countdown} sekundu","Úkol bude smazán za {countdown} sekundy","Úkol bude smazán za {countdown} sekund","Úkol bude smazán za {countdown} sekundy"],
"Add a task to \"{task}\"…" : "Přidat úkol do „{task}“…",
"_%n Completed Task_::_%n Completed Tasks_" : ["%n dokončený úkol","%n dokončené úkoly","%n dokončených úkolů","%n dokončené úkoly"],
"Add an important task to \"{calendar}\"…" : "Přidat důležitý úkol k \"{calendar}\"…",
"Add a task due today to \"{calendar}\"…" : "Přidat úkol s termínem dnes do „{calendar}“…",
"Add a current task to \"{calendar}\"…" : "Přidat stávající úkol do „{calendar}“…",
"Add a task to \"{calendar}\"…" : "Přidat úkol do „{calendar}“…",
"_%n Completed Task_::_%n Completed Tasks_" : ["%n dokončený úkol","%n dokončené úkoly","%n dokončených úkolů","%n dokončených úkolů"],
"Tomorrow" : "Zítra",
"Set start date" : "Nastavit počáteční datum",
"Set start time" : "Nastavit datum zahájení",
@ -95,17 +53,9 @@
"All day" : "Celý den",
"Select a calendar" : "Vybrat kalendář",
"Select a classification" : "Vybrat klasifikaci",
"Select a status" : "Vybrat stav",
"Select categories" : "Vybrat kategorie",
"Add this as a new category" : "Přidat toto jako novou kategorii",
"Loading task from server." : "Načítání úkolů ze serveru.",
"Task not found!" : "Úkol nenalezen!",
"When shared show full event" : "Když sdíleno zobrazit úplnou událost",
"When shared show only busy" : "Když sdíleno zobrazit pouze zaneprázdněno",
"When shared hide this event" : "Když sdíleno skrýt tuto událost",
"Needs action" : "Vyžaduje akci",
"In process" : "V procesu",
"Canceled" : "Zrušeno",
"[Starts today]" : "[Začíná dnes]",
"[Starts tomorrow]" : "[Začíná zítra]",
"[Starts on] LL" : "[Začíná] LL",
@ -128,22 +78,39 @@
"[Due on] LL [at] LT" : "[Termín] LL [v] LT",
"[Was due yesterday at] LT" : "[Termín byl včera v] LT",
"[Was due on] LL [at] LT" : "[Termín byl] LL [v] LT",
"Last modified {date}" : "Naposledy změněno {date}",
"Created {date}" : "Vytvořeno {date}",
"Completed {date}" : "Dokončeno {date}",
"No priority assigned" : "Nepřiřazena žádná priorita",
"Priority {priority}: high" : "Priorita {priority}: vysoká",
"Priority {priority}: medium" : "Priorita {priority}: střední",
"Priority {priority}: low" : "Priorita {priority}: nízká",
"{percent} % completed" : "{percent} % dokončeno",
"Successfully created the task." : "Úkol úspěšně vytvořen.",
"Priority %s: high" : "Priorita %s: vysoká",
"Priority %s: medium" : "Priorita %s: střední",
"Priority %s: low" : "Priorita %s: nízká",
"%s %% completed" : "%s %% dokončeno",
"Last modified %s" : "Naposledy upraveno %s",
"Created %s" : "Vytvořeno %s",
"Completed %s" : "Dokončeno %s",
"Edit" : "Upravit",
"Copy private link" : "Zkopírovat soukromý odkaz",
"Copied" : "Zkopírováno",
"Can not copy" : "Nedaří se zkopírovat",
"Download" : "Stáhnout",
"Save" : "Uložit",
"Add List…" : "Přidat seznam...",
"New List" : "Nový seznam",
"Calendar link copied to clipboard." : "Odkaz do kalendáře zkopírován do schránky.",
"Calendar link could not be copied to clipboard." : "Odkaz do kalendáře se nepodařilo zkopírovat do schránky.",
"The name \"%s\" is already used." : "Název „%s“ je už používán.",
"An empty name is not allowed." : "Prázdný název není povolen.",
"This will delete the calendar \"%s\" and all corresponding events and tasks." : "Toto smaže kalendář „%s“ a všechny události a úkoly v něm.",
"Settings" : "Nastavení",
"Default list" : "Výchozí seznam",
"Visibility of Smart Collections" : "Viditelnost Chytrých kolekcí",
"Hidden" : "Skrytý",
"Visible" : "Viditelný",
"Automatic" : "Automatický",
"Could not delete the task." : "Úkol se nedaří smazat.",
"Synchronizing to the server." : "Synchronizuje se se serverem.",
"Task successfully saved to server." : "Úkol úspěšně uložen na server.",
"Could not update the task because it was changed on the server. Please click to refresh it, local changes will be discarded." : "Úkol se nepodařilo se zaktualizovat, protože byl mezitím změněn na serveru. Klikněte pro jeho opětovné načtení. Vámi provedené změny budou ztraceny.",
"Could not update the task because it was changed on the server. Please click to refresh it, local changes will be discarded." : "Nepodařilo se aktualizovat úkol, protože byl mezitím změněn na serveru. Prosím, klikněte pro jeho obnovení. Vámi provedené změny budou ztraceny.",
"Could not update the task." : "Úkol se nedaří aktualizovat.",
"Successfully updated the task." : "Úkol úspěšně aktualizován.",
"Task successfully moved to new calendar." : "Úkol úspěšně přesunut do nového kalendáře.",
"Could not update the task because it was changed on the server. Please click to refresh it, local changes will be discared." : "Úkol se nepodařilo aktualizovat protože byl mezitím změněn na serveru. Klikněte pro jeho opětovné načtení, vámi provedené změny ovšem budou ztraceny.",
"An error occurred" : "Došlo k chybě"
},"pluralForm" :"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;"
}

View file

@ -3,26 +3,10 @@ OC.L10N.register(
{
"Today" : "Heddiw",
"Week" : "Wythnos",
"All" : "Popeth",
"Share with users or groups" : "Rhannwch gyda defnyddwyr neu grwpiau",
"No users or groups" : "Dim defnyddwyr na grwpiau",
"can edit" : "yn gallu golygu",
"Unable to delete the share." : "Methu dileu'r gyfran.",
"Unable to change permissions." : "Methu newid caniatâd.",
"Cancel" : "Diddymu",
"Save" : "Cadw",
"Edit" : "Golygu",
"Copied" : "Copïwyd",
"Can not copy" : "Methu copïo",
"Download" : "Llwytho i lawr",
"Delete" : "Dileu",
"Unshare" : "Dad-rannu",
"No errors" : "Dim gwallau",
"Open your browser console for more details" : "Agorwch eich consol porwr am fwy o fanylion",
"Last modified" : "Newidiwyd diwethaf",
"When shared show full event" : "Pan wedi ei rannu, yn dangos y digwyddiad llawn",
"When shared show only busy" : "Pan wedi ei rannu, yn dangos dim ond prysur",
"When shared hide this event" : "Pan wedi ei rannu, yn cuddio'r digwyddiad hwn",
"An error occurred" : "Digwyddodd gwall"
"Cancel" : "Diddymu",
"Edit" : "Golygu",
"Download" : "Llwytho i lawr",
"Save" : "Cadw"
},
"nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;");

View file

@ -1,26 +1,10 @@
{ "translations": {
"Today" : "Heddiw",
"Week" : "Wythnos",
"All" : "Popeth",
"Share with users or groups" : "Rhannwch gyda defnyddwyr neu grwpiau",
"No users or groups" : "Dim defnyddwyr na grwpiau",
"can edit" : "yn gallu golygu",
"Unable to delete the share." : "Methu dileu'r gyfran.",
"Unable to change permissions." : "Methu newid caniatâd.",
"Cancel" : "Diddymu",
"Save" : "Cadw",
"Edit" : "Golygu",
"Copied" : "Copïwyd",
"Can not copy" : "Methu copïo",
"Download" : "Llwytho i lawr",
"Delete" : "Dileu",
"Unshare" : "Dad-rannu",
"No errors" : "Dim gwallau",
"Open your browser console for more details" : "Agorwch eich consol porwr am fwy o fanylion",
"Last modified" : "Newidiwyd diwethaf",
"When shared show full event" : "Pan wedi ei rannu, yn dangos y digwyddiad llawn",
"When shared show only busy" : "Pan wedi ei rannu, yn dangos dim ond prysur",
"When shared hide this event" : "Pan wedi ei rannu, yn cuddio'r digwyddiad hwn",
"An error occurred" : "Digwyddodd gwall"
"Cancel" : "Diddymu",
"Edit" : "Golygu",
"Download" : "Llwytho i lawr",
"Save" : "Cadw"
},"pluralForm" :"nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;"
}

View file

@ -1,43 +1,20 @@
OC.L10N.register(
"tasks",
{
"Tasks" : "Opgaver",
"Important" : "Vigtigt",
"Today" : "I dag",
"Week" : "Uge",
"All" : "Alle",
"Current" : "Nuværende",
"Completed" : "Fuldført",
"Tasks" : "Opgaver",
"Share with users or groups" : "Del med brugere eller grupper",
"No users or groups" : "Ingen brugere eller grupper",
"can edit" : "kan redigere",
"Unable to delete the share." : "Kan ikke slette delingen.",
"Unable to change permissions." : "Kan ikke ændre tilladelser.",
"New List" : "Ny liste",
"Cancel" : "Annullér",
"Save" : "Gem",
"An empty name is not allowed." : "Et tomt navn er ikke tilladt.",
"Edit" : "Redigér",
"Copy private link" : "Kopier privat link",
"Copied" : "opieret",
"Can not copy" : "Kan ikke kopiere",
"Download" : "Hent",
"Delete" : "Slet",
"Unshare" : "Fjern deling",
"Calendar link copied to clipboard." : "Kalender link kopieret.",
"Calendar link could not be copied to clipboard." : "Kalender link kunne ikke kopieres.",
"An error occurred, unable to delete the calendar." : "Kalenderen kunne ikke slettes.",
"Visibility of Smart Collections" : "Synlighed for smarte samlinger",
"Hidden" : "Skjult",
"Visible" : "Synlig",
"Automatic" : "Automatisk",
"No errors" : "Ingen fejl",
"Open your browser console for more details" : "Åbn din browsers konsol for flejre detaljer",
"Cancel" : "Annullér",
"Change sort order" : "Skift sorteringsrækkefølge",
"Start date" : "Start dato",
"Default" : "Standard",
"Due date" : "Forfaldsdato",
"Start date" : "Start dato",
"Created date" : "Oprettelsesdato",
"Last modified" : "Sidst ændret",
"Priority" : "Prioritet",
"Manually" : "Manuelt",
"Alphabetically" : "Alfabetisk",
@ -49,9 +26,18 @@ OC.L10N.register(
"All day" : "Hele dagen",
"Select a calendar" : "Vælg en kalender",
"Task not found!" : "Opgaven blev ikke fundet!",
"When shared show full event" : "Når delt, vis den fulde begivenhed",
"When shared show only busy" : "Når delt, vis kun optaget",
"When shared hide this event" : "Når delt, skjul denne begivenhed",
"An error occurred" : "Der var en fejl"
"%s %% completed" : "%s %% er fuldført",
"Created %s" : "Oprettede %s",
"Edit" : "Redigér",
"Download" : "Hent",
"Save" : "Gem",
"New List" : "Ny liste",
"The name \"%s\" is already used." : "Navnet \"%s\" er allerede i brug.",
"An empty name is not allowed." : "Et tomt navn er ikke tilladt.",
"Settings" : "Indstillinger",
"Visibility of Smart Collections" : "Synlighed for smarte samlinger",
"Hidden" : "Skjult",
"Visible" : "Synlig",
"Automatic" : "Automatisk"
},
"nplurals=2; plural=(n != 1);");

View file

@ -1,41 +1,18 @@
{ "translations": {
"Tasks" : "Opgaver",
"Important" : "Vigtigt",
"Today" : "I dag",
"Week" : "Uge",
"All" : "Alle",
"Current" : "Nuværende",
"Completed" : "Fuldført",
"Tasks" : "Opgaver",
"Share with users or groups" : "Del med brugere eller grupper",
"No users or groups" : "Ingen brugere eller grupper",
"can edit" : "kan redigere",
"Unable to delete the share." : "Kan ikke slette delingen.",
"Unable to change permissions." : "Kan ikke ændre tilladelser.",
"New List" : "Ny liste",
"Cancel" : "Annullér",
"Save" : "Gem",
"An empty name is not allowed." : "Et tomt navn er ikke tilladt.",
"Edit" : "Redigér",
"Copy private link" : "Kopier privat link",
"Copied" : "opieret",
"Can not copy" : "Kan ikke kopiere",
"Download" : "Hent",
"Delete" : "Slet",
"Unshare" : "Fjern deling",
"Calendar link copied to clipboard." : "Kalender link kopieret.",
"Calendar link could not be copied to clipboard." : "Kalender link kunne ikke kopieres.",
"An error occurred, unable to delete the calendar." : "Kalenderen kunne ikke slettes.",
"Visibility of Smart Collections" : "Synlighed for smarte samlinger",
"Hidden" : "Skjult",
"Visible" : "Synlig",
"Automatic" : "Automatisk",
"No errors" : "Ingen fejl",
"Open your browser console for more details" : "Åbn din browsers konsol for flejre detaljer",
"Cancel" : "Annullér",
"Change sort order" : "Skift sorteringsrækkefølge",
"Start date" : "Start dato",
"Default" : "Standard",
"Due date" : "Forfaldsdato",
"Start date" : "Start dato",
"Created date" : "Oprettelsesdato",
"Last modified" : "Sidst ændret",
"Priority" : "Prioritet",
"Manually" : "Manuelt",
"Alphabetically" : "Alfabetisk",
@ -47,9 +24,18 @@
"All day" : "Hele dagen",
"Select a calendar" : "Vælg en kalender",
"Task not found!" : "Opgaven blev ikke fundet!",
"When shared show full event" : "Når delt, vis den fulde begivenhed",
"When shared show only busy" : "Når delt, vis kun optaget",
"When shared hide this event" : "Når delt, skjul denne begivenhed",
"An error occurred" : "Der var en fejl"
"%s %% completed" : "%s %% er fuldført",
"Created %s" : "Oprettede %s",
"Edit" : "Redigér",
"Download" : "Hent",
"Save" : "Gem",
"New List" : "Ny liste",
"The name \"%s\" is already used." : "Navnet \"%s\" er allerede i brug.",
"An empty name is not allowed." : "Et tomt navn er ikke tilladt.",
"Settings" : "Indstillinger",
"Visibility of Smart Collections" : "Synlighed for smarte samlinger",
"Hidden" : "Skjult",
"Visible" : "Synlig",
"Automatic" : "Automatisk"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View file

@ -1,62 +1,37 @@
OC.L10N.register(
"tasks",
{
"Tasks" : "Aufgaben",
"Important" : "Wichtig",
"Today" : "Heute",
"Week" : "Woche",
"All" : "Alle",
"Current" : "Aktuell",
"Completed" : "Fertiggestellt",
"Tasks" : "Aufgaben",
"The Tasks app for Nextcloud" : "Die Aufgabenverwaltungs-App für Nextcloud",
"Once enabled, a new Tasks menu will appear in your Nextcloud apps menu. From there you can add and delete tasks, edit their title, description, start and due dates and mark them as important. Tasks can be shared between users. Tasks can be synchronized using CalDav (each task list is linked to an Nextcloud calendar, to sync it to your local client - Thunderbird, Evolution, KDE Kontact, iCal, … - just add the calendar as a remote calendar in your client). You can download your tasks as ICS files using the download button for each calendar." : "Nach der Aktivierung erscheint ein neues Aufgabenmenü in Deinem Nextcloud-Applikationsmenü. Von dort aus kannst Du Aufgaben hinzufügen und löschen, deren Titel, Beschreibung, Start- und Fälligkeitsdaten bearbeiten und als wichtig markieren. Aufgaben können zwischen den Benutzern geteilt werden. Aufgaben können mit CalDav synchronisiert werden (jede Aufgabenliste ist mit einem Nextcloud-Kalender verknüpft, um sie mit Ihrem lokalen Client zu synchronisieren - Thunderbird, Evolution, KDE Kontact, iCal..... - fügst Du einfach den Kalender als entfernten Kalender in Ihrem Client hinzu). Du kannst Deine Aufgaben als ICS-Dateien über den Download-Button für jeden Kalender herunterladen.",
"Once enabled, a new Tasks menu will appear in your Nextcloud apps menu. From there you can add and delete tasks, edit their title, description, start and due dates, reminder times, mark them as important, and add comments on them. Tasks can be shared between users. Tasks can be synchronized using CalDav (each task list is linked to an Nextcloud calendar, to sync it to your local client - Thunderbird, Evolution, KDE Kontact, iCal... - just add the calendar as a remote calendar in you client). You can download your tasks as ICS files using the download button for each calendar." : "Sobald aktiviert, erscheint ein neues Aufgaben-Menü in Deinem Nextcloud Apps-Menü. Von dort aus kannst Du Aufgaben hinzufügen und löschen, sowie deren Titel, Beschreibung, Start- und Fälligkeitsdaten, Erinnerungszeiten bearbeiten und Kommentare hinzufügen. Aufgaben können zwischen den Benutzern geteilt werden. Aufgaben können auch mit CalDav synchronisiert werden (jede Aufgabenliste ist mit einem Nextcloud-Kalender verknüpft, um sie mit dem lokalen Client zu synchronisieren - Thunderbird, Evolution, KDE Kontact, iCal… Füge den Kalender einfach als externer Kalender in den Client ein). Die Aufgaben können als ICS-Dateien über den Download-Button für jeden Kalender herunterladen werden.",
"Share with users or groups" : "Mit Benutzern oder Gruppen teilen",
"No users or groups" : "Keine Benutzer oder Gruppen",
"can edit" : "kann bearbeiten",
"Unshare with {displayName}" : "Mit {displayName} nicht mehr teilen",
"Unable to delete the share." : "Freigabe kann nicht gelöscht werden.",
"Unable to change permissions." : "Berechtigungen können nicht geändert werden.",
"Add List…" : "Liste hinzufügen…",
"New List" : "Neue Liste",
"Cancel" : "Abbrechen",
"Save" : "Speichern",
"The name \"{calendar}\" is already used." : "Der Name „{calendar}“ wird bereits verwendet.",
"An empty name is not allowed." : "Ein leerer Name ist nicht erlaubt.",
"Edit" : "Bearbeiten",
"Copy private link" : "Privaten Link kopieren",
"Copied" : "Kopiert",
"Can not copy" : "Kann nicht kopiert werden",
"Download" : "Herunterladen",
"Delete" : "Löschen",
"Unshare" : "Freigabe aufheben",
"This will delete the calendar \"{calendar}\" and all corresponding events and tasks." : "Hiermit wird der Kalender „{calendar}“ und alle zugehörigen Termine und Aufgaben gelöscht.",
"This will unshare the calendar \"{calendar}\"." : "Die Freigabe des Kalenders \"{calendar}\" wird aufgehoben.",
"Calendar link copied to clipboard." : "Kalender-Link in die Zwischenablage kopiert.",
"Calendar link could not be copied to clipboard." : "Kalender-Link konnte nicht in die Zwischenablage kopiert werden.",
"An error occurred, unable to delete the calendar." : "Es ist ein Fehler aufgetreten, der Kalender konnte nicht gelöscht werden.",
"_Deleting the calendar in {countdown} second_::_Deleting the calendar in {countdown} seconds_" : ["Der Kalender wird in {countdown} Sekunde gelöscht","Der Kalender wird in {countdown} Sekunden gelöscht"],
"_Unsharing the calendar in {countdown} second_::_Unsharing the calendar in {countdown} seconds_" : ["Kalenderfreigabe wird in {countdown} Sekunde beendet","Kalenderfreigabe wird in {countdown} Sekunden beendet"],
"_Shared with {num} entity_::_Shared with {num} entities_" : ["Für {num} Entitäten freigegeben","Für {num} Entitäten freigegeben"],
"Default list" : "Standardliste",
"Visibility of Smart Collections" : "Sichtbarkeit der intelligenten Sammlungen",
"Hidden" : "Verborgen",
"Visible" : "Sichtbar",
"Automatic" : "Automatisch",
"Cancel" : "Abbrechen",
"Delete all completed tasks." : "Alle abgeschlossenen Aufgaben löschen.",
"Delete completed tasks." : "Abgeschlossene Aufgaben löschen.",
"Deleted all completed tasks from calendar \"{calendar}\"." : "Alle abgeschlossenen Aufgaben aus dem Kalender \"{calendar}\" gelöscht.",
"Delete completed tasks." : "Abgeschlossenen Aufgaben löschen.",
"Deleted all completed tasks from calendar \"%s\"." : "Alle abgeschlossenen Aufgaben aus Kalender \"%s\" gelöscht.",
"No errors" : "Keine Fehler",
"Open your browser console for more details" : "Browser-Konsole für weitere Einzelheiten öffnen",
"_This will delete {taskCount} completed task and its subtasks from calendar \"{calendar}\"._::_This will delete {taskCount} completed tasks and their subtasks from calendar \"{calendar}\"._" : ["Hiermit wird {taskCount} abgeschlossene Aufgabe und ihre Unteraufgaben aus dem Kalender \"{calendar}\" gelöscht.","Hiermit werden {taskCount} abgeschlossene Aufgaben und deren Unteraufgaben aus dem Kalender \"{calendar}\" gelöscht."],
"_This will delete {taskCount} completed task and its subtasks from calendar \"%s\"._::_This will delete {taskCount} completed tasks and their subtasks from calendar \"%s\"._" : ["Dies löscht {taskCount} abgeschlossene Aufgabe und ihre Unteraufgaben aus Kalender \"%s\".","Dies löscht {taskCount} abgeschlossene Aufgaben und ihre Unteraufgaben aus Kalender \"%s\"."],
"_Could not delete {failedCount} task._::_Could not delete {failedCount} tasks._" : ["{failedCount} Aufgabe konnte nicht gelöscht werden.","{failedCount} Aufgaben konnten nicht gelöscht werden."],
"Load all completed tasks." : "Alle abgeschlossenen Aufgaben laden.",
"Change sort order" : "Sortierreihenfolge ändern",
"Relevance" : "Wichtigkeit",
"Default" : "Standard",
"Sort by completed state, due date, priority, start date and summary." : "Sortieren nach Abgeschlossen-Status, Fälligskeitsdatum, Priorität, Startdatum und Zusammenfassung.",
"Start date" : "Startdatum",
"Sort by start date and summary." : "Nach Startdatum und Zusammenfassung sortieren.",
"Due date" : "Fälligkeitsdatum",
"Sort by due date and summary." : "Sortiere nach Fälligkeitsdatum und Zusammenfassung.",
"Start date" : "Startdatum",
"Sort by start date and summary." : "Nach Startdatum und Zusammenfassung sortieren.",
"Created date" : "Erstellungsdatum",
"Sort by created date and summary." : "Nach Erstellungsdatum und Zusammenfassung sortieren.",
"Last modified" : "Zuletzt geändert",
@ -69,26 +44,19 @@ OC.L10N.register(
"Sort by manual order." : "In manueller Reihenfolge sortieren.",
"Alphabetically" : "Alphabetisch",
"Sort by summary and priority." : "Sortiere nach Zusammenfassung und Priorität.",
"Task is completed" : "Aufgabe fertiggestellt",
"{complete} % completed" : "{complete} % fertiggestellt",
"Add subtask" : "Teilaufgabe hinzufügen",
"Show subtasks" : "Teilaufgabe anzeigen",
"Hide subtasks" : "Teilaufgaben ausblenden",
"Show completed subtasks" : "Fertige Teilaufgaben anzeigen",
"Hide completed subtasks" : "Fertige Teilaufgaben ausblenden",
"Delete task" : "Aufgabe löschen",
"Task is completed" : "Aufgabe fertiggestellt",
"Toggle visibility of all subtasks." : "Sichtbarkeit aller Unteraufgaben umschalten",
"Toggle visibility of completed subtasks." : "Sichtbarkeit abgeschlossener Unteraufgaben umschalten.",
"[Yesterday]" : "[Gestern]",
"[Today]" : "[Heute]",
"[Tomorrow]" : "[Morgen]",
"Add a subtask to \"{task}\"…" : "Eine Unteraufgabe zu \"{task}\" hinzufügen…",
"An error occurred, unable to delete the task." : "Es ist ein Fehler aufgetreten, die Aufgabe konnte nicht gelöscht werden.",
"_Deleting the task in {countdown} second_::_Deleting the task in {countdown} seconds_" : ["Lösche die Aufgabe in {countdown} Sekunde","Lösche die Aufgabe in {countdown} Sekunden"],
"Add a task to \"{task}\"…" : "Eine Aufgabe zu \"{task}\" hinzufügen…",
"Add a subtask to \"%s\"…" : "Eine Unteraufgabe zu \"%s\" hinzufügen…",
"Add a task to \"%s\"…" : "Eine Aufgabe zu \"%s\" hinzufügen…",
"_%n Completed Task_::_%n Completed Tasks_" : ["%n erledigte Aufgabe","%n erledigte Aufgaben"],
"Add an important task to \"{calendar}\"…" : "Eine wichtige Aufgabe zu \"{calendar}\" hinzufügen…",
"Add a task due today to \"{calendar}\"…" : "Eine heute fällige Aufgabe zu \"{calendar}\" hinzufügen…",
"Add a current task to \"{calendar}\"…" : "Eine aktuelle Aufgabe zu \"{calendar}\" hinzufügen…",
"Add a task to \"{calendar}\"…" : "Eine Aufgabe zu \"{calendar}\" hinzufügen…",
"Add an important task to \"%s\"…" : "Eine wichtige Aufgabe zu \"%s\" hinzufügen…",
"Add a task due today to \"%s\"…" : "Eine heute fällige Aufgabe zu \"%s\" hinzufügen…",
"Add a current task to \"%s\"…" : "Eine aktuelle Aufgabe zu \"%s\" hinzufügen…",
"Tomorrow" : "Morgen",
"Set start date" : "Startdatum setzen",
"Set start time" : "Startzeit setzen",
@ -97,17 +65,9 @@ OC.L10N.register(
"All day" : "Ganztägig",
"Select a calendar" : "Kalender wählen",
"Select a classification" : "Klassifikation wählen",
"Select a status" : "Status auswählen",
"Select categories" : "Kategorien auswählen",
"Add this as a new category" : "Dies als neue Kategorie hinzufügen",
"Loading task from server." : "Aufgabe wird vom Server geladen.",
"Task not found!" : "Aufgabe nicht gefunden!",
"When shared show full event" : "Wenn geteilt, zeige den vollständigen Termin an",
"When shared show only busy" : "Wenn geteilt, zeige nur den Status 'beschäftigt' an",
"When shared hide this event" : "Wenn geteilt, zeige den Termin nicht an",
"Needs action" : "Handlungsbedarf",
"In process" : "In Bearbeitung",
"Canceled" : "Abgebrochen",
"[Starts today]" : "[Beginnt heute]",
"[Starts tomorrow]" : "[Beginnt morgen]",
"[Starts on] LL" : "[Beginnt am] LL",
@ -130,22 +90,43 @@ OC.L10N.register(
"[Due on] LL [at] LT" : "[Fällig am] LL [um] LT",
"[Was due yesterday at] LT" : "[War gestern um] LT [fällig]",
"[Was due on] LL [at] LT" : "[War am] LL [um] LT [fällig]",
"Last modified {date}" : "Zuletzt geändert am {date}",
"Created {date}" : "Erstellt am {date}",
"Completed {date}" : "Erledigt am {date}",
"No priority assigned" : "Keine Priorität zugewiesen",
"Priority {priority}: high" : "Priorität {priority}: hoch",
"Priority {priority}: medium" : "Priorität {priority}: mittel",
"Priority {priority}: low" : "Priorität {priority}: niedrig",
"{percent} % completed" : "{percent} % fertiggestellt",
"Successfully created the task." : "Aufgabe erstellt.",
"Priority %s: high" : "Priorität %s: hoch",
"Priority %s: medium" : "Priorität %s: mittel",
"Priority %s: low" : "Priorität %s: niedrig",
"%s %% completed" : "%s %% fertiggestellt",
"When shared show full event" : "Wenn geteilt, zeige das vollständige Ereignis an",
"When shared show only busy" : "Wenn geteilt, zeige nur den Status 'beschäftigt' an",
"When shared hide this event" : "Wenn geteilt, zeige das Ereignis nicht an",
"Last modified %s" : "Zuletzt geändert %s",
"Created %s" : "%s erstellt",
"Completed %s" : "%s erledigt",
"Edit" : "Bearbeiten",
"Copy private link" : "Privaten Link kopieren",
"Copied" : "Kopiert",
"Can not copy" : "Kann nicht kopiert werden",
"Download" : "Herunterladen",
"Save" : "Speichern",
"Add List…" : "Liste hinzufügen…",
"New List" : "Neue Liste",
"Calendar link copied to clipboard." : "Kalender-Link in die Zwischenablage kopiert.",
"Calendar link could not be copied to clipboard." : "Kalender-Link konnte nicht in die Zwischenablage kopiert werden.",
"The name \"%s\" is already used." : "Der Name „%s“ wird bereits verwendet.",
"An empty name is not allowed." : "Ein leerer Name ist nicht erlaubt.",
"This will delete the calendar \"%s\" and all corresponding events and tasks." : "Dadurch werden der Kalender „%s“ und alle zugehörigen Ereignisse und Aufgaben gelöscht.",
"_Shared with {num} entity_::_Shared with {num} entities_" : ["Für {num} Entitäten freigegeben","Für {num} Entitäten freigegeben"],
"Settings" : "Einstellungen",
"Default list" : "Standardliste",
"Visibility of Smart Collections" : "Sichtbarkeit der intelligenten Sammlungen",
"Hidden" : "Verborgen",
"Visible" : "Sichtbar",
"Automatic" : "Automatisch",
"Could not delete the task." : "Aufgabe konnte nicht gelöscht werden.",
"Synchronizing to the server." : "Synchronisiere mit dem Server.",
"Task successfully saved to server." : "Aufgabe erfolgreich auf dem Server gespeichert.",
"Could not update the task because it was changed on the server. Please click to refresh it, local changes will be discarded." : "Die Aufgabe konnte nicht aktualisiert werden, da sie auf dem Server geändert wurde. Bitte Aktualisieren drücken, damit die lokalen Änderungen verworfen werden.",
"Could not update the task." : "Aufgabe konnte nicht aktualisiert werden.",
"Successfully updated the task." : "Aufgabe aktualisiert.",
"Task successfully moved to new calendar." : "Aufgabe in neuen Kalender verschoben.",
"Could not update the task because it was changed on the server. Please click to refresh it, local changes will be discared." : "Die Aufgabe konnte nicht aktualisiert werden, da sie auf dem Server geändert wurde. Bitte Aktualisieren drücken, damit die lokalen Änderungen verworfen werden.",
"An error occurred" : "Es ist ein Fehler aufgetreten"
},
"nplurals=2; plural=(n != 1);");

View file

@ -1,60 +1,35 @@
{ "translations": {
"Tasks" : "Aufgaben",
"Important" : "Wichtig",
"Today" : "Heute",
"Week" : "Woche",
"All" : "Alle",
"Current" : "Aktuell",
"Completed" : "Fertiggestellt",
"Tasks" : "Aufgaben",
"The Tasks app for Nextcloud" : "Die Aufgabenverwaltungs-App für Nextcloud",
"Once enabled, a new Tasks menu will appear in your Nextcloud apps menu. From there you can add and delete tasks, edit their title, description, start and due dates and mark them as important. Tasks can be shared between users. Tasks can be synchronized using CalDav (each task list is linked to an Nextcloud calendar, to sync it to your local client - Thunderbird, Evolution, KDE Kontact, iCal, … - just add the calendar as a remote calendar in your client). You can download your tasks as ICS files using the download button for each calendar." : "Nach der Aktivierung erscheint ein neues Aufgabenmenü in Deinem Nextcloud-Applikationsmenü. Von dort aus kannst Du Aufgaben hinzufügen und löschen, deren Titel, Beschreibung, Start- und Fälligkeitsdaten bearbeiten und als wichtig markieren. Aufgaben können zwischen den Benutzern geteilt werden. Aufgaben können mit CalDav synchronisiert werden (jede Aufgabenliste ist mit einem Nextcloud-Kalender verknüpft, um sie mit Ihrem lokalen Client zu synchronisieren - Thunderbird, Evolution, KDE Kontact, iCal..... - fügst Du einfach den Kalender als entfernten Kalender in Ihrem Client hinzu). Du kannst Deine Aufgaben als ICS-Dateien über den Download-Button für jeden Kalender herunterladen.",
"Once enabled, a new Tasks menu will appear in your Nextcloud apps menu. From there you can add and delete tasks, edit their title, description, start and due dates, reminder times, mark them as important, and add comments on them. Tasks can be shared between users. Tasks can be synchronized using CalDav (each task list is linked to an Nextcloud calendar, to sync it to your local client - Thunderbird, Evolution, KDE Kontact, iCal... - just add the calendar as a remote calendar in you client). You can download your tasks as ICS files using the download button for each calendar." : "Sobald aktiviert, erscheint ein neues Aufgaben-Menü in Deinem Nextcloud Apps-Menü. Von dort aus kannst Du Aufgaben hinzufügen und löschen, sowie deren Titel, Beschreibung, Start- und Fälligkeitsdaten, Erinnerungszeiten bearbeiten und Kommentare hinzufügen. Aufgaben können zwischen den Benutzern geteilt werden. Aufgaben können auch mit CalDav synchronisiert werden (jede Aufgabenliste ist mit einem Nextcloud-Kalender verknüpft, um sie mit dem lokalen Client zu synchronisieren - Thunderbird, Evolution, KDE Kontact, iCal… Füge den Kalender einfach als externer Kalender in den Client ein). Die Aufgaben können als ICS-Dateien über den Download-Button für jeden Kalender herunterladen werden.",
"Share with users or groups" : "Mit Benutzern oder Gruppen teilen",
"No users or groups" : "Keine Benutzer oder Gruppen",
"can edit" : "kann bearbeiten",
"Unshare with {displayName}" : "Mit {displayName} nicht mehr teilen",
"Unable to delete the share." : "Freigabe kann nicht gelöscht werden.",
"Unable to change permissions." : "Berechtigungen können nicht geändert werden.",
"Add List…" : "Liste hinzufügen…",
"New List" : "Neue Liste",
"Cancel" : "Abbrechen",
"Save" : "Speichern",
"The name \"{calendar}\" is already used." : "Der Name „{calendar}“ wird bereits verwendet.",
"An empty name is not allowed." : "Ein leerer Name ist nicht erlaubt.",
"Edit" : "Bearbeiten",
"Copy private link" : "Privaten Link kopieren",
"Copied" : "Kopiert",
"Can not copy" : "Kann nicht kopiert werden",
"Download" : "Herunterladen",
"Delete" : "Löschen",
"Unshare" : "Freigabe aufheben",
"This will delete the calendar \"{calendar}\" and all corresponding events and tasks." : "Hiermit wird der Kalender „{calendar}“ und alle zugehörigen Termine und Aufgaben gelöscht.",
"This will unshare the calendar \"{calendar}\"." : "Die Freigabe des Kalenders \"{calendar}\" wird aufgehoben.",
"Calendar link copied to clipboard." : "Kalender-Link in die Zwischenablage kopiert.",
"Calendar link could not be copied to clipboard." : "Kalender-Link konnte nicht in die Zwischenablage kopiert werden.",
"An error occurred, unable to delete the calendar." : "Es ist ein Fehler aufgetreten, der Kalender konnte nicht gelöscht werden.",
"_Deleting the calendar in {countdown} second_::_Deleting the calendar in {countdown} seconds_" : ["Der Kalender wird in {countdown} Sekunde gelöscht","Der Kalender wird in {countdown} Sekunden gelöscht"],
"_Unsharing the calendar in {countdown} second_::_Unsharing the calendar in {countdown} seconds_" : ["Kalenderfreigabe wird in {countdown} Sekunde beendet","Kalenderfreigabe wird in {countdown} Sekunden beendet"],
"_Shared with {num} entity_::_Shared with {num} entities_" : ["Für {num} Entitäten freigegeben","Für {num} Entitäten freigegeben"],
"Default list" : "Standardliste",
"Visibility of Smart Collections" : "Sichtbarkeit der intelligenten Sammlungen",
"Hidden" : "Verborgen",
"Visible" : "Sichtbar",
"Automatic" : "Automatisch",
"Cancel" : "Abbrechen",
"Delete all completed tasks." : "Alle abgeschlossenen Aufgaben löschen.",
"Delete completed tasks." : "Abgeschlossene Aufgaben löschen.",
"Deleted all completed tasks from calendar \"{calendar}\"." : "Alle abgeschlossenen Aufgaben aus dem Kalender \"{calendar}\" gelöscht.",
"Delete completed tasks." : "Abgeschlossenen Aufgaben löschen.",
"Deleted all completed tasks from calendar \"%s\"." : "Alle abgeschlossenen Aufgaben aus Kalender \"%s\" gelöscht.",
"No errors" : "Keine Fehler",
"Open your browser console for more details" : "Browser-Konsole für weitere Einzelheiten öffnen",
"_This will delete {taskCount} completed task and its subtasks from calendar \"{calendar}\"._::_This will delete {taskCount} completed tasks and their subtasks from calendar \"{calendar}\"._" : ["Hiermit wird {taskCount} abgeschlossene Aufgabe und ihre Unteraufgaben aus dem Kalender \"{calendar}\" gelöscht.","Hiermit werden {taskCount} abgeschlossene Aufgaben und deren Unteraufgaben aus dem Kalender \"{calendar}\" gelöscht."],
"_This will delete {taskCount} completed task and its subtasks from calendar \"%s\"._::_This will delete {taskCount} completed tasks and their subtasks from calendar \"%s\"._" : ["Dies löscht {taskCount} abgeschlossene Aufgabe und ihre Unteraufgaben aus Kalender \"%s\".","Dies löscht {taskCount} abgeschlossene Aufgaben und ihre Unteraufgaben aus Kalender \"%s\"."],
"_Could not delete {failedCount} task._::_Could not delete {failedCount} tasks._" : ["{failedCount} Aufgabe konnte nicht gelöscht werden.","{failedCount} Aufgaben konnten nicht gelöscht werden."],
"Load all completed tasks." : "Alle abgeschlossenen Aufgaben laden.",
"Change sort order" : "Sortierreihenfolge ändern",
"Relevance" : "Wichtigkeit",
"Default" : "Standard",
"Sort by completed state, due date, priority, start date and summary." : "Sortieren nach Abgeschlossen-Status, Fälligskeitsdatum, Priorität, Startdatum und Zusammenfassung.",
"Start date" : "Startdatum",
"Sort by start date and summary." : "Nach Startdatum und Zusammenfassung sortieren.",
"Due date" : "Fälligkeitsdatum",
"Sort by due date and summary." : "Sortiere nach Fälligkeitsdatum und Zusammenfassung.",
"Start date" : "Startdatum",
"Sort by start date and summary." : "Nach Startdatum und Zusammenfassung sortieren.",
"Created date" : "Erstellungsdatum",
"Sort by created date and summary." : "Nach Erstellungsdatum und Zusammenfassung sortieren.",
"Last modified" : "Zuletzt geändert",
@ -67,26 +42,19 @@
"Sort by manual order." : "In manueller Reihenfolge sortieren.",
"Alphabetically" : "Alphabetisch",
"Sort by summary and priority." : "Sortiere nach Zusammenfassung und Priorität.",
"Task is completed" : "Aufgabe fertiggestellt",
"{complete} % completed" : "{complete} % fertiggestellt",
"Add subtask" : "Teilaufgabe hinzufügen",
"Show subtasks" : "Teilaufgabe anzeigen",
"Hide subtasks" : "Teilaufgaben ausblenden",
"Show completed subtasks" : "Fertige Teilaufgaben anzeigen",
"Hide completed subtasks" : "Fertige Teilaufgaben ausblenden",
"Delete task" : "Aufgabe löschen",
"Task is completed" : "Aufgabe fertiggestellt",
"Toggle visibility of all subtasks." : "Sichtbarkeit aller Unteraufgaben umschalten",
"Toggle visibility of completed subtasks." : "Sichtbarkeit abgeschlossener Unteraufgaben umschalten.",
"[Yesterday]" : "[Gestern]",
"[Today]" : "[Heute]",
"[Tomorrow]" : "[Morgen]",
"Add a subtask to \"{task}\"…" : "Eine Unteraufgabe zu \"{task}\" hinzufügen…",
"An error occurred, unable to delete the task." : "Es ist ein Fehler aufgetreten, die Aufgabe konnte nicht gelöscht werden.",
"_Deleting the task in {countdown} second_::_Deleting the task in {countdown} seconds_" : ["Lösche die Aufgabe in {countdown} Sekunde","Lösche die Aufgabe in {countdown} Sekunden"],
"Add a task to \"{task}\"…" : "Eine Aufgabe zu \"{task}\" hinzufügen…",
"Add a subtask to \"%s\"…" : "Eine Unteraufgabe zu \"%s\" hinzufügen…",
"Add a task to \"%s\"…" : "Eine Aufgabe zu \"%s\" hinzufügen…",
"_%n Completed Task_::_%n Completed Tasks_" : ["%n erledigte Aufgabe","%n erledigte Aufgaben"],
"Add an important task to \"{calendar}\"…" : "Eine wichtige Aufgabe zu \"{calendar}\" hinzufügen…",
"Add a task due today to \"{calendar}\"…" : "Eine heute fällige Aufgabe zu \"{calendar}\" hinzufügen…",
"Add a current task to \"{calendar}\"…" : "Eine aktuelle Aufgabe zu \"{calendar}\" hinzufügen…",
"Add a task to \"{calendar}\"…" : "Eine Aufgabe zu \"{calendar}\" hinzufügen…",
"Add an important task to \"%s\"…" : "Eine wichtige Aufgabe zu \"%s\" hinzufügen…",
"Add a task due today to \"%s\"…" : "Eine heute fällige Aufgabe zu \"%s\" hinzufügen…",
"Add a current task to \"%s\"…" : "Eine aktuelle Aufgabe zu \"%s\" hinzufügen…",
"Tomorrow" : "Morgen",
"Set start date" : "Startdatum setzen",
"Set start time" : "Startzeit setzen",
@ -95,17 +63,9 @@
"All day" : "Ganztägig",
"Select a calendar" : "Kalender wählen",
"Select a classification" : "Klassifikation wählen",
"Select a status" : "Status auswählen",
"Select categories" : "Kategorien auswählen",
"Add this as a new category" : "Dies als neue Kategorie hinzufügen",
"Loading task from server." : "Aufgabe wird vom Server geladen.",
"Task not found!" : "Aufgabe nicht gefunden!",
"When shared show full event" : "Wenn geteilt, zeige den vollständigen Termin an",
"When shared show only busy" : "Wenn geteilt, zeige nur den Status 'beschäftigt' an",
"When shared hide this event" : "Wenn geteilt, zeige den Termin nicht an",
"Needs action" : "Handlungsbedarf",
"In process" : "In Bearbeitung",
"Canceled" : "Abgebrochen",
"[Starts today]" : "[Beginnt heute]",
"[Starts tomorrow]" : "[Beginnt morgen]",
"[Starts on] LL" : "[Beginnt am] LL",
@ -128,22 +88,43 @@
"[Due on] LL [at] LT" : "[Fällig am] LL [um] LT",
"[Was due yesterday at] LT" : "[War gestern um] LT [fällig]",
"[Was due on] LL [at] LT" : "[War am] LL [um] LT [fällig]",
"Last modified {date}" : "Zuletzt geändert am {date}",
"Created {date}" : "Erstellt am {date}",
"Completed {date}" : "Erledigt am {date}",
"No priority assigned" : "Keine Priorität zugewiesen",
"Priority {priority}: high" : "Priorität {priority}: hoch",
"Priority {priority}: medium" : "Priorität {priority}: mittel",
"Priority {priority}: low" : "Priorität {priority}: niedrig",
"{percent} % completed" : "{percent} % fertiggestellt",
"Successfully created the task." : "Aufgabe erstellt.",
"Priority %s: high" : "Priorität %s: hoch",
"Priority %s: medium" : "Priorität %s: mittel",
"Priority %s: low" : "Priorität %s: niedrig",
"%s %% completed" : "%s %% fertiggestellt",
"When shared show full event" : "Wenn geteilt, zeige das vollständige Ereignis an",
"When shared show only busy" : "Wenn geteilt, zeige nur den Status 'beschäftigt' an",
"When shared hide this event" : "Wenn geteilt, zeige das Ereignis nicht an",
"Last modified %s" : "Zuletzt geändert %s",
"Created %s" : "%s erstellt",
"Completed %s" : "%s erledigt",
"Edit" : "Bearbeiten",
"Copy private link" : "Privaten Link kopieren",
"Copied" : "Kopiert",
"Can not copy" : "Kann nicht kopiert werden",
"Download" : "Herunterladen",
"Save" : "Speichern",
"Add List…" : "Liste hinzufügen…",
"New List" : "Neue Liste",
"Calendar link copied to clipboard." : "Kalender-Link in die Zwischenablage kopiert.",
"Calendar link could not be copied to clipboard." : "Kalender-Link konnte nicht in die Zwischenablage kopiert werden.",
"The name \"%s\" is already used." : "Der Name „%s“ wird bereits verwendet.",
"An empty name is not allowed." : "Ein leerer Name ist nicht erlaubt.",
"This will delete the calendar \"%s\" and all corresponding events and tasks." : "Dadurch werden der Kalender „%s“ und alle zugehörigen Ereignisse und Aufgaben gelöscht.",
"_Shared with {num} entity_::_Shared with {num} entities_" : ["Für {num} Entitäten freigegeben","Für {num} Entitäten freigegeben"],
"Settings" : "Einstellungen",
"Default list" : "Standardliste",
"Visibility of Smart Collections" : "Sichtbarkeit der intelligenten Sammlungen",
"Hidden" : "Verborgen",
"Visible" : "Sichtbar",
"Automatic" : "Automatisch",
"Could not delete the task." : "Aufgabe konnte nicht gelöscht werden.",
"Synchronizing to the server." : "Synchronisiere mit dem Server.",
"Task successfully saved to server." : "Aufgabe erfolgreich auf dem Server gespeichert.",
"Could not update the task because it was changed on the server. Please click to refresh it, local changes will be discarded." : "Die Aufgabe konnte nicht aktualisiert werden, da sie auf dem Server geändert wurde. Bitte Aktualisieren drücken, damit die lokalen Änderungen verworfen werden.",
"Could not update the task." : "Aufgabe konnte nicht aktualisiert werden.",
"Successfully updated the task." : "Aufgabe aktualisiert.",
"Task successfully moved to new calendar." : "Aufgabe in neuen Kalender verschoben.",
"Could not update the task because it was changed on the server. Please click to refresh it, local changes will be discared." : "Die Aufgabe konnte nicht aktualisiert werden, da sie auf dem Server geändert wurde. Bitte Aktualisieren drücken, damit die lokalen Änderungen verworfen werden.",
"An error occurred" : "Es ist ein Fehler aufgetreten"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View file

@ -1,62 +1,37 @@
OC.L10N.register(
"tasks",
{
"Tasks" : "Aufgaben",
"Important" : "Wichtig",
"Today" : "Heute",
"Week" : "Woche",
"All" : "Alle",
"Current" : "Aktuell",
"Completed" : "Fertiggestellt",
"Tasks" : "Aufgaben",
"The Tasks app for Nextcloud" : "Die Aufgabenverwaltungs-App für Nextcloud",
"Once enabled, a new Tasks menu will appear in your Nextcloud apps menu. From there you can add and delete tasks, edit their title, description, start and due dates and mark them as important. Tasks can be shared between users. Tasks can be synchronized using CalDav (each task list is linked to an Nextcloud calendar, to sync it to your local client - Thunderbird, Evolution, KDE Kontact, iCal, … - just add the calendar as a remote calendar in your client). You can download your tasks as ICS files using the download button for each calendar." : "Nach der Aktivierung erscheint ein neues Aufgabenmenü in Ihrem Nextcloud-Applikationsmenü. Von dort aus können Sie Aufgaben hinzufügen und löschen, deren Titel, Beschreibung, Start- und Fälligkeitsdaten bearbeiten und als wichtig markieren. Aufgaben können zwischen den Benutzern geteilt werden. Aufgaben können mit CalDav synchronisiert werden (jede Aufgabenliste ist mit einem Nextcloud-Kalender verknüpft, um sie mit Ihrem lokalen Client zu synchronisieren - Thunderbird, Evolution, KDE Kontact, iCal, … - fügen Sie einfach den Kalender als entfernten Kalender in Ihrem Client hinzu). Sie können Ihre Aufgaben als ICS-Dateien über den Download-Button für jeden Kalender herunterladen.",
"Once enabled, a new Tasks menu will appear in your Nextcloud apps menu. From there you can add and delete tasks, edit their title, description, start and due dates, reminder times, mark them as important, and add comments on them. Tasks can be shared between users. Tasks can be synchronized using CalDav (each task list is linked to an Nextcloud calendar, to sync it to your local client - Thunderbird, Evolution, KDE Kontact, iCal... - just add the calendar as a remote calendar in you client). You can download your tasks as ICS files using the download button for each calendar." : "Sobald aktiviert, erscheint ein neues Aufgaben-Menü in Ihrem Nextcloud Apps-Menü. Von dort aus können Sie Aufgaben hinzufügen und löschen, sowie deren Titel, Beschreibung, Start- und Fälligkeitsdaten, Erinnerungszeiten bearbeiten und Kommentare hinzufügen. Aufgaben können zwischen den Benutzern geteilt werden. Aufgaben können auch mit CalDav synchronisiert werden (jede Aufgabenliste ist mit einem Nextcloud-Kalender verknüpft, um sie mit dem lokalen Client zu synchronisieren - Thunderbird, Evolution, KDE Kontact, iCal… Füge den Kalender einfach als externer Kalender in den Client ein). Die Aufgaben können als ICS-Dateien über den Download-Button für jeden Kalender herunterladen werden.",
"Share with users or groups" : "Mit Benutzern oder Gruppen teilen",
"No users or groups" : "Keine Benutzer oder Gruppen",
"can edit" : "kann bearbeiten",
"Unshare with {displayName}" : "Mit {displayName} nicht mehr teilen",
"Unable to delete the share." : "Freigabe kann nicht gelöscht werden.",
"Unable to change permissions." : "Berechtigungen können nicht geändert werden.",
"Add List…" : "Liste hinzufügen…",
"New List" : "Neue Liste",
"Cancel" : "Abbrechen",
"Save" : "Speichern",
"The name \"{calendar}\" is already used." : "Der Name „{calendar}“ wird bereits verwendet.",
"An empty name is not allowed." : "Ein leerer Name ist nicht erlaubt.",
"Edit" : "Bearbeiten",
"Copy private link" : "Privaten Link kopieren",
"Copied" : "Kopiert",
"Can not copy" : "Kann nicht kopiert werden",
"Download" : "Herunterladen",
"Delete" : "Löschen",
"Unshare" : "Freigabe aufheben",
"This will delete the calendar \"{calendar}\" and all corresponding events and tasks." : "Hiermit wird der Kalender „{calendar}“ und alle zugehörigen Termine und Aufgaben gelöscht.",
"This will unshare the calendar \"{calendar}\"." : "Die Freigabe des Kalenders \"{calendar}\" wird aufgehoben.",
"Calendar link copied to clipboard." : "Kalender-Link in die Zwischenablage kopiert.",
"Calendar link could not be copied to clipboard." : "Kalender-Link konnte nicht in die Zwischenablage kopiert werden.",
"An error occurred, unable to delete the calendar." : "Es ist ein Fehler aufgetreten, der Kalender konnte nicht gelöscht werden.",
"_Deleting the calendar in {countdown} second_::_Deleting the calendar in {countdown} seconds_" : ["Der Kalender wird in {countdown} Sekunde gelöscht","Der Kalender wird in {countdown} Sekunden gelöscht"],
"_Unsharing the calendar in {countdown} second_::_Unsharing the calendar in {countdown} seconds_" : ["Kalenderfreigabe wird in {countdown} Sekunde beendet","Kalenderfreigabe wird in {countdown} Sekunden beendet"],
"_Shared with {num} entity_::_Shared with {num} entities_" : ["Für {num} Entitäten freigegeben","Für {num} Entitäten freigegeben"],
"Default list" : "Standardliste",
"Visibility of Smart Collections" : "Sichtbarkeit der intelligenten Sammlungen",
"Hidden" : "Verborgen",
"Visible" : "Sichtbar",
"Automatic" : "Automatisch",
"Cancel" : "Abbrechen",
"Delete all completed tasks." : "Alle abgeschlossenen Aufgaben löschen.",
"Delete completed tasks." : "Abgeschlossene Aufgaben löschen.",
"Deleted all completed tasks from calendar \"{calendar}\"." : "Alle abgeschlossenen Aufgaben aus dem Kalender \"{calendar}\" gelöscht.",
"Delete completed tasks." : "Abgeschlossenen Aufgaben löschen.",
"Deleted all completed tasks from calendar \"%s\"." : "Alle abgeschlossenen Aufgaben aus Kalender \"%s\" gelöscht.",
"No errors" : "Keine Fehler",
"Open your browser console for more details" : "Browser-Konsole für weitere Einzelheiten öffnen",
"_This will delete {taskCount} completed task and its subtasks from calendar \"{calendar}\"._::_This will delete {taskCount} completed tasks and their subtasks from calendar \"{calendar}\"._" : ["Hiermit wird {taskCount} abgeschlossene Aufgabe und ihre Unteraufgaben aus dem Kalender \"{calendar}\" gelöscht.","Hiermit werden {taskCount} abgeschlossene Aufgaben und deren Unteraufgaben aus dem Kalender \"{calendar}\" gelöscht."],
"_Could not delete {failedCount} task._::_Could not delete {failedCount} tasks._" : ["{failedCount} Aufgabe konnte nicht gelöscht werden.","{failedCount} Aufgaben konnten nicht gelöscht werden."],
"_This will delete {taskCount} completed task and its subtasks from calendar \"%s\"._::_This will delete {taskCount} completed tasks and their subtasks from calendar \"%s\"._" : ["Dies löscht {taskCount} abgeschlossene Aufgabe und ihre Unteraufgaben aus Kalender \"%s\".","Dies löscht {taskCount} abgeschlossene Aufgaben und ihre Unteraufgaben aus Kalender \"%s\"."],
"_Could not delete {failedCount} task._::_Could not delete {failedCount} tasks._" : ["{failedCount} Aufgabe konnte nicht gelöscht werden.","{failedCount} Aufgaben konnte nicht gelöscht werden."],
"Load all completed tasks." : "Alle abgeschlossenen Aufgaben laden.",
"Change sort order" : "Sortierreihenfolge ändern",
"Relevance" : "Wichtigkeit",
"Default" : "Standard",
"Sort by completed state, due date, priority, start date and summary." : "Sortieren nach Abgeschlossen-Status, Fälligskeitsdatum, Priorität, Startdatum und Zusammenfassung.",
"Start date" : "Startdatum",
"Sort by start date and summary." : "Nach Startdatum und Zusammenfassung sortieren.",
"Due date" : "Fälligkeitsdatum",
"Sort by due date and summary." : "Sortiere nach Fälligkeitsdatum und Zusammenfassung.",
"Start date" : "Startdatum",
"Sort by start date and summary." : "Nach Startdatum und Zusammenfassung sortieren.",
"Created date" : "Erstellungsdatum",
"Sort by created date and summary." : "Nach Erstellungsdatum und Zusammenfassung sortieren.",
"Last modified" : "Zuletzt geändert",
@ -64,31 +39,24 @@ OC.L10N.register(
"Completed date" : "Erledigungsdatum",
"Sort by completed date." : "Sortiere nach Erledigungsdatum.",
"Priority" : "Priorität",
"Sort by priority and summary." : "Nach Priorität und Zusammenfassung sortieren.",
"Sort by priority and summary." : "Nach Priorität und ZUsammenfassung sortieren.",
"Manually" : "Manuell",
"Sort by manual order." : "In manueller Reihenfolge sortieren.",
"Alphabetically" : "Alphabetisch",
"Sort by summary and priority." : "Sortiere nach Zusammenfassung und Priorität.",
"Task is completed" : "Aufgabe fertiggestellt",
"{complete} % completed" : "{complete} % fertiggestellt",
"Add subtask" : "Teilaufgabe hinzufügen",
"Show subtasks" : "Teilaufgabe anzeigen",
"Hide subtasks" : "Teilaufgaben ausblenden",
"Show completed subtasks" : "Fertige Teilaufgaben anzeigen",
"Hide completed subtasks" : "Fertige Teilaufgaben ausblenden",
"Delete task" : "Aufgabe löschen",
"Task is completed" : "Aufgabe fertiggestellt",
"Toggle visibility of all subtasks." : "Sichtbarkeit aller Unteraufgaben umschalten",
"Toggle visibility of completed subtasks." : "Sichtbarkeit abgeschlossener Unteraufgaben umschalten.",
"[Yesterday]" : "[Gestern]",
"[Today]" : "[Heute]",
"[Tomorrow]" : "[Morgen]",
"Add a subtask to \"{task}\"…" : "Eine Unteraufgabe zu \"{task}\" hinzufügen…",
"An error occurred, unable to delete the task." : "Es ist ein Fehler aufgetreten, die Aufgabe konnte nicht gelöscht werden.",
"_Deleting the task in {countdown} second_::_Deleting the task in {countdown} seconds_" : ["Lösche die Aufgabe in {countdown} Sekunde","Lösche die Aufgabe in {countdown} Sekunden"],
"Add a task to \"{task}\"…" : "Eine Aufgabe zu \"{task}\" hinzufügen…",
"Add a subtask to \"%s\"…" : "Eine Unteraufgabe zu \"%s\" hinzufügen…",
"Add a task to \"%s\"…" : "Eine Aufgabe zu \"%s\" hinzufügen…",
"_%n Completed Task_::_%n Completed Tasks_" : ["%n erledigte Aufgabe","%n erledigte Aufgaben"],
"Add an important task to \"{calendar}\"…" : "Eine wichtige Aufgabe zu \"{calendar}\" hinzufügen…",
"Add a task due today to \"{calendar}\"…" : "Eine heute fällige Aufgabe zu \"{calendar}\" hinzufügen…",
"Add a current task to \"{calendar}\"…" : "Eine aktuelle Aufgabe zu \"{calendar}\" hinzufügen…",
"Add a task to \"{calendar}\"…" : "Eine Aufgabe zu \"{calendar}\" hinzufügen…",
"Add an important task to \"%s\"…" : "Eine wichtige Aufgabe zu \"%s\" hinzufügen…",
"Add a task due today to \"%s\"…" : "Eine heute fällige Aufgabe zu \"%s\" hinzufügen…",
"Add a current task to \"%s\"…" : "Eine aktuelle Aufgabe zu \"%s\" hinzufügen…",
"Tomorrow" : "Morgen",
"Set start date" : "Startdatum setzen",
"Set start time" : "Startzeit setzen",
@ -97,17 +65,9 @@ OC.L10N.register(
"All day" : "Ganztägig",
"Select a calendar" : "Kalender wählen",
"Select a classification" : "Klassifikation wählen",
"Select a status" : "Status auswählen",
"Select categories" : "Kategorien wählen",
"Select categories" : "Kategorien auswählen",
"Add this as a new category" : "Dies als neue Kategorie hinzufügen",
"Loading task from server." : "Aufgabe wird vom Server geladen.",
"Task not found!" : "Aufgabe nicht gefunden!",
"When shared show full event" : "Wenn geteilt, zeige den vollständigen Termin an",
"When shared show only busy" : "Wenn geteilt, zeige nur den Status 'beschäftigt' an",
"When shared hide this event" : "Wenn geteilt, zeige den Termin nicht an",
"Needs action" : "Handlungsbedarf",
"In process" : "In Bearbeitung",
"Canceled" : "Abgebrochen",
"[Starts today]" : "[Beginnt heute]",
"[Starts tomorrow]" : "[Beginnt morgen]",
"[Starts on] LL" : "[Beginnt am] LL",
@ -130,22 +90,43 @@ OC.L10N.register(
"[Due on] LL [at] LT" : "[Fällig am] LL [um] LT",
"[Was due yesterday at] LT" : "[War gestern um] LT [fällig]",
"[Was due on] LL [at] LT" : "[War am] LL [um] LT [fällig]",
"Last modified {date}" : "Zuletzt geändert am {date}",
"Created {date}" : "Erstellt am {date}",
"Completed {date}" : "Erledigt am {date}",
"No priority assigned" : "Keine Priorität zugewiesen",
"Priority {priority}: high" : "Priorität {priority}: hoch",
"Priority {priority}: medium" : "Priorität {priority}: mittel",
"Priority {priority}: low" : "Priorität {priority}: niedrig",
"{percent} % completed" : "{percent} % fertiggestellt",
"Successfully created the task." : "Aufgabe erstellt.",
"Priority %s: high" : "Priorität %s: hoch",
"Priority %s: medium" : "Priorität %s: mittel",
"Priority %s: low" : "Priorität %s: niedrig",
"%s %% completed" : "%s %% fertiggestellt",
"When shared show full event" : "Wenn geteilt, zeige das vollständige Ereignis an",
"When shared show only busy" : "Wenn geteilt, zeige nur den Status 'beschäftigt' an",
"When shared hide this event" : "Wenn geteilt, zeige das Ereignis nicht an",
"Last modified %s" : "Zuletzt geändert %s",
"Created %s" : "%s erstellt",
"Completed %s" : "%s erledigt",
"Edit" : "Bearbeiten",
"Copy private link" : "Privaten Link kopieren",
"Copied" : "Kopiert",
"Can not copy" : "Kann nicht kopiert werden",
"Download" : "Herunterladen",
"Save" : "Speichern",
"Add List…" : "Liste hinzufügen…",
"New List" : "Neue Liste",
"Calendar link copied to clipboard." : "Kalender-Link in die Zwischenablage kopiert.",
"Calendar link could not be copied to clipboard." : "Kalender-Link konnte nicht in die Zwischenablage kopiert werden.",
"The name \"%s\" is already used." : "Der Name „%s“ wird bereits verwendet.",
"An empty name is not allowed." : "Ein leerer Name ist nicht erlaubt.",
"This will delete the calendar \"%s\" and all corresponding events and tasks." : "Dadurch werden der Kalender „%s“ und alle zugehörigen Ereignisse und Aufgaben gelöscht.",
"_Shared with {num} entity_::_Shared with {num} entities_" : ["Für {num} Entitäten freigegeben","Für {num} Entitäten freigegeben"],
"Settings" : "Einstellungen",
"Default list" : "Standardliste",
"Visibility of Smart Collections" : "Sichtbarkeit der intelligenten Sammlungen",
"Hidden" : "Verborgen",
"Visible" : "Sichtbar",
"Automatic" : "Automatisch",
"Could not delete the task." : "Aufgabe konnte nicht gelöscht werden.",
"Synchronizing to the server." : "Synchronisiere mit dem Server.",
"Task successfully saved to server." : "Aufgabe erfolgreich auf dem Server gespeichert.",
"Could not update the task because it was changed on the server. Please click to refresh it, local changes will be discarded." : "Die Aufgabe konnte nicht aktualisiert werden, da sie auf dem Server geändert wurde. Bitte Aktualisieren drücken, damit die lokalen Änderungen verworfen werden.",
"Could not update the task." : "Aufgabe konnte nicht aktualisiert werden.",
"Successfully updated the task." : "Aufgabe aktualisiert.",
"Task successfully moved to new calendar." : "Aufgabe in neuen Kalender verschoben.",
"Could not update the task because it was changed on the server. Please click to refresh it, local changes will be discared." : "Die Aufgabe konnte nicht aktualisiert werden, da sie auf dem Server geändert wurde. Bitte Aktualisieren drücken, damit die lokalen Änderungen verworfen werden.",
"An error occurred" : "Es ist ein Fehler aufgetreten"
},
"nplurals=2; plural=(n != 1);");

View file

@ -1,60 +1,35 @@
{ "translations": {
"Tasks" : "Aufgaben",
"Important" : "Wichtig",
"Today" : "Heute",
"Week" : "Woche",
"All" : "Alle",
"Current" : "Aktuell",
"Completed" : "Fertiggestellt",
"Tasks" : "Aufgaben",
"The Tasks app for Nextcloud" : "Die Aufgabenverwaltungs-App für Nextcloud",
"Once enabled, a new Tasks menu will appear in your Nextcloud apps menu. From there you can add and delete tasks, edit their title, description, start and due dates and mark them as important. Tasks can be shared between users. Tasks can be synchronized using CalDav (each task list is linked to an Nextcloud calendar, to sync it to your local client - Thunderbird, Evolution, KDE Kontact, iCal, … - just add the calendar as a remote calendar in your client). You can download your tasks as ICS files using the download button for each calendar." : "Nach der Aktivierung erscheint ein neues Aufgabenmenü in Ihrem Nextcloud-Applikationsmenü. Von dort aus können Sie Aufgaben hinzufügen und löschen, deren Titel, Beschreibung, Start- und Fälligkeitsdaten bearbeiten und als wichtig markieren. Aufgaben können zwischen den Benutzern geteilt werden. Aufgaben können mit CalDav synchronisiert werden (jede Aufgabenliste ist mit einem Nextcloud-Kalender verknüpft, um sie mit Ihrem lokalen Client zu synchronisieren - Thunderbird, Evolution, KDE Kontact, iCal, … - fügen Sie einfach den Kalender als entfernten Kalender in Ihrem Client hinzu). Sie können Ihre Aufgaben als ICS-Dateien über den Download-Button für jeden Kalender herunterladen.",
"Once enabled, a new Tasks menu will appear in your Nextcloud apps menu. From there you can add and delete tasks, edit their title, description, start and due dates, reminder times, mark them as important, and add comments on them. Tasks can be shared between users. Tasks can be synchronized using CalDav (each task list is linked to an Nextcloud calendar, to sync it to your local client - Thunderbird, Evolution, KDE Kontact, iCal... - just add the calendar as a remote calendar in you client). You can download your tasks as ICS files using the download button for each calendar." : "Sobald aktiviert, erscheint ein neues Aufgaben-Menü in Ihrem Nextcloud Apps-Menü. Von dort aus können Sie Aufgaben hinzufügen und löschen, sowie deren Titel, Beschreibung, Start- und Fälligkeitsdaten, Erinnerungszeiten bearbeiten und Kommentare hinzufügen. Aufgaben können zwischen den Benutzern geteilt werden. Aufgaben können auch mit CalDav synchronisiert werden (jede Aufgabenliste ist mit einem Nextcloud-Kalender verknüpft, um sie mit dem lokalen Client zu synchronisieren - Thunderbird, Evolution, KDE Kontact, iCal… Füge den Kalender einfach als externer Kalender in den Client ein). Die Aufgaben können als ICS-Dateien über den Download-Button für jeden Kalender herunterladen werden.",
"Share with users or groups" : "Mit Benutzern oder Gruppen teilen",
"No users or groups" : "Keine Benutzer oder Gruppen",
"can edit" : "kann bearbeiten",
"Unshare with {displayName}" : "Mit {displayName} nicht mehr teilen",
"Unable to delete the share." : "Freigabe kann nicht gelöscht werden.",
"Unable to change permissions." : "Berechtigungen können nicht geändert werden.",
"Add List…" : "Liste hinzufügen…",
"New List" : "Neue Liste",
"Cancel" : "Abbrechen",
"Save" : "Speichern",
"The name \"{calendar}\" is already used." : "Der Name „{calendar}“ wird bereits verwendet.",
"An empty name is not allowed." : "Ein leerer Name ist nicht erlaubt.",
"Edit" : "Bearbeiten",
"Copy private link" : "Privaten Link kopieren",
"Copied" : "Kopiert",
"Can not copy" : "Kann nicht kopiert werden",
"Download" : "Herunterladen",
"Delete" : "Löschen",
"Unshare" : "Freigabe aufheben",
"This will delete the calendar \"{calendar}\" and all corresponding events and tasks." : "Hiermit wird der Kalender „{calendar}“ und alle zugehörigen Termine und Aufgaben gelöscht.",
"This will unshare the calendar \"{calendar}\"." : "Die Freigabe des Kalenders \"{calendar}\" wird aufgehoben.",
"Calendar link copied to clipboard." : "Kalender-Link in die Zwischenablage kopiert.",
"Calendar link could not be copied to clipboard." : "Kalender-Link konnte nicht in die Zwischenablage kopiert werden.",
"An error occurred, unable to delete the calendar." : "Es ist ein Fehler aufgetreten, der Kalender konnte nicht gelöscht werden.",
"_Deleting the calendar in {countdown} second_::_Deleting the calendar in {countdown} seconds_" : ["Der Kalender wird in {countdown} Sekunde gelöscht","Der Kalender wird in {countdown} Sekunden gelöscht"],
"_Unsharing the calendar in {countdown} second_::_Unsharing the calendar in {countdown} seconds_" : ["Kalenderfreigabe wird in {countdown} Sekunde beendet","Kalenderfreigabe wird in {countdown} Sekunden beendet"],
"_Shared with {num} entity_::_Shared with {num} entities_" : ["Für {num} Entitäten freigegeben","Für {num} Entitäten freigegeben"],
"Default list" : "Standardliste",
"Visibility of Smart Collections" : "Sichtbarkeit der intelligenten Sammlungen",
"Hidden" : "Verborgen",
"Visible" : "Sichtbar",
"Automatic" : "Automatisch",
"Cancel" : "Abbrechen",
"Delete all completed tasks." : "Alle abgeschlossenen Aufgaben löschen.",
"Delete completed tasks." : "Abgeschlossene Aufgaben löschen.",
"Deleted all completed tasks from calendar \"{calendar}\"." : "Alle abgeschlossenen Aufgaben aus dem Kalender \"{calendar}\" gelöscht.",
"Delete completed tasks." : "Abgeschlossenen Aufgaben löschen.",
"Deleted all completed tasks from calendar \"%s\"." : "Alle abgeschlossenen Aufgaben aus Kalender \"%s\" gelöscht.",
"No errors" : "Keine Fehler",
"Open your browser console for more details" : "Browser-Konsole für weitere Einzelheiten öffnen",
"_This will delete {taskCount} completed task and its subtasks from calendar \"{calendar}\"._::_This will delete {taskCount} completed tasks and their subtasks from calendar \"{calendar}\"._" : ["Hiermit wird {taskCount} abgeschlossene Aufgabe und ihre Unteraufgaben aus dem Kalender \"{calendar}\" gelöscht.","Hiermit werden {taskCount} abgeschlossene Aufgaben und deren Unteraufgaben aus dem Kalender \"{calendar}\" gelöscht."],
"_Could not delete {failedCount} task._::_Could not delete {failedCount} tasks._" : ["{failedCount} Aufgabe konnte nicht gelöscht werden.","{failedCount} Aufgaben konnten nicht gelöscht werden."],
"_This will delete {taskCount} completed task and its subtasks from calendar \"%s\"._::_This will delete {taskCount} completed tasks and their subtasks from calendar \"%s\"._" : ["Dies löscht {taskCount} abgeschlossene Aufgabe und ihre Unteraufgaben aus Kalender \"%s\".","Dies löscht {taskCount} abgeschlossene Aufgaben und ihre Unteraufgaben aus Kalender \"%s\"."],
"_Could not delete {failedCount} task._::_Could not delete {failedCount} tasks._" : ["{failedCount} Aufgabe konnte nicht gelöscht werden.","{failedCount} Aufgaben konnte nicht gelöscht werden."],
"Load all completed tasks." : "Alle abgeschlossenen Aufgaben laden.",
"Change sort order" : "Sortierreihenfolge ändern",
"Relevance" : "Wichtigkeit",
"Default" : "Standard",
"Sort by completed state, due date, priority, start date and summary." : "Sortieren nach Abgeschlossen-Status, Fälligskeitsdatum, Priorität, Startdatum und Zusammenfassung.",
"Start date" : "Startdatum",
"Sort by start date and summary." : "Nach Startdatum und Zusammenfassung sortieren.",
"Due date" : "Fälligkeitsdatum",
"Sort by due date and summary." : "Sortiere nach Fälligkeitsdatum und Zusammenfassung.",
"Start date" : "Startdatum",
"Sort by start date and summary." : "Nach Startdatum und Zusammenfassung sortieren.",
"Created date" : "Erstellungsdatum",
"Sort by created date and summary." : "Nach Erstellungsdatum und Zusammenfassung sortieren.",
"Last modified" : "Zuletzt geändert",
@ -62,31 +37,24 @@
"Completed date" : "Erledigungsdatum",
"Sort by completed date." : "Sortiere nach Erledigungsdatum.",
"Priority" : "Priorität",
"Sort by priority and summary." : "Nach Priorität und Zusammenfassung sortieren.",
"Sort by priority and summary." : "Nach Priorität und ZUsammenfassung sortieren.",
"Manually" : "Manuell",
"Sort by manual order." : "In manueller Reihenfolge sortieren.",
"Alphabetically" : "Alphabetisch",
"Sort by summary and priority." : "Sortiere nach Zusammenfassung und Priorität.",
"Task is completed" : "Aufgabe fertiggestellt",
"{complete} % completed" : "{complete} % fertiggestellt",
"Add subtask" : "Teilaufgabe hinzufügen",
"Show subtasks" : "Teilaufgabe anzeigen",
"Hide subtasks" : "Teilaufgaben ausblenden",
"Show completed subtasks" : "Fertige Teilaufgaben anzeigen",
"Hide completed subtasks" : "Fertige Teilaufgaben ausblenden",
"Delete task" : "Aufgabe löschen",
"Task is completed" : "Aufgabe fertiggestellt",
"Toggle visibility of all subtasks." : "Sichtbarkeit aller Unteraufgaben umschalten",
"Toggle visibility of completed subtasks." : "Sichtbarkeit abgeschlossener Unteraufgaben umschalten.",
"[Yesterday]" : "[Gestern]",
"[Today]" : "[Heute]",
"[Tomorrow]" : "[Morgen]",
"Add a subtask to \"{task}\"…" : "Eine Unteraufgabe zu \"{task}\" hinzufügen…",
"An error occurred, unable to delete the task." : "Es ist ein Fehler aufgetreten, die Aufgabe konnte nicht gelöscht werden.",
"_Deleting the task in {countdown} second_::_Deleting the task in {countdown} seconds_" : ["Lösche die Aufgabe in {countdown} Sekunde","Lösche die Aufgabe in {countdown} Sekunden"],
"Add a task to \"{task}\"…" : "Eine Aufgabe zu \"{task}\" hinzufügen…",
"Add a subtask to \"%s\"…" : "Eine Unteraufgabe zu \"%s\" hinzufügen…",
"Add a task to \"%s\"…" : "Eine Aufgabe zu \"%s\" hinzufügen…",
"_%n Completed Task_::_%n Completed Tasks_" : ["%n erledigte Aufgabe","%n erledigte Aufgaben"],
"Add an important task to \"{calendar}\"…" : "Eine wichtige Aufgabe zu \"{calendar}\" hinzufügen…",
"Add a task due today to \"{calendar}\"…" : "Eine heute fällige Aufgabe zu \"{calendar}\" hinzufügen…",
"Add a current task to \"{calendar}\"…" : "Eine aktuelle Aufgabe zu \"{calendar}\" hinzufügen…",
"Add a task to \"{calendar}\"…" : "Eine Aufgabe zu \"{calendar}\" hinzufügen…",
"Add an important task to \"%s\"…" : "Eine wichtige Aufgabe zu \"%s\" hinzufügen…",
"Add a task due today to \"%s\"…" : "Eine heute fällige Aufgabe zu \"%s\" hinzufügen…",
"Add a current task to \"%s\"…" : "Eine aktuelle Aufgabe zu \"%s\" hinzufügen…",
"Tomorrow" : "Morgen",
"Set start date" : "Startdatum setzen",
"Set start time" : "Startzeit setzen",
@ -95,17 +63,9 @@
"All day" : "Ganztägig",
"Select a calendar" : "Kalender wählen",
"Select a classification" : "Klassifikation wählen",
"Select a status" : "Status auswählen",
"Select categories" : "Kategorien wählen",
"Select categories" : "Kategorien auswählen",
"Add this as a new category" : "Dies als neue Kategorie hinzufügen",
"Loading task from server." : "Aufgabe wird vom Server geladen.",
"Task not found!" : "Aufgabe nicht gefunden!",
"When shared show full event" : "Wenn geteilt, zeige den vollständigen Termin an",
"When shared show only busy" : "Wenn geteilt, zeige nur den Status 'beschäftigt' an",
"When shared hide this event" : "Wenn geteilt, zeige den Termin nicht an",
"Needs action" : "Handlungsbedarf",
"In process" : "In Bearbeitung",
"Canceled" : "Abgebrochen",
"[Starts today]" : "[Beginnt heute]",
"[Starts tomorrow]" : "[Beginnt morgen]",
"[Starts on] LL" : "[Beginnt am] LL",
@ -128,22 +88,43 @@
"[Due on] LL [at] LT" : "[Fällig am] LL [um] LT",
"[Was due yesterday at] LT" : "[War gestern um] LT [fällig]",
"[Was due on] LL [at] LT" : "[War am] LL [um] LT [fällig]",
"Last modified {date}" : "Zuletzt geändert am {date}",
"Created {date}" : "Erstellt am {date}",
"Completed {date}" : "Erledigt am {date}",
"No priority assigned" : "Keine Priorität zugewiesen",
"Priority {priority}: high" : "Priorität {priority}: hoch",
"Priority {priority}: medium" : "Priorität {priority}: mittel",
"Priority {priority}: low" : "Priorität {priority}: niedrig",
"{percent} % completed" : "{percent} % fertiggestellt",
"Successfully created the task." : "Aufgabe erstellt.",
"Priority %s: high" : "Priorität %s: hoch",
"Priority %s: medium" : "Priorität %s: mittel",
"Priority %s: low" : "Priorität %s: niedrig",
"%s %% completed" : "%s %% fertiggestellt",
"When shared show full event" : "Wenn geteilt, zeige das vollständige Ereignis an",
"When shared show only busy" : "Wenn geteilt, zeige nur den Status 'beschäftigt' an",
"When shared hide this event" : "Wenn geteilt, zeige das Ereignis nicht an",
"Last modified %s" : "Zuletzt geändert %s",
"Created %s" : "%s erstellt",
"Completed %s" : "%s erledigt",
"Edit" : "Bearbeiten",
"Copy private link" : "Privaten Link kopieren",
"Copied" : "Kopiert",
"Can not copy" : "Kann nicht kopiert werden",
"Download" : "Herunterladen",
"Save" : "Speichern",
"Add List…" : "Liste hinzufügen…",
"New List" : "Neue Liste",
"Calendar link copied to clipboard." : "Kalender-Link in die Zwischenablage kopiert.",
"Calendar link could not be copied to clipboard." : "Kalender-Link konnte nicht in die Zwischenablage kopiert werden.",
"The name \"%s\" is already used." : "Der Name „%s“ wird bereits verwendet.",
"An empty name is not allowed." : "Ein leerer Name ist nicht erlaubt.",
"This will delete the calendar \"%s\" and all corresponding events and tasks." : "Dadurch werden der Kalender „%s“ und alle zugehörigen Ereignisse und Aufgaben gelöscht.",
"_Shared with {num} entity_::_Shared with {num} entities_" : ["Für {num} Entitäten freigegeben","Für {num} Entitäten freigegeben"],
"Settings" : "Einstellungen",
"Default list" : "Standardliste",
"Visibility of Smart Collections" : "Sichtbarkeit der intelligenten Sammlungen",
"Hidden" : "Verborgen",
"Visible" : "Sichtbar",
"Automatic" : "Automatisch",
"Could not delete the task." : "Aufgabe konnte nicht gelöscht werden.",
"Synchronizing to the server." : "Synchronisiere mit dem Server.",
"Task successfully saved to server." : "Aufgabe erfolgreich auf dem Server gespeichert.",
"Could not update the task because it was changed on the server. Please click to refresh it, local changes will be discarded." : "Die Aufgabe konnte nicht aktualisiert werden, da sie auf dem Server geändert wurde. Bitte Aktualisieren drücken, damit die lokalen Änderungen verworfen werden.",
"Could not update the task." : "Aufgabe konnte nicht aktualisiert werden.",
"Successfully updated the task." : "Aufgabe aktualisiert.",
"Task successfully moved to new calendar." : "Aufgabe in neuen Kalender verschoben.",
"Could not update the task because it was changed on the server. Please click to refresh it, local changes will be discared." : "Die Aufgabe konnte nicht aktualisiert werden, da sie auf dem Server geändert wurde. Bitte Aktualisieren drücken, damit die lokalen Änderungen verworfen werden.",
"An error occurred" : "Es ist ein Fehler aufgetreten"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View file

@ -1,151 +1,40 @@
OC.L10N.register(
"tasks",
{
"Tasks" : "Εργασίες",
"Important" : "Σημαντικό ",
"Today" : "Σήμερα",
"Week" : "Εβδομάδα",
"All" : "Όλες",
"Current" : "Τρέχουσα",
"Completed" : "Ολοκληρωμένες",
"Tasks" : "Εργασίες",
"The Tasks app for Nextcloud" : "Η εφαρμογή Εργασίες για το Nextcloud",
"Once enabled, a new Tasks menu will appear in your Nextcloud apps menu. From there you can add and delete tasks, edit their title, description, start and due dates and mark them as important. Tasks can be shared between users. Tasks can be synchronized using CalDav (each task list is linked to an Nextcloud calendar, to sync it to your local client - Thunderbird, Evolution, KDE Kontact, iCal, … - just add the calendar as a remote calendar in your client). You can download your tasks as ICS files using the download button for each calendar." : "Μόλις ενεργοποιηθεί, θα εμφανιστεί ένα νέο μενού Εργασίες στο μενού εφαρμογών του Nextcloud. Από εκεί μπορείτε να προσθέσετε και να διαγράψετε εργασίες, να επεξεργαστείτε τον τίτλο, την περιγραφή, τις ημερομηνίες έναρξης και λήξης και να τις σημειώσετε ως σημαντικές. Μπορούν να μοιράζονται μεταξύ των χρηστών. Μπορούν να συγχρονιστούν χρησιμοποιώντας το CalDav (κάθε λίστα εργασιών συνδέεται με ένα ημερολόγιο Nextcloud, για να συγχρονιστεί με την τοπική εφαρμογή - Thunderbird, Evolution, KDE Kontact, iCal, ... - απλά προσθέστε το ημερολόγιο ως απομακρυσμένο ημερολόγιο στην εφαρμογή σας). Μπορείτε να κατεβάσετε τις εργασίες σας ως αρχεία ICS χρησιμοποιώντας το κουμπί λήψης για κάθε ημερολόγιο.",
"Share with users or groups" : "Κοινή χρήση με χρήστες ή ομάδες",
"No users or groups" : "Δεν υπάρχουν χρήστες ή ομάδες",
"can edit" : "δυνατότητα επεξεργασίας",
"Unshare with {displayName}" : "Κατάργηση κοινής χρήσης με {displayName}",
"Unable to delete the share." : "Αδυναμία διαγραφής κοινόχρηστου.",
"Unable to change permissions." : "Αδυναμία αλλαγής δικαιωμάτων.",
"Add List…" : "Προσθήκη λίστας…",
"New List" : "Νέα λίστα",
"Cancel" : "Aκύρωση",
"Save" : "Αποθήκευση",
"The name \"{calendar}\" is already used." : "Το όνομα \"{calendar}\" είναι σε χρήση.",
"An empty name is not allowed." : "Δεν επιτρέπεται κενό όνομα.",
"Edit" : "Επεξεργασία",
"Copy private link" : "Αντιγραφή ιδιωτικού συνδέσμου",
"Copied" : "Αντιγράφηκε",
"Can not copy" : "Αδυναμία αντιγραφής",
"Download" : "Λήψη",
"Delete" : "Διαγραφή",
"Unshare" : "Αναίρεση διαμοιρασμού",
"This will delete the calendar \"{calendar}\" and all corresponding events and tasks." : "Θα διαγραφεί το ημερολόγιο \"{calendar}\" και όλα τα σχετικά γεγονότα και εργασίες.",
"This will unshare the calendar \"{calendar}\"." : "Αυτό θα καταργήση την κοινή χρήση του ημερολογίου \"{calendar}\".",
"Calendar link copied to clipboard." : "Ο σύνδεσμος του ημερολογίου αντιγράφηκε στο πρόχειρο.",
"Calendar link could not be copied to clipboard." : "Αδυναμία αντιγραφής συνδέσμου ημερολογίου στο πρόχειρο.",
"An error occurred, unable to delete the calendar." : "Παρουσιάστηκε σφάλμα, δεν δύναται να διαγραφή το ημερολόγιο.",
"_Deleting the calendar in {countdown} second_::_Deleting the calendar in {countdown} seconds_" : ["Διαγραφή ημερολογίου σε {countdown} δεύτερα","Διαγραφή ημερολογίου σε {countdown} δεύτερα"],
"_Unsharing the calendar in {countdown} second_::_Unsharing the calendar in {countdown} seconds_" : ["Κατάργηση κοινής χρήσης ημερολογίου σε {countdown} δεύτερα","Κατάργηση κοινής χρήσης ημερολογίου σε {countdown} δεύτερα"],
"_Shared with {num} entity_::_Shared with {num} entities_" : ["Κοινη χρήση με {num} οντότητα","Κοινη χρήση με {num} οντότητες"],
"Default list" : "Προεπιλεγμένη λίστα",
"Cancel" : "Άκυρο",
"Change sort order" : "Αλλαγή σειράς ταξινόμησης",
"Default" : "Προκαθορισμένο",
"Due date" : "Ημερομηνία λήξης",
"Start date" : "Ημερομηνία έναρξης",
"Priority" : "Προτεραιότητα",
"Manually" : "Χειροκίνητα",
"Alphabetically" : "Αλφαβητικά",
"Task is completed" : "Η εργασία ολοκληρώθηκε",
"_%n Completed Task_::_%n Completed Tasks_" : ["%n Ολοκληρωμένη Εργασία","%n Ολοκληρωμένες Εργασίες"],
"Tomorrow" : "Αύριο",
"Set start date" : "Ορισμός ημερομηνίας έναρξης",
"Set due date" : "Ορισμός προθεσμίας",
"All day" : "Ολοήμερο",
"Task not found!" : "Δεν βρέθηκε εργασία!",
"%s %% completed" : "%s %% ολοκληρωμένες",
"Edit" : "Επεξεργασία",
"Download" : "Λήψη",
"Save" : "Αποθήκευση",
"New List" : "Νέα Λίστα",
"The name \"%s\" is already used." : "Το όνομα \"%s\" χρησιμοποιείται ήδη.",
"An empty name is not allowed." : "Δεν επιτρέπεται κενό όνομα.",
"Settings" : "Ρυθμίσεις",
"Visibility of Smart Collections" : "Ορατότητα Έξυπνων Συλλογών",
"Hidden" : "Κρυφό",
"Visible" : "Ορατό",
"Automatic" : "Αυτόματο",
"Delete all completed tasks." : "Διαγραφή όλων των ολοκληρωμένων εργασιών.",
"Delete completed tasks." : "Διαγραφή ολοκληρωμένων εργασιών.",
"Deleted all completed tasks from calendar \"{calendar}\"." : "Διαγραφή όλων των ολοκληρωμένων εργασιών από το ημερολόγιο \"{calendar}\".",
"No errors" : "Κανένα σφάλμα",
"Open your browser console for more details" : "Ανοίξτε την κονσόλα του περιηγητή για περισσότερες λεπτομέρειες",
"_This will delete {taskCount} completed task and its subtasks from calendar \"{calendar}\"._::_This will delete {taskCount} completed tasks and their subtasks from calendar \"{calendar}\"._" : ["Θα διαγραφή η ολοκληρωμένη εργασία του {taskCount} και των υπο εργασιών από το ημερολόγιο \"{calendar}\".","Θα διαγραφούν ολοκληρωμένες εργασίες του {taskCount} και των υπο εργασιών από το ημερολόγιο \"{calendar}\"."],
"_Could not delete {failedCount} task._::_Could not delete {failedCount} tasks._" : ["Αδυναμία διαγραφής εργασίας {failedCount}.","Αδυναμία διαγραφής εργασιών {failedCount}."],
"Load all completed tasks." : "Φόρτωση όλων των ολοκληρωμένων εργασιών.",
"Change sort order" : "Αλλαγή σειράς ταξινόμησης",
"Relevance" : "Συνάφεια",
"Sort by completed state, due date, priority, start date and summary." : "Ταξινόμηση κατά ολοκληρωμένη κατάσταση, ημερομηνία λήξης, προτεραιότητα, ημερομηνία έναρξης και σύνοψη.",
"Start date" : "Ημερομηνία έναρξης",
"Sort by start date and summary." : "Ταξινόμηση ανά ημερομηνία έναρξης και σύνοψη.",
"Due date" : "Ημερομηνία λήξης",
"Sort by due date and summary." : "Ταξινόμηση ανά ημερομηνία λήξης και σύνοψης.",
"Created date" : "Ημερομηνία δημιουργίας",
"Sort by created date and summary." : "Ταξινόμηση κατά ημερομηνία και σύνοψη. ",
"Last modified" : "Τελευταία τροποίηση",
"Sort by last-modified date and summary." : "Ταξινόμηση κατά ημερομηνία και σύνοψη τελευταίας τροποποίησης.",
"Completed date" : "Ημερομηνία ολοκλήρωσης",
"Sort by completed date." : "Ταξινόμηση κατά ημερομηνία ολοκλήρωσης",
"Priority" : "Προτεραιότητα",
"Sort by priority and summary." : "Ταξινόμηση κατά προτεραιότητα και σύνοψη.",
"Manually" : "Χειροκίνητα",
"Sort by manual order." : "Ταξινόμηση με χειροκίνητη σειρά.",
"Alphabetically" : "Αλφαβητικά",
"Sort by summary and priority." : "Ταξινόμηση κατά σύνοψη και προτεραιότητα.",
"Task is completed" : "Η εργασία ολοκληρώθηκε",
"{complete} % completed" : "{complete} % ολοκληρωμένες",
"Add subtask" : "Προσθήκη υποεργασίας",
"Show subtasks" : "Εμφάνιση υποεργασιών",
"Hide subtasks" : "Απόκρυψη υποεργασιών",
"Show completed subtasks" : "Εμφάνιση ολοκληρωμένων υποεργασιών",
"Hide completed subtasks" : "Απόκρυψη ολοκληρωμένων υποεργασιών",
"Delete task" : "Διαγραφή εργασίας",
"[Yesterday]" : "[Χθες]",
"[Today]" : "[Σήμερα]",
"[Tomorrow]" : "[Αύριο]",
"Add a subtask to \"{task}\"…" : "Προσθήκη υποέργου σε \"{task}\"…",
"An error occurred, unable to delete the task." : "Παρουσιάστηκε σφάλμα, αδύνατη η διαγραφή εργασίας.",
"_Deleting the task in {countdown} second_::_Deleting the task in {countdown} seconds_" : ["Διαγραφή εργασίας σε {countdown} δεύτερα","Διαγραφή εργασίας σε {countdown} δεύτερα"],
"Add a task to \"{task}\"…" : "Προσθήκη έργου σε \"{task}\"…",
"_%n Completed Task_::_%n Completed Tasks_" : ["%n Ολοκληρωμένη Εργασία","%n Ολοκληρωμένες Εργασίες"],
"Add an important task to \"{calendar}\"…" : "Προσθήκη σημαστικής εργασίας στο \"{calendar}\"…",
"Add a task due today to \"{calendar}\"…" : "Προσθέστε εργασία για σήμερα στο \"{calendar}\"…",
"Add a current task to \"{calendar}\"…" : "Προσθήκη τρέχοντος εργασίας στο \"{calendar}\"…",
"Add a task to \"{calendar}\"…" : "Προσθήκη έργου στο \"{calendar}\"…",
"Tomorrow" : "Αύριο",
"Set start date" : "Ορισμός ημερομηνίας έναρξης",
"Set start time" : "Ορισμός ώρας έναρξης",
"Set due date" : "Ορισμός ημερομηνίας λήξης",
"Set due time" : "Ορισμός ώρας λήξης",
"All day" : "Ολοήμερο",
"Select a calendar" : "Επιλογή ημερολογίου",
"Select a classification" : "Επιλέξτε μια ταξινόμηση",
"Select a status" : "Επιλέξτε κατάσταση",
"Select categories" : "Επιλογή κατηγοριών",
"Add this as a new category" : "Προσθήκη αυτού σε νέα κατηγορία",
"Loading task from server." : "Ανάγνωση εεγασιών από διακομιστή.",
"Task not found!" : "Δεν βρέθηκε εργασία!",
"When shared show full event" : "Προβολή πλήρους συμβάντος, όταν κοινοποιείται",
"When shared show only busy" : "Προβολή μόνο απασχολημένων, όταν κοινοποιείται",
"When shared hide this event" : "Απόκρυψη αυτού του συμβάντος, όταν κοινοποιείται",
"Needs action" : "Χρειάζεται ενέργεια",
"In process" : "Σε εξέλιξη",
"Canceled" : "Ακυρώθηκε",
"[Starts today]" : "[Αρχίζει σήμερα]",
"[Starts tomorrow]" : "[Αρχίζει άυριο]",
"[Starts on] LL" : "[Ξεκινά σε] LL",
"[Started yesterday]" : "[Ξεκίνησε εχθές]",
"[Started on] LL" : "[Ξεκίνησε] LL",
"[Started today at] LT" : "[Ξεκίνησε σήμερα στις] LT",
"[Starts today at] LT" : "[Ξεκινά σήμερα στις] LT",
"[Starts tomorrow at] LT" : "[Ξεκινά αύριο στις] LT",
"[Starts on] LL [at] LT" : "[Ξεκινά σε] LL [στις] LT",
"[Started yesterday at] LT" : "[Ξεκίνησε εχθές στις] LT",
"[Started on] LL [at] LT" : "[Ξεκίνησε] LL [στις] LT",
"[Due today]" : "[Λήγει σήμερα]",
"[Due tomorrow]" : "[Λήγει αύριο]",
"[Due on] LL" : "[Έως στις] LL",
"[Was due yesterday]" : "[Έως εχθές]",
"[Was due on] LL" : "[Ήταν αναμενόμενο στις] LL",
"[Was due today at] LT" : "[Θα έπρεπε να γίνει σήμερα] LT",
"[Due today at] LT" : "[Λήξη σήμερα στις] LT",
"[Due tomorrow at] LT" : "[Λήγει αύριο στις] LT",
"[Due on] LL [at] LT" : "[Λήγει σε] LL [στις] LT",
"[Was due yesterday at] LT" : "[Ήταν χθες στο] LT",
"[Was due on] LL [at] LT" : "[Έληγε την] LL [στις] LT",
"Last modified {date}" : "Τελευταία τροποίηση {date}",
"Created {date}" : "Δημιουργήθηκε {date}",
"Completed {date}" : "Ολοκληρώθηκε {date}",
"No priority assigned" : "Δεν έχει εκχωρηθεί προτεραιότητα",
"Priority {priority}: high" : "Προτεραιότητα {priority}: υψηλή",
"Priority {priority}: medium" : "Προτεραιότητα {priority}: μεσαία",
"Priority {priority}: low" : "Προτεραιότητα {priority}: χαμηλή",
"{percent} % completed" : "{complete} % ολοκληρωμένες",
"Successfully created the task." : "Επιτυχής δημιουργία εργασίας.",
"Could not delete the task." : "Αδυναμία διαγραφής εργασίας.",
"Synchronizing to the server." : "Συγχρονισμός με τον διακομιστή.",
"Task successfully saved to server." : "Η εργασία αποθηκεύτηκε επιτυχώς στον διακομιστή.",
"Could not update the task because it was changed on the server. Please click to refresh it, local changes will be discarded." : "Δεν ήταν δυνατή η ενημέρωση της εργασίας επειδή άλλαξε στον διακομιστή. Κλικ για ανανέωση, οι τοπικές αλλαγές θα διαγραφούν.",
"Could not update the task." : "Αδυναμία ενημέρωσης της εργασίας.",
"Successfully updated the task." : "Επιτυχής ενημέρωση εργασίας.",
"Task successfully moved to new calendar." : "Η Εργασία μεταφέρθηκε επιτυχώς στο νέο ημερολόγιο.",
"An error occurred" : "Παρουσιάστηκε σφάλμα"
"Automatic" : "Αυτόματο"
},
"nplurals=2; plural=(n != 1);");

View file

@ -1,149 +1,38 @@
{ "translations": {
"Tasks" : "Εργασίες",
"Important" : "Σημαντικό ",
"Today" : "Σήμερα",
"Week" : "Εβδομάδα",
"All" : "Όλες",
"Current" : "Τρέχουσα",
"Completed" : "Ολοκληρωμένες",
"Tasks" : "Εργασίες",
"The Tasks app for Nextcloud" : "Η εφαρμογή Εργασίες για το Nextcloud",
"Once enabled, a new Tasks menu will appear in your Nextcloud apps menu. From there you can add and delete tasks, edit their title, description, start and due dates and mark them as important. Tasks can be shared between users. Tasks can be synchronized using CalDav (each task list is linked to an Nextcloud calendar, to sync it to your local client - Thunderbird, Evolution, KDE Kontact, iCal, … - just add the calendar as a remote calendar in your client). You can download your tasks as ICS files using the download button for each calendar." : "Μόλις ενεργοποιηθεί, θα εμφανιστεί ένα νέο μενού Εργασίες στο μενού εφαρμογών του Nextcloud. Από εκεί μπορείτε να προσθέσετε και να διαγράψετε εργασίες, να επεξεργαστείτε τον τίτλο, την περιγραφή, τις ημερομηνίες έναρξης και λήξης και να τις σημειώσετε ως σημαντικές. Μπορούν να μοιράζονται μεταξύ των χρηστών. Μπορούν να συγχρονιστούν χρησιμοποιώντας το CalDav (κάθε λίστα εργασιών συνδέεται με ένα ημερολόγιο Nextcloud, για να συγχρονιστεί με την τοπική εφαρμογή - Thunderbird, Evolution, KDE Kontact, iCal, ... - απλά προσθέστε το ημερολόγιο ως απομακρυσμένο ημερολόγιο στην εφαρμογή σας). Μπορείτε να κατεβάσετε τις εργασίες σας ως αρχεία ICS χρησιμοποιώντας το κουμπί λήψης για κάθε ημερολόγιο.",
"Share with users or groups" : "Κοινή χρήση με χρήστες ή ομάδες",
"No users or groups" : "Δεν υπάρχουν χρήστες ή ομάδες",
"can edit" : "δυνατότητα επεξεργασίας",
"Unshare with {displayName}" : "Κατάργηση κοινής χρήσης με {displayName}",
"Unable to delete the share." : "Αδυναμία διαγραφής κοινόχρηστου.",
"Unable to change permissions." : "Αδυναμία αλλαγής δικαιωμάτων.",
"Add List…" : "Προσθήκη λίστας…",
"New List" : "Νέα λίστα",
"Cancel" : "Aκύρωση",
"Save" : "Αποθήκευση",
"The name \"{calendar}\" is already used." : "Το όνομα \"{calendar}\" είναι σε χρήση.",
"An empty name is not allowed." : "Δεν επιτρέπεται κενό όνομα.",
"Edit" : "Επεξεργασία",
"Copy private link" : "Αντιγραφή ιδιωτικού συνδέσμου",
"Copied" : "Αντιγράφηκε",
"Can not copy" : "Αδυναμία αντιγραφής",
"Download" : "Λήψη",
"Delete" : "Διαγραφή",
"Unshare" : "Αναίρεση διαμοιρασμού",
"This will delete the calendar \"{calendar}\" and all corresponding events and tasks." : "Θα διαγραφεί το ημερολόγιο \"{calendar}\" και όλα τα σχετικά γεγονότα και εργασίες.",
"This will unshare the calendar \"{calendar}\"." : "Αυτό θα καταργήση την κοινή χρήση του ημερολογίου \"{calendar}\".",
"Calendar link copied to clipboard." : "Ο σύνδεσμος του ημερολογίου αντιγράφηκε στο πρόχειρο.",
"Calendar link could not be copied to clipboard." : "Αδυναμία αντιγραφής συνδέσμου ημερολογίου στο πρόχειρο.",
"An error occurred, unable to delete the calendar." : "Παρουσιάστηκε σφάλμα, δεν δύναται να διαγραφή το ημερολόγιο.",
"_Deleting the calendar in {countdown} second_::_Deleting the calendar in {countdown} seconds_" : ["Διαγραφή ημερολογίου σε {countdown} δεύτερα","Διαγραφή ημερολογίου σε {countdown} δεύτερα"],
"_Unsharing the calendar in {countdown} second_::_Unsharing the calendar in {countdown} seconds_" : ["Κατάργηση κοινής χρήσης ημερολογίου σε {countdown} δεύτερα","Κατάργηση κοινής χρήσης ημερολογίου σε {countdown} δεύτερα"],
"_Shared with {num} entity_::_Shared with {num} entities_" : ["Κοινη χρήση με {num} οντότητα","Κοινη χρήση με {num} οντότητες"],
"Default list" : "Προεπιλεγμένη λίστα",
"Cancel" : "Άκυρο",
"Change sort order" : "Αλλαγή σειράς ταξινόμησης",
"Default" : "Προκαθορισμένο",
"Due date" : "Ημερομηνία λήξης",
"Start date" : "Ημερομηνία έναρξης",
"Priority" : "Προτεραιότητα",
"Manually" : "Χειροκίνητα",
"Alphabetically" : "Αλφαβητικά",
"Task is completed" : "Η εργασία ολοκληρώθηκε",
"_%n Completed Task_::_%n Completed Tasks_" : ["%n Ολοκληρωμένη Εργασία","%n Ολοκληρωμένες Εργασίες"],
"Tomorrow" : "Αύριο",
"Set start date" : "Ορισμός ημερομηνίας έναρξης",
"Set due date" : "Ορισμός προθεσμίας",
"All day" : "Ολοήμερο",
"Task not found!" : "Δεν βρέθηκε εργασία!",
"%s %% completed" : "%s %% ολοκληρωμένες",
"Edit" : "Επεξεργασία",
"Download" : "Λήψη",
"Save" : "Αποθήκευση",
"New List" : "Νέα Λίστα",
"The name \"%s\" is already used." : "Το όνομα \"%s\" χρησιμοποιείται ήδη.",
"An empty name is not allowed." : "Δεν επιτρέπεται κενό όνομα.",
"Settings" : "Ρυθμίσεις",
"Visibility of Smart Collections" : "Ορατότητα Έξυπνων Συλλογών",
"Hidden" : "Κρυφό",
"Visible" : "Ορατό",
"Automatic" : "Αυτόματο",
"Delete all completed tasks." : "Διαγραφή όλων των ολοκληρωμένων εργασιών.",
"Delete completed tasks." : "Διαγραφή ολοκληρωμένων εργασιών.",
"Deleted all completed tasks from calendar \"{calendar}\"." : "Διαγραφή όλων των ολοκληρωμένων εργασιών από το ημερολόγιο \"{calendar}\".",
"No errors" : "Κανένα σφάλμα",
"Open your browser console for more details" : "Ανοίξτε την κονσόλα του περιηγητή για περισσότερες λεπτομέρειες",
"_This will delete {taskCount} completed task and its subtasks from calendar \"{calendar}\"._::_This will delete {taskCount} completed tasks and their subtasks from calendar \"{calendar}\"._" : ["Θα διαγραφή η ολοκληρωμένη εργασία του {taskCount} και των υπο εργασιών από το ημερολόγιο \"{calendar}\".","Θα διαγραφούν ολοκληρωμένες εργασίες του {taskCount} και των υπο εργασιών από το ημερολόγιο \"{calendar}\"."],
"_Could not delete {failedCount} task._::_Could not delete {failedCount} tasks._" : ["Αδυναμία διαγραφής εργασίας {failedCount}.","Αδυναμία διαγραφής εργασιών {failedCount}."],
"Load all completed tasks." : "Φόρτωση όλων των ολοκληρωμένων εργασιών.",
"Change sort order" : "Αλλαγή σειράς ταξινόμησης",
"Relevance" : "Συνάφεια",
"Sort by completed state, due date, priority, start date and summary." : "Ταξινόμηση κατά ολοκληρωμένη κατάσταση, ημερομηνία λήξης, προτεραιότητα, ημερομηνία έναρξης και σύνοψη.",
"Start date" : "Ημερομηνία έναρξης",
"Sort by start date and summary." : "Ταξινόμηση ανά ημερομηνία έναρξης και σύνοψη.",
"Due date" : "Ημερομηνία λήξης",
"Sort by due date and summary." : "Ταξινόμηση ανά ημερομηνία λήξης και σύνοψης.",
"Created date" : "Ημερομηνία δημιουργίας",
"Sort by created date and summary." : "Ταξινόμηση κατά ημερομηνία και σύνοψη. ",
"Last modified" : "Τελευταία τροποίηση",
"Sort by last-modified date and summary." : "Ταξινόμηση κατά ημερομηνία και σύνοψη τελευταίας τροποποίησης.",
"Completed date" : "Ημερομηνία ολοκλήρωσης",
"Sort by completed date." : "Ταξινόμηση κατά ημερομηνία ολοκλήρωσης",
"Priority" : "Προτεραιότητα",
"Sort by priority and summary." : "Ταξινόμηση κατά προτεραιότητα και σύνοψη.",
"Manually" : "Χειροκίνητα",
"Sort by manual order." : "Ταξινόμηση με χειροκίνητη σειρά.",
"Alphabetically" : "Αλφαβητικά",
"Sort by summary and priority." : "Ταξινόμηση κατά σύνοψη και προτεραιότητα.",
"Task is completed" : "Η εργασία ολοκληρώθηκε",
"{complete} % completed" : "{complete} % ολοκληρωμένες",
"Add subtask" : "Προσθήκη υποεργασίας",
"Show subtasks" : "Εμφάνιση υποεργασιών",
"Hide subtasks" : "Απόκρυψη υποεργασιών",
"Show completed subtasks" : "Εμφάνιση ολοκληρωμένων υποεργασιών",
"Hide completed subtasks" : "Απόκρυψη ολοκληρωμένων υποεργασιών",
"Delete task" : "Διαγραφή εργασίας",
"[Yesterday]" : "[Χθες]",
"[Today]" : "[Σήμερα]",
"[Tomorrow]" : "[Αύριο]",
"Add a subtask to \"{task}\"…" : "Προσθήκη υποέργου σε \"{task}\"…",
"An error occurred, unable to delete the task." : "Παρουσιάστηκε σφάλμα, αδύνατη η διαγραφή εργασίας.",
"_Deleting the task in {countdown} second_::_Deleting the task in {countdown} seconds_" : ["Διαγραφή εργασίας σε {countdown} δεύτερα","Διαγραφή εργασίας σε {countdown} δεύτερα"],
"Add a task to \"{task}\"…" : "Προσθήκη έργου σε \"{task}\"…",
"_%n Completed Task_::_%n Completed Tasks_" : ["%n Ολοκληρωμένη Εργασία","%n Ολοκληρωμένες Εργασίες"],
"Add an important task to \"{calendar}\"…" : "Προσθήκη σημαστικής εργασίας στο \"{calendar}\"…",
"Add a task due today to \"{calendar}\"…" : "Προσθέστε εργασία για σήμερα στο \"{calendar}\"…",
"Add a current task to \"{calendar}\"…" : "Προσθήκη τρέχοντος εργασίας στο \"{calendar}\"…",
"Add a task to \"{calendar}\"…" : "Προσθήκη έργου στο \"{calendar}\"…",
"Tomorrow" : "Αύριο",
"Set start date" : "Ορισμός ημερομηνίας έναρξης",
"Set start time" : "Ορισμός ώρας έναρξης",
"Set due date" : "Ορισμός ημερομηνίας λήξης",
"Set due time" : "Ορισμός ώρας λήξης",
"All day" : "Ολοήμερο",
"Select a calendar" : "Επιλογή ημερολογίου",
"Select a classification" : "Επιλέξτε μια ταξινόμηση",
"Select a status" : "Επιλέξτε κατάσταση",
"Select categories" : "Επιλογή κατηγοριών",
"Add this as a new category" : "Προσθήκη αυτού σε νέα κατηγορία",
"Loading task from server." : "Ανάγνωση εεγασιών από διακομιστή.",
"Task not found!" : "Δεν βρέθηκε εργασία!",
"When shared show full event" : "Προβολή πλήρους συμβάντος, όταν κοινοποιείται",
"When shared show only busy" : "Προβολή μόνο απασχολημένων, όταν κοινοποιείται",
"When shared hide this event" : "Απόκρυψη αυτού του συμβάντος, όταν κοινοποιείται",
"Needs action" : "Χρειάζεται ενέργεια",
"In process" : "Σε εξέλιξη",
"Canceled" : "Ακυρώθηκε",
"[Starts today]" : "[Αρχίζει σήμερα]",
"[Starts tomorrow]" : "[Αρχίζει άυριο]",
"[Starts on] LL" : "[Ξεκινά σε] LL",
"[Started yesterday]" : "[Ξεκίνησε εχθές]",
"[Started on] LL" : "[Ξεκίνησε] LL",
"[Started today at] LT" : "[Ξεκίνησε σήμερα στις] LT",
"[Starts today at] LT" : "[Ξεκινά σήμερα στις] LT",
"[Starts tomorrow at] LT" : "[Ξεκινά αύριο στις] LT",
"[Starts on] LL [at] LT" : "[Ξεκινά σε] LL [στις] LT",
"[Started yesterday at] LT" : "[Ξεκίνησε εχθές στις] LT",
"[Started on] LL [at] LT" : "[Ξεκίνησε] LL [στις] LT",
"[Due today]" : "[Λήγει σήμερα]",
"[Due tomorrow]" : "[Λήγει αύριο]",
"[Due on] LL" : "[Έως στις] LL",
"[Was due yesterday]" : "[Έως εχθές]",
"[Was due on] LL" : "[Ήταν αναμενόμενο στις] LL",
"[Was due today at] LT" : "[Θα έπρεπε να γίνει σήμερα] LT",
"[Due today at] LT" : "[Λήξη σήμερα στις] LT",
"[Due tomorrow at] LT" : "[Λήγει αύριο στις] LT",
"[Due on] LL [at] LT" : "[Λήγει σε] LL [στις] LT",
"[Was due yesterday at] LT" : "[Ήταν χθες στο] LT",
"[Was due on] LL [at] LT" : "[Έληγε την] LL [στις] LT",
"Last modified {date}" : "Τελευταία τροποίηση {date}",
"Created {date}" : "Δημιουργήθηκε {date}",
"Completed {date}" : "Ολοκληρώθηκε {date}",
"No priority assigned" : "Δεν έχει εκχωρηθεί προτεραιότητα",
"Priority {priority}: high" : "Προτεραιότητα {priority}: υψηλή",
"Priority {priority}: medium" : "Προτεραιότητα {priority}: μεσαία",
"Priority {priority}: low" : "Προτεραιότητα {priority}: χαμηλή",
"{percent} % completed" : "{complete} % ολοκληρωμένες",
"Successfully created the task." : "Επιτυχής δημιουργία εργασίας.",
"Could not delete the task." : "Αδυναμία διαγραφής εργασίας.",
"Synchronizing to the server." : "Συγχρονισμός με τον διακομιστή.",
"Task successfully saved to server." : "Η εργασία αποθηκεύτηκε επιτυχώς στον διακομιστή.",
"Could not update the task because it was changed on the server. Please click to refresh it, local changes will be discarded." : "Δεν ήταν δυνατή η ενημέρωση της εργασίας επειδή άλλαξε στον διακομιστή. Κλικ για ανανέωση, οι τοπικές αλλαγές θα διαγραφούν.",
"Could not update the task." : "Αδυναμία ενημέρωσης της εργασίας.",
"Successfully updated the task." : "Επιτυχής ενημέρωση εργασίας.",
"Task successfully moved to new calendar." : "Η Εργασία μεταφέρθηκε επιτυχώς στο νέο ημερολόγιο.",
"An error occurred" : "Παρουσιάστηκε σφάλμα"
"Automatic" : "Αυτόματο"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View file

@ -1,32 +1,21 @@
OC.L10N.register(
"tasks",
{
"Tasks" : "Tasks",
"Important" : "Important",
"Today" : "Today",
"Week" : "Week",
"All" : "All",
"Current" : "Current",
"Completed" : "Completed",
"Tasks" : "Tasks",
"The Tasks app for Nextcloud" : "The Tasks app for Nextcloud",
"Share with users or groups" : "Share with users or groups",
"can edit" : "can edit",
"New List" : "New List",
"Cancel" : "Cancel",
"Save" : "Save",
"An empty name is not allowed." : "An empty name is not allowed.",
"Edit" : "Edit",
"Download" : "Download",
"Once enabled, a new Tasks menu will appear in your Nextcloud apps menu. From there you can add and delete tasks, edit their title, description, start and due dates, reminder times, mark them as important, and add comments on them. Tasks can be shared between users. Tasks can be synchronized using CalDav (each task list is linked to an Nextcloud calendar, to sync it to your local client - Thunderbird, Evolution, KDE Kontact, iCal... - just add the calendar as a remote calendar in you client). You can download your tasks as ICS files using the download button for each calendar." : "Once enabled, a new Tasks menu will appear in your Nextcloud apps menu. From there you can add and delete tasks, edit their title, description, start and due dates, reminder times, mark them as important, and add comments on them. Tasks can be shared between users. Tasks can be synchronized using CalDav (each task list is linked to an Nextcloud calendar, to sync it to your local client - Thunderbird, Evolution, KDE Kontact, iCal... - just add the calendar as a remote calendar in you client). You can download your tasks as ICS files using the download button for each calendar.",
"Delete" : "Delete",
"Unshare" : "Unshare",
"Visibility of Smart Collections" : "Visibility of Smart Collections",
"Hidden" : "Hidden",
"Visible" : "Visible",
"Automatic" : "Automatic",
"Cancel" : "Cancel",
"Change sort order" : "Change sort order",
"Start date" : "Start date",
"Default" : "Default",
"Due date" : "Due date",
"Last modified" : "Last modified",
"Start date" : "Start date",
"Priority" : "Priority",
"Manually" : "Manually",
"Alphabetically" : "Alphabetically",
@ -37,8 +26,18 @@ OC.L10N.register(
"Set due date" : "Set due date",
"All day" : "All day",
"Task not found!" : "Task not found!",
"When shared show full event" : "When shared show full event",
"When shared show only busy" : "When shared show only busy",
"When shared hide this event" : "When shared hide this event"
"%s %% completed" : "%s %% completed",
"Edit" : "Edit",
"Download" : "Download",
"Save" : "Save",
"New List" : "New List",
"The name \"%s\" is already used." : "The name \"%s\" is already used.",
"An empty name is not allowed." : "An empty name is not allowed.",
"This will delete the calendar \"%s\" and all corresponding events and tasks." : "This will delete the calendar \"%s\" and all corresponding events and tasks.",
"Settings" : "Settings",
"Visibility of Smart Collections" : "Visibility of Smart Collections",
"Hidden" : "Hidden",
"Visible" : "Visible",
"Automatic" : "Automatic"
},
"nplurals=2; plural=(n != 1);");

View file

@ -1,30 +1,19 @@
{ "translations": {
"Tasks" : "Tasks",
"Important" : "Important",
"Today" : "Today",
"Week" : "Week",
"All" : "All",
"Current" : "Current",
"Completed" : "Completed",
"Tasks" : "Tasks",
"The Tasks app for Nextcloud" : "The Tasks app for Nextcloud",
"Share with users or groups" : "Share with users or groups",
"can edit" : "can edit",
"New List" : "New List",
"Cancel" : "Cancel",
"Save" : "Save",
"An empty name is not allowed." : "An empty name is not allowed.",
"Edit" : "Edit",
"Download" : "Download",
"Once enabled, a new Tasks menu will appear in your Nextcloud apps menu. From there you can add and delete tasks, edit their title, description, start and due dates, reminder times, mark them as important, and add comments on them. Tasks can be shared between users. Tasks can be synchronized using CalDav (each task list is linked to an Nextcloud calendar, to sync it to your local client - Thunderbird, Evolution, KDE Kontact, iCal... - just add the calendar as a remote calendar in you client). You can download your tasks as ICS files using the download button for each calendar." : "Once enabled, a new Tasks menu will appear in your Nextcloud apps menu. From there you can add and delete tasks, edit their title, description, start and due dates, reminder times, mark them as important, and add comments on them. Tasks can be shared between users. Tasks can be synchronized using CalDav (each task list is linked to an Nextcloud calendar, to sync it to your local client - Thunderbird, Evolution, KDE Kontact, iCal... - just add the calendar as a remote calendar in you client). You can download your tasks as ICS files using the download button for each calendar.",
"Delete" : "Delete",
"Unshare" : "Unshare",
"Visibility of Smart Collections" : "Visibility of Smart Collections",
"Hidden" : "Hidden",
"Visible" : "Visible",
"Automatic" : "Automatic",
"Cancel" : "Cancel",
"Change sort order" : "Change sort order",
"Start date" : "Start date",
"Default" : "Default",
"Due date" : "Due date",
"Last modified" : "Last modified",
"Start date" : "Start date",
"Priority" : "Priority",
"Manually" : "Manually",
"Alphabetically" : "Alphabetically",
@ -35,8 +24,18 @@
"Set due date" : "Set due date",
"All day" : "All day",
"Task not found!" : "Task not found!",
"When shared show full event" : "When shared show full event",
"When shared show only busy" : "When shared show only busy",
"When shared hide this event" : "When shared hide this event"
"%s %% completed" : "%s %% completed",
"Edit" : "Edit",
"Download" : "Download",
"Save" : "Save",
"New List" : "New List",
"The name \"%s\" is already used." : "The name \"%s\" is already used.",
"An empty name is not allowed." : "An empty name is not allowed.",
"This will delete the calendar \"%s\" and all corresponding events and tasks." : "This will delete the calendar \"%s\" and all corresponding events and tasks.",
"Settings" : "Settings",
"Visibility of Smart Collections" : "Visibility of Smart Collections",
"Hidden" : "Hidden",
"Visible" : "Visible",
"Automatic" : "Automatic"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View file

@ -1,56 +1,31 @@
OC.L10N.register(
"tasks",
{
"Tasks" : "Taskoj",
"Important" : "Grava",
"Today" : "Hodiaŭ",
"Week" : "Semajno",
"All" : "Ĉio",
"Current" : "Nuna",
"Completed" : "Plenumita",
"Tasks" : "Taskoj",
"The Tasks app for Nextcloud" : "Aplikaĵo „Taskoj“ por Nextcloud",
"Once enabled, a new Tasks menu will appear in your Nextcloud apps menu. From there you can add and delete tasks, edit their title, description, start and due dates, reminder times, mark them as important, and add comments on them. Tasks can be shared between users. Tasks can be synchronized using CalDav (each task list is linked to an Nextcloud calendar, to sync it to your local client - Thunderbird, Evolution, KDE Kontact, iCal... - just add the calendar as a remote calendar in you client). You can download your tasks as ICS files using the download button for each calendar." : "Nova menuo „Taskoj“ aperos en via aplikaĵa Nextcloud-menuo. Vi povas aldoni kaj forigi taskojn, modifi ilian titolon, priskribon, komenc- kaj limdaton, memoriga horon, marki ilin kiel gravajn, kaj aldoni komentojn al ili. Taskoj estas kunhavigeblaj inter uzantoj. Oni povas sinkronigi ilin pere de CalDAV (ĉiu tasklisto ligiĝas al Nextcloud-kalendaro por sinkronigi ĝin al via loka kliento: Thunderbird, Evolution, Kontact, iCal... aldonu la kalendaron kiel foran kalendaron en via kliento). Vi povas elŝuti la taskojn kiel ICS-dosierojn per la elŝuta butono.",
"Share with users or groups" : "Kunhavigi kun uzantoj aŭ grupoj",
"No users or groups" : "Neniu uzanto aŭ grupo",
"can edit" : "povas redakti",
"Unable to delete the share." : "Ne eblas forigi la kunhavon.",
"Unable to change permissions." : "Ne eblas ŝanĝi permesojn.",
"Add List…" : "Aldoni liston...",
"New List" : "Nova listo",
"Cancel" : "Nuligi",
"Save" : "Konservi",
"The name \"{calendar}\" is already used." : "La nomo „{calendar}“ jam uziĝas.",
"An empty name is not allowed." : "Malplena nomo ne permesatas.",
"Edit" : "Redakti",
"Copy private link" : "Kopii privatan ligilon",
"Copied" : "Kopiita",
"Can not copy" : "Ne eblas kopii",
"Download" : "Elŝuti",
"Delete" : "Forigi",
"Unshare" : "Malkunhavigi",
"This will delete the calendar \"{calendar}\" and all corresponding events and tasks." : "Tio forigos la kalendaron „{calendar}“ kaj ĉiujn ties eventojn kaj taskojn.",
"Calendar link copied to clipboard." : "Kalendara ligilo kopiita al tondujo",
"Calendar link could not be copied to clipboard." : "Kalendara ligilo ne eblis esti kopiita al tondujo",
"_Shared with {num} entity_::_Shared with {num} entities_" : ["Kunhavigitaj kun {num} ento","Kunhavigitaj kun {num} entoj"],
"Default list" : "Defaŭlta listo",
"Visibility of Smart Collections" : "Videbleco de aŭtomataj kolektoj",
"Hidden" : "Nevidebla",
"Visible" : "Videbla",
"Automatic" : "Aŭtomata",
"Delete all completed tasks." : "Forigi ĉiujn plenumitajn taskojn.",
"Delete completed tasks." : "Forigi plenumitajn taskojn.",
"Deleted all completed tasks from calendar \"{calendar}\"." : "Forigi ĉiujn plenumitajn taskojn el kalendaro „{calendar}“.",
"No errors" : "Neniu eraro",
"Open your browser console for more details" : "Malfermu vian retumilan konzolon por pli da detaloj",
"_This will delete {taskCount} completed task and its subtasks from calendar \"{calendar}\"._::_This will delete {taskCount} completed tasks and their subtasks from calendar \"{calendar}\"._" : ["Tio forigos {taskCount} plenumitan taskon kaj ties subtaskojn el la kalendaro „{calendar}“.","Tio forigos {taskCount} plenumitajn taskojn kaj ties subtaskojn el la kalendaro „{calendar}“."],
"_Could not delete {failedCount} task._::_Could not delete {failedCount} tasks._" : ["Ne eblis forigi {failedCount} taskon.","Ne eblis forigi {failedCount} taskojn."],
"Cancel" : "Nuligi",
"Load all completed tasks." : "Ŝargi ĉiujn plenumitajn taskojn.",
"Change sort order" : "Ŝanĝi ordigon",
"Default" : "Defaŭlta",
"Sort by completed state, due date, priority, start date and summary." : "Ordigi laŭ plenumstato, limdato, prioritato, komencdato kaj resumo.",
"Start date" : "Komencdato",
"Sort by start date and summary." : "Ordigi laŭ komencdato kaj resumo.",
"Due date" : "Limdato",
"Sort by due date and summary." : "Ordigi laŭ limdato kaj resumo.",
"Created date" : "Krea dato",
"Start date" : "Komencdato",
"Sort by start date and summary." : "Ordigi laŭ komencdato kaj resumo.",
"Created date" : "Krea dato.",
"Sort by created date and summary." : "Ordigi laŭ krea dato kaj resumo.",
"Last modified" : "Laste modifita",
"Sort by last-modified date and summary." : "Ordigi laŭ dato de lasta modifo kaj resumo.",
@ -62,18 +37,14 @@ OC.L10N.register(
"Sort by manual order." : "Ordigi permane",
"Alphabetically" : "Alfabete",
"Sort by summary and priority." : "Ordigi laŭ resumo kaj prioritato.",
"Task is completed" : "Tasko plenumita.",
"{complete} % completed" : "{complete} % plenumita",
"Task is completed" : "Tasko plenumita.",
"Toggle visibility of all subtasks." : "Baskuligi videblecon de ĉiuj subtaskoj.",
"Toggle visibility of completed subtasks." : "Baskuligi videblecon de plenumitaj subtaskoj.",
"[Yesterday]" : "[Hieraŭ]",
"[Today]" : "[Hodiaŭ]",
"[Tomorrow]" : "[Morgaŭ]",
"Add a subtask to \"{task}\"…" : "Aldoni subtaskon al „{task}\"“...",
"Add a task to \"{task}\"…" : "Aldoni taskon al „{task}\"“...",
"_%n Completed Task_::_%n Completed Tasks_" : ["%n plenumita tasko","%n plenumitaj taskoj"],
"Add an important task to \"{calendar}\"…" : "Aldoni gravan taskon al „{calendar}“...",
"Add a task due today to \"{calendar}\"…" : "Aldoni taskon kun hodiaŭa limdato al „{calendar}“...",
"Add a current task to \"{calendar}\"…" : "Aldoni nunan taskon al „{calendar}“...",
"Add a task to \"{calendar}\"…" : "Aldoni taskon al „{calendar}“...",
"Tomorrow" : "Morgaŭ",
"Set start date" : "Agordi komencdaton",
"Set start time" : "Agordi komenchoron",
@ -82,17 +53,9 @@ OC.L10N.register(
"All day" : "Tuttage",
"Select a calendar" : "Elekti kalendaron",
"Select a classification" : "Elektu klasifikon",
"Select a status" : "Elekti staton",
"Select categories" : "Elekti kategoriojn",
"Add this as a new category" : "Aldoni tion kiel novan kategorion",
"Loading task from server." : "Ricevo de la takso el la servilo.",
"Task not found!" : "Tasko ne trovita!",
"When shared show full event" : "Kiam kunhavigita, montri plenajn detalojn",
"When shared show only busy" : "Kiam kunhavigita, montri nur kiel okupita",
"When shared hide this event" : "Kiam kunhavigita, kaŝi tiun okazaĵon",
"Needs action" : "Bezono de ago",
"In process" : "Plenumado",
"Canceled" : "Nuligita",
"[Starts today]" : "[Komenciĝas hodiaŭ]",
"[Starts tomorrow]" : "[Komenciĝos morgaŭ]",
"[Starts on] LL" : "[Komenciĝas] LL",
@ -115,19 +78,42 @@ OC.L10N.register(
"[Due on] LL [at] LT" : "[Limdato] LL [je] LT",
"[Was due yesterday at] LT" : "[Limdato hieraŭa je] LT",
"[Was due on] LL [at] LT" : "[Limdato] LL [je] LT",
"Last modified {date}" : "Laste modifita {date}",
"Created {date}" : "Kreita {date}",
"Completed {date}" : "Plenumita {date}",
"No priority assigned" : "Neniu prioritato",
"Priority {priority}: high" : "Prioritato {priority}: alta",
"Priority {priority}: medium" : "Prioritato {priority}: meza",
"Priority {priority}: low" : "Prioritato {priority}: malalta",
"{percent} % completed" : "{percent} % plenumitaj",
"Priority %s: high" : "Prioritato %s: alta",
"Priority %s: medium" : "Prioritato %s: meza",
"Priority %s: low" : "Prioritato %s: malalta",
"%s %% completed" : "%s %% finita",
"When shared show full event" : "Kiam kunhavigita, montri plenajn detalojn",
"When shared show only busy" : "Kiam kunhavigita, montri nur kiel okupita",
"When shared hide this event" : "Kiam kunhavigita, kaŝi tiun okazaĵon",
"Last modified %s" : "Laste modifita %s",
"Created %s" : "Kreita %s",
"Completed %s" : "%s plenumitaj",
"Edit" : "Redakti",
"Copy private link" : "Kopii privatan ligilon",
"Copied" : "Kopiita",
"Can not copy" : "Ne eblas kopii",
"Download" : "Elŝuti",
"Save" : "Konservi",
"Add List…" : "Aldoni liston...",
"New List" : "Nova listo",
"Calendar link copied to clipboard." : "Kalendara ligilo kopiita al tondujo",
"Calendar link could not be copied to clipboard." : "Kalendara ligilo ne eblis esti kopiita al tondujo",
"The name \"%s\" is already used." : "La nomo „%s“ jam uziĝas.",
"An empty name is not allowed." : "Malplena nomo ne permesatas.",
"This will delete the calendar \"%s\" and all corresponding events and tasks." : "Tio forigos la kalendaron „%s“ kaj ĉiujn ties eventojn kaj taskojn.",
"Settings" : "Agordo",
"Default list" : "Defaŭlta listo",
"Visibility of Smart Collections" : "Videbleco de aŭtomataj kolektoj",
"Hidden" : "Nevidebla",
"Visible" : "Videbla",
"Automatic" : "Aŭtomata",
"Could not delete the task." : "Ne eblis forigi la taskon.",
"Synchronizing to the server." : "Sinkronigo al servilo.",
"Task successfully saved to server." : "Tasko sukcese konservita en la servilo.",
"Could not update the task because it was changed on the server. Please click to refresh it, local changes will be discarded." : "Ne eblis ĝisdatigi la taskon, ĉar ĝi ŝanĝiĝis en la servilo. Bv. alklaki por aktualigi ĝin; lokaj ŝanĝoj perdiĝos.",
"Could not update the task." : "Ne eblis ĝisdatigi la taskon.",
"Could not update the task because it was changed on the server. Please click to refresh it, local changes will be discared." : "Ne eblis ĝisdatigi la taskon, ĉar ĝi ŝanĝiĝis en la servilo. Bv. alklaki por aktualigi ĝin; lokaj ŝanĝoj perdiĝos.",
"An error occurred" : "Eraro okazis"
},
"nplurals=2; plural=(n != 1);");

View file

@ -1,54 +1,29 @@
{ "translations": {
"Tasks" : "Taskoj",
"Important" : "Grava",
"Today" : "Hodiaŭ",
"Week" : "Semajno",
"All" : "Ĉio",
"Current" : "Nuna",
"Completed" : "Plenumita",
"Tasks" : "Taskoj",
"The Tasks app for Nextcloud" : "Aplikaĵo „Taskoj“ por Nextcloud",
"Once enabled, a new Tasks menu will appear in your Nextcloud apps menu. From there you can add and delete tasks, edit their title, description, start and due dates, reminder times, mark them as important, and add comments on them. Tasks can be shared between users. Tasks can be synchronized using CalDav (each task list is linked to an Nextcloud calendar, to sync it to your local client - Thunderbird, Evolution, KDE Kontact, iCal... - just add the calendar as a remote calendar in you client). You can download your tasks as ICS files using the download button for each calendar." : "Nova menuo „Taskoj“ aperos en via aplikaĵa Nextcloud-menuo. Vi povas aldoni kaj forigi taskojn, modifi ilian titolon, priskribon, komenc- kaj limdaton, memoriga horon, marki ilin kiel gravajn, kaj aldoni komentojn al ili. Taskoj estas kunhavigeblaj inter uzantoj. Oni povas sinkronigi ilin pere de CalDAV (ĉiu tasklisto ligiĝas al Nextcloud-kalendaro por sinkronigi ĝin al via loka kliento: Thunderbird, Evolution, Kontact, iCal... aldonu la kalendaron kiel foran kalendaron en via kliento). Vi povas elŝuti la taskojn kiel ICS-dosierojn per la elŝuta butono.",
"Share with users or groups" : "Kunhavigi kun uzantoj aŭ grupoj",
"No users or groups" : "Neniu uzanto aŭ grupo",
"can edit" : "povas redakti",
"Unable to delete the share." : "Ne eblas forigi la kunhavon.",
"Unable to change permissions." : "Ne eblas ŝanĝi permesojn.",
"Add List…" : "Aldoni liston...",
"New List" : "Nova listo",
"Cancel" : "Nuligi",
"Save" : "Konservi",
"The name \"{calendar}\" is already used." : "La nomo „{calendar}“ jam uziĝas.",
"An empty name is not allowed." : "Malplena nomo ne permesatas.",
"Edit" : "Redakti",
"Copy private link" : "Kopii privatan ligilon",
"Copied" : "Kopiita",
"Can not copy" : "Ne eblas kopii",
"Download" : "Elŝuti",
"Delete" : "Forigi",
"Unshare" : "Malkunhavigi",
"This will delete the calendar \"{calendar}\" and all corresponding events and tasks." : "Tio forigos la kalendaron „{calendar}“ kaj ĉiujn ties eventojn kaj taskojn.",
"Calendar link copied to clipboard." : "Kalendara ligilo kopiita al tondujo",
"Calendar link could not be copied to clipboard." : "Kalendara ligilo ne eblis esti kopiita al tondujo",
"_Shared with {num} entity_::_Shared with {num} entities_" : ["Kunhavigitaj kun {num} ento","Kunhavigitaj kun {num} entoj"],
"Default list" : "Defaŭlta listo",
"Visibility of Smart Collections" : "Videbleco de aŭtomataj kolektoj",
"Hidden" : "Nevidebla",
"Visible" : "Videbla",
"Automatic" : "Aŭtomata",
"Delete all completed tasks." : "Forigi ĉiujn plenumitajn taskojn.",
"Delete completed tasks." : "Forigi plenumitajn taskojn.",
"Deleted all completed tasks from calendar \"{calendar}\"." : "Forigi ĉiujn plenumitajn taskojn el kalendaro „{calendar}“.",
"No errors" : "Neniu eraro",
"Open your browser console for more details" : "Malfermu vian retumilan konzolon por pli da detaloj",
"_This will delete {taskCount} completed task and its subtasks from calendar \"{calendar}\"._::_This will delete {taskCount} completed tasks and their subtasks from calendar \"{calendar}\"._" : ["Tio forigos {taskCount} plenumitan taskon kaj ties subtaskojn el la kalendaro „{calendar}“.","Tio forigos {taskCount} plenumitajn taskojn kaj ties subtaskojn el la kalendaro „{calendar}“."],
"_Could not delete {failedCount} task._::_Could not delete {failedCount} tasks._" : ["Ne eblis forigi {failedCount} taskon.","Ne eblis forigi {failedCount} taskojn."],
"Cancel" : "Nuligi",
"Load all completed tasks." : "Ŝargi ĉiujn plenumitajn taskojn.",
"Change sort order" : "Ŝanĝi ordigon",
"Default" : "Defaŭlta",
"Sort by completed state, due date, priority, start date and summary." : "Ordigi laŭ plenumstato, limdato, prioritato, komencdato kaj resumo.",
"Start date" : "Komencdato",
"Sort by start date and summary." : "Ordigi laŭ komencdato kaj resumo.",
"Due date" : "Limdato",
"Sort by due date and summary." : "Ordigi laŭ limdato kaj resumo.",
"Created date" : "Krea dato",
"Start date" : "Komencdato",
"Sort by start date and summary." : "Ordigi laŭ komencdato kaj resumo.",
"Created date" : "Krea dato.",
"Sort by created date and summary." : "Ordigi laŭ krea dato kaj resumo.",
"Last modified" : "Laste modifita",
"Sort by last-modified date and summary." : "Ordigi laŭ dato de lasta modifo kaj resumo.",
@ -60,18 +35,14 @@
"Sort by manual order." : "Ordigi permane",
"Alphabetically" : "Alfabete",
"Sort by summary and priority." : "Ordigi laŭ resumo kaj prioritato.",
"Task is completed" : "Tasko plenumita.",
"{complete} % completed" : "{complete} % plenumita",
"Task is completed" : "Tasko plenumita.",
"Toggle visibility of all subtasks." : "Baskuligi videblecon de ĉiuj subtaskoj.",
"Toggle visibility of completed subtasks." : "Baskuligi videblecon de plenumitaj subtaskoj.",
"[Yesterday]" : "[Hieraŭ]",
"[Today]" : "[Hodiaŭ]",
"[Tomorrow]" : "[Morgaŭ]",
"Add a subtask to \"{task}\"…" : "Aldoni subtaskon al „{task}\"“...",
"Add a task to \"{task}\"…" : "Aldoni taskon al „{task}\"“...",
"_%n Completed Task_::_%n Completed Tasks_" : ["%n plenumita tasko","%n plenumitaj taskoj"],
"Add an important task to \"{calendar}\"…" : "Aldoni gravan taskon al „{calendar}“...",
"Add a task due today to \"{calendar}\"…" : "Aldoni taskon kun hodiaŭa limdato al „{calendar}“...",
"Add a current task to \"{calendar}\"…" : "Aldoni nunan taskon al „{calendar}“...",
"Add a task to \"{calendar}\"…" : "Aldoni taskon al „{calendar}“...",
"Tomorrow" : "Morgaŭ",
"Set start date" : "Agordi komencdaton",
"Set start time" : "Agordi komenchoron",
@ -80,17 +51,9 @@
"All day" : "Tuttage",
"Select a calendar" : "Elekti kalendaron",
"Select a classification" : "Elektu klasifikon",
"Select a status" : "Elekti staton",
"Select categories" : "Elekti kategoriojn",
"Add this as a new category" : "Aldoni tion kiel novan kategorion",
"Loading task from server." : "Ricevo de la takso el la servilo.",
"Task not found!" : "Tasko ne trovita!",
"When shared show full event" : "Kiam kunhavigita, montri plenajn detalojn",
"When shared show only busy" : "Kiam kunhavigita, montri nur kiel okupita",
"When shared hide this event" : "Kiam kunhavigita, kaŝi tiun okazaĵon",
"Needs action" : "Bezono de ago",
"In process" : "Plenumado",
"Canceled" : "Nuligita",
"[Starts today]" : "[Komenciĝas hodiaŭ]",
"[Starts tomorrow]" : "[Komenciĝos morgaŭ]",
"[Starts on] LL" : "[Komenciĝas] LL",
@ -113,19 +76,42 @@
"[Due on] LL [at] LT" : "[Limdato] LL [je] LT",
"[Was due yesterday at] LT" : "[Limdato hieraŭa je] LT",
"[Was due on] LL [at] LT" : "[Limdato] LL [je] LT",
"Last modified {date}" : "Laste modifita {date}",
"Created {date}" : "Kreita {date}",
"Completed {date}" : "Plenumita {date}",
"No priority assigned" : "Neniu prioritato",
"Priority {priority}: high" : "Prioritato {priority}: alta",
"Priority {priority}: medium" : "Prioritato {priority}: meza",
"Priority {priority}: low" : "Prioritato {priority}: malalta",
"{percent} % completed" : "{percent} % plenumitaj",
"Priority %s: high" : "Prioritato %s: alta",
"Priority %s: medium" : "Prioritato %s: meza",
"Priority %s: low" : "Prioritato %s: malalta",
"%s %% completed" : "%s %% finita",
"When shared show full event" : "Kiam kunhavigita, montri plenajn detalojn",
"When shared show only busy" : "Kiam kunhavigita, montri nur kiel okupita",
"When shared hide this event" : "Kiam kunhavigita, kaŝi tiun okazaĵon",
"Last modified %s" : "Laste modifita %s",
"Created %s" : "Kreita %s",
"Completed %s" : "%s plenumitaj",
"Edit" : "Redakti",
"Copy private link" : "Kopii privatan ligilon",
"Copied" : "Kopiita",
"Can not copy" : "Ne eblas kopii",
"Download" : "Elŝuti",
"Save" : "Konservi",
"Add List…" : "Aldoni liston...",
"New List" : "Nova listo",
"Calendar link copied to clipboard." : "Kalendara ligilo kopiita al tondujo",
"Calendar link could not be copied to clipboard." : "Kalendara ligilo ne eblis esti kopiita al tondujo",
"The name \"%s\" is already used." : "La nomo „%s“ jam uziĝas.",
"An empty name is not allowed." : "Malplena nomo ne permesatas.",
"This will delete the calendar \"%s\" and all corresponding events and tasks." : "Tio forigos la kalendaron „%s“ kaj ĉiujn ties eventojn kaj taskojn.",
"Settings" : "Agordo",
"Default list" : "Defaŭlta listo",
"Visibility of Smart Collections" : "Videbleco de aŭtomataj kolektoj",
"Hidden" : "Nevidebla",
"Visible" : "Videbla",
"Automatic" : "Aŭtomata",
"Could not delete the task." : "Ne eblis forigi la taskon.",
"Synchronizing to the server." : "Sinkronigo al servilo.",
"Task successfully saved to server." : "Tasko sukcese konservita en la servilo.",
"Could not update the task because it was changed on the server. Please click to refresh it, local changes will be discarded." : "Ne eblis ĝisdatigi la taskon, ĉar ĝi ŝanĝiĝis en la servilo. Bv. alklaki por aktualigi ĝin; lokaj ŝanĝoj perdiĝos.",
"Could not update the task." : "Ne eblis ĝisdatigi la taskon.",
"Could not update the task because it was changed on the server. Please click to refresh it, local changes will be discared." : "Ne eblis ĝisdatigi la taskon, ĉar ĝi ŝanĝiĝis en la servilo. Bv. alklaki por aktualigi ĝin; lokaj ŝanĝoj perdiĝos.",
"An error occurred" : "Eraro okazis"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}

View file

@ -1,62 +1,37 @@
OC.L10N.register(
"tasks",
{
"Tasks" : "Tareas",
"Important" : "Importante",
"Today" : "Hoy",
"Week" : "Semana",
"All" : "Todos",
"Current" : "Actual",
"Completed" : "Completada",
"Tasks" : "Tareas",
"The Tasks app for Nextcloud" : "La app de tareas para Nextcloud",
"Once enabled, a new Tasks menu will appear in your Nextcloud apps menu. From there you can add and delete tasks, edit their title, description, start and due dates and mark them as important. Tasks can be shared between users. Tasks can be synchronized using CalDav (each task list is linked to an Nextcloud calendar, to sync it to your local client - Thunderbird, Evolution, KDE Kontact, iCal, … - just add the calendar as a remote calendar in your client). You can download your tasks as ICS files using the download button for each calendar." : "Una vez activada, aparecerá una opción de Tareas en el menú de apps de Nextcloud. Desde ahí se pueden añadir y eliminar tareas, editar su título, descripción, fecha de inicio y finalización o marcarlas como importantes. Las tareas se pueden compartir entre usuarios y se pueden sincronizar usand CalDav (cada tarea está enlazada a un calendario de Nextcloud. Para sincronizarlas con tu cliente local —Thunderbird, Evolution, KDE Kontact, iCal...— solo hay que añadir el calendario como un calendario remoto en tu cliente). Puedes descargar tus tareas como archivos ICS usando el botón de Descarga de cada calendario.",
"Once enabled, a new Tasks menu will appear in your Nextcloud apps menu. From there you can add and delete tasks, edit their title, description, start and due dates, reminder times, mark them as important, and add comments on them. Tasks can be shared between users. Tasks can be synchronized using CalDav (each task list is linked to an Nextcloud calendar, to sync it to your local client - Thunderbird, Evolution, KDE Kontact, iCal... - just add the calendar as a remote calendar in you client). You can download your tasks as ICS files using the download button for each calendar." : "Una vez activada, una nueva opción Tareas aparecerá en el menú de apps de Nextcloud. Desde allí puedes añadir y eliminar tareas; editar su título, descripción y fechas de inicio y finalización, horarios de recordatorio; marcarlas como importantes; y añadirles comentarios. Las tareas se pueden compartir entre usuarios. Las tareas pueden sincronizarse usando CalDAv (cada lista de tareas está enlazada con un calendario de Nextcloud para sincronizarlo con tu cliente local [Thunderbird, Evolution, KDE Kontact, iCal...]. Solo hay que añadir el calendario como un calendario remoto en tu cliente). Puedes descargar tus tareas como archivos ICS usando el botón de descarga para cada calendario.",
"Share with users or groups" : "Compartir con otros usuarios o grupos",
"No users or groups" : "No hay usuarios ni grupos.",
"can edit" : "puede editar",
"Unshare with {displayName}" : "Dejar de compartir con {displayName}",
"Unable to delete the share." : "No se ha podido eliminar el elemento compartido.",
"Unable to change permissions." : "No se han podido cambiar los permisos.",
"Add List…" : "Agregar lista...",
"New List" : "Nueva lista",
"Cancel" : "Cancelar",
"Save" : "Guardar",
"The name \"{calendar}\" is already used." : "El nombre \"{calendar}\" ya está en uso.",
"An empty name is not allowed." : "No se puede dejar el nombre en blanco.",
"Edit" : "Editar",
"Copy private link" : "Copiar enlace privado",
"Copied" : "Copiado",
"Can not copy" : "No se puede copiar",
"Download" : "Descargar",
"Delete" : "Eliminar",
"Unshare" : "No compartir",
"This will delete the calendar \"{calendar}\" and all corresponding events and tasks." : "Esto eliminará el calendario \"{calendar}\" y todos los eventos y tareas correspondientes.",
"This will unshare the calendar \"{calendar}\"." : "Esto dejará de compartir el calendario \"{calendar}\"",
"Calendar link copied to clipboard." : "Enlace de calendario copiado al portapapeles.",
"Calendar link could not be copied to clipboard." : "No se ha podido copiar al portapapeles el enlace de calendario.",
"An error occurred, unable to delete the calendar." : "Se ha producido un error, no se ha podido borrar el calendario.",
"_Deleting the calendar in {countdown} second_::_Deleting the calendar in {countdown} seconds_" : ["Borrando el calendario en {countdown} segundo","Borrando el calendario en {countdown} segundos"],
"_Unsharing the calendar in {countdown} second_::_Unsharing the calendar in {countdown} seconds_" : ["Dejando de compartir el calendario en {countdown} segundo","Dejando de compartir el calendario en {countdown} segundos"],
"_Shared with {num} entity_::_Shared with {num} entities_" : ["Compartido con {num} entidades","Compartido con {num} entidades"],
"Default list" : "Lista por defecto",
"Visibility of Smart Collections" : "Visibilidad de las colecciones inteligentes",
"Hidden" : "Oculto",
"Visible" : "Visible",
"Automatic" : "Automático",
"Cancel" : "Cancelar",
"Delete all completed tasks." : "Borrar todas las tareas completadas.",
"Delete completed tasks." : "Borrar las tareas completadas.",
"Deleted all completed tasks from calendar \"{calendar}\"." : "Se han eliminado todas las tareas completadas del calendario \"{calendar}\".",
"Deleted all completed tasks from calendar \"%s\"." : "Borrar todas las tareas completadas del calendario \"%s\".",
"No errors" : "No hay errores",
"Open your browser console for more details" : "Abre la consola del navegador para más detalles",
"_This will delete {taskCount} completed task and its subtasks from calendar \"{calendar}\"._::_This will delete {taskCount} completed tasks and their subtasks from calendar \"{calendar}\"._" : ["Esto eliminará {taskCount} tarea completada y sus subtareas del calendario \"{calendar}\".","Esto eliminará {taskCount} tareas completadas y sus subtareas del calendario \"{calendar}\"."],
"_This will delete {taskCount} completed task and its subtasks from calendar \"%s\"._::_This will delete {taskCount} completed tasks and their subtasks from calendar \"%s\"._" : ["Esto eliminará {taskCount} tarea completada y sus subtareas del calendario \"%s\".","Esto eliminará {taskCount} tareas completadas y sus subtareas del calendario \"%s\"."],
"_Could not delete {failedCount} task._::_Could not delete {failedCount} tasks._" : ["No se ha podido eliminar {failedCount} tarea.","No se han podido eliminar {failedCount} tareas."],
"Load all completed tasks." : "Cargar todas las tareas completadas.",
"Change sort order" : "Cambiar el orden",
"Relevance" : "Relevancia",
"Default" : "Predeterminado",
"Sort by completed state, due date, priority, start date and summary." : "Ordenar por grado de completado, fecha límite, prioridad, fecha de inicio y resumen.",
"Start date" : "Fecha inicial",
"Sort by start date and summary." : "Ordenar por fecha de inicio y resumen.",
"Due date" : "Fecha límite",
"Sort by due date and summary." : "Ordenar por fecha tope y resumen.",
"Start date" : "Fecha inicial",
"Sort by start date and summary." : "Ordenar por fecha de inicio y resumen.",
"Created date" : "Fecha de creación",
"Sort by created date and summary." : "Ordenar por fecha de creación y resumen.",
"Last modified" : "Modificado por última vez",
@ -69,26 +44,19 @@ OC.L10N.register(
"Sort by manual order." : "Ordenar por orden manual.",
"Alphabetically" : "Alfabeticamente",
"Sort by summary and priority." : "Ordenar por resumen y prioridad.",
"Task is completed" : "La tarea está completada",
"{complete} % completed" : "{complete} % completado",
"Add subtask" : "Añadir subtarea",
"Show subtasks" : "Ver subtareas",
"Hide subtasks" : "Ocultar subtareas",
"Show completed subtasks" : "Ver las subtareas completadas",
"Hide completed subtasks" : "Ocultar las subtareas completadas",
"Delete task" : "Eliminar tarea",
"Task is completed" : "La tarea está completada",
"Toggle visibility of all subtasks." : "Alternar visibilidad de todas las subtareas.",
"Toggle visibility of completed subtasks." : "Alternar visibilidad de subtareas completadas.",
"[Yesterday]" : "[Ayer]",
"[Today]" : "[Hoy]",
"[Tomorrow]" : "[Mañana]",
"Add a subtask to \"{task}\"…" : "Añadir una subtarea a \"{task}\"…",
"An error occurred, unable to delete the task." : "Ocurrió un error: no fue posible borrar la tarea",
"_Deleting the task in {countdown} second_::_Deleting the task in {countdown} seconds_" : ["Borrando la tarea en {countdown} segundo","Borrando la tarea en {countdown} segundos"],
"Add a task to \"{task}\"…" : "Añadir una tarea a \"{task}\"…",
"Add a subtask to \"%s\"…" : "Añadir una subtarea a \"%s\"...",
"Add a task to \"%s\"…" : "Añadir una tarea a \"%s\"...",
"_%n Completed Task_::_%n Completed Tasks_" : ["%n tarea completada","%n tareas completadas"],
"Add an important task to \"{calendar}\"…" : "Añadir una tarea importante a \"{calendar}\"…",
"Add a task due today to \"{calendar}\"…" : "Añadir una tarea que finaliza hoy a \"{calendar}\"",
"Add a current task to \"{calendar}\"…" : "Añadir una tarea actual a \"{calendar}\"",
"Add a task to \"{calendar}\"…" : "Añadir una tarea a \"{calendar}\"",
"Add an important task to \"%s\"…" : "Añadir una tarea importante a \"%s\"...",
"Add a task due today to \"%s\"…" : "Agregar una tarea para hoy en \"%s\"...",
"Add a current task to \"%s\"…" : "Añadir una tarea actual a \"%s\"...",
"Tomorrow" : "Mañana",
"Set start date" : "Establecer fecha de inicio",
"Set start time" : "Fijar hora de inicio",
@ -97,17 +65,9 @@ OC.L10N.register(
"All day" : "Todo el día",
"Select a calendar" : "Seleccionar un calendario",
"Select a classification" : "Selecciona una clasificación",
"Select a status" : "Seleccione un estado",
"Select categories" : "Seleccionar categorías",
"Add this as a new category" : "Añadir esto como categoría nueva",
"Loading task from server." : "Cargando tareas desde el servidor.",
"Task not found!" : "¡Tarea no encontrada!",
"When shared show full event" : "Al compartir, mostrar el evento completo",
"When shared show only busy" : "Al compartir, mostrar solo ocupado",
"When shared hide this event" : "Al compartir, ocultar este evento",
"Needs action" : "Necesita una acción",
"In process" : "En proceso",
"Canceled" : "Cancelado",
"[Starts today]" : "[Empieza hoy]",
"[Starts tomorrow]" : "[Empieza mañana]",
"[Starts on] LL" : "[Empieza el] LL",
@ -130,22 +90,43 @@ OC.L10N.register(
"[Due on] LL [at] LT" : "[Termina el] LL [a las] LT",
"[Was due yesterday at] LT" : "[Terminaba ayer a las] LT",
"[Was due on] LL [at] LT" : "[Terminaba el] LL [a las] LT",
"Last modified {date}" : "Última modificación: {date}",
"Created {date}" : "Creado el {date}",
"Completed {date}" : "Completado el {date}",
"No priority assigned" : "Sin prioridad asignada",
"Priority {priority}: high" : "Prioridad {priority}: alta",
"Priority {priority}: medium" : "Prioridad {priority}: media",
"Priority {priority}: low" : "Prioridad {priority}: baja",
"{percent} % completed" : "{percent}% completado",
"Successfully created the task." : "Tarea creada con éxito.",
"Priority %s: high" : "Prioridad %s: alta",
"Priority %s: medium" : "Prioridad %s: media",
"Priority %s: low" : "Prioridad %s: baja",
"%s %% completed" : "%s %% completado",
"When shared show full event" : "Al compartir, mostrar el evento completo",
"When shared show only busy" : "Al compartir, mostrar solo ocupado",
"When shared hide this event" : "Al compartir, ocultar este evento",
"Last modified %s" : "Ǘltima modificación: %s",
"Created %s" : "Creada el %s",
"Completed %s" : "Completado %s",
"Edit" : "Editar",
"Copy private link" : "Copiar enlace privado",
"Copied" : "Copiado",
"Can not copy" : "No se puede copiar",
"Download" : "Descargar",
"Save" : "Guardar",
"Add List…" : "Agregar lista...",
"New List" : "Nueva lista",
"Calendar link copied to clipboard." : "Enlace de calendario copiado al portapapeles.",
"Calendar link could not be copied to clipboard." : "No se ha podido copiar al portapapeles el enlace de calendario.",
"The name \"%s\" is already used." : "El nombre \"%s\" ya está en uso.",
"An empty name is not allowed." : "No se puede dejar el nombre en blanco.",
"This will delete the calendar \"%s\" and all corresponding events and tasks." : "Esto eliminará el calendario \"%s\" y todos sus correspondientes eventos y tareas.",
"_Shared with {num} entity_::_Shared with {num} entities_" : ["Compartido con {num} entidades","Compartido con {num} entidades"],
"Settings" : "Ajustes",
"Default list" : "Lista por defecto",
"Visibility of Smart Collections" : "Visibilidad de las colecciones inteligentes",
"Hidden" : "Oculto",
"Visible" : "Visible",
"Automatic" : "Automático",
"Could not delete the task." : "No se ha podido eliminar la tarea.",
"Synchronizing to the server." : "Sincronizando con el servidor.",
"Task successfully saved to server." : "Tarea guardada correctamente en el servidor.",
"Could not update the task because it was changed on the server. Please click to refresh it, local changes will be discarded." : "No se ha podido actualizar la tarea porque ha cambiado en el servidor. Por favor, pulsa para volver a cargarla. Se perderán los cambios locales.",
"Could not update the task." : "No se ha podido actualizar la tarea.",
"Successfully updated the task." : "Tarea actualizada con éxito.",
"Task successfully moved to new calendar." : "Tarea movida con éxito al nuevo calendario.",
"Could not update the task because it was changed on the server. Please click to refresh it, local changes will be discared." : "No se ha podido actualizar la tarea porque ha cambiado en el servidor. Por favor, pulsa para recargarla, los cambios locales serán descargados.",
"An error occurred" : "Ha ocurrido un error"
},
"nplurals=2; plural=(n != 1);");

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