Compare commits
18 Commits
v0.8.1
...
stable-0.6
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
912f9ab236 | ||
|
|
498265d551 | ||
|
|
1a87ab7bed | ||
|
|
58a9d86e30 | ||
|
|
8d3bdc4c44 | ||
|
|
aa344c37ed | ||
|
|
7da712428e | ||
|
|
ac398b24ec | ||
|
|
82208d9817 | ||
|
|
cd62de76ae | ||
|
|
7a9b174c5b | ||
|
|
f5fbe88d55 | ||
|
|
51a8ffe8a1 | ||
|
|
757cf2128a | ||
|
|
fb8eaa89bc | ||
|
|
33be14baf8 | ||
|
|
82d4aef424 | ||
|
|
b41acee461 |
128
.drone.yml
128
.drone.yml
@@ -2,7 +2,7 @@ kind: pipeline
|
||||
name: checkers
|
||||
steps:
|
||||
- name: compatibility
|
||||
image: nextcloudci/php7.2:php7.2-13
|
||||
image: nextcloudci/php7.1:php7.1-16
|
||||
environment:
|
||||
APP_NAME: deck
|
||||
CORE_BRANCH: master
|
||||
@@ -16,11 +16,29 @@ steps:
|
||||
- ./occ app:check-code $APP_NAME -c strong-comparison
|
||||
- ./occ app:check-code $APP_NAME -c deprecation
|
||||
- cd apps/$APP_NAME/
|
||||
- name: syntax-php7.2
|
||||
image: nextcloudci/php7.2:php7.2-13
|
||||
- name: syntax-php7.0
|
||||
image: nextcloudci/php7.0:php7.0-17
|
||||
environment:
|
||||
APP_NAME: deck
|
||||
CORE_BRANCH: master
|
||||
CORE_BRANCH: stable15
|
||||
DB: sqlite
|
||||
commands:
|
||||
- composer install
|
||||
- ./vendor/bin/parallel-lint --exclude ./vendor/ --exclude ./lib/Collaboration/ .
|
||||
- name: syntax-php7.1
|
||||
image: nextcloudci/php7.1:php7.1-15
|
||||
environment:
|
||||
APP_NAME: deck
|
||||
CORE_BRANCH: stable15
|
||||
DB: sqlite
|
||||
commands:
|
||||
- composer install
|
||||
- ./vendor/bin/parallel-lint --exclude ./vendor/ .
|
||||
- name: syntax-php7.2
|
||||
image: nextcloudci/php7.2:php7.2-9
|
||||
environment:
|
||||
APP_NAME: deck
|
||||
CORE_BRANCH: stable15
|
||||
DB: sqlite
|
||||
commands:
|
||||
- composer install
|
||||
@@ -29,20 +47,66 @@ steps:
|
||||
image: nextcloudci/php7.3:php7.3-2
|
||||
environment:
|
||||
APP_NAME: deck
|
||||
CORE_BRANCH: master
|
||||
CORE_BRANCH: stable15
|
||||
DB: sqlite
|
||||
commands:
|
||||
- composer install
|
||||
- ./vendor/bin/parallel-lint --exclude ./vendor/ .
|
||||
- name: syntax-php7.4
|
||||
image: nextcloudci/php7.4:2
|
||||
environment:
|
||||
trigger:
|
||||
branch:
|
||||
- master
|
||||
- stable*
|
||||
event:
|
||||
- pull_request
|
||||
- push
|
||||
---
|
||||
kind: pipeline
|
||||
name: unit-php7.0
|
||||
steps:
|
||||
- name: php7.0
|
||||
image: nextcloudci/php7.0:php7.0-17
|
||||
environment:
|
||||
APP_NAME: deck
|
||||
CORE_BRANCH: master
|
||||
CORE_BRANCH: stable15
|
||||
DB: sqlite
|
||||
commands:
|
||||
commands:
|
||||
# Pre-setup steps
|
||||
- wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh
|
||||
- bash ./before_install.sh $APP_NAME $CORE_BRANCH $DB
|
||||
- cd ../server/
|
||||
- php occ app:enable deck
|
||||
- cd apps/$APP_NAME
|
||||
# Run phpunit tests
|
||||
- composer install
|
||||
- ./vendor/bin/parallel-lint --exclude ./vendor/ .
|
||||
- phpunit -c tests/phpunit.xml --coverage-clover build/php-unit.coverage.xml
|
||||
- phpunit -c tests/phpunit.integration.xml --coverage-clover build/php-integration.coverage.xml
|
||||
trigger:
|
||||
branch:
|
||||
- master
|
||||
- stable*
|
||||
event:
|
||||
- pull_request
|
||||
- push
|
||||
---
|
||||
kind: pipeline
|
||||
name: unit-php7.1
|
||||
steps:
|
||||
- name: php7.1
|
||||
image: nextcloudci/php7.1:php7.1-15
|
||||
environment:
|
||||
APP_NAME: deck
|
||||
CORE_BRANCH: stable15
|
||||
DB: sqlite
|
||||
commands:
|
||||
# Pre-setup steps
|
||||
- wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh
|
||||
- bash ./before_install.sh $APP_NAME $CORE_BRANCH $DB
|
||||
- cd ../server/
|
||||
- php occ app:enable deck
|
||||
- cd apps/$APP_NAME
|
||||
- composer install
|
||||
- phpunit -c tests/phpunit.xml --coverage-clover build/php-unit.coverage.xml
|
||||
- phpunit -c tests/phpunit.integration.xml --coverage-clover build/php-integration.coverage.xml
|
||||
trigger:
|
||||
branch:
|
||||
- master
|
||||
@@ -55,10 +119,10 @@ kind: pipeline
|
||||
name: unit-php7.2
|
||||
steps:
|
||||
- name: php7.2
|
||||
image: nextcloudci/php7.2:php7.2-13
|
||||
image: nextcloudci/php7.2:php7.2-9
|
||||
environment:
|
||||
APP_NAME: deck
|
||||
CORE_BRANCH: master
|
||||
CORE_BRANCH: stable15
|
||||
DB: sqlite
|
||||
commands:
|
||||
# Pre-setup steps
|
||||
@@ -82,10 +146,10 @@ kind: pipeline
|
||||
name: unit-php7.3
|
||||
steps:
|
||||
- name: php7.3
|
||||
image: nextcloudci/php7.3:php7.3-5
|
||||
image: nextcloudci/php7.3:php7.3-2
|
||||
environment:
|
||||
APP_NAME: deck
|
||||
CORE_BRANCH: master
|
||||
CORE_BRANCH: stable15
|
||||
DB: sqlite
|
||||
commands:
|
||||
# Pre-setup steps
|
||||
@@ -106,13 +170,39 @@ trigger:
|
||||
- push
|
||||
---
|
||||
kind: pipeline
|
||||
name: integration
|
||||
name: integration-stable16
|
||||
steps:
|
||||
- name: integration
|
||||
image: nextcloudci/php7.2:php7.2-13
|
||||
image: nextcloudci/php7.1:php7.1-16
|
||||
environment:
|
||||
APP_NAME: deck
|
||||
CORE_BRANCH: master
|
||||
CORE_BRANCH: stable16
|
||||
DB: sqlite
|
||||
commands:
|
||||
# Pre-setup steps
|
||||
- wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh
|
||||
- bash ./before_install.sh $APP_NAME $CORE_BRANCH $DB
|
||||
- cd ../server/
|
||||
- php occ app:enable deck
|
||||
- cd apps/$APP_NAME
|
||||
- cd tests/integration
|
||||
- ./run.sh || true
|
||||
trigger:
|
||||
branch:
|
||||
- master
|
||||
- stable*
|
||||
event:
|
||||
- pull_request
|
||||
- push
|
||||
---
|
||||
kind: pipeline
|
||||
name: integration-stable15
|
||||
steps:
|
||||
- name: integration
|
||||
image: nextcloudci/php7.1:php7.1-16
|
||||
environment:
|
||||
APP_NAME: deck
|
||||
CORE_BRANCH: stable15
|
||||
DB: sqlite
|
||||
commands:
|
||||
# Pre-setup steps
|
||||
@@ -140,7 +230,7 @@ steps:
|
||||
commands:
|
||||
- ./run-eslint.sh
|
||||
- name: jsbuild
|
||||
image: node:lts-alpine
|
||||
image: mhart/alpine-node:6.8.0
|
||||
commands:
|
||||
- apk add --no-cache make
|
||||
- make build-js
|
||||
|
||||
@@ -1,31 +0,0 @@
|
||||
build/
|
||||
.git
|
||||
js/node_modules
|
||||
js/tests
|
||||
js/legacy
|
||||
js/controller
|
||||
js/directive
|
||||
js/filters
|
||||
js/service
|
||||
js/bower.json
|
||||
js/.bowerrc
|
||||
js/.jshintrc
|
||||
js/Gruntfile.js
|
||||
js/package.json
|
||||
js/package-lock.json
|
||||
docs/
|
||||
tests
|
||||
.codecov.yml
|
||||
composer.json
|
||||
composer.lock
|
||||
_config.yml
|
||||
.drone.yml
|
||||
.travis.yml
|
||||
.eslintignore
|
||||
.eslintrc.yml
|
||||
.gitignore
|
||||
issue_template.md
|
||||
krankerl.toml
|
||||
Makefile
|
||||
mkdocs.yml
|
||||
run-eslint.sh
|
||||
10
.travis.yml
10
.travis.yml
@@ -2,13 +2,19 @@ language: php
|
||||
services:
|
||||
- mysql
|
||||
php:
|
||||
- 7.0
|
||||
- 7.1
|
||||
- 7.2
|
||||
- 7.3
|
||||
env:
|
||||
- CORE_BRANCH=master DB=mysql
|
||||
- CORE_BRANCH=stable15 DB=mysql
|
||||
|
||||
before_install:
|
||||
- export PATH="$PWD/vendor/bin:$PATH"
|
||||
- wget https://phar.phpunit.de/phpunit-5.7.phar
|
||||
- chmod +x phpunit-5.7.phar
|
||||
- mkdir bin
|
||||
- mv phpunit-5.7.phar bin/phpunit
|
||||
- export PATH="$PWD/bin:$PATH"
|
||||
- phpunit --version
|
||||
- wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh
|
||||
- bash ./before_install.sh deck $CORE_BRANCH $DB
|
||||
|
||||
28
CHANGELOG.md
28
CHANGELOG.md
@@ -1,34 +1,6 @@
|
||||
# Changelog
|
||||
All notable changes to this project will be documented in this file.
|
||||
|
||||
## 0.8.1 - 2020-04-08
|
||||
|
||||
## Added
|
||||
- Nextcloud 19 compatibility
|
||||
|
||||
## Fixed
|
||||
- Let new shares only use the current users permissions
|
||||
- Check for board membership on comments entity event
|
||||
|
||||
## 0.8.0 - 2020-01-16
|
||||
|
||||
## Added
|
||||
- Case insensitive search (@matchish)
|
||||
|
||||
## Fixed
|
||||
- Fix reversed permissions for reordering stacks (@JLueke)
|
||||
- Fix reversed visibility of 'add stack' field (@JLueke)
|
||||
- Fix occ export command
|
||||
- Fix error causing cron execution to fail
|
||||
- Fix activity entry on moving cards
|
||||
- Proper wording in activity timeline (@a11exandru)
|
||||
|
||||
## 0.7.0 - 2019-08-20
|
||||
|
||||
## Added
|
||||
- Make deck compatible to Nextcloud 17
|
||||
- Allow to set the description when creating cards though the REST API
|
||||
|
||||
## 0.6.6 - 2019-08-01
|
||||
|
||||
### Fixed
|
||||
|
||||
2
Makefile
2
Makefile
@@ -84,7 +84,7 @@ test-unit:
|
||||
ifeq (, $(shell which phpunit 2> /dev/null))
|
||||
@echo "No phpunit command available, downloading a copy from the web"
|
||||
mkdir -p $(build_tools_directory)
|
||||
curl -sSL https://phar.phpunit.de/phpunit-8.2.phar -o $(build_tools_directory)/phpunit.phar
|
||||
curl -sSL https://phar.phpunit.de/phpunit-5.7.phar -o $(build_tools_directory)/phpunit.phar
|
||||
php $(build_tools_directory)/phpunit.phar -c tests/phpunit.xml --coverage-clover build/php-unit.coverage.xml
|
||||
php $(build_tools_directory)/phpunit.phar -c tests/phpunit.integration.xml --coverage-clover build/php-integration.coverage.xml
|
||||
else
|
||||
|
||||
@@ -17,7 +17,7 @@
|
||||
- 🚀 Get your project organized
|
||||
|
||||
</description>
|
||||
<version>0.8.1</version>
|
||||
<version>0.6.6</version>
|
||||
<licence>agpl</licence>
|
||||
<author>Julius Härtl</author>
|
||||
<namespace>Deck</namespace>
|
||||
@@ -36,7 +36,7 @@
|
||||
<database min-version="9.4">pgsql</database>
|
||||
<database>sqlite</database>
|
||||
<database min-version="5.5">mysql</database>
|
||||
<nextcloud min-version="17" max-version="19" />
|
||||
<nextcloud min-version="15" max-version="16" />
|
||||
</dependencies>
|
||||
<background-jobs>
|
||||
<job>OCA\Deck\Cron\DeleteCron</job>
|
||||
|
||||
@@ -13,8 +13,7 @@
|
||||
},
|
||||
"require-dev": {
|
||||
"roave/security-advisories": "dev-master",
|
||||
"christophwurst/nextcloud": "^17",
|
||||
"jakub-onderka/php-parallel-lint": "^1.0.0",
|
||||
"phpunit/phpunit": "^8"
|
||||
"christophwurst/nextcloud": "^15.0",
|
||||
"jakub-onderka/php-parallel-lint": "^1.0.0"
|
||||
}
|
||||
}
|
||||
|
||||
43
docs/API.md
43
docs/API.md
@@ -45,13 +45,6 @@ In any case a user doesn't have access to a requested entity, a 403 error will b
|
||||
### If-Modified-Since
|
||||
|
||||
Some index endpoints support limiting the result set to entries that have been changed since the given time.
|
||||
The supported date formats are:
|
||||
|
||||
* IMF-fixdate: `Sun, 03 Aug 2019 10:34:12 GMT`
|
||||
* (obsolete) RFC 850: `Sunday, 03-Aug-19 10:34:12 GMT`
|
||||
* (obsolete) ANSI C asctime(): `Sun Aug 3 10:34:12 2019`
|
||||
|
||||
It is highly recommended to only use the IMF-fixdate format.
|
||||
|
||||
Example curl request:
|
||||
|
||||
@@ -59,7 +52,7 @@ Example curl request:
|
||||
curl -u admin:admin -X GET \
|
||||
'http://localhost:8000/index.php/apps/deck/api/v1.0/boards/2/stacks' \
|
||||
-H "OCS-APIRequest: true" \
|
||||
-H "If-Modified-Since: Mon, 05 Nov 2018 09:28:00 GMT"
|
||||
-H "If-Modified-Since: Mon, 5 Nov 2018 09:28:00 GMT"
|
||||
```
|
||||
|
||||
# Endpoints
|
||||
@@ -433,13 +426,6 @@ The board list endpoint supports setting an `If-Modified-Since` header to limit
|
||||
|
||||
### POST /boards/{boardId}/stacks - Create a new stack
|
||||
|
||||
#### Request body
|
||||
|
||||
| Parameter | Type | Description |
|
||||
| --------- | ------- | ---------------------------------------------------- |
|
||||
| title | String | The title of the new stack |
|
||||
| order | Integer | Order for sorting the stacks |
|
||||
|
||||
#### Request parameters
|
||||
|
||||
| Parameter | Type | Description |
|
||||
@@ -651,33 +637,6 @@ The board list endpoint supports setting an `If-Modified-Since` header to limit
|
||||
|
||||
##### 200 Success
|
||||
|
||||
```json
|
||||
{
|
||||
"id": 3,
|
||||
"participant": {
|
||||
"primaryKey": "admin",
|
||||
"uid": "admin",
|
||||
"displayname": "admin"
|
||||
},
|
||||
"cardId": 1
|
||||
}
|
||||
```
|
||||
|
||||
##### 400 Bad request
|
||||
|
||||
```json
|
||||
{
|
||||
"status": 400,
|
||||
"message": "The user is already assigned to the card"
|
||||
}
|
||||
```
|
||||
|
||||
The request can fail with a bad request response for the following reasons:
|
||||
- Missing or wrongly formatted request parameters
|
||||
- The user is already assigned to the card
|
||||
- The user is not part of the board
|
||||
|
||||
|
||||
### PUT /boards/{boardId}/stacks/{stackId}/cards/{cardId}/unassignUser - Assign a user to a card
|
||||
|
||||
#### Request parameters
|
||||
|
||||
@@ -4,20 +4,20 @@
|
||||
* @author Julius Härtl <jus@bitgrid.net>
|
||||
*
|
||||
* @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/>.
|
||||
*
|
||||
*
|
||||
*/
|
||||
import app from '../app/App.js';
|
||||
|
||||
@@ -31,9 +31,7 @@ app.filter('cardSearchFilter', function() {
|
||||
angular.forEach(cards, function(card){
|
||||
var _card = card;
|
||||
Object.keys(rules).some(function(rule) {
|
||||
var pattern = rules[rule];
|
||||
// eslint-disable-next-line detect-non-literal-regexp
|
||||
if(_card[rule].search(new RegExp(pattern, 'i'))>=0) {
|
||||
if(_card[rule].search(rules[rule])>=0) {
|
||||
_result[_card.id] = _card;
|
||||
}
|
||||
});
|
||||
|
||||
4072
js/package-lock.json
generated
4072
js/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -7,41 +7,42 @@
|
||||
"test": "tests"
|
||||
},
|
||||
"dependencies": {
|
||||
"@uirouter/angularjs": "^1.0.25",
|
||||
"@uirouter/angularjs": "^1.0.22",
|
||||
"angular": "^1.7.9",
|
||||
"angular-animate": "^1.7.9",
|
||||
"angular-animate": "^1.7.8",
|
||||
"angular-file-upload": "^2.5.0",
|
||||
"angular-markdown-it": "^0.6.1",
|
||||
"angular-sanitize": "^1.7.9",
|
||||
"angular-sanitize": "^1.7.8",
|
||||
"babel-polyfill": "^6.26.0",
|
||||
"markdown-it": "^10.0.0",
|
||||
"markdown-it": "^9.0.1",
|
||||
"markdown-it-link-target": "^1.0.2",
|
||||
"nextcloud-axios": "^0.2.1",
|
||||
"nextcloud-vue": "^0.12.8",
|
||||
"nextcloud-vue-collections": "^0.6.0",
|
||||
"nextcloud-axios": "^0.2.0",
|
||||
"nextcloud-vue": "^0.11.4",
|
||||
"nextcloud-vue-collections": "^0.5.6",
|
||||
"ng-infinite-scroll": "^1.3.0",
|
||||
"ng-sortable": "^1.3.8",
|
||||
"ui-select": "^0.19.8",
|
||||
"vue": "^2.6.11",
|
||||
"vuex": "^3.1.3"
|
||||
"vue": "^2.6.10",
|
||||
"vuex": "^3.1.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.9.0",
|
||||
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
|
||||
"@babel/polyfill": "^7.8.7",
|
||||
"@babel/preset-env": "^7.9.0",
|
||||
"babel-loader": "^8.1.0",
|
||||
"css-loader": "^3.4.2",
|
||||
"karma": "^4.4.1",
|
||||
"mini-css-extract-plugin": "^0.9.0",
|
||||
"style-loader": "^1.1.3",
|
||||
"url-loader": "^4.0.0",
|
||||
"vue-loader": "^15.9.1",
|
||||
"@babel/core": "^7.4.5",
|
||||
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
|
||||
"@babel/polyfill": "^7.4.4",
|
||||
"@babel/preset-env": "^7.4.5",
|
||||
"babel-loader": "^8.0.6",
|
||||
"css-loader": "^3.1.0",
|
||||
"karma": "^4.2.0",
|
||||
"mini-css-extract-plugin": "^0.8.0",
|
||||
"style-loader": "^0.23.1",
|
||||
"uglifyjs-webpack-plugin": "^2.1.3",
|
||||
"url-loader": "^2.1.0",
|
||||
"vue-loader": "^15.7.0",
|
||||
"vue-style-loader": "^4.1.2",
|
||||
"vue-template-compiler": "^2.6.11",
|
||||
"webpack": "^4.42.1",
|
||||
"webpack-cli": "^3.3.11",
|
||||
"webpack-merge": "^4.2.2"
|
||||
"vue-template-compiler": "^2.6.10",
|
||||
"webpack": "^4.37.0",
|
||||
"webpack-cli": "^3.3.6",
|
||||
"webpack-merge": "^4.2.1"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "NODE_ENV=production ./node_modules/webpack-cli/bin/cli.js --mode production --config webpack.prod.config.js",
|
||||
|
||||
@@ -1,18 +1,15 @@
|
||||
const webpack = require('webpack');
|
||||
const merge = require('webpack-merge');
|
||||
const baseConfig = require('./webpack.config.js');
|
||||
const TerserPlugin = require('terser-webpack-plugin');
|
||||
const UglifyJsPlugin = require('uglifyjs-webpack-plugin')
|
||||
|
||||
|
||||
module.exports = merge(baseConfig, {
|
||||
mode: 'production',
|
||||
devtool: '#source-map',
|
||||
optimization: {
|
||||
minimize: true,
|
||||
minimizer: [
|
||||
new TerserPlugin({
|
||||
test: /vendor\.js(\?.*)?$/i,
|
||||
}),
|
||||
],
|
||||
},
|
||||
});
|
||||
new UglifyJsPlugin({
|
||||
test: /(vendor\.js)+/i
|
||||
})
|
||||
]
|
||||
}});
|
||||
|
||||
@@ -1,4 +1,38 @@
|
||||
[package]
|
||||
exclude = [
|
||||
"build/",
|
||||
".git",
|
||||
"js/node_modules",
|
||||
"js/tests",
|
||||
"js/legacy",
|
||||
"js/controller",
|
||||
"js/directive",
|
||||
"js/filters",
|
||||
"js/service",
|
||||
"js/bower.json",
|
||||
"js/.bowerrc",
|
||||
"js/.jshintrc",
|
||||
"js/Gruntfile.js",
|
||||
"js/package.json",
|
||||
"js/package-lock.json",
|
||||
"docs/",
|
||||
"tests",
|
||||
".codecov.yml",
|
||||
"composer.json",
|
||||
"composer.lock",
|
||||
"_config.yml",
|
||||
".drone.yml",
|
||||
".travis.yml",
|
||||
".eslintignore",
|
||||
".eslintrc.yml",
|
||||
".gitignore",
|
||||
"issue_template.md",
|
||||
"krankerl.toml",
|
||||
"Makefile",
|
||||
"mkdocs.yml",
|
||||
"run-eslint.sh"
|
||||
]
|
||||
|
||||
before_cmds = [
|
||||
'make clean-build',
|
||||
'make build'
|
||||
|
||||
33
l10n/af.js
33
l10n/af.js
@@ -1,33 +0,0 @@
|
||||
OC.L10N.register(
|
||||
"deck",
|
||||
{
|
||||
"Hours" : "Uur",
|
||||
"Minutes" : "Minute",
|
||||
"File already exists" : "Lêer bestaan reeds",
|
||||
"Personal" : "Persoonlik",
|
||||
"Done" : "Gereed",
|
||||
"The file was uploaded" : "Die lêer is opgelaai",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Die opgelaaide lêer oorskry die upload_max_filesize riglyn in php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Die opgelaaide lêer oorskry die MAX_FILE_SIZE riglyn wat in die HTML vorm gespesifiseer is",
|
||||
"The file was only partially uploaded" : "Die lêer is slegs gedeeltelik op gelaai",
|
||||
"No file was uploaded" : "Geen lêer is opgelaai",
|
||||
"Missing a temporary folder" : "Ontbrekende tydelike gids",
|
||||
"A PHP extension stopped the file upload" : "’n PHP-uitbreiding het die oplaai gestaak",
|
||||
"Actions" : "Aksies",
|
||||
"Close" : "Sluit",
|
||||
"Tags" : "Etikette",
|
||||
"Group" : "Groep",
|
||||
"Loading" : "Laai tans..",
|
||||
"Edit" : "Wysig",
|
||||
"Share" : "Deel",
|
||||
"Create" : "Skep",
|
||||
"Title" : "Titel",
|
||||
"Cancel upload" : "Kanselleer oplaai",
|
||||
"by" : "deur",
|
||||
"Created:" : "Geskep:",
|
||||
"Due date" : "Sperdatum",
|
||||
"Description" : "Beskrywing",
|
||||
"Saved" : "Bewaar",
|
||||
"Settings" : "Instellings"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
31
l10n/af.json
31
l10n/af.json
@@ -1,31 +0,0 @@
|
||||
{ "translations": {
|
||||
"Hours" : "Uur",
|
||||
"Minutes" : "Minute",
|
||||
"File already exists" : "Lêer bestaan reeds",
|
||||
"Personal" : "Persoonlik",
|
||||
"Done" : "Gereed",
|
||||
"The file was uploaded" : "Die lêer is opgelaai",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Die opgelaaide lêer oorskry die upload_max_filesize riglyn in php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Die opgelaaide lêer oorskry die MAX_FILE_SIZE riglyn wat in die HTML vorm gespesifiseer is",
|
||||
"The file was only partially uploaded" : "Die lêer is slegs gedeeltelik op gelaai",
|
||||
"No file was uploaded" : "Geen lêer is opgelaai",
|
||||
"Missing a temporary folder" : "Ontbrekende tydelike gids",
|
||||
"A PHP extension stopped the file upload" : "’n PHP-uitbreiding het die oplaai gestaak",
|
||||
"Actions" : "Aksies",
|
||||
"Close" : "Sluit",
|
||||
"Tags" : "Etikette",
|
||||
"Group" : "Groep",
|
||||
"Loading" : "Laai tans..",
|
||||
"Edit" : "Wysig",
|
||||
"Share" : "Deel",
|
||||
"Create" : "Skep",
|
||||
"Title" : "Titel",
|
||||
"Cancel upload" : "Kanselleer oplaai",
|
||||
"by" : "deur",
|
||||
"Created:" : "Geskep:",
|
||||
"Due date" : "Sperdatum",
|
||||
"Description" : "Beskrywing",
|
||||
"Saved" : "Bewaar",
|
||||
"Settings" : "Instellings"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
24
l10n/ar.js
24
l10n/ar.js
@@ -4,39 +4,15 @@ OC.L10N.register(
|
||||
"Hours" : "ساعات",
|
||||
"Minutes" : "دقائق",
|
||||
"File already exists" : "الملف موجود مسبقاً",
|
||||
"Personal" : "شخصي",
|
||||
"Finished" : "مكتملة",
|
||||
"Done" : "تم",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "حجم الملف الذي تريد ترفيعه أعلى مما MAX_FILE_SIZE يسمح به في واجهة ال HTML.",
|
||||
"No file was uploaded" : "لم يتم رفع أي ملف",
|
||||
"Missing a temporary folder" : "المجلد المؤقت غير موجود",
|
||||
"Actions" : "الإجراءات",
|
||||
"Delete card" : "حذف البطاقة",
|
||||
"Close" : "إغلاق",
|
||||
"Sharing" : "المشاركة",
|
||||
"Tags" : "الوسوم",
|
||||
"Timeline" : "الخيط الزمني",
|
||||
"Group" : "الفريق",
|
||||
"Circle" : "حلقة",
|
||||
"Loading" : "Loading",
|
||||
"Edit" : "تعديل",
|
||||
"Share" : "شارك",
|
||||
"Update tag" : "تحديث الوسم",
|
||||
"Edit tag" : "تعديل الوسم",
|
||||
"Delete tag" : "حذف الوسم",
|
||||
"Create" : "إنشاء",
|
||||
"Status" : "الحالة",
|
||||
"Title" : "العنوان",
|
||||
"More actions" : "إجراءات أخرى",
|
||||
"Cancel upload" : "إلغاء الرفع",
|
||||
"by" : "من قبل",
|
||||
"Delete attachment" : "حذف المرفق",
|
||||
"Modified:" : "عُدل في :",
|
||||
"Created:" : "تاريخ الإنشاء :",
|
||||
"Description" : "الوصف",
|
||||
"Attachments" : "المرفقات",
|
||||
"Saved" : "تم الإحتفاظ به",
|
||||
"Upload attachment" : "رفع المرفقات",
|
||||
"Settings" : "الإعدادات"
|
||||
},
|
||||
"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;");
|
||||
|
||||
24
l10n/ar.json
24
l10n/ar.json
@@ -2,39 +2,15 @@
|
||||
"Hours" : "ساعات",
|
||||
"Minutes" : "دقائق",
|
||||
"File already exists" : "الملف موجود مسبقاً",
|
||||
"Personal" : "شخصي",
|
||||
"Finished" : "مكتملة",
|
||||
"Done" : "تم",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "حجم الملف الذي تريد ترفيعه أعلى مما MAX_FILE_SIZE يسمح به في واجهة ال HTML.",
|
||||
"No file was uploaded" : "لم يتم رفع أي ملف",
|
||||
"Missing a temporary folder" : "المجلد المؤقت غير موجود",
|
||||
"Actions" : "الإجراءات",
|
||||
"Delete card" : "حذف البطاقة",
|
||||
"Close" : "إغلاق",
|
||||
"Sharing" : "المشاركة",
|
||||
"Tags" : "الوسوم",
|
||||
"Timeline" : "الخيط الزمني",
|
||||
"Group" : "الفريق",
|
||||
"Circle" : "حلقة",
|
||||
"Loading" : "Loading",
|
||||
"Edit" : "تعديل",
|
||||
"Share" : "شارك",
|
||||
"Update tag" : "تحديث الوسم",
|
||||
"Edit tag" : "تعديل الوسم",
|
||||
"Delete tag" : "حذف الوسم",
|
||||
"Create" : "إنشاء",
|
||||
"Status" : "الحالة",
|
||||
"Title" : "العنوان",
|
||||
"More actions" : "إجراءات أخرى",
|
||||
"Cancel upload" : "إلغاء الرفع",
|
||||
"by" : "من قبل",
|
||||
"Delete attachment" : "حذف المرفق",
|
||||
"Modified:" : "عُدل في :",
|
||||
"Created:" : "تاريخ الإنشاء :",
|
||||
"Description" : "الوصف",
|
||||
"Attachments" : "المرفقات",
|
||||
"Saved" : "تم الإحتفاظ به",
|
||||
"Upload attachment" : "رفع المرفقات",
|
||||
"Settings" : "الإعدادات"
|
||||
},"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;"
|
||||
}
|
||||
23
l10n/ast.js
23
l10n/ast.js
@@ -3,48 +3,27 @@ OC.L10N.register(
|
||||
{
|
||||
"Hours" : "Hores",
|
||||
"Minutes" : "Minutos",
|
||||
"File already exists" : "Yá esiste'l ficheru",
|
||||
"Deck" : "Deck",
|
||||
"Personal" : "Personal",
|
||||
"Finished" : "Finó",
|
||||
"Action needed" : "Precísase aición",
|
||||
"Later" : "Más sero",
|
||||
"Done" : "Fecho",
|
||||
"The file was uploaded" : "Xubióse'l ficheru",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El ficheru xubíu perpasa la direutiva de xuba upload_max_filesize en php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El ficheru xubíu perpasa la direutiva \"MAX_FILE_SIZE\" especificada nel formulariu HTML",
|
||||
"No file was uploaded" : "Nun se xubieron fichjeros",
|
||||
"Missing a temporary folder" : "Falta un direutoriu temporal",
|
||||
"Could not write file to disk" : "Nun pudo escribise nel discu'l ficheru",
|
||||
"A PHP extension stopped the file upload" : "Una estensión de PHP paró la xuba de ficheros",
|
||||
"Submit" : "Unviar",
|
||||
"Show archived cards" : "Amosar tarxetes archivaes",
|
||||
"Actions" : "Aiciones",
|
||||
"Close" : "Zarrar",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Tags" : "Etiquetes",
|
||||
"Select users or groups to share with" : "Esbilla usuarios o grupos colos que compartir",
|
||||
"Group" : "Group",
|
||||
"Circle" : "Círculu",
|
||||
"No matching user or group found." : "Nun s'alcontró dengún usuariu o grupu que concasara.",
|
||||
"Loading" : "Cargando",
|
||||
"Edit" : "Editar",
|
||||
"Share" : "Compartir",
|
||||
"Manage" : "Xestionar",
|
||||
"Discard share" : "Escartar compartición",
|
||||
"Create" : "Crear",
|
||||
"Status" : "Estáu",
|
||||
"Title" : "Títulu",
|
||||
"Members" : "Miembros",
|
||||
"More actions" : "Más aiciones",
|
||||
"Cancel upload" : "Encaboxar xuba",
|
||||
"by" : "por",
|
||||
"Modified:" : "Modificáu:",
|
||||
"Created:" : "Creóse'l",
|
||||
"Click to set" : "Primi p'afitar",
|
||||
"Description" : "Descripción",
|
||||
"Attachments" : "Axuntos",
|
||||
"Saved" : "Guardóse",
|
||||
"Settings" : "Settings"
|
||||
"Saved" : "Guardóse"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -1,48 +1,27 @@
|
||||
{ "translations": {
|
||||
"Hours" : "Hores",
|
||||
"Minutes" : "Minutos",
|
||||
"File already exists" : "Yá esiste'l ficheru",
|
||||
"Deck" : "Deck",
|
||||
"Personal" : "Personal",
|
||||
"Finished" : "Finó",
|
||||
"Action needed" : "Precísase aición",
|
||||
"Later" : "Más sero",
|
||||
"Done" : "Fecho",
|
||||
"The file was uploaded" : "Xubióse'l ficheru",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El ficheru xubíu perpasa la direutiva de xuba upload_max_filesize en php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El ficheru xubíu perpasa la direutiva \"MAX_FILE_SIZE\" especificada nel formulariu HTML",
|
||||
"No file was uploaded" : "Nun se xubieron fichjeros",
|
||||
"Missing a temporary folder" : "Falta un direutoriu temporal",
|
||||
"Could not write file to disk" : "Nun pudo escribise nel discu'l ficheru",
|
||||
"A PHP extension stopped the file upload" : "Una estensión de PHP paró la xuba de ficheros",
|
||||
"Submit" : "Unviar",
|
||||
"Show archived cards" : "Amosar tarxetes archivaes",
|
||||
"Actions" : "Aiciones",
|
||||
"Close" : "Zarrar",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Tags" : "Etiquetes",
|
||||
"Select users or groups to share with" : "Esbilla usuarios o grupos colos que compartir",
|
||||
"Group" : "Group",
|
||||
"Circle" : "Círculu",
|
||||
"No matching user or group found." : "Nun s'alcontró dengún usuariu o grupu que concasara.",
|
||||
"Loading" : "Cargando",
|
||||
"Edit" : "Editar",
|
||||
"Share" : "Compartir",
|
||||
"Manage" : "Xestionar",
|
||||
"Discard share" : "Escartar compartición",
|
||||
"Create" : "Crear",
|
||||
"Status" : "Estáu",
|
||||
"Title" : "Títulu",
|
||||
"Members" : "Miembros",
|
||||
"More actions" : "Más aiciones",
|
||||
"Cancel upload" : "Encaboxar xuba",
|
||||
"by" : "por",
|
||||
"Modified:" : "Modificáu:",
|
||||
"Created:" : "Creóse'l",
|
||||
"Click to set" : "Primi p'afitar",
|
||||
"Description" : "Descripción",
|
||||
"Attachments" : "Axuntos",
|
||||
"Saved" : "Guardóse",
|
||||
"Settings" : "Settings"
|
||||
"Saved" : "Guardóse"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
29
l10n/az.js
29
l10n/az.js
@@ -1,29 +0,0 @@
|
||||
OC.L10N.register(
|
||||
"deck",
|
||||
{
|
||||
"Hours" : "Saatlar",
|
||||
"Minutes" : "Dəqiqələr",
|
||||
"Personal" : "Şəxsi",
|
||||
"Done" : "Done",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Yüklənilən faylın həcmi HTML formasinda olan MAX_FILE_SIZE direktivində təyin dilmiş həcmi aşır.",
|
||||
"No file was uploaded" : "Heç bir fayl yüklənilmədi",
|
||||
"Missing a temporary folder" : "Müvəqqəti qovluq çatışmır",
|
||||
"Actions" : "İşlər",
|
||||
"Close" : "Bağla",
|
||||
"Sharing" : "Paylaşılır",
|
||||
"Tags" : "Işarələr",
|
||||
"Group" : "Qrup",
|
||||
"Loading" : "Loading",
|
||||
"Edit" : "Dəyişiklik et",
|
||||
"Share" : "Paylaş",
|
||||
"Create" : "Yarat",
|
||||
"Title" : "Başlıq",
|
||||
"Cancel upload" : "Yüklənməni dayandır",
|
||||
"by" : "onunla",
|
||||
"Modified:" : "Dəyişdirildi:",
|
||||
"Created:" : "Yaradıldı:",
|
||||
"Description" : "Açıqlanma",
|
||||
"Saved" : "Saxlanıldı",
|
||||
"Settings" : "Quraşdırmalar"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
27
l10n/az.json
27
l10n/az.json
@@ -1,27 +0,0 @@
|
||||
{ "translations": {
|
||||
"Hours" : "Saatlar",
|
||||
"Minutes" : "Dəqiqələr",
|
||||
"Personal" : "Şəxsi",
|
||||
"Done" : "Done",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Yüklənilən faylın həcmi HTML formasinda olan MAX_FILE_SIZE direktivində təyin dilmiş həcmi aşır.",
|
||||
"No file was uploaded" : "Heç bir fayl yüklənilmədi",
|
||||
"Missing a temporary folder" : "Müvəqqəti qovluq çatışmır",
|
||||
"Actions" : "İşlər",
|
||||
"Close" : "Bağla",
|
||||
"Sharing" : "Paylaşılır",
|
||||
"Tags" : "Işarələr",
|
||||
"Group" : "Qrup",
|
||||
"Loading" : "Loading",
|
||||
"Edit" : "Dəyişiklik et",
|
||||
"Share" : "Paylaş",
|
||||
"Create" : "Yarat",
|
||||
"Title" : "Başlıq",
|
||||
"Cancel upload" : "Yüklənməni dayandır",
|
||||
"by" : "onunla",
|
||||
"Modified:" : "Dəyişdirildi:",
|
||||
"Created:" : "Yaradıldı:",
|
||||
"Description" : "Açıqlanma",
|
||||
"Saved" : "Saxlanıldı",
|
||||
"Settings" : "Quraşdırmalar"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
14
l10n/bg.js
14
l10n/bg.js
@@ -3,39 +3,25 @@ OC.L10N.register(
|
||||
{
|
||||
"Hours" : "Часове",
|
||||
"Minutes" : "Минути",
|
||||
"File already exists" : "Файлът вече съществува",
|
||||
"Personal" : "Лични",
|
||||
"Finished" : "Готово",
|
||||
"To review" : "За преглед",
|
||||
"Action needed" : "Необходимо е действие",
|
||||
"Later" : "По-късно",
|
||||
"Done" : "Готово",
|
||||
"The file was uploaded" : "Файлът е качен",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Размерът на файла надвишава максималния размер определен от MAX_FILE_SIZE в HTML формата.",
|
||||
"The file was only partially uploaded" : "Файлът е качен частично",
|
||||
"No file was uploaded" : "Нито един файл не е качен",
|
||||
"Missing a temporary folder" : "Липсва временна папка",
|
||||
"Submit" : "Изпращане",
|
||||
"Actions" : "Действия",
|
||||
"Close" : "Затваряне",
|
||||
"Sharing" : "Споделяне",
|
||||
"Tags" : "Етикети",
|
||||
"Select users or groups to share with" : "Споделяне с потребители или групи",
|
||||
"Group" : "Група",
|
||||
"Circle" : "Кръг",
|
||||
"No matching user or group found." : "Не са намерени съвпадащи потребители или групи",
|
||||
"Loading" : "Зареждане",
|
||||
"Edit" : "Редакция",
|
||||
"Share" : "Сподели",
|
||||
"Manage" : "Управление",
|
||||
"Discard share" : "Отхвърляне на споделяне",
|
||||
"Delete tag" : "Изтрий таг",
|
||||
"Create" : "Създай",
|
||||
"Create a new tag" : "Създаване на нов етикет",
|
||||
"Status" : "Състояние",
|
||||
"Title" : "Име",
|
||||
"Members" : "Членове",
|
||||
"More actions" : "Още действия",
|
||||
"Cancel upload" : "Откажи качването",
|
||||
"by" : "от",
|
||||
"Modified:" : "Променена:",
|
||||
|
||||
14
l10n/bg.json
14
l10n/bg.json
@@ -1,39 +1,25 @@
|
||||
{ "translations": {
|
||||
"Hours" : "Часове",
|
||||
"Minutes" : "Минути",
|
||||
"File already exists" : "Файлът вече съществува",
|
||||
"Personal" : "Лични",
|
||||
"Finished" : "Готово",
|
||||
"To review" : "За преглед",
|
||||
"Action needed" : "Необходимо е действие",
|
||||
"Later" : "По-късно",
|
||||
"Done" : "Готово",
|
||||
"The file was uploaded" : "Файлът е качен",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Размерът на файла надвишава максималния размер определен от MAX_FILE_SIZE в HTML формата.",
|
||||
"The file was only partially uploaded" : "Файлът е качен частично",
|
||||
"No file was uploaded" : "Нито един файл не е качен",
|
||||
"Missing a temporary folder" : "Липсва временна папка",
|
||||
"Submit" : "Изпращане",
|
||||
"Actions" : "Действия",
|
||||
"Close" : "Затваряне",
|
||||
"Sharing" : "Споделяне",
|
||||
"Tags" : "Етикети",
|
||||
"Select users or groups to share with" : "Споделяне с потребители или групи",
|
||||
"Group" : "Група",
|
||||
"Circle" : "Кръг",
|
||||
"No matching user or group found." : "Не са намерени съвпадащи потребители или групи",
|
||||
"Loading" : "Зареждане",
|
||||
"Edit" : "Редакция",
|
||||
"Share" : "Сподели",
|
||||
"Manage" : "Управление",
|
||||
"Discard share" : "Отхвърляне на споделяне",
|
||||
"Delete tag" : "Изтрий таг",
|
||||
"Create" : "Създай",
|
||||
"Create a new tag" : "Създаване на нов етикет",
|
||||
"Status" : "Състояние",
|
||||
"Title" : "Име",
|
||||
"Members" : "Членове",
|
||||
"More actions" : "Още действия",
|
||||
"Cancel upload" : "Откажи качването",
|
||||
"by" : "от",
|
||||
"Modified:" : "Променена:",
|
||||
|
||||
@@ -1,29 +0,0 @@
|
||||
OC.L10N.register(
|
||||
"deck",
|
||||
{
|
||||
"Hours" : "ঘন্টা",
|
||||
"Minutes" : "মিনিট",
|
||||
"Personal" : "ব্যক্তিগত",
|
||||
"Done" : "Done",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "আপলোড করা ফাইলটি HTML ফর্মে উল্লিখিত MAX_FILE_SIZE নির্ধারিত ফাইলের সর্বোচ্চ আকার অতিক্রম করতে চলেছে ",
|
||||
"No file was uploaded" : "কোন ফাইল আপলোড করা হয় নি",
|
||||
"Missing a temporary folder" : "অস্থায়ী ফোল্ডারটি হারানো গিয়েছে",
|
||||
"Actions" : "পদক্ষেপসমূহ",
|
||||
"Close" : "বন্ধ",
|
||||
"Sharing" : "ভাগাভাগিরত",
|
||||
"Tags" : "ট্যাগ",
|
||||
"Group" : "গোষ্ঠীসমূহ",
|
||||
"Loading" : "Loading",
|
||||
"Edit" : "সম্পাদনা",
|
||||
"Share" : "ভাগাভাগি কর",
|
||||
"Create" : "তৈরী কর",
|
||||
"Title" : "শিরোনাম",
|
||||
"Cancel upload" : "আপলোড বাতিল কর",
|
||||
"by" : "কর্তৃক",
|
||||
"Modified:" : "পরিবর্তিতঃ",
|
||||
"Created:" : "তৈরীর নির্ঘন্টঃ",
|
||||
"Description" : "বিবরণ",
|
||||
"Saved" : "সংরক্ষণ করা হলো",
|
||||
"Settings" : "সেটিংস"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
@@ -1,27 +0,0 @@
|
||||
{ "translations": {
|
||||
"Hours" : "ঘন্টা",
|
||||
"Minutes" : "মিনিট",
|
||||
"Personal" : "ব্যক্তিগত",
|
||||
"Done" : "Done",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "আপলোড করা ফাইলটি HTML ফর্মে উল্লিখিত MAX_FILE_SIZE নির্ধারিত ফাইলের সর্বোচ্চ আকার অতিক্রম করতে চলেছে ",
|
||||
"No file was uploaded" : "কোন ফাইল আপলোড করা হয় নি",
|
||||
"Missing a temporary folder" : "অস্থায়ী ফোল্ডারটি হারানো গিয়েছে",
|
||||
"Actions" : "পদক্ষেপসমূহ",
|
||||
"Close" : "বন্ধ",
|
||||
"Sharing" : "ভাগাভাগিরত",
|
||||
"Tags" : "ট্যাগ",
|
||||
"Group" : "গোষ্ঠীসমূহ",
|
||||
"Loading" : "Loading",
|
||||
"Edit" : "সম্পাদনা",
|
||||
"Share" : "ভাগাভাগি কর",
|
||||
"Create" : "তৈরী কর",
|
||||
"Title" : "শিরোনাম",
|
||||
"Cancel upload" : "আপলোড বাতিল কর",
|
||||
"by" : "কর্তৃক",
|
||||
"Modified:" : "পরিবর্তিতঃ",
|
||||
"Created:" : "তৈরীর নির্ঘন্টঃ",
|
||||
"Description" : "বিবরণ",
|
||||
"Saved" : "সংরক্ষণ করা হলো",
|
||||
"Settings" : "সেটিংস"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
15
l10n/bs.js
15
l10n/bs.js
@@ -4,27 +4,12 @@ OC.L10N.register(
|
||||
"Hours" : "Sati",
|
||||
"Minutes" : "Minute",
|
||||
"Maximum file size of {size} exceeded" : "Maksimalna veličina datoteke prekoračena",
|
||||
"Personal" : "Osobno",
|
||||
"Done" : "Done",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Učitana datoteka premašuje maksimalnu dopuštenu veličinu datoteke MAX_FILE_SIZE navedenu u HTML formi",
|
||||
"No file was uploaded" : "Nijedna datoteka nije učitana.",
|
||||
"Missing a temporary folder" : "Nedostaje privremeni direktorij.",
|
||||
"Actions" : "Radnje",
|
||||
"Close" : "Zatvori",
|
||||
"Sharing" : "Dijeljenje",
|
||||
"Group" : "Grupa",
|
||||
"Circle" : "Krug",
|
||||
"Loading" : "Loading",
|
||||
"Edit" : "Izmjeni",
|
||||
"Share" : "Podjeli",
|
||||
"Create" : "Ustvari",
|
||||
"Status" : "Status",
|
||||
"Title" : "Naslov",
|
||||
"Members" : "Članovi",
|
||||
"Cancel upload" : "Prekini učitavanje",
|
||||
"by" : "od strane",
|
||||
"Description" : "Opis",
|
||||
"Saved" : "Spremljeno",
|
||||
"Settings" : "Podešavanje"
|
||||
},
|
||||
"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);");
|
||||
|
||||
15
l10n/bs.json
15
l10n/bs.json
@@ -2,27 +2,12 @@
|
||||
"Hours" : "Sati",
|
||||
"Minutes" : "Minute",
|
||||
"Maximum file size of {size} exceeded" : "Maksimalna veličina datoteke prekoračena",
|
||||
"Personal" : "Osobno",
|
||||
"Done" : "Done",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Učitana datoteka premašuje maksimalnu dopuštenu veličinu datoteke MAX_FILE_SIZE navedenu u HTML formi",
|
||||
"No file was uploaded" : "Nijedna datoteka nije učitana.",
|
||||
"Missing a temporary folder" : "Nedostaje privremeni direktorij.",
|
||||
"Actions" : "Radnje",
|
||||
"Close" : "Zatvori",
|
||||
"Sharing" : "Dijeljenje",
|
||||
"Group" : "Grupa",
|
||||
"Circle" : "Krug",
|
||||
"Loading" : "Loading",
|
||||
"Edit" : "Izmjeni",
|
||||
"Share" : "Podjeli",
|
||||
"Create" : "Ustvari",
|
||||
"Status" : "Status",
|
||||
"Title" : "Naslov",
|
||||
"Members" : "Članovi",
|
||||
"Cancel upload" : "Prekini učitavanje",
|
||||
"by" : "od strane",
|
||||
"Description" : "Opis",
|
||||
"Saved" : "Spremljeno",
|
||||
"Settings" : "Podešavanje"
|
||||
},"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);"
|
||||
}
|
||||
@@ -1,7 +1,7 @@
|
||||
OC.L10N.register(
|
||||
"deck",
|
||||
{
|
||||
"Please provide a content for your comment." : "Proporcioneu un contingut per al vostre comentari.",
|
||||
"Please provide a content for your comment." : "Si us plau, proporcioneu un contingut per al vostre comentari.",
|
||||
"Posting the comment failed." : "No s'ha pogut publicar el comentari.",
|
||||
"The comment has been deleted" : "S'ha suprimit el comentari",
|
||||
"The associated stack is deleted as well, it will be restored as well." : "La pila associada també se suprimeix, també es restaurarà.",
|
||||
@@ -67,7 +67,9 @@ OC.L10N.register(
|
||||
"You have added the attachment {attachment} to card {card}" : "Heu afegit l'adjunt {attachment} a la targeta {card}",
|
||||
"{user} has added the attachment {attachment} to card {card}" : "{user} ha afegit l'adjunt {attachment} a la targeta {card}",
|
||||
"You have updated the attachment {attachment} on card {card}" : "Heu actualitzat l'adjunt {attachment} a la targeta {card}",
|
||||
"{user} has updated the attachment {attachment} to card {card}" : "{user} ha actualitzat l'adjunt {attachment} a la targeta {card}",
|
||||
"You have deleted the attachment {attachment} from card {card}" : "Heu suprimit l'adjunt {attachment} de la targeta {card}",
|
||||
"{user} has deleted the attachment {attachment} to card {card}" : "{user} ha suprimit l'adjunt {attachment} de la targeta {card}",
|
||||
"You have restored the attachment {attachment} to card {card}" : "Heu restaurat l'adjunt {attachment} a la targeta {card}",
|
||||
"{user} has restored the attachment {attachment} to card {card}" : "{user} ha restaurat l'adjunt {attachment} a la targeta {card}",
|
||||
"You have commented on card {card}" : "Heu comentat la targeta {card}",
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{ "translations": {
|
||||
"Please provide a content for your comment." : "Proporcioneu un contingut per al vostre comentari.",
|
||||
"Please provide a content for your comment." : "Si us plau, proporcioneu un contingut per al vostre comentari.",
|
||||
"Posting the comment failed." : "No s'ha pogut publicar el comentari.",
|
||||
"The comment has been deleted" : "S'ha suprimit el comentari",
|
||||
"The associated stack is deleted as well, it will be restored as well." : "La pila associada també se suprimeix, també es restaurarà.",
|
||||
@@ -65,7 +65,9 @@
|
||||
"You have added the attachment {attachment} to card {card}" : "Heu afegit l'adjunt {attachment} a la targeta {card}",
|
||||
"{user} has added the attachment {attachment} to card {card}" : "{user} ha afegit l'adjunt {attachment} a la targeta {card}",
|
||||
"You have updated the attachment {attachment} on card {card}" : "Heu actualitzat l'adjunt {attachment} a la targeta {card}",
|
||||
"{user} has updated the attachment {attachment} to card {card}" : "{user} ha actualitzat l'adjunt {attachment} a la targeta {card}",
|
||||
"You have deleted the attachment {attachment} from card {card}" : "Heu suprimit l'adjunt {attachment} de la targeta {card}",
|
||||
"{user} has deleted the attachment {attachment} to card {card}" : "{user} ha suprimit l'adjunt {attachment} de la targeta {card}",
|
||||
"You have restored the attachment {attachment} to card {card}" : "Heu restaurat l'adjunt {attachment} a la targeta {card}",
|
||||
"{user} has restored the attachment {attachment} to card {card}" : "{user} ha restaurat l'adjunt {attachment} a la targeta {card}",
|
||||
"You have commented on card {card}" : "Heu comentat la targeta {card}",
|
||||
|
||||
202
l10n/cs.js
202
l10n/cs.js
@@ -4,89 +4,86 @@ OC.L10N.register(
|
||||
"Please provide a content for your comment." : "Zadejte obsah svého komentáře.",
|
||||
"Posting the comment failed." : "Odeslání komentáře se nezdařilo.",
|
||||
"The comment has been deleted" : "Komentář byl smazán",
|
||||
"The associated stack is deleted as well, it will be restored as well." : "Související sloupec je také smazaný a bude také obnoven.",
|
||||
"Restore associated stack" : "Obnovit související sloupec",
|
||||
"The associated stack is deleted as well, it will be restored as well." : "Související stack je také smazaný a bude také obnoven.",
|
||||
"Restore associated stack" : "Obnovit související stack",
|
||||
"Remove user from card" : "Odebrat uživatele z karty",
|
||||
"Hours" : "Hodiny",
|
||||
"Minutes" : "Minuty",
|
||||
"Link to a board" : "Propojit s tabulí",
|
||||
"Maximum file size of {size} exceeded" : "Překročena nejvyšší umožněná velikost souboru {size}",
|
||||
"Maximum file size of {size} exceeded" : "U souboru {size} překročena nejvyšší umožněná velikost",
|
||||
"File already exists" : "Soubor už existuje",
|
||||
"You have created a new board {board}" : "Vytvořili jste tabuli {board}",
|
||||
"{user} has created a new board {board}" : "{user} vytvořil(a) novou tabuli {board}",
|
||||
"You have deleted the board {board}" : "Smazali jste tabuli {board}",
|
||||
"{user} has deleted the board {board}" : "{user} smazal(a) tabuli {board}",
|
||||
"You have restored the board {board}" : "Obnovili jste tabuli {board}",
|
||||
"{user} has restored the board {board}" : "{user} obnovil(a) tabuli {board}",
|
||||
"You have shared the board {board} with {acl}" : "Nasdíleli jste tabuli {board} s {acl}",
|
||||
"{user} has shared the board {board} with {acl}" : "{user} nasdílel(a) tabuli {board} s {acl}",
|
||||
"You have removed {acl} from the board {board}" : "Odebrali jste {acl} z tabule {board}",
|
||||
"{user} has removed {acl} from the board {board}" : "{user} odebral(a) {acl} z tabule {board}",
|
||||
"You have renamed the board {before} to {board}" : "Přejmenovali jste tabuli {before} na {board}",
|
||||
"{user} has renamed the board {before} to {board}" : "{user} přejmenoval(a) tabuli {before} na {board}",
|
||||
"You have archived the board {board}" : "Zaarchivovali jste tabuli {board}",
|
||||
"{user} has archived the board {before}" : "{user} zaarchivoval(a) tabuli {before}",
|
||||
"You have unarchived the board {board}" : "Vrátili jste zpět z archivace tabuli {board}",
|
||||
"{user} has unarchived the board {before}" : "{user} vrátil(a) tabuli {before} zpět z archivace",
|
||||
"You have created a new stack {stack} on board {board}" : "Vytvořili jste nový sloupec {stack} na tabuli {board}",
|
||||
"{user} has created a new stack {stack} on board {board}" : "{user} vytvořil(a) nový sloupec {stack} na tabuli {board}",
|
||||
"You have renamed stack {before} to {stack} on board {board}" : "Přejmenovali jste sloupec {before} na {stack} na tabuli {board}",
|
||||
"{user} has renamed stack {before} to {stack} on board {board}" : "{user} přejmenoval(a) sloupec {before} na {stack} na tabuli {board}",
|
||||
"You have deleted stack {stack} on board {board}" : "Smazali jste sloupec {stack} na tabuli {board}",
|
||||
"{user} has deleted stack {stack} on board {board}" : "{user} smazal(a) sloupec {stack} na tabuli {board}",
|
||||
"You have created card {card} in stack {stack} on board {board}" : "Vytvořili jste kartu {card} ve sloupci {stack} na tabuli {board}",
|
||||
"{user} has created card {card} in stack {stack} on board {board}" : "{user} vytvořil(a) kartu {card} ve sloupci {stack} na tabuli {board}",
|
||||
"You have deleted card {card} in stack {stack} on board {board}" : "Smazali jste kartu {card} ve sloupci {stack} na tabuli {board}",
|
||||
"{user} has deleted card {card} in stack {stack} on board {board}" : "{user} smazal(a) kartu {card} ve sloupci {board} na tabuli {board}",
|
||||
"You have created a new board {board}" : "Vytvořili jste nástěnku {board}",
|
||||
"{user} has created a new board {board}" : "{user} vytvořil(a) novou nástěnku {board}",
|
||||
"You have deleted the board {board}" : "Smazali jste nástěnku {board}",
|
||||
"{user} has deleted the board {board}" : "{user} smazal(a) nástěnku {board}",
|
||||
"You have restored the board {board}" : "Obnovili jste nástěnku {board}",
|
||||
"{user} has restored the board {board}" : "{user} obnovil(a) nástěnku {board}",
|
||||
"You have shared the board {board} with {acl}" : "Nasdíleli jste nástěnku {board} s {acl}",
|
||||
"You have removed {acl} from the board {board}" : "Odebrali jste {acl} z nástěnky {board}",
|
||||
"{user} has removed {acl} from the board {board}" : "{user} odebral(a) {acl} z nástěnky {board}",
|
||||
"You have renamed the board {before} to {board}" : "Přejmenovali jste nástěnku {before} na {board}",
|
||||
"{user} has renamed the board {before} to {board}" : "{user} přejmenoval(a) desku {before} na {board}",
|
||||
"You have archived the board {board}" : "Zaarchivovali jste nástěnku {board}",
|
||||
"{user} has archived the board {before}" : "{user} zaarchivoval(a) nástěnku {before}",
|
||||
"You have unarchived the board {board}" : "Zrušili jste archivaci nástěnky {board}",
|
||||
"{user} has unarchived the board {before}" : "{user} zrušil(a) archivaci nástěnky {before}",
|
||||
"You have created a new stack {stack} on board {board}" : "Vytvořili jste novou hromádku {stack} na desce {board}",
|
||||
"{user} has created a new stack {stack} on board {board}" : "{user} vytvořil(a) nový balíček {stack} na desce {board}",
|
||||
"You have renamed stack {before} to {stack} on board {board}" : "Přejmenovali jste hromádku {before} na {stack} na desce {board}",
|
||||
"{user} has renamed stack {before} to {stack} on board {board}" : "{user} přejmenoval(a) hromádku {before} na {stack} na desce {board}",
|
||||
"You have deleted stack {stack} on board {board}" : "Smazali jste balíček {stack} na desce {board}",
|
||||
"{user} has deleted stack {stack} on board {board}" : "{user} smazal(a) balíček {stack} na desce {board}",
|
||||
"You have created card {card} in stack {stack} on board {board}" : "Vytvořili jste kartu {card} v balíčku {stack} na kartě {board}",
|
||||
"{user} has created card {card} in stack {stack} on board {board}" : "{user} vytvořil(a) kartu {card} na hromádce {stack} na desce {board}",
|
||||
"You have deleted card {card} in stack {stack} on board {board}" : "Smazali jste kartu {card} na hromádce {stack} na desce {board}",
|
||||
"{user} has deleted card {card} in stack {stack} on board {board}" : "{user} smazal(a) kartu {card} v balíčku {board} na desce {board}",
|
||||
"You have renamed the card {before} to {card}" : "Přejmenovali jste kartu {before} na {card}",
|
||||
"{user} has renamed the card {before} to {card}" : "{user} přejmenoval(a) {before} na {card}",
|
||||
"You have added a description to card {card} in stack {stack} on board {board}" : "Přidali jste popis ke kartě {card} ve sloupci {stack} na tabuli {board}",
|
||||
"{user} has added a description to card {card} in stack {stack} on board {board}" : "{user} přidal(a) popis ke kartě {card} ve sloupci {stack} na tabuli {board}",
|
||||
"You have updated the description of card {card} in stack {stack} on board {board}" : "Aktualizovali jste popis karty {card} ve sloupci {stack} na tabuli {board}",
|
||||
"{user} has updated the description of the card {card} in stack {stack} on board {board}" : "{user} aktualizoval(a) popis karty {card} ve sloupci {stack} na tabuli {board}",
|
||||
"You have archived card {card} in stack {stack} on board {board}" : "Zaarchivovali kartu {card} ve sloupci {stack} na tabuli {board}",
|
||||
"{user} has archived card {card} in stack {stack} on board {board}" : "{user} zaarchivoval(a) kartu {card} ve sloupci {stack} na tabuli {board}",
|
||||
"You have unarchived card {card} in stack {stack} on board {board}" : "Zrušili jste archivaci karty {card} ve sloupci {stack} na tabuli {board}",
|
||||
"{user} has unarchived card {card} in stack {stack} on board {board}" : "{user} zrušil(a) archivaci karty {card} ve sloupci {stack} na tabuli {board}",
|
||||
"You have removed the due date of card {card}" : "Odebrali jste termín u karty {card}",
|
||||
"{user} has removed the due date of card {card}" : "{user} odebral(a) termín u karty {card}",
|
||||
"You have set the due date of card {card} to {after}" : "Nastavili jste termín u karty {card} na {after}",
|
||||
"{user} has set the due date of card {card} to {after}" : "{user} nastavil(a) termín u karty {card} na {after}",
|
||||
"You have updated the due date of card {card} to {after}" : "Změnili jste termín u karty {card} na {after}",
|
||||
"{user} has updated the due date of card {card} to {after}" : "{user} aktualizoval(a) termín u karty {card} na {after}",
|
||||
"You have added the tag {label} to card {card} in stack {stack} on board {board}" : "Přidali jste štítek {label} kartě {card} ve sloupci {stack} na tabuli {board}",
|
||||
"{user} has added the tag {label} to card {card} in stack {stack} on board {board}" : "{user} přidal(a) štítek {label} ke kartě {card} ve sloupci {stack} na tabuli {board}",
|
||||
"You have removed the tag {label} from card {card} in stack {stack} on board {board}" : "Odebrali jste štítek {label} z karty {card} ve sloupci {stack} na tabuli {board}",
|
||||
"{user} has removed the tag {label} from card {card} in stack {stack} on board {board}" : "{user} odebral(a) štítek {label} z karty {card} ve sloupci {stack} na tabuli {board}",
|
||||
"You have assigned {assigneduser} to card {card} on board {board}" : "Přiřadili jste {assigneduser} ke kartě {card} na tabuli {board}",
|
||||
"{user} has assigned {assigneduser} to card {card} on board {board}" : "{user} přiřadil(a) {assigneduser} ke kartě {card} na tabuli {board}",
|
||||
"You have unassigned {assigneduser} from card {card} on board {board}" : "Zrušili jste přiřazení {assigneduser} u karty {card} na tabuli {board}",
|
||||
"{user} has unassigned {assigneduser} from card {card} on board {board}" : "{user} zrušil(a) přiřazení {assigneduser} z karty {card} na tabuli {board}",
|
||||
"You have moved the card {card} from stack {stackBefore} to {stack}" : "Přesunuli jste kartu {card} ze sloupce {stackBefore} do {stack}",
|
||||
"{user} has moved the card {card} from stack {stackBefore} to {stack}" : "{user} přesunul(a) kartu {card} ze sloupce {stackBefore} do {stack}",
|
||||
"You have added a description to card {card} in stack {stack} on board {board}" : "Přidali jste popis ke kartě {card} v hromádce {stack} na desce {board}",
|
||||
"{user} has added a description to card {card} in stack {stack} on board {board}" : "{user} přidal(a) popis ke kartě {card} v hromádce {stack} na desce {board}",
|
||||
"You have updated the description of card {card} in stack {stack} on board {board}" : "Aktualizovali jste popis karty {card} v hromádce {stack} na desce {board}",
|
||||
"{user} has updated the description of the card {card} in stack {stack} on board {board}" : "{user} aktualizoval(a) popis karty {card} na hromádce {stack} na nástěnce {board}",
|
||||
"You have archived card {card} in stack {stack} on board {board}" : "Zaarchivovali kartu {card} v balíčku {stack} na desce {board}",
|
||||
"{user} has archived card {card} in stack {stack} on board {board}" : "{user} zaarchivoval(a) kartu {card} v balíčku {stack} na desce {board}",
|
||||
"You have unarchived card {card} in stack {stack} on board {board}" : "Zrušili jste archivaci karty {card} na hromádce {stack} na desce {board}",
|
||||
"{user} has unarchived card {card} in stack {stack} on board {board}" : "{user} zrušil(a) archivaci karty {card} na hromádce {stack} na desce {board}",
|
||||
"You have removed the due date of card {card}" : "Odebrali jste termín karty {card}",
|
||||
"{user} has removed the due date of card {card}" : "{user} odebral(a) termín karty {card}",
|
||||
"You have set the due date of card {card} to {after}" : "Nastavili jste termín na kartě {card} na {after}",
|
||||
"{user} has set the due date of card {card} to {after}" : "{user} nastavil(a) termín karty {card} na {after}",
|
||||
"You have updated the due date of card {card} to {after}" : "Změnili jste termín na kartě {card} na {after}",
|
||||
"{user} has updated the due date of card {card} to {after}" : "{user} aktualizoval termín karty {card} na {after}",
|
||||
"You have added the tag {label} to card {card} in stack {stack} on board {board}" : "Přidali jste štítek {label} kartě {card} v hromádce {stack} na nástěnce {board}",
|
||||
"{user} has added the tag {label} to card {card} in stack {stack} on board {board}" : "{user} přidal(a) štítek {label} ke kartě {card} v hromádce {stack} na nástěnce {board}",
|
||||
"You have removed the tag {label} from card {card} in stack {stack} on board {board}" : "Odebrali jste štítek {label} z karty {card} v hromádce {stack} na desce {board}",
|
||||
"{user} has removed the tag {label} from card {card} in stack {stack} on board {board}" : "{user} odebral(a) štítek {label} z karty {card} na hromádce {stack} na desce {board}",
|
||||
"You have assigned {assigneduser} to card {card} on board {board}" : "Přiřadili jste {assigneduser} ke kartě {card} na desce {board}",
|
||||
"{user} has assigned {assigneduser} to card {card} on board {board}" : "{user} přiřadil(a) {assigneduser} ke kartě {card} na desce {board}",
|
||||
"You have unassigned {assigneduser} from card {card} on board {board}" : "Zrušili jste přiřazení {assigneduser} u karty {card} na nástěnce {board}",
|
||||
"{user} has unassigned {assigneduser} from card {card} on board {board}" : "{user} zrušil(a) přiřazení {assigneduser} z karty {card} na desce {board}",
|
||||
"You have moved the card {card} from stack {stackBefore} to {stack}" : "Přesunuli jste kartu {card} z balíčku {stackBefore} do {stack}",
|
||||
"{user} has moved the card {card} from stack {stackBefore} to {stack}" : "{user} přesunul(a) kartu {card} z balíčku {stackBefore} do {stack}",
|
||||
"You have added the attachment {attachment} to card {card}" : "Přidali jste přílohu {attachment} ke kartě {card}",
|
||||
"{user} has added the attachment {attachment} to card {card}" : "{user} přidal(a) přílohu {attachment} ke kartě {card}",
|
||||
"You have updated the attachment {attachment} on card {card}" : "Aktualizovali jste přílohu {attachment} u karty {card}",
|
||||
"{user} has updated the attachment {attachment} on card {card}" : "{user} aktualizoval(a) přílohu {attachment} u karty {card}",
|
||||
"You have updated the attachment {attachment} on card {card}" : "Aktualizovali jste přílohu {attachment} na kartě {card}",
|
||||
"{user} has updated the attachment {attachment} to card {card}" : "{user} aktualizoval(a) přílohu {attachment} ke kartě {card}",
|
||||
"You have deleted the attachment {attachment} from card {card}" : "Smazali jste přílohu {attachment} u karty {card}",
|
||||
"{user} has deleted the attachment {attachment} from card {card}" : "{user} smazal(a) přílohu {attachment} u karty {card}",
|
||||
"{user} has deleted the attachment {attachment} to card {card}" : "{user} smazal(a) přílohu {attachment} u karty {card}",
|
||||
"You have restored the attachment {attachment} to card {card}" : "Obnovili jste přílohu {attachment} ke kartě {card}",
|
||||
"{user} has restored the attachment {attachment} to card {card}" : "{user} obnovil(a) přílohu {attachment} ke kartě {card}",
|
||||
"You have commented on card {card}" : "Přidali jste komentář na kartě {card}",
|
||||
"{user} has commented on card {card}" : "{user} přidal(a) komentář na kartě {card}",
|
||||
"A <strong>card description</strong> inside the Deck app has been changed" : "<strong>Popis karty</strong> v aplikaci Deck byl změněn",
|
||||
"Deck" : "Deck",
|
||||
"Changes in the <strong>Deck app</strong>" : "Změny v <strong>aplikaci Deck</strong>",
|
||||
"A <strong>comment</strong> was created on a card" : "Na kartě byl vytvořen <strong>komentář</strong>",
|
||||
"A <strong>card description</strong> inside the Deck app has been changed" : "<strong>Popis mapy</strong> v Deck-aplikace byl změněn",
|
||||
"Deck" : "Balík",
|
||||
"Changes in the <strong>Deck app</strong>" : "Změny v <strong>Deck aplikace</strong>",
|
||||
"Personal" : "Osobní",
|
||||
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Kartu „%s“ na „%s“ vám přiřadil(a) %s.",
|
||||
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} vám přiřadil(a) kartu „%s“ na „%s“.",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "U karty „%s“ z tabule „%s“ nastalo plánované datum dokončení.",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "U karty \"%s\" z tabule \"%s\" nastalo plánované datum dokončení.",
|
||||
"%s has mentioned you in a comment on \"%s\"." : "%s vás zmínil(a) v komentáři k „%s“.",
|
||||
"{user} has mentioned you in a comment on \"%s\"." : "{user} vás zmínil(a) v komentáři v „%s“.",
|
||||
"The board \"%s\" has been shared with you by %s." : "Uživatel %s vám nasdílel(a) tabuli „%s“.",
|
||||
"{user} has shared the board %s with you." : "{user} vám nasdílel(a) tabuli %s.",
|
||||
"No data was provided to create an attachment." : "Nebyla poskytnuta žádná data pro vytvoření přílohy.",
|
||||
"The board \"%s\" has been shared with you by %s." : "Tabule \"%s\" s vámi byla nasdílena uživatelem %s.",
|
||||
"{user} has shared the board %s with you." : "{user} s vámi nasdílel tabuli %s.",
|
||||
"No data was provided to create an attachment." : "Žádná data k vytvoření přílohy.",
|
||||
"Finished" : "Dokončeno",
|
||||
"To review" : "K revizi",
|
||||
"Action needed" : "Nutná akce",
|
||||
@@ -98,7 +95,7 @@ OC.L10N.register(
|
||||
"Example Task 2" : "Druhý úkol pro ukázku",
|
||||
"Example Task 1" : "První úkol pro ukázku",
|
||||
"The file was uploaded" : "Soubor byl nahrán",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Velikost nahrávaného souboru překračuje limit nastavení direktivou upload_max_filesize v php.ini",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Nahrávaný soubor přesahuje nastavení upload_max_filesize v php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Nahrávaný soubor přesáhl svou velikostí hodnotu direktivy MAX_FILE_SIZE, určenou v HTML formuláři",
|
||||
"The file was only partially uploaded" : "Soubor byl nahrán pouze z části",
|
||||
"No file was uploaded" : "Nebyl nahrán žádný soubor",
|
||||
@@ -107,21 +104,20 @@ OC.L10N.register(
|
||||
"A PHP extension stopped the file upload" : "PHP rozšíření zastavilo nahrávání souboru.",
|
||||
"No file uploaded or file size exceeds maximum of %s" : "Nebyl nahrán žádný soubor nebo jeho velikost přesáhla %s",
|
||||
"A kanban style project and personal management tool for Nextcloud" : "Nástroj pro projektový a osobní řízení ve stylu Kanban.",
|
||||
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck je nástroj cílený na osobní nebo projektové plánování týmů v Kanban stylu, vestavěný v Nextcloud.\n\n\n- 📥 Zadávejte a uspořádávejte své úkoly do karet\n- 📄 Zapisujte si dodatečné poznámky \n- 🔖 Přiřazujte štítky pro ještě lepší organizaci\n- 👥 Sdílejte se svým týmem, přáteli nebo rodinou\n- 🚀 Dostaňte svůj projekt pod kontrolu",
|
||||
"Select the board to link to a project" : "Vyberte tabuli kterou propojit s projektem",
|
||||
"Select board" : "Vybrat tabuli",
|
||||
"Add a new stack" : "Přidat nový sloupec",
|
||||
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Karty jsou nástroj zacílený na osobní nebo projektové plánování týmů v Kanban stylu, vestavěný v Nextcloud.\n\n\n- 📥 Zadávejte a uspořádávejte své úkoly do karet\n- 📄 Zapisujte si dodatečné poznámky \n- 🔖 Přiřazujte štítky pro ještě lepší organizaci\n- 👥 Sdílejte se svým týmem, přáteli nebo rodinou\n- 🚀 Dostaňte svůj projekt pod kontrolu",
|
||||
"Select board" : "Vybrat nástěnku",
|
||||
"Add a new stack" : "Přidat nový zásobník",
|
||||
"Submit" : "Odeslat",
|
||||
"Show archived cards" : "Zobrazit archivované karty",
|
||||
"Hide archived cards" : "Skrýt archivované karty",
|
||||
"Toggle compact mode" : "Vyp/zap. kompaktní režim",
|
||||
"Show board details" : "Zobrazit podrobnosti o tabuli",
|
||||
"All Boards" : "Všechny tabule",
|
||||
"Archived boards" : "Archivované tabule",
|
||||
"Share board" : "Sdílet tabuli",
|
||||
"Show board details" : "Zobrazit podrobnosti o desce",
|
||||
"All Boards" : "Všechny desky",
|
||||
"Archived boards" : "Archivované desky",
|
||||
"Share board" : "Sdílet nástěnku",
|
||||
"Archived cards" : "Archivované karty",
|
||||
"Actions" : "Akce",
|
||||
"Drop your files here to upload it to the card" : "Soubory ke kartě připojíte přetažením sem",
|
||||
"Drop your files here to upload it to the card" : "Přetáhněte soubor sem, pokud jej chcete připojit ke kartě.",
|
||||
"Assign card to me" : "Přiřadit kartu mě",
|
||||
"Unassign card from me" : "Zrušit přiřazení karty mě",
|
||||
"Archive card" : "Archivovat kartu",
|
||||
@@ -131,7 +127,7 @@ OC.L10N.register(
|
||||
"Add card" : "Přidat kartu",
|
||||
"Close" : "Zavřít",
|
||||
"Sharing" : "Sdílení",
|
||||
"Tags" : "Štítky",
|
||||
"Tags" : "Značky",
|
||||
"Deleted items" : "Smazané položky",
|
||||
"Timeline" : "Časová osa",
|
||||
"Select users or groups to share with" : "Vyberte uživatele nebo skupiny pro sdílení",
|
||||
@@ -142,48 +138,48 @@ OC.L10N.register(
|
||||
"Edit" : "Upravit",
|
||||
"Share" : "Sdílet",
|
||||
"Manage" : "Spravovat",
|
||||
"Discard share" : "Zahodit sdílení",
|
||||
"Sharing has been disabled for your account." : "Sdílení bylo pro váš účet zakázáno.",
|
||||
"Discard share" : "Zrušit sdílení",
|
||||
"Sharing has been disabled for your account." : "Sdílení bylo zakázáno pro váš konto.",
|
||||
"Update tag" : "Aktualizovat štítek",
|
||||
"Edit tag" : "Upravit štítek",
|
||||
"Delete tag" : "Smazat štítek",
|
||||
"Create" : "Vytvořit",
|
||||
"Create a new tag" : "Vytvořit nový štítek",
|
||||
"Deleted stacks" : "Smazané sloupce",
|
||||
"Deleted stacks" : "Smazané zásobníky",
|
||||
"Deleted cards" : "Smazané karty",
|
||||
"Status" : "Stav",
|
||||
"No archived boards to display" : "Žádné archivované tabule k zobrazení",
|
||||
"No shared boards to display" : "Žádné sdílené tabule k zobrazení",
|
||||
"No archived boards to display" : "Žádné archivované nástěnky k zobrazení",
|
||||
"No shared boards to display" : "Žádné sdílené nástěnky k zobrazení",
|
||||
"Title" : "Název",
|
||||
"Members" : "Členové",
|
||||
"More actions" : "Více akcí",
|
||||
"Edit board" : "Upravit tabuli",
|
||||
"Archive board" : "Archivovat tabuli",
|
||||
"Unarchive board" : "Vrátit tabuli zpět z archivu",
|
||||
"Delete board" : "Smazat tabuli",
|
||||
"Update board" : "Aktualizovat tabuli",
|
||||
"Reset board" : "Vrátit tabuli do předchozího stavu",
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Vrátit smazání tabule – jinak bude nadobro odstraněna během příštího spuštění naplánovaných úloh.",
|
||||
"Create new board" : "Vytvořit novou tabuli",
|
||||
"New board title" : "Název nové tabule",
|
||||
"Create board" : "Vytvořit tabuli",
|
||||
"Edit board" : "Upravit desku",
|
||||
"Archive board" : "Archivovaná deska",
|
||||
"Unarchive board" : "Odarchivovat desku",
|
||||
"Delete board" : "Smazat desku",
|
||||
"Update board" : "Aktualizovat desku",
|
||||
"Reset board" : "Resetovat nástěnku",
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Vrátit smazání tabule - Tabule bude jinak trvale odstraněna během příštího běhu cronjobu.",
|
||||
"Create new board" : "Vytvořit novou desku",
|
||||
"New board title" : "Nadpis nové desky",
|
||||
"Create board" : "Vytvořit nástěnku",
|
||||
"Select an attachment" : "Vybrat přílohu",
|
||||
"Cancel upload" : "Zrušit nahrávání",
|
||||
"by" : "od",
|
||||
"Undo file deletion - Otherwise the file will be deleted during the next cronjob run." : "Vrátit smazání souboru – jinak bude trvale smazán při dalším běhu naplánované úlohy.",
|
||||
"Undo file deletion - Otherwise the file will be deleted during the next cronjob run." : "Vrátit smazání souboru – v opačném případě bude soubor trvale smazán při dalším běhu cronjobu.",
|
||||
"Undo file deletion" : "Vzít zpět smazání souboru",
|
||||
"Insert the file into the description" : "Vložte soubor do popisu",
|
||||
"Insert the file into the description" : "Vložte soubor do popisku.",
|
||||
"Delete attachment" : "Smazat přílohu",
|
||||
"Modified:" : "Změněno:",
|
||||
"Modified:" : "Upraveno:",
|
||||
"Created:" : "Vytvořeno:",
|
||||
"Choose a tag" : "Zvolte štítek",
|
||||
"Choose a tag" : "Vyberte štítek",
|
||||
"Add a tag" : "Přidat štítek",
|
||||
"Select tags" : "Výběr štítků",
|
||||
"Assign users" : "Přiřadit uživatele",
|
||||
"Choose a user to assign" : "Zvolte uživatele kterého přiřadit",
|
||||
"Assign this card to a user" : "Přiřadit tuto kartu uživateli",
|
||||
"Assign this card to a user" : "Přiřadit kartu uživateli",
|
||||
"Due date" : "Termín",
|
||||
"Click to set" : "Klikn. vyberte",
|
||||
"Click to set" : "Klikněte pro výběr",
|
||||
"Remove due date" : "Odstranit termín",
|
||||
"Description" : "Popis",
|
||||
"Attachments" : "Přílohy",
|
||||
@@ -192,12 +188,12 @@ OC.L10N.register(
|
||||
"Insert attachment" : "Vložit přílohu",
|
||||
"Formatting help" : "Nápověda k formátování",
|
||||
"Upload attachment" : "Nahrát přílohu",
|
||||
"Add a card description…" : "Přidejte popis karty…",
|
||||
"Shared boards" : "Sdílené tabule",
|
||||
"Move board to archive" : "Přesunout tabuli do archivu",
|
||||
"Create a new board" : "Vytvořit novou tabuli",
|
||||
"Add a card description…" : "Přidat popis karty…",
|
||||
"Shared boards" : "Sdílené desky",
|
||||
"Move board to archive" : "Přesunout desku do archivu",
|
||||
"Create a new board" : "Vytvořit novou desku",
|
||||
"Settings" : "Nastavení",
|
||||
"Limit deck to groups" : "Omezit Deck na skupiny",
|
||||
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Omezení nastavené pro Deck brání uživatelům, kteří nejsou součástí těchto skupin, ve vytváření vlastních tabulí. Nicméně i tak ale pořád budou moci pracovat na tabulích, které jsou jim nasdíleny."
|
||||
"Limit deck to groups" : "Omezte Deck na skupiny",
|
||||
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Omezení Decků brání uživatelům, kteří nejsou součástí těchto skupin, při vytváření vlastních desek. Uživatelé mohou stále pracovat na deskách, které jsou s nimi sdíleny."
|
||||
},
|
||||
"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;");
|
||||
|
||||
202
l10n/cs.json
202
l10n/cs.json
@@ -2,89 +2,86 @@
|
||||
"Please provide a content for your comment." : "Zadejte obsah svého komentáře.",
|
||||
"Posting the comment failed." : "Odeslání komentáře se nezdařilo.",
|
||||
"The comment has been deleted" : "Komentář byl smazán",
|
||||
"The associated stack is deleted as well, it will be restored as well." : "Související sloupec je také smazaný a bude také obnoven.",
|
||||
"Restore associated stack" : "Obnovit související sloupec",
|
||||
"The associated stack is deleted as well, it will be restored as well." : "Související stack je také smazaný a bude také obnoven.",
|
||||
"Restore associated stack" : "Obnovit související stack",
|
||||
"Remove user from card" : "Odebrat uživatele z karty",
|
||||
"Hours" : "Hodiny",
|
||||
"Minutes" : "Minuty",
|
||||
"Link to a board" : "Propojit s tabulí",
|
||||
"Maximum file size of {size} exceeded" : "Překročena nejvyšší umožněná velikost souboru {size}",
|
||||
"Maximum file size of {size} exceeded" : "U souboru {size} překročena nejvyšší umožněná velikost",
|
||||
"File already exists" : "Soubor už existuje",
|
||||
"You have created a new board {board}" : "Vytvořili jste tabuli {board}",
|
||||
"{user} has created a new board {board}" : "{user} vytvořil(a) novou tabuli {board}",
|
||||
"You have deleted the board {board}" : "Smazali jste tabuli {board}",
|
||||
"{user} has deleted the board {board}" : "{user} smazal(a) tabuli {board}",
|
||||
"You have restored the board {board}" : "Obnovili jste tabuli {board}",
|
||||
"{user} has restored the board {board}" : "{user} obnovil(a) tabuli {board}",
|
||||
"You have shared the board {board} with {acl}" : "Nasdíleli jste tabuli {board} s {acl}",
|
||||
"{user} has shared the board {board} with {acl}" : "{user} nasdílel(a) tabuli {board} s {acl}",
|
||||
"You have removed {acl} from the board {board}" : "Odebrali jste {acl} z tabule {board}",
|
||||
"{user} has removed {acl} from the board {board}" : "{user} odebral(a) {acl} z tabule {board}",
|
||||
"You have renamed the board {before} to {board}" : "Přejmenovali jste tabuli {before} na {board}",
|
||||
"{user} has renamed the board {before} to {board}" : "{user} přejmenoval(a) tabuli {before} na {board}",
|
||||
"You have archived the board {board}" : "Zaarchivovali jste tabuli {board}",
|
||||
"{user} has archived the board {before}" : "{user} zaarchivoval(a) tabuli {before}",
|
||||
"You have unarchived the board {board}" : "Vrátili jste zpět z archivace tabuli {board}",
|
||||
"{user} has unarchived the board {before}" : "{user} vrátil(a) tabuli {before} zpět z archivace",
|
||||
"You have created a new stack {stack} on board {board}" : "Vytvořili jste nový sloupec {stack} na tabuli {board}",
|
||||
"{user} has created a new stack {stack} on board {board}" : "{user} vytvořil(a) nový sloupec {stack} na tabuli {board}",
|
||||
"You have renamed stack {before} to {stack} on board {board}" : "Přejmenovali jste sloupec {before} na {stack} na tabuli {board}",
|
||||
"{user} has renamed stack {before} to {stack} on board {board}" : "{user} přejmenoval(a) sloupec {before} na {stack} na tabuli {board}",
|
||||
"You have deleted stack {stack} on board {board}" : "Smazali jste sloupec {stack} na tabuli {board}",
|
||||
"{user} has deleted stack {stack} on board {board}" : "{user} smazal(a) sloupec {stack} na tabuli {board}",
|
||||
"You have created card {card} in stack {stack} on board {board}" : "Vytvořili jste kartu {card} ve sloupci {stack} na tabuli {board}",
|
||||
"{user} has created card {card} in stack {stack} on board {board}" : "{user} vytvořil(a) kartu {card} ve sloupci {stack} na tabuli {board}",
|
||||
"You have deleted card {card} in stack {stack} on board {board}" : "Smazali jste kartu {card} ve sloupci {stack} na tabuli {board}",
|
||||
"{user} has deleted card {card} in stack {stack} on board {board}" : "{user} smazal(a) kartu {card} ve sloupci {board} na tabuli {board}",
|
||||
"You have created a new board {board}" : "Vytvořili jste nástěnku {board}",
|
||||
"{user} has created a new board {board}" : "{user} vytvořil(a) novou nástěnku {board}",
|
||||
"You have deleted the board {board}" : "Smazali jste nástěnku {board}",
|
||||
"{user} has deleted the board {board}" : "{user} smazal(a) nástěnku {board}",
|
||||
"You have restored the board {board}" : "Obnovili jste nástěnku {board}",
|
||||
"{user} has restored the board {board}" : "{user} obnovil(a) nástěnku {board}",
|
||||
"You have shared the board {board} with {acl}" : "Nasdíleli jste nástěnku {board} s {acl}",
|
||||
"You have removed {acl} from the board {board}" : "Odebrali jste {acl} z nástěnky {board}",
|
||||
"{user} has removed {acl} from the board {board}" : "{user} odebral(a) {acl} z nástěnky {board}",
|
||||
"You have renamed the board {before} to {board}" : "Přejmenovali jste nástěnku {before} na {board}",
|
||||
"{user} has renamed the board {before} to {board}" : "{user} přejmenoval(a) desku {before} na {board}",
|
||||
"You have archived the board {board}" : "Zaarchivovali jste nástěnku {board}",
|
||||
"{user} has archived the board {before}" : "{user} zaarchivoval(a) nástěnku {before}",
|
||||
"You have unarchived the board {board}" : "Zrušili jste archivaci nástěnky {board}",
|
||||
"{user} has unarchived the board {before}" : "{user} zrušil(a) archivaci nástěnky {before}",
|
||||
"You have created a new stack {stack} on board {board}" : "Vytvořili jste novou hromádku {stack} na desce {board}",
|
||||
"{user} has created a new stack {stack} on board {board}" : "{user} vytvořil(a) nový balíček {stack} na desce {board}",
|
||||
"You have renamed stack {before} to {stack} on board {board}" : "Přejmenovali jste hromádku {before} na {stack} na desce {board}",
|
||||
"{user} has renamed stack {before} to {stack} on board {board}" : "{user} přejmenoval(a) hromádku {before} na {stack} na desce {board}",
|
||||
"You have deleted stack {stack} on board {board}" : "Smazali jste balíček {stack} na desce {board}",
|
||||
"{user} has deleted stack {stack} on board {board}" : "{user} smazal(a) balíček {stack} na desce {board}",
|
||||
"You have created card {card} in stack {stack} on board {board}" : "Vytvořili jste kartu {card} v balíčku {stack} na kartě {board}",
|
||||
"{user} has created card {card} in stack {stack} on board {board}" : "{user} vytvořil(a) kartu {card} na hromádce {stack} na desce {board}",
|
||||
"You have deleted card {card} in stack {stack} on board {board}" : "Smazali jste kartu {card} na hromádce {stack} na desce {board}",
|
||||
"{user} has deleted card {card} in stack {stack} on board {board}" : "{user} smazal(a) kartu {card} v balíčku {board} na desce {board}",
|
||||
"You have renamed the card {before} to {card}" : "Přejmenovali jste kartu {before} na {card}",
|
||||
"{user} has renamed the card {before} to {card}" : "{user} přejmenoval(a) {before} na {card}",
|
||||
"You have added a description to card {card} in stack {stack} on board {board}" : "Přidali jste popis ke kartě {card} ve sloupci {stack} na tabuli {board}",
|
||||
"{user} has added a description to card {card} in stack {stack} on board {board}" : "{user} přidal(a) popis ke kartě {card} ve sloupci {stack} na tabuli {board}",
|
||||
"You have updated the description of card {card} in stack {stack} on board {board}" : "Aktualizovali jste popis karty {card} ve sloupci {stack} na tabuli {board}",
|
||||
"{user} has updated the description of the card {card} in stack {stack} on board {board}" : "{user} aktualizoval(a) popis karty {card} ve sloupci {stack} na tabuli {board}",
|
||||
"You have archived card {card} in stack {stack} on board {board}" : "Zaarchivovali kartu {card} ve sloupci {stack} na tabuli {board}",
|
||||
"{user} has archived card {card} in stack {stack} on board {board}" : "{user} zaarchivoval(a) kartu {card} ve sloupci {stack} na tabuli {board}",
|
||||
"You have unarchived card {card} in stack {stack} on board {board}" : "Zrušili jste archivaci karty {card} ve sloupci {stack} na tabuli {board}",
|
||||
"{user} has unarchived card {card} in stack {stack} on board {board}" : "{user} zrušil(a) archivaci karty {card} ve sloupci {stack} na tabuli {board}",
|
||||
"You have removed the due date of card {card}" : "Odebrali jste termín u karty {card}",
|
||||
"{user} has removed the due date of card {card}" : "{user} odebral(a) termín u karty {card}",
|
||||
"You have set the due date of card {card} to {after}" : "Nastavili jste termín u karty {card} na {after}",
|
||||
"{user} has set the due date of card {card} to {after}" : "{user} nastavil(a) termín u karty {card} na {after}",
|
||||
"You have updated the due date of card {card} to {after}" : "Změnili jste termín u karty {card} na {after}",
|
||||
"{user} has updated the due date of card {card} to {after}" : "{user} aktualizoval(a) termín u karty {card} na {after}",
|
||||
"You have added the tag {label} to card {card} in stack {stack} on board {board}" : "Přidali jste štítek {label} kartě {card} ve sloupci {stack} na tabuli {board}",
|
||||
"{user} has added the tag {label} to card {card} in stack {stack} on board {board}" : "{user} přidal(a) štítek {label} ke kartě {card} ve sloupci {stack} na tabuli {board}",
|
||||
"You have removed the tag {label} from card {card} in stack {stack} on board {board}" : "Odebrali jste štítek {label} z karty {card} ve sloupci {stack} na tabuli {board}",
|
||||
"{user} has removed the tag {label} from card {card} in stack {stack} on board {board}" : "{user} odebral(a) štítek {label} z karty {card} ve sloupci {stack} na tabuli {board}",
|
||||
"You have assigned {assigneduser} to card {card} on board {board}" : "Přiřadili jste {assigneduser} ke kartě {card} na tabuli {board}",
|
||||
"{user} has assigned {assigneduser} to card {card} on board {board}" : "{user} přiřadil(a) {assigneduser} ke kartě {card} na tabuli {board}",
|
||||
"You have unassigned {assigneduser} from card {card} on board {board}" : "Zrušili jste přiřazení {assigneduser} u karty {card} na tabuli {board}",
|
||||
"{user} has unassigned {assigneduser} from card {card} on board {board}" : "{user} zrušil(a) přiřazení {assigneduser} z karty {card} na tabuli {board}",
|
||||
"You have moved the card {card} from stack {stackBefore} to {stack}" : "Přesunuli jste kartu {card} ze sloupce {stackBefore} do {stack}",
|
||||
"{user} has moved the card {card} from stack {stackBefore} to {stack}" : "{user} přesunul(a) kartu {card} ze sloupce {stackBefore} do {stack}",
|
||||
"You have added a description to card {card} in stack {stack} on board {board}" : "Přidali jste popis ke kartě {card} v hromádce {stack} na desce {board}",
|
||||
"{user} has added a description to card {card} in stack {stack} on board {board}" : "{user} přidal(a) popis ke kartě {card} v hromádce {stack} na desce {board}",
|
||||
"You have updated the description of card {card} in stack {stack} on board {board}" : "Aktualizovali jste popis karty {card} v hromádce {stack} na desce {board}",
|
||||
"{user} has updated the description of the card {card} in stack {stack} on board {board}" : "{user} aktualizoval(a) popis karty {card} na hromádce {stack} na nástěnce {board}",
|
||||
"You have archived card {card} in stack {stack} on board {board}" : "Zaarchivovali kartu {card} v balíčku {stack} na desce {board}",
|
||||
"{user} has archived card {card} in stack {stack} on board {board}" : "{user} zaarchivoval(a) kartu {card} v balíčku {stack} na desce {board}",
|
||||
"You have unarchived card {card} in stack {stack} on board {board}" : "Zrušili jste archivaci karty {card} na hromádce {stack} na desce {board}",
|
||||
"{user} has unarchived card {card} in stack {stack} on board {board}" : "{user} zrušil(a) archivaci karty {card} na hromádce {stack} na desce {board}",
|
||||
"You have removed the due date of card {card}" : "Odebrali jste termín karty {card}",
|
||||
"{user} has removed the due date of card {card}" : "{user} odebral(a) termín karty {card}",
|
||||
"You have set the due date of card {card} to {after}" : "Nastavili jste termín na kartě {card} na {after}",
|
||||
"{user} has set the due date of card {card} to {after}" : "{user} nastavil(a) termín karty {card} na {after}",
|
||||
"You have updated the due date of card {card} to {after}" : "Změnili jste termín na kartě {card} na {after}",
|
||||
"{user} has updated the due date of card {card} to {after}" : "{user} aktualizoval termín karty {card} na {after}",
|
||||
"You have added the tag {label} to card {card} in stack {stack} on board {board}" : "Přidali jste štítek {label} kartě {card} v hromádce {stack} na nástěnce {board}",
|
||||
"{user} has added the tag {label} to card {card} in stack {stack} on board {board}" : "{user} přidal(a) štítek {label} ke kartě {card} v hromádce {stack} na nástěnce {board}",
|
||||
"You have removed the tag {label} from card {card} in stack {stack} on board {board}" : "Odebrali jste štítek {label} z karty {card} v hromádce {stack} na desce {board}",
|
||||
"{user} has removed the tag {label} from card {card} in stack {stack} on board {board}" : "{user} odebral(a) štítek {label} z karty {card} na hromádce {stack} na desce {board}",
|
||||
"You have assigned {assigneduser} to card {card} on board {board}" : "Přiřadili jste {assigneduser} ke kartě {card} na desce {board}",
|
||||
"{user} has assigned {assigneduser} to card {card} on board {board}" : "{user} přiřadil(a) {assigneduser} ke kartě {card} na desce {board}",
|
||||
"You have unassigned {assigneduser} from card {card} on board {board}" : "Zrušili jste přiřazení {assigneduser} u karty {card} na nástěnce {board}",
|
||||
"{user} has unassigned {assigneduser} from card {card} on board {board}" : "{user} zrušil(a) přiřazení {assigneduser} z karty {card} na desce {board}",
|
||||
"You have moved the card {card} from stack {stackBefore} to {stack}" : "Přesunuli jste kartu {card} z balíčku {stackBefore} do {stack}",
|
||||
"{user} has moved the card {card} from stack {stackBefore} to {stack}" : "{user} přesunul(a) kartu {card} z balíčku {stackBefore} do {stack}",
|
||||
"You have added the attachment {attachment} to card {card}" : "Přidali jste přílohu {attachment} ke kartě {card}",
|
||||
"{user} has added the attachment {attachment} to card {card}" : "{user} přidal(a) přílohu {attachment} ke kartě {card}",
|
||||
"You have updated the attachment {attachment} on card {card}" : "Aktualizovali jste přílohu {attachment} u karty {card}",
|
||||
"{user} has updated the attachment {attachment} on card {card}" : "{user} aktualizoval(a) přílohu {attachment} u karty {card}",
|
||||
"You have updated the attachment {attachment} on card {card}" : "Aktualizovali jste přílohu {attachment} na kartě {card}",
|
||||
"{user} has updated the attachment {attachment} to card {card}" : "{user} aktualizoval(a) přílohu {attachment} ke kartě {card}",
|
||||
"You have deleted the attachment {attachment} from card {card}" : "Smazali jste přílohu {attachment} u karty {card}",
|
||||
"{user} has deleted the attachment {attachment} from card {card}" : "{user} smazal(a) přílohu {attachment} u karty {card}",
|
||||
"{user} has deleted the attachment {attachment} to card {card}" : "{user} smazal(a) přílohu {attachment} u karty {card}",
|
||||
"You have restored the attachment {attachment} to card {card}" : "Obnovili jste přílohu {attachment} ke kartě {card}",
|
||||
"{user} has restored the attachment {attachment} to card {card}" : "{user} obnovil(a) přílohu {attachment} ke kartě {card}",
|
||||
"You have commented on card {card}" : "Přidali jste komentář na kartě {card}",
|
||||
"{user} has commented on card {card}" : "{user} přidal(a) komentář na kartě {card}",
|
||||
"A <strong>card description</strong> inside the Deck app has been changed" : "<strong>Popis karty</strong> v aplikaci Deck byl změněn",
|
||||
"Deck" : "Deck",
|
||||
"Changes in the <strong>Deck app</strong>" : "Změny v <strong>aplikaci Deck</strong>",
|
||||
"A <strong>comment</strong> was created on a card" : "Na kartě byl vytvořen <strong>komentář</strong>",
|
||||
"A <strong>card description</strong> inside the Deck app has been changed" : "<strong>Popis mapy</strong> v Deck-aplikace byl změněn",
|
||||
"Deck" : "Balík",
|
||||
"Changes in the <strong>Deck app</strong>" : "Změny v <strong>Deck aplikace</strong>",
|
||||
"Personal" : "Osobní",
|
||||
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Kartu „%s“ na „%s“ vám přiřadil(a) %s.",
|
||||
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} vám přiřadil(a) kartu „%s“ na „%s“.",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "U karty „%s“ z tabule „%s“ nastalo plánované datum dokončení.",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "U karty \"%s\" z tabule \"%s\" nastalo plánované datum dokončení.",
|
||||
"%s has mentioned you in a comment on \"%s\"." : "%s vás zmínil(a) v komentáři k „%s“.",
|
||||
"{user} has mentioned you in a comment on \"%s\"." : "{user} vás zmínil(a) v komentáři v „%s“.",
|
||||
"The board \"%s\" has been shared with you by %s." : "Uživatel %s vám nasdílel(a) tabuli „%s“.",
|
||||
"{user} has shared the board %s with you." : "{user} vám nasdílel(a) tabuli %s.",
|
||||
"No data was provided to create an attachment." : "Nebyla poskytnuta žádná data pro vytvoření přílohy.",
|
||||
"The board \"%s\" has been shared with you by %s." : "Tabule \"%s\" s vámi byla nasdílena uživatelem %s.",
|
||||
"{user} has shared the board %s with you." : "{user} s vámi nasdílel tabuli %s.",
|
||||
"No data was provided to create an attachment." : "Žádná data k vytvoření přílohy.",
|
||||
"Finished" : "Dokončeno",
|
||||
"To review" : "K revizi",
|
||||
"Action needed" : "Nutná akce",
|
||||
@@ -96,7 +93,7 @@
|
||||
"Example Task 2" : "Druhý úkol pro ukázku",
|
||||
"Example Task 1" : "První úkol pro ukázku",
|
||||
"The file was uploaded" : "Soubor byl nahrán",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Velikost nahrávaného souboru překračuje limit nastavení direktivou upload_max_filesize v php.ini",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Nahrávaný soubor přesahuje nastavení upload_max_filesize v php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Nahrávaný soubor přesáhl svou velikostí hodnotu direktivy MAX_FILE_SIZE, určenou v HTML formuláři",
|
||||
"The file was only partially uploaded" : "Soubor byl nahrán pouze z části",
|
||||
"No file was uploaded" : "Nebyl nahrán žádný soubor",
|
||||
@@ -105,21 +102,20 @@
|
||||
"A PHP extension stopped the file upload" : "PHP rozšíření zastavilo nahrávání souboru.",
|
||||
"No file uploaded or file size exceeds maximum of %s" : "Nebyl nahrán žádný soubor nebo jeho velikost přesáhla %s",
|
||||
"A kanban style project and personal management tool for Nextcloud" : "Nástroj pro projektový a osobní řízení ve stylu Kanban.",
|
||||
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck je nástroj cílený na osobní nebo projektové plánování týmů v Kanban stylu, vestavěný v Nextcloud.\n\n\n- 📥 Zadávejte a uspořádávejte své úkoly do karet\n- 📄 Zapisujte si dodatečné poznámky \n- 🔖 Přiřazujte štítky pro ještě lepší organizaci\n- 👥 Sdílejte se svým týmem, přáteli nebo rodinou\n- 🚀 Dostaňte svůj projekt pod kontrolu",
|
||||
"Select the board to link to a project" : "Vyberte tabuli kterou propojit s projektem",
|
||||
"Select board" : "Vybrat tabuli",
|
||||
"Add a new stack" : "Přidat nový sloupec",
|
||||
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Karty jsou nástroj zacílený na osobní nebo projektové plánování týmů v Kanban stylu, vestavěný v Nextcloud.\n\n\n- 📥 Zadávejte a uspořádávejte své úkoly do karet\n- 📄 Zapisujte si dodatečné poznámky \n- 🔖 Přiřazujte štítky pro ještě lepší organizaci\n- 👥 Sdílejte se svým týmem, přáteli nebo rodinou\n- 🚀 Dostaňte svůj projekt pod kontrolu",
|
||||
"Select board" : "Vybrat nástěnku",
|
||||
"Add a new stack" : "Přidat nový zásobník",
|
||||
"Submit" : "Odeslat",
|
||||
"Show archived cards" : "Zobrazit archivované karty",
|
||||
"Hide archived cards" : "Skrýt archivované karty",
|
||||
"Toggle compact mode" : "Vyp/zap. kompaktní režim",
|
||||
"Show board details" : "Zobrazit podrobnosti o tabuli",
|
||||
"All Boards" : "Všechny tabule",
|
||||
"Archived boards" : "Archivované tabule",
|
||||
"Share board" : "Sdílet tabuli",
|
||||
"Show board details" : "Zobrazit podrobnosti o desce",
|
||||
"All Boards" : "Všechny desky",
|
||||
"Archived boards" : "Archivované desky",
|
||||
"Share board" : "Sdílet nástěnku",
|
||||
"Archived cards" : "Archivované karty",
|
||||
"Actions" : "Akce",
|
||||
"Drop your files here to upload it to the card" : "Soubory ke kartě připojíte přetažením sem",
|
||||
"Drop your files here to upload it to the card" : "Přetáhněte soubor sem, pokud jej chcete připojit ke kartě.",
|
||||
"Assign card to me" : "Přiřadit kartu mě",
|
||||
"Unassign card from me" : "Zrušit přiřazení karty mě",
|
||||
"Archive card" : "Archivovat kartu",
|
||||
@@ -129,7 +125,7 @@
|
||||
"Add card" : "Přidat kartu",
|
||||
"Close" : "Zavřít",
|
||||
"Sharing" : "Sdílení",
|
||||
"Tags" : "Štítky",
|
||||
"Tags" : "Značky",
|
||||
"Deleted items" : "Smazané položky",
|
||||
"Timeline" : "Časová osa",
|
||||
"Select users or groups to share with" : "Vyberte uživatele nebo skupiny pro sdílení",
|
||||
@@ -140,48 +136,48 @@
|
||||
"Edit" : "Upravit",
|
||||
"Share" : "Sdílet",
|
||||
"Manage" : "Spravovat",
|
||||
"Discard share" : "Zahodit sdílení",
|
||||
"Sharing has been disabled for your account." : "Sdílení bylo pro váš účet zakázáno.",
|
||||
"Discard share" : "Zrušit sdílení",
|
||||
"Sharing has been disabled for your account." : "Sdílení bylo zakázáno pro váš konto.",
|
||||
"Update tag" : "Aktualizovat štítek",
|
||||
"Edit tag" : "Upravit štítek",
|
||||
"Delete tag" : "Smazat štítek",
|
||||
"Create" : "Vytvořit",
|
||||
"Create a new tag" : "Vytvořit nový štítek",
|
||||
"Deleted stacks" : "Smazané sloupce",
|
||||
"Deleted stacks" : "Smazané zásobníky",
|
||||
"Deleted cards" : "Smazané karty",
|
||||
"Status" : "Stav",
|
||||
"No archived boards to display" : "Žádné archivované tabule k zobrazení",
|
||||
"No shared boards to display" : "Žádné sdílené tabule k zobrazení",
|
||||
"No archived boards to display" : "Žádné archivované nástěnky k zobrazení",
|
||||
"No shared boards to display" : "Žádné sdílené nástěnky k zobrazení",
|
||||
"Title" : "Název",
|
||||
"Members" : "Členové",
|
||||
"More actions" : "Více akcí",
|
||||
"Edit board" : "Upravit tabuli",
|
||||
"Archive board" : "Archivovat tabuli",
|
||||
"Unarchive board" : "Vrátit tabuli zpět z archivu",
|
||||
"Delete board" : "Smazat tabuli",
|
||||
"Update board" : "Aktualizovat tabuli",
|
||||
"Reset board" : "Vrátit tabuli do předchozího stavu",
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Vrátit smazání tabule – jinak bude nadobro odstraněna během příštího spuštění naplánovaných úloh.",
|
||||
"Create new board" : "Vytvořit novou tabuli",
|
||||
"New board title" : "Název nové tabule",
|
||||
"Create board" : "Vytvořit tabuli",
|
||||
"Edit board" : "Upravit desku",
|
||||
"Archive board" : "Archivovaná deska",
|
||||
"Unarchive board" : "Odarchivovat desku",
|
||||
"Delete board" : "Smazat desku",
|
||||
"Update board" : "Aktualizovat desku",
|
||||
"Reset board" : "Resetovat nástěnku",
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Vrátit smazání tabule - Tabule bude jinak trvale odstraněna během příštího běhu cronjobu.",
|
||||
"Create new board" : "Vytvořit novou desku",
|
||||
"New board title" : "Nadpis nové desky",
|
||||
"Create board" : "Vytvořit nástěnku",
|
||||
"Select an attachment" : "Vybrat přílohu",
|
||||
"Cancel upload" : "Zrušit nahrávání",
|
||||
"by" : "od",
|
||||
"Undo file deletion - Otherwise the file will be deleted during the next cronjob run." : "Vrátit smazání souboru – jinak bude trvale smazán při dalším běhu naplánované úlohy.",
|
||||
"Undo file deletion - Otherwise the file will be deleted during the next cronjob run." : "Vrátit smazání souboru – v opačném případě bude soubor trvale smazán při dalším běhu cronjobu.",
|
||||
"Undo file deletion" : "Vzít zpět smazání souboru",
|
||||
"Insert the file into the description" : "Vložte soubor do popisu",
|
||||
"Insert the file into the description" : "Vložte soubor do popisku.",
|
||||
"Delete attachment" : "Smazat přílohu",
|
||||
"Modified:" : "Změněno:",
|
||||
"Modified:" : "Upraveno:",
|
||||
"Created:" : "Vytvořeno:",
|
||||
"Choose a tag" : "Zvolte štítek",
|
||||
"Choose a tag" : "Vyberte štítek",
|
||||
"Add a tag" : "Přidat štítek",
|
||||
"Select tags" : "Výběr štítků",
|
||||
"Assign users" : "Přiřadit uživatele",
|
||||
"Choose a user to assign" : "Zvolte uživatele kterého přiřadit",
|
||||
"Assign this card to a user" : "Přiřadit tuto kartu uživateli",
|
||||
"Assign this card to a user" : "Přiřadit kartu uživateli",
|
||||
"Due date" : "Termín",
|
||||
"Click to set" : "Klikn. vyberte",
|
||||
"Click to set" : "Klikněte pro výběr",
|
||||
"Remove due date" : "Odstranit termín",
|
||||
"Description" : "Popis",
|
||||
"Attachments" : "Přílohy",
|
||||
@@ -190,12 +186,12 @@
|
||||
"Insert attachment" : "Vložit přílohu",
|
||||
"Formatting help" : "Nápověda k formátování",
|
||||
"Upload attachment" : "Nahrát přílohu",
|
||||
"Add a card description…" : "Přidejte popis karty…",
|
||||
"Shared boards" : "Sdílené tabule",
|
||||
"Move board to archive" : "Přesunout tabuli do archivu",
|
||||
"Create a new board" : "Vytvořit novou tabuli",
|
||||
"Add a card description…" : "Přidat popis karty…",
|
||||
"Shared boards" : "Sdílené desky",
|
||||
"Move board to archive" : "Přesunout desku do archivu",
|
||||
"Create a new board" : "Vytvořit novou desku",
|
||||
"Settings" : "Nastavení",
|
||||
"Limit deck to groups" : "Omezit Deck na skupiny",
|
||||
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Omezení nastavené pro Deck brání uživatelům, kteří nejsou součástí těchto skupin, ve vytváření vlastních tabulí. Nicméně i tak ale pořád budou moci pracovat na tabulích, které jsou jim nasdíleny."
|
||||
"Limit deck to groups" : "Omezte Deck na skupiny",
|
||||
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Omezení Decků brání uživatelům, kteří nejsou součástí těchto skupin, při vytváření vlastních desek. Uživatelé mohou stále pracovat na deskách, které jsou s nimi sdíleny."
|
||||
},"pluralForm" :"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;"
|
||||
}
|
||||
@@ -1,27 +0,0 @@
|
||||
OC.L10N.register(
|
||||
"deck",
|
||||
{
|
||||
"Personal" : "Personol",
|
||||
"Done" : "Done",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Mae'r ffeil lwythwyd i fyny'n fwy na chyfarwyddeb MAX_FILE_SIZE bennwyd yn y ffurflen HTML",
|
||||
"No file was uploaded" : "Ni lwythwyd ffeil i fyny",
|
||||
"Missing a temporary folder" : "Plygell dros dro yn eisiau",
|
||||
"Actions" : "Gweithredoedd",
|
||||
"Close" : "Cau",
|
||||
"Tags" : "Tagiau",
|
||||
"Group" : "Grŵp",
|
||||
"Loading" : "Llwytho",
|
||||
"Edit" : "Golygu",
|
||||
"Share" : "Rhannu",
|
||||
"Create" : "Creu",
|
||||
"Title" : "Teitl",
|
||||
"Cancel upload" : "Diddymu llwytho i fyny",
|
||||
"by" : "gan",
|
||||
"Modified:" : "Addaswyd:",
|
||||
"Created:" : "Crewyd:",
|
||||
"Description" : "Disgrifiad",
|
||||
"Saved" : "Wedi'u cadw",
|
||||
"Upload attachment" : "Llwytho atodiad",
|
||||
"Settings" : "Gosodiadau"
|
||||
},
|
||||
"nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;");
|
||||
@@ -1,25 +0,0 @@
|
||||
{ "translations": {
|
||||
"Personal" : "Personol",
|
||||
"Done" : "Done",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Mae'r ffeil lwythwyd i fyny'n fwy na chyfarwyddeb MAX_FILE_SIZE bennwyd yn y ffurflen HTML",
|
||||
"No file was uploaded" : "Ni lwythwyd ffeil i fyny",
|
||||
"Missing a temporary folder" : "Plygell dros dro yn eisiau",
|
||||
"Actions" : "Gweithredoedd",
|
||||
"Close" : "Cau",
|
||||
"Tags" : "Tagiau",
|
||||
"Group" : "Grŵp",
|
||||
"Loading" : "Llwytho",
|
||||
"Edit" : "Golygu",
|
||||
"Share" : "Rhannu",
|
||||
"Create" : "Creu",
|
||||
"Title" : "Teitl",
|
||||
"Cancel upload" : "Diddymu llwytho i fyny",
|
||||
"by" : "gan",
|
||||
"Modified:" : "Addaswyd:",
|
||||
"Created:" : "Crewyd:",
|
||||
"Description" : "Disgrifiad",
|
||||
"Saved" : "Wedi'u cadw",
|
||||
"Upload attachment" : "Llwytho atodiad",
|
||||
"Settings" : "Gosodiadau"
|
||||
},"pluralForm" :"nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;"
|
||||
}
|
||||
16
l10n/da.js
16
l10n/da.js
@@ -4,9 +4,7 @@ OC.L10N.register(
|
||||
"Remove user from card" : "Fjern bruger fra kort",
|
||||
"Hours" : "Timer",
|
||||
"Minutes" : "Minutter",
|
||||
"File already exists" : "Fil findes allerede",
|
||||
"Deck" : "Deck",
|
||||
"Personal" : "Personlig",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "Kortet \"%s\" på \"%s\" har nået sin udløbsdato.",
|
||||
"The board \"%s\" has been shared with you by %s." : "Brættet \"%s\" er blevet delt med dig af %s.",
|
||||
"{user} has shared the board %s with you." : "{user} har delt brættet %s med dig.",
|
||||
@@ -14,11 +12,6 @@ OC.L10N.register(
|
||||
"To review" : "Gennemse",
|
||||
"Action needed" : "Handling påkrævet",
|
||||
"Later" : "Senere",
|
||||
"Done" : "Færdig",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Den uploadede fil overstiger upload_max_filesize direktivet i php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Den uploadede fil overstiger MAX_FILE_SIZE indstilingen, som specificeret i HTML formularen",
|
||||
"No file was uploaded" : "Ingen fil uploadet",
|
||||
"Missing a temporary folder" : "Manglende midlertidig mappe.",
|
||||
"A kanban style project and personal management tool for Nextcloud" : "Et Kanban-inspireret projekt- og styringsværktøj til Nextcloud",
|
||||
"Add a new stack" : "Tilføj en ny stak",
|
||||
"Submit" : "Tilføj",
|
||||
@@ -26,17 +19,12 @@ OC.L10N.register(
|
||||
"Hide archived cards" : "Skjul arkiverede kort",
|
||||
"All Boards" : "Alle lister",
|
||||
"Archived boards" : "Arkiverede lister",
|
||||
"Actions" : "Handlinger",
|
||||
"Archive card" : "Arkivér kort",
|
||||
"Delete card" : "Slet kort",
|
||||
"Enter a card title" : "Angiv titel på kort",
|
||||
"Add card" : "Tilføj kort",
|
||||
"Close" : "Luk",
|
||||
"Sharing" : "Deling",
|
||||
"Tags" : "Mærkat",
|
||||
"Select users or groups to share with" : "Vælg brugere eller grupper og dele med",
|
||||
"Group" : "Gruppe",
|
||||
"Circle" : "Cirkel",
|
||||
"No matching user or group found." : "Ingen bruger eller gruppe fundet",
|
||||
"Loading" : "Loader",
|
||||
"Edit" : "Redigér",
|
||||
@@ -56,8 +44,6 @@ OC.L10N.register(
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Fortryd sletning af board - Ellers vil boardet blive slettet ved næste cronjob kørsel.",
|
||||
"Create new board" : "Opret ny liste",
|
||||
"New board title" : "Ny titel på liste",
|
||||
"Create board" : "Opret liste",
|
||||
"Cancel upload" : "Annuller upload ",
|
||||
"by" : "af",
|
||||
"Modified:" : "Ændret:",
|
||||
"Created:" : "Oprettet:",
|
||||
@@ -71,11 +57,9 @@ OC.L10N.register(
|
||||
"Click to set" : "Klik for at sætte",
|
||||
"Remove due date" : "Fjern forfaldsdato",
|
||||
"Description" : "Beskrivelse",
|
||||
"Attachments" : "Vedhæftede filer",
|
||||
"Saved" : "Gemt",
|
||||
"Unsaved changes" : "Ikke gemte ændringer",
|
||||
"Formatting help" : "Hjælp til formatering",
|
||||
"Upload attachment" : "Upload vedhæftning",
|
||||
"Add a card description…" : "Tilføj en beskrivelse...",
|
||||
"Shared boards" : "Delte lister",
|
||||
"Move board to archive" : "Flyt liste til arkiv",
|
||||
|
||||
16
l10n/da.json
16
l10n/da.json
@@ -2,9 +2,7 @@
|
||||
"Remove user from card" : "Fjern bruger fra kort",
|
||||
"Hours" : "Timer",
|
||||
"Minutes" : "Minutter",
|
||||
"File already exists" : "Fil findes allerede",
|
||||
"Deck" : "Deck",
|
||||
"Personal" : "Personlig",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "Kortet \"%s\" på \"%s\" har nået sin udløbsdato.",
|
||||
"The board \"%s\" has been shared with you by %s." : "Brættet \"%s\" er blevet delt med dig af %s.",
|
||||
"{user} has shared the board %s with you." : "{user} har delt brættet %s med dig.",
|
||||
@@ -12,11 +10,6 @@
|
||||
"To review" : "Gennemse",
|
||||
"Action needed" : "Handling påkrævet",
|
||||
"Later" : "Senere",
|
||||
"Done" : "Færdig",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Den uploadede fil overstiger upload_max_filesize direktivet i php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Den uploadede fil overstiger MAX_FILE_SIZE indstilingen, som specificeret i HTML formularen",
|
||||
"No file was uploaded" : "Ingen fil uploadet",
|
||||
"Missing a temporary folder" : "Manglende midlertidig mappe.",
|
||||
"A kanban style project and personal management tool for Nextcloud" : "Et Kanban-inspireret projekt- og styringsværktøj til Nextcloud",
|
||||
"Add a new stack" : "Tilføj en ny stak",
|
||||
"Submit" : "Tilføj",
|
||||
@@ -24,17 +17,12 @@
|
||||
"Hide archived cards" : "Skjul arkiverede kort",
|
||||
"All Boards" : "Alle lister",
|
||||
"Archived boards" : "Arkiverede lister",
|
||||
"Actions" : "Handlinger",
|
||||
"Archive card" : "Arkivér kort",
|
||||
"Delete card" : "Slet kort",
|
||||
"Enter a card title" : "Angiv titel på kort",
|
||||
"Add card" : "Tilføj kort",
|
||||
"Close" : "Luk",
|
||||
"Sharing" : "Deling",
|
||||
"Tags" : "Mærkat",
|
||||
"Select users or groups to share with" : "Vælg brugere eller grupper og dele med",
|
||||
"Group" : "Gruppe",
|
||||
"Circle" : "Cirkel",
|
||||
"No matching user or group found." : "Ingen bruger eller gruppe fundet",
|
||||
"Loading" : "Loader",
|
||||
"Edit" : "Redigér",
|
||||
@@ -54,8 +42,6 @@
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Fortryd sletning af board - Ellers vil boardet blive slettet ved næste cronjob kørsel.",
|
||||
"Create new board" : "Opret ny liste",
|
||||
"New board title" : "Ny titel på liste",
|
||||
"Create board" : "Opret liste",
|
||||
"Cancel upload" : "Annuller upload ",
|
||||
"by" : "af",
|
||||
"Modified:" : "Ændret:",
|
||||
"Created:" : "Oprettet:",
|
||||
@@ -69,11 +55,9 @@
|
||||
"Click to set" : "Klik for at sætte",
|
||||
"Remove due date" : "Fjern forfaldsdato",
|
||||
"Description" : "Beskrivelse",
|
||||
"Attachments" : "Vedhæftede filer",
|
||||
"Saved" : "Gemt",
|
||||
"Unsaved changes" : "Ikke gemte ændringer",
|
||||
"Formatting help" : "Hjælp til formatering",
|
||||
"Upload attachment" : "Upload vedhæftning",
|
||||
"Add a card description…" : "Tilføj en beskrivelse...",
|
||||
"Shared boards" : "Delte lister",
|
||||
"Move board to archive" : "Flyt liste til arkiv",
|
||||
|
||||
10
l10n/de.js
10
l10n/de.js
@@ -67,9 +67,9 @@ OC.L10N.register(
|
||||
"You have added the attachment {attachment} to card {card}" : "Du hast den Anhang {attachment} zur Karte {card} hinzugefügt",
|
||||
"{user} has added the attachment {attachment} to card {card}" : "{user} hat den Anhang {attachment} zur Karte {card} hinzugefügt",
|
||||
"You have updated the attachment {attachment} on card {card}" : "Du hast den Anhang {attachment} der Karte {card} aktualisiert",
|
||||
"{user} has updated the attachment {attachment} on card {card}" : "{user} hat den Anhang {attachment} der Karte {card} aktualisiert",
|
||||
"{user} has updated the attachment {attachment} to card {card}" : "{user} hat den Anhang {attachment} der Karte {card} aktualisiert",
|
||||
"You have deleted the attachment {attachment} from card {card}" : "Du hast den Anhang {attachment} von der Karte {card} entfernt",
|
||||
"{user} has deleted the attachment {attachment} from card {card}" : "{user} hat den Anhang {attachment} von Karte {card} entfernt",
|
||||
"{user} has deleted the attachment {attachment} to card {card}" : "{user} hat den Anhang {attachment} von Karte {card} entfernt",
|
||||
"You have restored the attachment {attachment} to card {card}" : "Du hast den Anhang {attachment} der Karte {card} wiederhergestellt",
|
||||
"{user} has restored the attachment {attachment} to card {card}" : "{user} hat den Anhang {attachment} der Karte {card} wiederhergestellt",
|
||||
"You have commented on card {card}" : "Du hast die Karte {card} kommentiert",
|
||||
@@ -99,14 +99,14 @@ OC.L10N.register(
|
||||
"Example Task 1" : "Beispielaufgabe 1",
|
||||
"The file was uploaded" : "Die Datei wurde hochgeladen",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Die hochgeladene Datei überschreitet die upload_max_filesize-Vorgabe in php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Die Datei ist größer als die MAX_FILE_SIZE-Vorgabe, die im HTML-Formular angegeben ist.",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Die Datei ist größer, als die MAX_FILE_SIZE-Vorgabe, die im HTML-Formular angegeben ist.",
|
||||
"The file was only partially uploaded" : "Die Datei konnte nur teilweise hochgeladen werden",
|
||||
"No file was uploaded" : "Es wurde keine Datei hochgeladen",
|
||||
"Missing a temporary folder" : "Kein temporärer Ordner vorhanden",
|
||||
"Could not write file to disk" : "Die Datei konnte nicht auf die Festplatte geschrieben werden",
|
||||
"A PHP extension stopped the file upload" : "Eine PHP-Erweiterung hat das Hochladen der Datei gestoppt",
|
||||
"No file uploaded or file size exceeds maximum of %s" : "Keine Datei hochgeladen oder die Dateigröße überschreitet %s",
|
||||
"A kanban style project and personal management tool for Nextcloud" : "Ein Kanban-Werkzeug für Nextcloud",
|
||||
"A kanban style project and personal management tool for Nextcloud" : "Ein Kanban Werkzeug für Nextcloud",
|
||||
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck ist ein Organisationstool im Kanban-Stil für die persönliche Planung und Projektorganisation von Teams, die in Nextcloud integriert sind.\n\n\n- 📥 Füge Deine Aufgaben zu den Karten hinzu und ordne diese\n- 📄 Zusätzliche Hinweise in der Abschrift notieren\n- 🔖 Vergabe von Labels für noch bessere Organisation\n- 👥 Teile mit Deinem Team, Freunden oder der Familie\n- 📎 Füge Dateien hinzu und verwende diese in Deinen Markdown-Beschreibungen\n- 💬 Diskutiere mit Deinem Team mit Kommentaren\n- ⚡ Behalte Überblick über Änderungen mit dem Aktivitäten-Stream\n- 🚀 Organisiere Dein Projekt",
|
||||
"Select the board to link to a project" : "Wähle ein Board aus, um dieses mit einem Projekt zu verknüpfen",
|
||||
"Select board" : "Board auswählen",
|
||||
@@ -170,7 +170,7 @@ OC.L10N.register(
|
||||
"Select an attachment" : "Anhang auswählen",
|
||||
"Cancel upload" : "Hochladen abbrechen",
|
||||
"by" : "von",
|
||||
"Undo file deletion - Otherwise the file will be deleted during the next cronjob run." : "Dateilöschung rückgängig machen — andernfalls wird die Datei beim nächsten Cron-Job-Lauf gelöscht.",
|
||||
"Undo file deletion - Otherwise the file will be deleted during the next cronjob run." : "Dateilöschung rückgängig machen - andernfalls wird die Datei beim nächsten Cron-Job-Lauf gelöscht.",
|
||||
"Undo file deletion" : "Dateilöschung rückgängig machen",
|
||||
"Insert the file into the description" : "Füge die Datei in die Beschreibung ein",
|
||||
"Delete attachment" : "Anhang löschen",
|
||||
|
||||
10
l10n/de.json
10
l10n/de.json
@@ -65,9 +65,9 @@
|
||||
"You have added the attachment {attachment} to card {card}" : "Du hast den Anhang {attachment} zur Karte {card} hinzugefügt",
|
||||
"{user} has added the attachment {attachment} to card {card}" : "{user} hat den Anhang {attachment} zur Karte {card} hinzugefügt",
|
||||
"You have updated the attachment {attachment} on card {card}" : "Du hast den Anhang {attachment} der Karte {card} aktualisiert",
|
||||
"{user} has updated the attachment {attachment} on card {card}" : "{user} hat den Anhang {attachment} der Karte {card} aktualisiert",
|
||||
"{user} has updated the attachment {attachment} to card {card}" : "{user} hat den Anhang {attachment} der Karte {card} aktualisiert",
|
||||
"You have deleted the attachment {attachment} from card {card}" : "Du hast den Anhang {attachment} von der Karte {card} entfernt",
|
||||
"{user} has deleted the attachment {attachment} from card {card}" : "{user} hat den Anhang {attachment} von Karte {card} entfernt",
|
||||
"{user} has deleted the attachment {attachment} to card {card}" : "{user} hat den Anhang {attachment} von Karte {card} entfernt",
|
||||
"You have restored the attachment {attachment} to card {card}" : "Du hast den Anhang {attachment} der Karte {card} wiederhergestellt",
|
||||
"{user} has restored the attachment {attachment} to card {card}" : "{user} hat den Anhang {attachment} der Karte {card} wiederhergestellt",
|
||||
"You have commented on card {card}" : "Du hast die Karte {card} kommentiert",
|
||||
@@ -97,14 +97,14 @@
|
||||
"Example Task 1" : "Beispielaufgabe 1",
|
||||
"The file was uploaded" : "Die Datei wurde hochgeladen",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Die hochgeladene Datei überschreitet die upload_max_filesize-Vorgabe in php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Die Datei ist größer als die MAX_FILE_SIZE-Vorgabe, die im HTML-Formular angegeben ist.",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Die Datei ist größer, als die MAX_FILE_SIZE-Vorgabe, die im HTML-Formular angegeben ist.",
|
||||
"The file was only partially uploaded" : "Die Datei konnte nur teilweise hochgeladen werden",
|
||||
"No file was uploaded" : "Es wurde keine Datei hochgeladen",
|
||||
"Missing a temporary folder" : "Kein temporärer Ordner vorhanden",
|
||||
"Could not write file to disk" : "Die Datei konnte nicht auf die Festplatte geschrieben werden",
|
||||
"A PHP extension stopped the file upload" : "Eine PHP-Erweiterung hat das Hochladen der Datei gestoppt",
|
||||
"No file uploaded or file size exceeds maximum of %s" : "Keine Datei hochgeladen oder die Dateigröße überschreitet %s",
|
||||
"A kanban style project and personal management tool for Nextcloud" : "Ein Kanban-Werkzeug für Nextcloud",
|
||||
"A kanban style project and personal management tool for Nextcloud" : "Ein Kanban Werkzeug für Nextcloud",
|
||||
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck ist ein Organisationstool im Kanban-Stil für die persönliche Planung und Projektorganisation von Teams, die in Nextcloud integriert sind.\n\n\n- 📥 Füge Deine Aufgaben zu den Karten hinzu und ordne diese\n- 📄 Zusätzliche Hinweise in der Abschrift notieren\n- 🔖 Vergabe von Labels für noch bessere Organisation\n- 👥 Teile mit Deinem Team, Freunden oder der Familie\n- 📎 Füge Dateien hinzu und verwende diese in Deinen Markdown-Beschreibungen\n- 💬 Diskutiere mit Deinem Team mit Kommentaren\n- ⚡ Behalte Überblick über Änderungen mit dem Aktivitäten-Stream\n- 🚀 Organisiere Dein Projekt",
|
||||
"Select the board to link to a project" : "Wähle ein Board aus, um dieses mit einem Projekt zu verknüpfen",
|
||||
"Select board" : "Board auswählen",
|
||||
@@ -168,7 +168,7 @@
|
||||
"Select an attachment" : "Anhang auswählen",
|
||||
"Cancel upload" : "Hochladen abbrechen",
|
||||
"by" : "von",
|
||||
"Undo file deletion - Otherwise the file will be deleted during the next cronjob run." : "Dateilöschung rückgängig machen — andernfalls wird die Datei beim nächsten Cron-Job-Lauf gelöscht.",
|
||||
"Undo file deletion - Otherwise the file will be deleted during the next cronjob run." : "Dateilöschung rückgängig machen - andernfalls wird die Datei beim nächsten Cron-Job-Lauf gelöscht.",
|
||||
"Undo file deletion" : "Dateilöschung rückgängig machen",
|
||||
"Insert the file into the description" : "Füge die Datei in die Beschreibung ein",
|
||||
"Delete attachment" : "Anhang löschen",
|
||||
|
||||
@@ -2,7 +2,7 @@ OC.L10N.register(
|
||||
"deck",
|
||||
{
|
||||
"Please provide a content for your comment." : "Bitte geben Sie einen Inhalt für Ihren Kommentar an.",
|
||||
"Posting the comment failed." : "Senden des Kommentars fehlgeschlagen.",
|
||||
"Posting the comment failed." : "Absenden des Kommentars ist fehlgeschlagen.",
|
||||
"The comment has been deleted" : "Der Kommentar wurde gelöscht",
|
||||
"The associated stack is deleted as well, it will be restored as well." : "Der dazugehörige Stapel wurde auch gelöscht, er wird ebenfalls wiederhergestellt.",
|
||||
"Restore associated stack" : "Dazugehörigen Stapel wiederherstellen",
|
||||
@@ -67,9 +67,9 @@ OC.L10N.register(
|
||||
"You have added the attachment {attachment} to card {card}" : "Sie haben den Anhang {attachment} zur Karte {card} hinzugefügt",
|
||||
"{user} has added the attachment {attachment} to card {card}" : "{user} hat den Anhang {attachment} zur Karte {card} hinzugefügt",
|
||||
"You have updated the attachment {attachment} on card {card}" : "Sie haben den Anhang {attachment} der Karte {card} aktualisiert",
|
||||
"{user} has updated the attachment {attachment} on card {card}" : "{user} hat den Anhang {attachment} der Karte {card} aktualisiert",
|
||||
"{user} has updated the attachment {attachment} to card {card}" : "{user} hat den Anhang {attachment} der Karte {card} aktualisiert",
|
||||
"You have deleted the attachment {attachment} from card {card}" : "Sie haben den Anhang {attachment} von der Karte {card} entfernt",
|
||||
"{user} has deleted the attachment {attachment} from card {card}" : "{user} hat den Anhang {attachment} von Karte {card} entfernt",
|
||||
"{user} has deleted the attachment {attachment} to card {card}" : "{user} hat den Anhang {attachment} von Karte {card} entfernt",
|
||||
"You have restored the attachment {attachment} to card {card}" : "Sie haben den Anhang {attachment} der Karte {card} wiederhergestellt",
|
||||
"{user} has restored the attachment {attachment} to card {card}" : "{user} hat den Anhang {attachment} der Karte {card} wiederhergestellt",
|
||||
"You have commented on card {card}" : "Sie haben die Karte {card} kommentiert",
|
||||
@@ -94,9 +94,9 @@ OC.L10N.register(
|
||||
"To do" : "Offen",
|
||||
"Doing" : "In Arbeit",
|
||||
"Done" : "Erledigt",
|
||||
"Example Task 3" : "Beispielsaufgabe 3",
|
||||
"Example Task 2" : "Beispielsaufgabe 2",
|
||||
"Example Task 1" : "Beispielsaufgabe 1",
|
||||
"Example Task 3" : "Beispielaufgabe 3",
|
||||
"Example Task 2" : "Beispielaufgabe 2",
|
||||
"Example Task 1" : "Beispielaufgabe 1",
|
||||
"The file was uploaded" : "Die Datei wurde hochgeladen",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Die hochgeladene Datei überschreitet die upload_max_filesize-Vorgabe in php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Die Datei ist größer, als die MAX_FILE_SIZE-Vorgabe, die im HTML-Formular angegeben ist.",
|
||||
@@ -106,7 +106,7 @@ OC.L10N.register(
|
||||
"Could not write file to disk" : "Die Datei konnte nicht auf die Festplatte geschrieben werden",
|
||||
"A PHP extension stopped the file upload" : "Eine PHP-Erweiterung hat das Hochladen der Datei gestoppt",
|
||||
"No file uploaded or file size exceeds maximum of %s" : "Keine Datei hochgeladen oder die Dateigröße überschreitet %s",
|
||||
"A kanban style project and personal management tool for Nextcloud" : "Ein Kanban-Werkzeug für Nextcloud",
|
||||
"A kanban style project and personal management tool for Nextcloud" : "Ein Kanban Werkzeug für Nextcloud",
|
||||
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck ist ein Organisationstool im Kanban-Stil für die persönliche Planung und Projektorganisation von Teams, die in Nextcloud integriert sind.\n\n\n- 📥 Fügen Sie Ihre Aufgaben zu den Karten hinzu und ordnen Sie diese\n- 📄 Zusätzliche Hinweise in der Abschrift notieren\n- 🔖 Zuweisung von Labels für noch bessere Organisation\n- 👥 Teilen Sie mit Ihrem Team, Ihren Freunden oder Ihrer Familie\n- 📎 Fügen Sie Dateien hinzu und verwende diese in Ihren Markdown-Beschreibungen\n- 💬 Diskutieren Sie mit Ihrem Team mit Kommentaren\n- ⚡ Behalten Sie Überblick über Änderungen mit dem Aktivitäten-Stream\n- 🚀 Organisieren Sie Ihr Projekt",
|
||||
"Select the board to link to a project" : "Wählen Sie ein Board aus, um dieses mit einem Projekt zu verknüpfen",
|
||||
"Select board" : "Board auswählen",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{ "translations": {
|
||||
"Please provide a content for your comment." : "Bitte geben Sie einen Inhalt für Ihren Kommentar an.",
|
||||
"Posting the comment failed." : "Senden des Kommentars fehlgeschlagen.",
|
||||
"Posting the comment failed." : "Absenden des Kommentars ist fehlgeschlagen.",
|
||||
"The comment has been deleted" : "Der Kommentar wurde gelöscht",
|
||||
"The associated stack is deleted as well, it will be restored as well." : "Der dazugehörige Stapel wurde auch gelöscht, er wird ebenfalls wiederhergestellt.",
|
||||
"Restore associated stack" : "Dazugehörigen Stapel wiederherstellen",
|
||||
@@ -65,9 +65,9 @@
|
||||
"You have added the attachment {attachment} to card {card}" : "Sie haben den Anhang {attachment} zur Karte {card} hinzugefügt",
|
||||
"{user} has added the attachment {attachment} to card {card}" : "{user} hat den Anhang {attachment} zur Karte {card} hinzugefügt",
|
||||
"You have updated the attachment {attachment} on card {card}" : "Sie haben den Anhang {attachment} der Karte {card} aktualisiert",
|
||||
"{user} has updated the attachment {attachment} on card {card}" : "{user} hat den Anhang {attachment} der Karte {card} aktualisiert",
|
||||
"{user} has updated the attachment {attachment} to card {card}" : "{user} hat den Anhang {attachment} der Karte {card} aktualisiert",
|
||||
"You have deleted the attachment {attachment} from card {card}" : "Sie haben den Anhang {attachment} von der Karte {card} entfernt",
|
||||
"{user} has deleted the attachment {attachment} from card {card}" : "{user} hat den Anhang {attachment} von Karte {card} entfernt",
|
||||
"{user} has deleted the attachment {attachment} to card {card}" : "{user} hat den Anhang {attachment} von Karte {card} entfernt",
|
||||
"You have restored the attachment {attachment} to card {card}" : "Sie haben den Anhang {attachment} der Karte {card} wiederhergestellt",
|
||||
"{user} has restored the attachment {attachment} to card {card}" : "{user} hat den Anhang {attachment} der Karte {card} wiederhergestellt",
|
||||
"You have commented on card {card}" : "Sie haben die Karte {card} kommentiert",
|
||||
@@ -92,9 +92,9 @@
|
||||
"To do" : "Offen",
|
||||
"Doing" : "In Arbeit",
|
||||
"Done" : "Erledigt",
|
||||
"Example Task 3" : "Beispielsaufgabe 3",
|
||||
"Example Task 2" : "Beispielsaufgabe 2",
|
||||
"Example Task 1" : "Beispielsaufgabe 1",
|
||||
"Example Task 3" : "Beispielaufgabe 3",
|
||||
"Example Task 2" : "Beispielaufgabe 2",
|
||||
"Example Task 1" : "Beispielaufgabe 1",
|
||||
"The file was uploaded" : "Die Datei wurde hochgeladen",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Die hochgeladene Datei überschreitet die upload_max_filesize-Vorgabe in php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Die Datei ist größer, als die MAX_FILE_SIZE-Vorgabe, die im HTML-Formular angegeben ist.",
|
||||
@@ -104,7 +104,7 @@
|
||||
"Could not write file to disk" : "Die Datei konnte nicht auf die Festplatte geschrieben werden",
|
||||
"A PHP extension stopped the file upload" : "Eine PHP-Erweiterung hat das Hochladen der Datei gestoppt",
|
||||
"No file uploaded or file size exceeds maximum of %s" : "Keine Datei hochgeladen oder die Dateigröße überschreitet %s",
|
||||
"A kanban style project and personal management tool for Nextcloud" : "Ein Kanban-Werkzeug für Nextcloud",
|
||||
"A kanban style project and personal management tool for Nextcloud" : "Ein Kanban Werkzeug für Nextcloud",
|
||||
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck ist ein Organisationstool im Kanban-Stil für die persönliche Planung und Projektorganisation von Teams, die in Nextcloud integriert sind.\n\n\n- 📥 Fügen Sie Ihre Aufgaben zu den Karten hinzu und ordnen Sie diese\n- 📄 Zusätzliche Hinweise in der Abschrift notieren\n- 🔖 Zuweisung von Labels für noch bessere Organisation\n- 👥 Teilen Sie mit Ihrem Team, Ihren Freunden oder Ihrer Familie\n- 📎 Fügen Sie Dateien hinzu und verwende diese in Ihren Markdown-Beschreibungen\n- 💬 Diskutieren Sie mit Ihrem Team mit Kommentaren\n- ⚡ Behalten Sie Überblick über Änderungen mit dem Aktivitäten-Stream\n- 🚀 Organisieren Sie Ihr Projekt",
|
||||
"Select the board to link to a project" : "Wählen Sie ein Board aus, um dieses mit einem Projekt zu verknüpfen",
|
||||
"Select board" : "Board auswählen",
|
||||
|
||||
48
l10n/el.js
48
l10n/el.js
@@ -1,58 +1,22 @@
|
||||
OC.L10N.register(
|
||||
"deck",
|
||||
{
|
||||
"Please provide a content for your comment." : "Παρακαλώ παρέχετε περιεχόμενο για το σχόλιο σας.",
|
||||
"Posting the comment failed." : "Η δημοσίευση του σχολίου απέτυχε.",
|
||||
"The comment has been deleted" : "Το σχόλιο διαγράφηκε.",
|
||||
"The associated stack is deleted as well, it will be restored as well." : "Διαγραφή σχετικών ενεργειών και επαναφορά τους.",
|
||||
"Restore associated stack" : "Επαναφορά σχετικών ενεργειών.",
|
||||
"Remove user from card" : "Αφαίρεση χρήστη από την κάρτα",
|
||||
"Hours" : "Ώρες",
|
||||
"Minutes" : "Λεπτά",
|
||||
"Maximum file size of {size} exceeded" : "Υπέρβαση επιτρεπόμενου μεγέθους αρχείου {size}",
|
||||
"File already exists" : "Το αρχείο υπάρχει ήδη",
|
||||
"You have created a new board {board}" : "Δημιουργήσατε νέο πίνακα {board}",
|
||||
"{user} has created a new board {board}" : "Ο {user} δημιούργησε νέο πίνακα {board}",
|
||||
"You have deleted the board {board}" : "Έχετε διαγράψει τον πίνακα {board}",
|
||||
"{user} has deleted the board {board}" : "Ο {user} διέγραψε τον πίνακα {board}",
|
||||
"You have restored the board {board}" : "Εχετε επαναφέρει τον πίνακα {board}",
|
||||
"{user} has restored the board {board}" : "Ο {user} επανέφερε τον πίνακα {board}",
|
||||
"You have shared the board {board} with {acl}" : "Εχετε διαμοιράσει τον πίνακα {board} με {acl}",
|
||||
"{user} has shared the board {board} with {acl}" : "Ο {user} διαμοίρασε τον πίνακα {board} με {acl}",
|
||||
"You have removed {acl} from the board {board}" : "Αφαιρέθηκε η {acl} από τον πίνακα {board}",
|
||||
"{user} has removed {acl} from the board {board}" : "Ο {user} αφαίρεσε την {acl} από τον πίνακα {board}",
|
||||
"You have renamed the board {before} to {board}" : "Μετονομάσατε τον πίνακα {before} σε {board}",
|
||||
"{user} has renamed the board {before} to {board}" : "Ο {user} μετονόμασε τον πίνακα {before} σε {board}",
|
||||
"You have archived the board {board}" : "Αρχειοθετήσατε τον πίνακα {board}",
|
||||
"{user} has archived the board {before}" : "Ο {user} αρχειοθέτησε τον πίνακα {before}",
|
||||
"You have unarchived the board {board}" : "Επαναφέρατε τον πίνακα {board} από αρχείο",
|
||||
"{user} has unarchived the board {before}" : "Ο {user} επανέφερε τον πίνακα {before} από αρχείο",
|
||||
"Deck" : "Deck",
|
||||
"Personal" : "Προσωπικά",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "Η κάρτα \"1%s\" στο \"1%s\" έχει λήξει.",
|
||||
"Finished" : "Ολοκληρώθηκε",
|
||||
"To review" : "Προς επισκόπηση",
|
||||
"Action needed" : "Απαιτείται ενέργεια",
|
||||
"Later" : "Αργότερα",
|
||||
"Done" : "Ολοκληρώθηκε",
|
||||
"The file was uploaded" : "Το αρχείο μεταφορτώθηκε",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Το μεταφορτωμένο αρχείο υπερβαίνει την οδηγία upload_max_filesize στο php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Το μεταφορτωμένο αρχείο υπερβαίνει την οδηγία MAX_FILE_SIZE που καθορίστηκε στην φόρμα HTML.",
|
||||
"No file was uploaded" : "Δεν μεταφορτώθηκε κάποιο αρχείο",
|
||||
"Missing a temporary folder" : "Λείπει κάποιος προσωρινός φάκελος",
|
||||
"Could not write file to disk" : "Αδυναμία εγγραφής αρχείου στον δίσκο",
|
||||
"A PHP extension stopped the file upload" : "Ένα πρόσθετο PHP διέκοψε την μεταφόρτωση του αρχείου",
|
||||
"Add a new stack" : "Πρόσθεσε νέα συστοιχία",
|
||||
"Submit" : "Υποβολή",
|
||||
"Show archived cards" : "Εμφάνιση καρτελών που αρχειοθετήθηκαν",
|
||||
"Hide archived cards" : "Απόκρυψη καρτελών που αρχειοθετήθηκαν",
|
||||
"All Boards" : "Όλοι οι πίνακες",
|
||||
"Archived boards" : "Αρχειοθέτηση πινάκων ",
|
||||
"Share board" : "Διαμοιρασμός πίνακα",
|
||||
"Actions" : "Ενέργειες",
|
||||
"Assign card to me" : "Ορισμός κάρτας στον εαυτό μου",
|
||||
"Unassign card from me" : "Αποσύνδεση κάρτας από το εαυτό μου",
|
||||
"Archive card" : "Αρχειοθέτηση κάρτας",
|
||||
"Delete card" : "Διαγραφή κάρτας",
|
||||
"Enter a card title" : "Καταχωρίστε έναν τίτλο κάρτας",
|
||||
"Add card" : "Προσθήκη κάρτας",
|
||||
@@ -62,8 +26,6 @@ OC.L10N.register(
|
||||
"Deleted items" : "Διαγραμμένα αντικείμενα",
|
||||
"Timeline" : "Χρονοδιάγραμμα",
|
||||
"Select users or groups to share with" : "Επιλέξτε χρήστες ή ομάδες με τις οποίες θα μοιραστείτε",
|
||||
"Group" : "Ομάδα",
|
||||
"Circle" : "Κύκλος",
|
||||
"No matching user or group found." : "Δεν βρέθηκε χρήστης ή ομάδα να ταιριάζει.",
|
||||
"Loading" : "Γίνεται φόρτωση",
|
||||
"Edit" : "Επεξεργασία",
|
||||
@@ -74,7 +36,6 @@ OC.L10N.register(
|
||||
"Delete tag" : "Διαγραφή ετικέτας",
|
||||
"Create" : "Δημιουργία",
|
||||
"Create a new tag" : "Δημιούργησε νέα ετικέτα",
|
||||
"Status" : "Κατάσταση",
|
||||
"Title" : "Τίτλος",
|
||||
"Members" : "Μέλη",
|
||||
"More actions" : "Περισσότερες ενέργειες",
|
||||
@@ -84,26 +45,19 @@ OC.L10N.register(
|
||||
"Delete board" : "Διαγραφή πίνακα",
|
||||
"Create new board" : "Δημιουργία νέου πίνακα",
|
||||
"New board title" : "Νέος τίτλος πίνακα",
|
||||
"Create board" : "Δημιουργία πίνακα",
|
||||
"Cancel upload" : "Ακύρωση μεταφόρτωσης",
|
||||
"by" : "από",
|
||||
"Delete attachment" : "Διαγραφή συνημμένου",
|
||||
"Modified:" : "Τροποποιήθηκε:",
|
||||
"Created:" : "Δημιουργήθηκε:",
|
||||
"Assign users" : "Ορισμός χρηστών",
|
||||
"Due date" : "Ημερομηνία λήξης",
|
||||
"Click to set" : "Κλικ για να ορίσετε",
|
||||
"Remove due date" : "Αφαίρεση ημερομηνίας λήξης",
|
||||
"Description" : "Περιγραφή",
|
||||
"Attachments" : "Συνημμένα",
|
||||
"Saved" : "Αποθηκεύτηκε",
|
||||
"Unsaved changes" : "Μη αποθηκευμένες αλλαγές",
|
||||
"Formatting help" : "Βοήθεια μορφοποίησης",
|
||||
"Upload attachment" : "Μεταφόρτωση συνημμένων",
|
||||
"Add a card description…" : "Προσθήκη περιγραφής κάρτας...",
|
||||
"Shared boards" : "Διαμοιρασμένοι πίνακες",
|
||||
"Move board to archive" : "Μετακίνηση πίνακα στην αρχειοθήκη",
|
||||
"Create a new board" : "Δημιουργία νέου πίνακα",
|
||||
"Settings" : "Ρυθμίσεις"
|
||||
"Create a new board" : "Δημιουργία νέου πίνακα"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
48
l10n/el.json
48
l10n/el.json
@@ -1,56 +1,20 @@
|
||||
{ "translations": {
|
||||
"Please provide a content for your comment." : "Παρακαλώ παρέχετε περιεχόμενο για το σχόλιο σας.",
|
||||
"Posting the comment failed." : "Η δημοσίευση του σχολίου απέτυχε.",
|
||||
"The comment has been deleted" : "Το σχόλιο διαγράφηκε.",
|
||||
"The associated stack is deleted as well, it will be restored as well." : "Διαγραφή σχετικών ενεργειών και επαναφορά τους.",
|
||||
"Restore associated stack" : "Επαναφορά σχετικών ενεργειών.",
|
||||
"Remove user from card" : "Αφαίρεση χρήστη από την κάρτα",
|
||||
"Hours" : "Ώρες",
|
||||
"Minutes" : "Λεπτά",
|
||||
"Maximum file size of {size} exceeded" : "Υπέρβαση επιτρεπόμενου μεγέθους αρχείου {size}",
|
||||
"File already exists" : "Το αρχείο υπάρχει ήδη",
|
||||
"You have created a new board {board}" : "Δημιουργήσατε νέο πίνακα {board}",
|
||||
"{user} has created a new board {board}" : "Ο {user} δημιούργησε νέο πίνακα {board}",
|
||||
"You have deleted the board {board}" : "Έχετε διαγράψει τον πίνακα {board}",
|
||||
"{user} has deleted the board {board}" : "Ο {user} διέγραψε τον πίνακα {board}",
|
||||
"You have restored the board {board}" : "Εχετε επαναφέρει τον πίνακα {board}",
|
||||
"{user} has restored the board {board}" : "Ο {user} επανέφερε τον πίνακα {board}",
|
||||
"You have shared the board {board} with {acl}" : "Εχετε διαμοιράσει τον πίνακα {board} με {acl}",
|
||||
"{user} has shared the board {board} with {acl}" : "Ο {user} διαμοίρασε τον πίνακα {board} με {acl}",
|
||||
"You have removed {acl} from the board {board}" : "Αφαιρέθηκε η {acl} από τον πίνακα {board}",
|
||||
"{user} has removed {acl} from the board {board}" : "Ο {user} αφαίρεσε την {acl} από τον πίνακα {board}",
|
||||
"You have renamed the board {before} to {board}" : "Μετονομάσατε τον πίνακα {before} σε {board}",
|
||||
"{user} has renamed the board {before} to {board}" : "Ο {user} μετονόμασε τον πίνακα {before} σε {board}",
|
||||
"You have archived the board {board}" : "Αρχειοθετήσατε τον πίνακα {board}",
|
||||
"{user} has archived the board {before}" : "Ο {user} αρχειοθέτησε τον πίνακα {before}",
|
||||
"You have unarchived the board {board}" : "Επαναφέρατε τον πίνακα {board} από αρχείο",
|
||||
"{user} has unarchived the board {before}" : "Ο {user} επανέφερε τον πίνακα {before} από αρχείο",
|
||||
"Deck" : "Deck",
|
||||
"Personal" : "Προσωπικά",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "Η κάρτα \"1%s\" στο \"1%s\" έχει λήξει.",
|
||||
"Finished" : "Ολοκληρώθηκε",
|
||||
"To review" : "Προς επισκόπηση",
|
||||
"Action needed" : "Απαιτείται ενέργεια",
|
||||
"Later" : "Αργότερα",
|
||||
"Done" : "Ολοκληρώθηκε",
|
||||
"The file was uploaded" : "Το αρχείο μεταφορτώθηκε",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Το μεταφορτωμένο αρχείο υπερβαίνει την οδηγία upload_max_filesize στο php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Το μεταφορτωμένο αρχείο υπερβαίνει την οδηγία MAX_FILE_SIZE που καθορίστηκε στην φόρμα HTML.",
|
||||
"No file was uploaded" : "Δεν μεταφορτώθηκε κάποιο αρχείο",
|
||||
"Missing a temporary folder" : "Λείπει κάποιος προσωρινός φάκελος",
|
||||
"Could not write file to disk" : "Αδυναμία εγγραφής αρχείου στον δίσκο",
|
||||
"A PHP extension stopped the file upload" : "Ένα πρόσθετο PHP διέκοψε την μεταφόρτωση του αρχείου",
|
||||
"Add a new stack" : "Πρόσθεσε νέα συστοιχία",
|
||||
"Submit" : "Υποβολή",
|
||||
"Show archived cards" : "Εμφάνιση καρτελών που αρχειοθετήθηκαν",
|
||||
"Hide archived cards" : "Απόκρυψη καρτελών που αρχειοθετήθηκαν",
|
||||
"All Boards" : "Όλοι οι πίνακες",
|
||||
"Archived boards" : "Αρχειοθέτηση πινάκων ",
|
||||
"Share board" : "Διαμοιρασμός πίνακα",
|
||||
"Actions" : "Ενέργειες",
|
||||
"Assign card to me" : "Ορισμός κάρτας στον εαυτό μου",
|
||||
"Unassign card from me" : "Αποσύνδεση κάρτας από το εαυτό μου",
|
||||
"Archive card" : "Αρχειοθέτηση κάρτας",
|
||||
"Delete card" : "Διαγραφή κάρτας",
|
||||
"Enter a card title" : "Καταχωρίστε έναν τίτλο κάρτας",
|
||||
"Add card" : "Προσθήκη κάρτας",
|
||||
@@ -60,8 +24,6 @@
|
||||
"Deleted items" : "Διαγραμμένα αντικείμενα",
|
||||
"Timeline" : "Χρονοδιάγραμμα",
|
||||
"Select users or groups to share with" : "Επιλέξτε χρήστες ή ομάδες με τις οποίες θα μοιραστείτε",
|
||||
"Group" : "Ομάδα",
|
||||
"Circle" : "Κύκλος",
|
||||
"No matching user or group found." : "Δεν βρέθηκε χρήστης ή ομάδα να ταιριάζει.",
|
||||
"Loading" : "Γίνεται φόρτωση",
|
||||
"Edit" : "Επεξεργασία",
|
||||
@@ -72,7 +34,6 @@
|
||||
"Delete tag" : "Διαγραφή ετικέτας",
|
||||
"Create" : "Δημιουργία",
|
||||
"Create a new tag" : "Δημιούργησε νέα ετικέτα",
|
||||
"Status" : "Κατάσταση",
|
||||
"Title" : "Τίτλος",
|
||||
"Members" : "Μέλη",
|
||||
"More actions" : "Περισσότερες ενέργειες",
|
||||
@@ -82,26 +43,19 @@
|
||||
"Delete board" : "Διαγραφή πίνακα",
|
||||
"Create new board" : "Δημιουργία νέου πίνακα",
|
||||
"New board title" : "Νέος τίτλος πίνακα",
|
||||
"Create board" : "Δημιουργία πίνακα",
|
||||
"Cancel upload" : "Ακύρωση μεταφόρτωσης",
|
||||
"by" : "από",
|
||||
"Delete attachment" : "Διαγραφή συνημμένου",
|
||||
"Modified:" : "Τροποποιήθηκε:",
|
||||
"Created:" : "Δημιουργήθηκε:",
|
||||
"Assign users" : "Ορισμός χρηστών",
|
||||
"Due date" : "Ημερομηνία λήξης",
|
||||
"Click to set" : "Κλικ για να ορίσετε",
|
||||
"Remove due date" : "Αφαίρεση ημερομηνίας λήξης",
|
||||
"Description" : "Περιγραφή",
|
||||
"Attachments" : "Συνημμένα",
|
||||
"Saved" : "Αποθηκεύτηκε",
|
||||
"Unsaved changes" : "Μη αποθηκευμένες αλλαγές",
|
||||
"Formatting help" : "Βοήθεια μορφοποίησης",
|
||||
"Upload attachment" : "Μεταφόρτωση συνημμένων",
|
||||
"Add a card description…" : "Προσθήκη περιγραφής κάρτας...",
|
||||
"Shared boards" : "Διαμοιρασμένοι πίνακες",
|
||||
"Move board to archive" : "Μετακίνηση πίνακα στην αρχειοθήκη",
|
||||
"Create a new board" : "Δημιουργία νέου πίνακα",
|
||||
"Settings" : "Ρυθμίσεις"
|
||||
"Create a new board" : "Δημιουργία νέου πίνακα"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
@@ -6,9 +6,7 @@ OC.L10N.register(
|
||||
"Remove user from card" : "Remove user from card",
|
||||
"Hours" : "Hours",
|
||||
"Minutes" : "Minutes",
|
||||
"File already exists" : "File already exists",
|
||||
"Deck" : "Deck",
|
||||
"Personal" : "Personal",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "The card \"%s\" on \"%s\" has reached its due date.",
|
||||
"The board \"%s\" has been shared with you by %s." : "The board \"%s\" has been shared with you by %s.",
|
||||
"{user} has shared the board %s with you." : "{user} has shared the board %s with you.",
|
||||
@@ -16,15 +14,6 @@ OC.L10N.register(
|
||||
"To review" : "To review",
|
||||
"Action needed" : "Action needed",
|
||||
"Later" : "Later",
|
||||
"Done" : "Done",
|
||||
"The file was uploaded" : "The file was uploaded",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "The uploaded file exceeds the upload_max_filesize directive in php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form",
|
||||
"The file was only partially uploaded" : "The file was only partially uploaded",
|
||||
"No file was uploaded" : "No file was uploaded",
|
||||
"Missing a temporary folder" : "Missing a temporary folder",
|
||||
"Could not write file to disk" : "Could not write file to disk",
|
||||
"A PHP extension stopped the file upload" : "A PHP extension stopped the file upload",
|
||||
"A kanban style project and personal management tool for Nextcloud" : "A kanban style project and personal management tool for Nextcloud",
|
||||
"Add a new stack" : "Add a new stack",
|
||||
"Submit" : "Submit",
|
||||
@@ -32,17 +21,12 @@ OC.L10N.register(
|
||||
"Hide archived cards" : "Hide archived cards",
|
||||
"All Boards" : "All Boards",
|
||||
"Archived boards" : "Archived boards",
|
||||
"Actions" : "Actions",
|
||||
"Archive card" : "Archive card",
|
||||
"Delete card" : "Delete card",
|
||||
"Enter a card title" : "Enter a card title",
|
||||
"Add card" : "Add card",
|
||||
"Close" : "Close",
|
||||
"Sharing" : "Sharing",
|
||||
"Tags" : "Tags",
|
||||
"Select users or groups to share with" : "Select users or groups to share with",
|
||||
"Group" : "Group",
|
||||
"Circle" : "Circle",
|
||||
"No matching user or group found." : "No matching user or group found.",
|
||||
"Loading" : "Loading",
|
||||
"Edit" : "Edit",
|
||||
@@ -62,8 +46,6 @@ OC.L10N.register(
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Undo board deletion - Otherwise the board will be deleted during the next cronjob run.",
|
||||
"Create new board" : "Create new board",
|
||||
"New board title" : "New board title",
|
||||
"Create board" : "Create board",
|
||||
"Cancel upload" : "Cancel upload",
|
||||
"by" : "by",
|
||||
"Modified:" : "Modified:",
|
||||
"Created:" : "Created:",
|
||||
@@ -77,15 +59,12 @@ OC.L10N.register(
|
||||
"Click to set" : "Click to set",
|
||||
"Remove due date" : "Remove due date",
|
||||
"Description" : "Description",
|
||||
"Attachments" : "Attachments",
|
||||
"Saved" : "Saved",
|
||||
"Unsaved changes" : "Unsaved changes",
|
||||
"Formatting help" : "Formatting help",
|
||||
"Upload attachment" : "Upload attachment",
|
||||
"Add a card description…" : "Add a card description…",
|
||||
"Shared boards" : "Shared boards",
|
||||
"Move board to archive" : "Move board to archive",
|
||||
"Create a new board" : "Create a new board",
|
||||
"Settings" : "Settings"
|
||||
"Create a new board" : "Create a new board"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -4,9 +4,7 @@
|
||||
"Remove user from card" : "Remove user from card",
|
||||
"Hours" : "Hours",
|
||||
"Minutes" : "Minutes",
|
||||
"File already exists" : "File already exists",
|
||||
"Deck" : "Deck",
|
||||
"Personal" : "Personal",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "The card \"%s\" on \"%s\" has reached its due date.",
|
||||
"The board \"%s\" has been shared with you by %s." : "The board \"%s\" has been shared with you by %s.",
|
||||
"{user} has shared the board %s with you." : "{user} has shared the board %s with you.",
|
||||
@@ -14,15 +12,6 @@
|
||||
"To review" : "To review",
|
||||
"Action needed" : "Action needed",
|
||||
"Later" : "Later",
|
||||
"Done" : "Done",
|
||||
"The file was uploaded" : "The file was uploaded",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "The uploaded file exceeds the upload_max_filesize directive in php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form",
|
||||
"The file was only partially uploaded" : "The file was only partially uploaded",
|
||||
"No file was uploaded" : "No file was uploaded",
|
||||
"Missing a temporary folder" : "Missing a temporary folder",
|
||||
"Could not write file to disk" : "Could not write file to disk",
|
||||
"A PHP extension stopped the file upload" : "A PHP extension stopped the file upload",
|
||||
"A kanban style project and personal management tool for Nextcloud" : "A kanban style project and personal management tool for Nextcloud",
|
||||
"Add a new stack" : "Add a new stack",
|
||||
"Submit" : "Submit",
|
||||
@@ -30,17 +19,12 @@
|
||||
"Hide archived cards" : "Hide archived cards",
|
||||
"All Boards" : "All Boards",
|
||||
"Archived boards" : "Archived boards",
|
||||
"Actions" : "Actions",
|
||||
"Archive card" : "Archive card",
|
||||
"Delete card" : "Delete card",
|
||||
"Enter a card title" : "Enter a card title",
|
||||
"Add card" : "Add card",
|
||||
"Close" : "Close",
|
||||
"Sharing" : "Sharing",
|
||||
"Tags" : "Tags",
|
||||
"Select users or groups to share with" : "Select users or groups to share with",
|
||||
"Group" : "Group",
|
||||
"Circle" : "Circle",
|
||||
"No matching user or group found." : "No matching user or group found.",
|
||||
"Loading" : "Loading",
|
||||
"Edit" : "Edit",
|
||||
@@ -60,8 +44,6 @@
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Undo board deletion - Otherwise the board will be deleted during the next cronjob run.",
|
||||
"Create new board" : "Create new board",
|
||||
"New board title" : "New board title",
|
||||
"Create board" : "Create board",
|
||||
"Cancel upload" : "Cancel upload",
|
||||
"by" : "by",
|
||||
"Modified:" : "Modified:",
|
||||
"Created:" : "Created:",
|
||||
@@ -75,15 +57,12 @@
|
||||
"Click to set" : "Click to set",
|
||||
"Remove due date" : "Remove due date",
|
||||
"Description" : "Description",
|
||||
"Attachments" : "Attachments",
|
||||
"Saved" : "Saved",
|
||||
"Unsaved changes" : "Unsaved changes",
|
||||
"Formatting help" : "Formatting help",
|
||||
"Upload attachment" : "Upload attachment",
|
||||
"Add a card description…" : "Add a card description…",
|
||||
"Shared boards" : "Shared boards",
|
||||
"Move board to archive" : "Move board to archive",
|
||||
"Create a new board" : "Create a new board",
|
||||
"Settings" : "Settings"
|
||||
"Create a new board" : "Create a new board"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
@@ -11,7 +11,6 @@ OC.L10N.register(
|
||||
"Minutes" : "Minutoj",
|
||||
"Link to a board" : "Ligilo al tabulo",
|
||||
"Maximum file size of {size} exceeded" : "Maksimuma dosiergrando {size} transpasita",
|
||||
"File already exists" : "La dosiero jam ekzistas",
|
||||
"You have created a new board {board}" : "Vi kreis novan tabulon {board}",
|
||||
"{user} has created a new board {board}" : "{user} kreis novan tabulon {board}",
|
||||
"You have deleted the board {board}" : "Vi forigis tabulon {board}",
|
||||
@@ -19,7 +18,6 @@ OC.L10N.register(
|
||||
"You have restored the board {board}" : "Vi restaŭris tabulon {board}",
|
||||
"{user} has restored the board {board}" : "{user} restaŭris tabulon {board}",
|
||||
"You have shared the board {board} with {acl}" : "Vi kunhavigis tabulon {board} kun {acl}",
|
||||
"{user} has shared the board {board} with {acl}" : "{user} kunhavigis tabulon {board} kun {acl}",
|
||||
"You have removed {acl} from the board {board}" : "Vi forigis {acl} el la tabulo {board}",
|
||||
"{user} has removed {acl} from the board {board}" : "{user} forigis {acl} el la tabulo {board}",
|
||||
"You have renamed the board {before} to {board}" : "Vi alinomis la tabulon {before} al {board}",
|
||||
@@ -67,9 +65,9 @@ OC.L10N.register(
|
||||
"You have added the attachment {attachment} to card {card}" : "Vi aldonis dosieron {attachment} al karto {card}",
|
||||
"{user} has added the attachment {attachment} to card {card}" : "{user} aldonis dosieron {attachment} al karto {card}",
|
||||
"You have updated the attachment {attachment} on card {card}" : "Vi ĝisdatigis la dosieron {attachment} de karto {card}",
|
||||
"{user} has updated the attachment {attachment} on card {card}" : "{user} ĝisdatigis la dosieron {attachment} de karto {card}",
|
||||
"{user} has updated the attachment {attachment} to card {card}" : "{user} ĝisdatigis la dosieron {attachment} de karto {card}",
|
||||
"You have deleted the attachment {attachment} from card {card}" : "Vi forigis la dosieron {attachment} el karto {card}",
|
||||
"{user} has deleted the attachment {attachment} from card {card}" : "{user} forigis la dosieron {attachment} el karto {card}",
|
||||
"{user} has deleted the attachment {attachment} to card {card}" : "{user} forigis la dosieron {attachment} el karto {card}",
|
||||
"You have restored the attachment {attachment} to card {card}" : "Vi restaŭris la dosieron {attachment} al karto {card}",
|
||||
"{user} has restored the attachment {attachment} to card {card}" : "{user} restaŭris la dosieron {attachment} al karto {card}",
|
||||
"You have commented on card {card}" : "Vi komentis la karton {card}",
|
||||
@@ -77,7 +75,6 @@ OC.L10N.register(
|
||||
"A <strong>card description</strong> inside the Deck app has been changed" : "<strong>Karta priskribo</strong> ene de la aplikaĵo Kartaro ŝanĝiĝis",
|
||||
"Deck" : "Kartaro",
|
||||
"Changes in the <strong>Deck app</strong>" : "Ŝanĝoj en la <strong>aplikaĵo Kartaro</strong>",
|
||||
"A <strong>comment</strong> was created on a card" : "<strong>Komento</strong> kreiĝis sur karton",
|
||||
"Personal" : "Persona",
|
||||
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "La karto „%s“ sur „%s“ estis atribuita al vi de %s.",
|
||||
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} atribuis la karton „%s“ sur „%s“ al vi.",
|
||||
@@ -138,7 +135,7 @@ OC.L10N.register(
|
||||
"Group" : "Grupo",
|
||||
"Circle" : "Rondo",
|
||||
"No matching user or group found." : "Neniu kongrua uzanto aŭ grupo trovita.",
|
||||
"Loading" : "Ŝargado",
|
||||
"Loading" : "Ŝargante",
|
||||
"Edit" : "Redakti",
|
||||
"Share" : "Kunhavigi",
|
||||
"Manage" : "Administri",
|
||||
|
||||
@@ -9,7 +9,6 @@
|
||||
"Minutes" : "Minutoj",
|
||||
"Link to a board" : "Ligilo al tabulo",
|
||||
"Maximum file size of {size} exceeded" : "Maksimuma dosiergrando {size} transpasita",
|
||||
"File already exists" : "La dosiero jam ekzistas",
|
||||
"You have created a new board {board}" : "Vi kreis novan tabulon {board}",
|
||||
"{user} has created a new board {board}" : "{user} kreis novan tabulon {board}",
|
||||
"You have deleted the board {board}" : "Vi forigis tabulon {board}",
|
||||
@@ -17,7 +16,6 @@
|
||||
"You have restored the board {board}" : "Vi restaŭris tabulon {board}",
|
||||
"{user} has restored the board {board}" : "{user} restaŭris tabulon {board}",
|
||||
"You have shared the board {board} with {acl}" : "Vi kunhavigis tabulon {board} kun {acl}",
|
||||
"{user} has shared the board {board} with {acl}" : "{user} kunhavigis tabulon {board} kun {acl}",
|
||||
"You have removed {acl} from the board {board}" : "Vi forigis {acl} el la tabulo {board}",
|
||||
"{user} has removed {acl} from the board {board}" : "{user} forigis {acl} el la tabulo {board}",
|
||||
"You have renamed the board {before} to {board}" : "Vi alinomis la tabulon {before} al {board}",
|
||||
@@ -65,9 +63,9 @@
|
||||
"You have added the attachment {attachment} to card {card}" : "Vi aldonis dosieron {attachment} al karto {card}",
|
||||
"{user} has added the attachment {attachment} to card {card}" : "{user} aldonis dosieron {attachment} al karto {card}",
|
||||
"You have updated the attachment {attachment} on card {card}" : "Vi ĝisdatigis la dosieron {attachment} de karto {card}",
|
||||
"{user} has updated the attachment {attachment} on card {card}" : "{user} ĝisdatigis la dosieron {attachment} de karto {card}",
|
||||
"{user} has updated the attachment {attachment} to card {card}" : "{user} ĝisdatigis la dosieron {attachment} de karto {card}",
|
||||
"You have deleted the attachment {attachment} from card {card}" : "Vi forigis la dosieron {attachment} el karto {card}",
|
||||
"{user} has deleted the attachment {attachment} from card {card}" : "{user} forigis la dosieron {attachment} el karto {card}",
|
||||
"{user} has deleted the attachment {attachment} to card {card}" : "{user} forigis la dosieron {attachment} el karto {card}",
|
||||
"You have restored the attachment {attachment} to card {card}" : "Vi restaŭris la dosieron {attachment} al karto {card}",
|
||||
"{user} has restored the attachment {attachment} to card {card}" : "{user} restaŭris la dosieron {attachment} al karto {card}",
|
||||
"You have commented on card {card}" : "Vi komentis la karton {card}",
|
||||
@@ -75,7 +73,6 @@
|
||||
"A <strong>card description</strong> inside the Deck app has been changed" : "<strong>Karta priskribo</strong> ene de la aplikaĵo Kartaro ŝanĝiĝis",
|
||||
"Deck" : "Kartaro",
|
||||
"Changes in the <strong>Deck app</strong>" : "Ŝanĝoj en la <strong>aplikaĵo Kartaro</strong>",
|
||||
"A <strong>comment</strong> was created on a card" : "<strong>Komento</strong> kreiĝis sur karton",
|
||||
"Personal" : "Persona",
|
||||
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "La karto „%s“ sur „%s“ estis atribuita al vi de %s.",
|
||||
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} atribuis la karton „%s“ sur „%s“ al vi.",
|
||||
@@ -136,7 +133,7 @@
|
||||
"Group" : "Grupo",
|
||||
"Circle" : "Rondo",
|
||||
"No matching user or group found." : "Neniu kongrua uzanto aŭ grupo trovita.",
|
||||
"Loading" : "Ŝargado",
|
||||
"Loading" : "Ŝargante",
|
||||
"Edit" : "Redakti",
|
||||
"Share" : "Kunhavigi",
|
||||
"Manage" : "Administri",
|
||||
|
||||
@@ -67,9 +67,9 @@ OC.L10N.register(
|
||||
"You have added the attachment {attachment} to card {card}" : "Has añadido el adjunto {attachment} en {card}",
|
||||
"{user} has added the attachment {attachment} to card {card}" : "{user} ha añadido el adjunto {attachment} en {card}",
|
||||
"You have updated the attachment {attachment} on card {card}" : "Has actualizado el adjunto [attachment] en {card}",
|
||||
"{user} has updated the attachment {attachment} on card {card}" : "{user} ha actualizado el adjunto {attachment} en la tarjeta {card}",
|
||||
"{user} has updated the attachment {attachment} to card {card}" : "{user} ha actualizado el adjunto {attachment} en {card}",
|
||||
"You have deleted the attachment {attachment} from card {card}" : "Has eliminado el adjunto {attachment} de {card}",
|
||||
"{user} has deleted the attachment {attachment} from card {card}" : "{user} ha eliminado el adjunto {attachment} de la tarjeta {card}",
|
||||
"{user} has deleted the attachment {attachment} to card {card}" : "{user} ha eliminado el adjunto {attachment} de {card}",
|
||||
"You have restored the attachment {attachment} to card {card}" : "Has restaurado el adjunto {attachment} a {card}",
|
||||
"{user} has restored the attachment {attachment} to card {card}" : "{user} ha restaurado el adjunto {attachment} a {card}",
|
||||
"You have commented on card {card}" : "Has comentado en la tarjeta {card}",
|
||||
|
||||
@@ -65,9 +65,9 @@
|
||||
"You have added the attachment {attachment} to card {card}" : "Has añadido el adjunto {attachment} en {card}",
|
||||
"{user} has added the attachment {attachment} to card {card}" : "{user} ha añadido el adjunto {attachment} en {card}",
|
||||
"You have updated the attachment {attachment} on card {card}" : "Has actualizado el adjunto [attachment] en {card}",
|
||||
"{user} has updated the attachment {attachment} on card {card}" : "{user} ha actualizado el adjunto {attachment} en la tarjeta {card}",
|
||||
"{user} has updated the attachment {attachment} to card {card}" : "{user} ha actualizado el adjunto {attachment} en {card}",
|
||||
"You have deleted the attachment {attachment} from card {card}" : "Has eliminado el adjunto {attachment} de {card}",
|
||||
"{user} has deleted the attachment {attachment} from card {card}" : "{user} ha eliminado el adjunto {attachment} de la tarjeta {card}",
|
||||
"{user} has deleted the attachment {attachment} to card {card}" : "{user} ha eliminado el adjunto {attachment} de {card}",
|
||||
"You have restored the attachment {attachment} to card {card}" : "Has restaurado el adjunto {attachment} a {card}",
|
||||
"{user} has restored the attachment {attachment} to card {card}" : "{user} ha restaurado el adjunto {attachment} a {card}",
|
||||
"You have commented on card {card}" : "Has comentado en la tarjeta {card}",
|
||||
|
||||
@@ -3,9 +3,7 @@ OC.L10N.register(
|
||||
{
|
||||
"Hours" : "Horas",
|
||||
"Minutes" : "Minutos",
|
||||
"File already exists" : "El archivo ya existe",
|
||||
"Deck" : "Deck",
|
||||
"Personal" : "Personal",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
|
||||
"The board \"%s\" has been shared with you by %s." : "El tablero \"%s\" ha sido compartido contigo por %s.",
|
||||
"{user} has shared the board %s with you." : "{user} ha compartido el tablero %s contigo. ",
|
||||
@@ -13,26 +11,18 @@ OC.L10N.register(
|
||||
"To review" : "Para revisar",
|
||||
"Action needed" : "Acción requerida",
|
||||
"Later" : "Después",
|
||||
"Done" : "Terminado",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El archivo cargado excede el valor establecido en la directiva upload_max_filesize en el archivo php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML",
|
||||
"No file was uploaded" : "No se cargó el archivo",
|
||||
"Missing a temporary folder" : "Falta una carpeta temporal",
|
||||
"Add a new stack" : "Agregar una nueva pila",
|
||||
"Submit" : "Enviar",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"All Boards" : "Todos los Tableros",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Actions" : "Acciones",
|
||||
"Enter a card title" : "Ingresa el título de la tarjeta",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Close" : "Cerrar",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Tags" : "Etiquetas",
|
||||
"Select users or groups to share with" : "Selecciona los usuarios o grupos con los cuales compartir",
|
||||
"Group" : "Grupo",
|
||||
"Circle" : "Círculo",
|
||||
"No matching user or group found." : "No se encontraron coincidencias de usuarios o grupos.",
|
||||
"Loading" : "Cargando",
|
||||
"Edit" : "Editar",
|
||||
@@ -52,7 +42,6 @@ OC.L10N.register(
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Deshacer borrado de tablero - De lo contrario el tablero se borrará durante la siguiente ejecución del cronjob. ",
|
||||
"Create new board" : "Crear un nuevo tablero",
|
||||
"New board title" : "Nuevo título del tablero",
|
||||
"Cancel upload" : "Cancelar carga",
|
||||
"by" : "por",
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Creado:",
|
||||
@@ -68,11 +57,9 @@ OC.L10N.register(
|
||||
"Saved" : "Guardado",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"Move board to archive" : "Mover el tablero al archivo",
|
||||
"Create a new board" : "Crear un nuevo tablero",
|
||||
"Settings" : "Configuraciones "
|
||||
"Create a new board" : "Crear un nuevo tablero"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -1,9 +1,7 @@
|
||||
{ "translations": {
|
||||
"Hours" : "Horas",
|
||||
"Minutes" : "Minutos",
|
||||
"File already exists" : "El archivo ya existe",
|
||||
"Deck" : "Deck",
|
||||
"Personal" : "Personal",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
|
||||
"The board \"%s\" has been shared with you by %s." : "El tablero \"%s\" ha sido compartido contigo por %s.",
|
||||
"{user} has shared the board %s with you." : "{user} ha compartido el tablero %s contigo. ",
|
||||
@@ -11,26 +9,18 @@
|
||||
"To review" : "Para revisar",
|
||||
"Action needed" : "Acción requerida",
|
||||
"Later" : "Después",
|
||||
"Done" : "Terminado",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El archivo cargado excede el valor establecido en la directiva upload_max_filesize en el archivo php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML",
|
||||
"No file was uploaded" : "No se cargó el archivo",
|
||||
"Missing a temporary folder" : "Falta una carpeta temporal",
|
||||
"Add a new stack" : "Agregar una nueva pila",
|
||||
"Submit" : "Enviar",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"All Boards" : "Todos los Tableros",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Actions" : "Acciones",
|
||||
"Enter a card title" : "Ingresa el título de la tarjeta",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Close" : "Cerrar",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Tags" : "Etiquetas",
|
||||
"Select users or groups to share with" : "Selecciona los usuarios o grupos con los cuales compartir",
|
||||
"Group" : "Grupo",
|
||||
"Circle" : "Círculo",
|
||||
"No matching user or group found." : "No se encontraron coincidencias de usuarios o grupos.",
|
||||
"Loading" : "Cargando",
|
||||
"Edit" : "Editar",
|
||||
@@ -50,7 +40,6 @@
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Deshacer borrado de tablero - De lo contrario el tablero se borrará durante la siguiente ejecución del cronjob. ",
|
||||
"Create new board" : "Crear un nuevo tablero",
|
||||
"New board title" : "Nuevo título del tablero",
|
||||
"Cancel upload" : "Cancelar carga",
|
||||
"by" : "por",
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Creado:",
|
||||
@@ -66,11 +55,9 @@
|
||||
"Saved" : "Guardado",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"Move board to archive" : "Mover el tablero al archivo",
|
||||
"Create a new board" : "Crear un nuevo tablero",
|
||||
"Settings" : "Configuraciones "
|
||||
"Create a new board" : "Crear un nuevo tablero"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
@@ -1,53 +1,32 @@
|
||||
OC.L10N.register(
|
||||
"deck",
|
||||
{
|
||||
"Hours" : "Horas",
|
||||
"Minutes" : "Minutos",
|
||||
"Deck" : "Deck",
|
||||
"Personal" : "Personal",
|
||||
"Finished" : "Terminado",
|
||||
"To review" : "Para revisar",
|
||||
"Action needed" : "Acción requerida",
|
||||
"Later" : "Después",
|
||||
"Done" : "Hecho",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo subido sobrepasa el valor MAX_FILE_SIZE especificada en el formulario HTML",
|
||||
"No file was uploaded" : "No se subió ningún archivo ",
|
||||
"Missing a temporary folder" : "Falta un directorio temporal",
|
||||
"Submit" : "Enviar",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"All Boards" : "Todos los Tablero",
|
||||
"Actions" : "Acciones",
|
||||
"Enter a card title" : "Ingrese el títilo de la tarjeta",
|
||||
"Close" : "Cerrar",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Tags" : "Etiquetas",
|
||||
"Select users or groups to share with" : "Seleccione los usuarios o grupos con los cuales compartir",
|
||||
"Group" : "Grupo",
|
||||
"Circle" : "Círculo",
|
||||
"No matching user or group found." : "No se encontraron coincidencias de usuarios o grupos.",
|
||||
"Loading" : "Cargando",
|
||||
"Edit" : "Editar",
|
||||
"Share" : "Compartir",
|
||||
"Manage" : "Administrar",
|
||||
"Discard share" : "Descartar elemento compartido",
|
||||
"Create" : "Crear",
|
||||
"Status" : "Estatus",
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Create new board" : "Crear un nuevo tablero",
|
||||
"New board title" : "Nuevo título de tablero",
|
||||
"Cancel upload" : "Cancelar subida",
|
||||
"by" : "por",
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Creado:",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Description" : "Descripción",
|
||||
"Attachments" : "Adjuntos",
|
||||
"Saved" : "Guardado",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Create a new board" : "Crear nuevo tablero",
|
||||
"Settings" : "Ajustes"
|
||||
"Create a new board" : "Crear nuevo tablero"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -1,51 +1,30 @@
|
||||
{ "translations": {
|
||||
"Hours" : "Horas",
|
||||
"Minutes" : "Minutos",
|
||||
"Deck" : "Deck",
|
||||
"Personal" : "Personal",
|
||||
"Finished" : "Terminado",
|
||||
"To review" : "Para revisar",
|
||||
"Action needed" : "Acción requerida",
|
||||
"Later" : "Después",
|
||||
"Done" : "Hecho",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo subido sobrepasa el valor MAX_FILE_SIZE especificada en el formulario HTML",
|
||||
"No file was uploaded" : "No se subió ningún archivo ",
|
||||
"Missing a temporary folder" : "Falta un directorio temporal",
|
||||
"Submit" : "Enviar",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"All Boards" : "Todos los Tablero",
|
||||
"Actions" : "Acciones",
|
||||
"Enter a card title" : "Ingrese el títilo de la tarjeta",
|
||||
"Close" : "Cerrar",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Tags" : "Etiquetas",
|
||||
"Select users or groups to share with" : "Seleccione los usuarios o grupos con los cuales compartir",
|
||||
"Group" : "Grupo",
|
||||
"Circle" : "Círculo",
|
||||
"No matching user or group found." : "No se encontraron coincidencias de usuarios o grupos.",
|
||||
"Loading" : "Cargando",
|
||||
"Edit" : "Editar",
|
||||
"Share" : "Compartir",
|
||||
"Manage" : "Administrar",
|
||||
"Discard share" : "Descartar elemento compartido",
|
||||
"Create" : "Crear",
|
||||
"Status" : "Estatus",
|
||||
"Title" : "Título",
|
||||
"Members" : "Miembros",
|
||||
"Create new board" : "Crear un nuevo tablero",
|
||||
"New board title" : "Nuevo título de tablero",
|
||||
"Cancel upload" : "Cancelar subida",
|
||||
"by" : "por",
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Creado:",
|
||||
"Due date" : "Fecha de vencimiento",
|
||||
"Description" : "Descripción",
|
||||
"Attachments" : "Adjuntos",
|
||||
"Saved" : "Guardado",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Create a new board" : "Crear nuevo tablero",
|
||||
"Settings" : "Ajustes"
|
||||
"Create a new board" : "Crear nuevo tablero"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
@@ -4,9 +4,7 @@ OC.L10N.register(
|
||||
"Remove user from card" : "Eliminar usuario de la tarjeta",
|
||||
"Hours" : "Horas",
|
||||
"Minutes" : "Minutos",
|
||||
"File already exists" : "El archivo ya existe",
|
||||
"Deck" : "Deck",
|
||||
"Personal" : "Personal",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
|
||||
"The board \"%s\" has been shared with you by %s." : "El tablero \"%s\" ha sido compartido contigo por %s.",
|
||||
"{user} has shared the board %s with you." : "{user} ha compartido el tablero %s contigo. ",
|
||||
@@ -14,30 +12,18 @@ OC.L10N.register(
|
||||
"To review" : "Para revisar",
|
||||
"Action needed" : "Acción requerida",
|
||||
"Later" : "Después",
|
||||
"Done" : "Terminado",
|
||||
"The file was uploaded" : "El archivo fue cargado",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El archivo cargado excede el valor establecido en la directiva upload_max_filesize en el archivo php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML",
|
||||
"The file was only partially uploaded" : "El archivo sólo fue cargado parcialmente",
|
||||
"No file was uploaded" : "No se cargó el archivo",
|
||||
"Missing a temporary folder" : "Falta una carpeta temporal",
|
||||
"Could not write file to disk" : "No fue posible escribir a disco",
|
||||
"A PHP extension stopped the file upload" : "Una extensión de PHP detuvo la carga del archivo",
|
||||
"Add a new stack" : "Agregar una nueva pila",
|
||||
"Submit" : "Enviar",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"All Boards" : "Todos los Tableros",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Actions" : "Acciones",
|
||||
"Enter a card title" : "Ingresa el título de la tarjeta",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Close" : "Cerrar",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Tags" : "Etiquetas",
|
||||
"Select users or groups to share with" : "Selecciona los usuarios o grupos con los cuales compartir",
|
||||
"Group" : "Grupo",
|
||||
"Circle" : "Círculo",
|
||||
"No matching user or group found." : "No se encontraron coincidencias de usuarios o grupos.",
|
||||
"Loading" : "Cargando",
|
||||
"Edit" : "Editar",
|
||||
@@ -57,7 +43,6 @@ OC.L10N.register(
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Deshacer borrado de tablero - De lo contrario el tablero se borrará durante la siguiente ejecución del cronjob. ",
|
||||
"Create new board" : "Crear un nuevo tablero",
|
||||
"New board title" : "Nuevo título del tablero",
|
||||
"Cancel upload" : "Cancelar carga",
|
||||
"by" : "por",
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Creado:",
|
||||
@@ -74,11 +59,9 @@ OC.L10N.register(
|
||||
"Saved" : "Guardado",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"Move board to archive" : "Mover el tablero al archivo",
|
||||
"Create a new board" : "Crear un nuevo tablero",
|
||||
"Settings" : "Configuraciones "
|
||||
"Create a new board" : "Crear un nuevo tablero"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -2,9 +2,7 @@
|
||||
"Remove user from card" : "Eliminar usuario de la tarjeta",
|
||||
"Hours" : "Horas",
|
||||
"Minutes" : "Minutos",
|
||||
"File already exists" : "El archivo ya existe",
|
||||
"Deck" : "Deck",
|
||||
"Personal" : "Personal",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
|
||||
"The board \"%s\" has been shared with you by %s." : "El tablero \"%s\" ha sido compartido contigo por %s.",
|
||||
"{user} has shared the board %s with you." : "{user} ha compartido el tablero %s contigo. ",
|
||||
@@ -12,30 +10,18 @@
|
||||
"To review" : "Para revisar",
|
||||
"Action needed" : "Acción requerida",
|
||||
"Later" : "Después",
|
||||
"Done" : "Terminado",
|
||||
"The file was uploaded" : "El archivo fue cargado",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El archivo cargado excede el valor establecido en la directiva upload_max_filesize en el archivo php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML",
|
||||
"The file was only partially uploaded" : "El archivo sólo fue cargado parcialmente",
|
||||
"No file was uploaded" : "No se cargó el archivo",
|
||||
"Missing a temporary folder" : "Falta una carpeta temporal",
|
||||
"Could not write file to disk" : "No fue posible escribir a disco",
|
||||
"A PHP extension stopped the file upload" : "Una extensión de PHP detuvo la carga del archivo",
|
||||
"Add a new stack" : "Agregar una nueva pila",
|
||||
"Submit" : "Enviar",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"All Boards" : "Todos los Tableros",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Actions" : "Acciones",
|
||||
"Enter a card title" : "Ingresa el título de la tarjeta",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Close" : "Cerrar",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Tags" : "Etiquetas",
|
||||
"Select users or groups to share with" : "Selecciona los usuarios o grupos con los cuales compartir",
|
||||
"Group" : "Grupo",
|
||||
"Circle" : "Círculo",
|
||||
"No matching user or group found." : "No se encontraron coincidencias de usuarios o grupos.",
|
||||
"Loading" : "Cargando",
|
||||
"Edit" : "Editar",
|
||||
@@ -55,7 +41,6 @@
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Deshacer borrado de tablero - De lo contrario el tablero se borrará durante la siguiente ejecución del cronjob. ",
|
||||
"Create new board" : "Crear un nuevo tablero",
|
||||
"New board title" : "Nuevo título del tablero",
|
||||
"Cancel upload" : "Cancelar carga",
|
||||
"by" : "por",
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Creado:",
|
||||
@@ -72,11 +57,9 @@
|
||||
"Saved" : "Guardado",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"Move board to archive" : "Mover el tablero al archivo",
|
||||
"Create a new board" : "Crear un nuevo tablero",
|
||||
"Settings" : "Configuraciones "
|
||||
"Create a new board" : "Crear un nuevo tablero"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
@@ -4,9 +4,7 @@ OC.L10N.register(
|
||||
"Remove user from card" : "Eliminar usuario de la tarjeta",
|
||||
"Hours" : "Horas",
|
||||
"Minutes" : "Minutos",
|
||||
"File already exists" : "El archivo ya existe",
|
||||
"Deck" : "Deck",
|
||||
"Personal" : "Personal",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
|
||||
"The board \"%s\" has been shared with you by %s." : "El tablero \"%s\" ha sido compartido contigo por %s.",
|
||||
"{user} has shared the board %s with you." : "{user} ha compartido el tablero %s contigo. ",
|
||||
@@ -14,30 +12,18 @@ OC.L10N.register(
|
||||
"To review" : "Para revisar",
|
||||
"Action needed" : "Acción requerida",
|
||||
"Later" : "Después",
|
||||
"Done" : "Terminado",
|
||||
"The file was uploaded" : "El archivo fue cargado",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El archivo cargado excede el valor establecido en la directiva upload_max_filesize en el archivo php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML",
|
||||
"The file was only partially uploaded" : "El archivo sólo fue cargado parcialmente",
|
||||
"No file was uploaded" : "No se cargó el archivo",
|
||||
"Missing a temporary folder" : "Falta una carpeta temporal",
|
||||
"Could not write file to disk" : "No fue posible escribir a disco",
|
||||
"A PHP extension stopped the file upload" : "Una extensión de PHP detuvo la carga del archivo",
|
||||
"Add a new stack" : "Agregar una nueva pila",
|
||||
"Submit" : "Enviar",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"All Boards" : "Todos los Tableros",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Actions" : "Acciones",
|
||||
"Enter a card title" : "Ingresa el título de la tarjeta",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Close" : "Cerrar",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Tags" : "Etiquetas",
|
||||
"Select users or groups to share with" : "Selecciona los usuarios o grupos con los cuales compartir",
|
||||
"Group" : "Grupo",
|
||||
"Circle" : "Círculo",
|
||||
"No matching user or group found." : "No se encontraron coincidencias de usuarios o grupos.",
|
||||
"Loading" : "Cargando",
|
||||
"Edit" : "Editar",
|
||||
@@ -57,7 +43,6 @@ OC.L10N.register(
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Deshacer borrado de tablero - De lo contrario el tablero se borrará durante la siguiente ejecución del cronjob. ",
|
||||
"Create new board" : "Crear un nuevo tablero",
|
||||
"New board title" : "Nuevo título del tablero",
|
||||
"Cancel upload" : "Cancelar carga",
|
||||
"by" : "por",
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Creado:",
|
||||
@@ -74,11 +59,9 @@ OC.L10N.register(
|
||||
"Saved" : "Guardado",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"Move board to archive" : "Mover el tablero al archivo",
|
||||
"Create a new board" : "Crear un nuevo tablero",
|
||||
"Settings" : "Configuraciones "
|
||||
"Create a new board" : "Crear un nuevo tablero"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -2,9 +2,7 @@
|
||||
"Remove user from card" : "Eliminar usuario de la tarjeta",
|
||||
"Hours" : "Horas",
|
||||
"Minutes" : "Minutos",
|
||||
"File already exists" : "El archivo ya existe",
|
||||
"Deck" : "Deck",
|
||||
"Personal" : "Personal",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
|
||||
"The board \"%s\" has been shared with you by %s." : "El tablero \"%s\" ha sido compartido contigo por %s.",
|
||||
"{user} has shared the board %s with you." : "{user} ha compartido el tablero %s contigo. ",
|
||||
@@ -12,30 +10,18 @@
|
||||
"To review" : "Para revisar",
|
||||
"Action needed" : "Acción requerida",
|
||||
"Later" : "Después",
|
||||
"Done" : "Terminado",
|
||||
"The file was uploaded" : "El archivo fue cargado",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El archivo cargado excede el valor establecido en la directiva upload_max_filesize en el archivo php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML",
|
||||
"The file was only partially uploaded" : "El archivo sólo fue cargado parcialmente",
|
||||
"No file was uploaded" : "No se cargó el archivo",
|
||||
"Missing a temporary folder" : "Falta una carpeta temporal",
|
||||
"Could not write file to disk" : "No fue posible escribir a disco",
|
||||
"A PHP extension stopped the file upload" : "Una extensión de PHP detuvo la carga del archivo",
|
||||
"Add a new stack" : "Agregar una nueva pila",
|
||||
"Submit" : "Enviar",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"All Boards" : "Todos los Tableros",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Actions" : "Acciones",
|
||||
"Enter a card title" : "Ingresa el título de la tarjeta",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Close" : "Cerrar",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Tags" : "Etiquetas",
|
||||
"Select users or groups to share with" : "Selecciona los usuarios o grupos con los cuales compartir",
|
||||
"Group" : "Grupo",
|
||||
"Circle" : "Círculo",
|
||||
"No matching user or group found." : "No se encontraron coincidencias de usuarios o grupos.",
|
||||
"Loading" : "Cargando",
|
||||
"Edit" : "Editar",
|
||||
@@ -55,7 +41,6 @@
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Deshacer borrado de tablero - De lo contrario el tablero se borrará durante la siguiente ejecución del cronjob. ",
|
||||
"Create new board" : "Crear un nuevo tablero",
|
||||
"New board title" : "Nuevo título del tablero",
|
||||
"Cancel upload" : "Cancelar carga",
|
||||
"by" : "por",
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Creado:",
|
||||
@@ -72,11 +57,9 @@
|
||||
"Saved" : "Guardado",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"Move board to archive" : "Mover el tablero al archivo",
|
||||
"Create a new board" : "Crear un nuevo tablero",
|
||||
"Settings" : "Configuraciones "
|
||||
"Create a new board" : "Crear un nuevo tablero"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
@@ -4,9 +4,7 @@ OC.L10N.register(
|
||||
"Remove user from card" : "Eliminar usuario de la tarjeta",
|
||||
"Hours" : "Horas",
|
||||
"Minutes" : "Minutos",
|
||||
"File already exists" : "El archivo ya existe",
|
||||
"Deck" : "Deck",
|
||||
"Personal" : "Personal",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
|
||||
"The board \"%s\" has been shared with you by %s." : "El tablero \"%s\" ha sido compartido contigo por %s.",
|
||||
"{user} has shared the board %s with you." : "{user} ha compartido el tablero %s contigo. ",
|
||||
@@ -14,30 +12,18 @@ OC.L10N.register(
|
||||
"To review" : "Para revisar",
|
||||
"Action needed" : "Acción requerida",
|
||||
"Later" : "Después",
|
||||
"Done" : "Terminado",
|
||||
"The file was uploaded" : "El archivo fue cargado",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El archivo cargado excede el valor establecido en la directiva upload_max_filesize en el archivo php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML",
|
||||
"The file was only partially uploaded" : "El archivo sólo fue cargado parcialmente",
|
||||
"No file was uploaded" : "No se cargó el archivo",
|
||||
"Missing a temporary folder" : "Falta una carpeta temporal",
|
||||
"Could not write file to disk" : "No fue posible escribir a disco",
|
||||
"A PHP extension stopped the file upload" : "Una extensión de PHP detuvo la carga del archivo",
|
||||
"Add a new stack" : "Agregar una nueva pila",
|
||||
"Submit" : "Enviar",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"All Boards" : "Todos los Tableros",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Actions" : "Acciones",
|
||||
"Enter a card title" : "Ingresa el título de la tarjeta",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Close" : "Cerrar",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Tags" : "Etiquetas",
|
||||
"Select users or groups to share with" : "Selecciona los usuarios o grupos con los cuales compartir",
|
||||
"Group" : "Grupo",
|
||||
"Circle" : "Círculo",
|
||||
"No matching user or group found." : "No se encontraron coincidencias de usuarios o grupos.",
|
||||
"Loading" : "Cargando",
|
||||
"Edit" : "Editar",
|
||||
@@ -57,7 +43,6 @@ OC.L10N.register(
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Deshacer borrado de tablero - De lo contrario el tablero se borrará durante la siguiente ejecución del cronjob. ",
|
||||
"Create new board" : "Crear un nuevo tablero",
|
||||
"New board title" : "Nuevo título del tablero",
|
||||
"Cancel upload" : "Cancelar carga",
|
||||
"by" : "por",
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Creado:",
|
||||
@@ -74,11 +59,9 @@ OC.L10N.register(
|
||||
"Saved" : "Guardado",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"Move board to archive" : "Mover el tablero al archivo",
|
||||
"Create a new board" : "Crear un nuevo tablero",
|
||||
"Settings" : "Configuraciones "
|
||||
"Create a new board" : "Crear un nuevo tablero"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -2,9 +2,7 @@
|
||||
"Remove user from card" : "Eliminar usuario de la tarjeta",
|
||||
"Hours" : "Horas",
|
||||
"Minutes" : "Minutos",
|
||||
"File already exists" : "El archivo ya existe",
|
||||
"Deck" : "Deck",
|
||||
"Personal" : "Personal",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
|
||||
"The board \"%s\" has been shared with you by %s." : "El tablero \"%s\" ha sido compartido contigo por %s.",
|
||||
"{user} has shared the board %s with you." : "{user} ha compartido el tablero %s contigo. ",
|
||||
@@ -12,30 +10,18 @@
|
||||
"To review" : "Para revisar",
|
||||
"Action needed" : "Acción requerida",
|
||||
"Later" : "Después",
|
||||
"Done" : "Terminado",
|
||||
"The file was uploaded" : "El archivo fue cargado",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El archivo cargado excede el valor establecido en la directiva upload_max_filesize en el archivo php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML",
|
||||
"The file was only partially uploaded" : "El archivo sólo fue cargado parcialmente",
|
||||
"No file was uploaded" : "No se cargó el archivo",
|
||||
"Missing a temporary folder" : "Falta una carpeta temporal",
|
||||
"Could not write file to disk" : "No fue posible escribir a disco",
|
||||
"A PHP extension stopped the file upload" : "Una extensión de PHP detuvo la carga del archivo",
|
||||
"Add a new stack" : "Agregar una nueva pila",
|
||||
"Submit" : "Enviar",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"All Boards" : "Todos los Tableros",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Actions" : "Acciones",
|
||||
"Enter a card title" : "Ingresa el título de la tarjeta",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Close" : "Cerrar",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Tags" : "Etiquetas",
|
||||
"Select users or groups to share with" : "Selecciona los usuarios o grupos con los cuales compartir",
|
||||
"Group" : "Grupo",
|
||||
"Circle" : "Círculo",
|
||||
"No matching user or group found." : "No se encontraron coincidencias de usuarios o grupos.",
|
||||
"Loading" : "Cargando",
|
||||
"Edit" : "Editar",
|
||||
@@ -55,7 +41,6 @@
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Deshacer borrado de tablero - De lo contrario el tablero se borrará durante la siguiente ejecución del cronjob. ",
|
||||
"Create new board" : "Crear un nuevo tablero",
|
||||
"New board title" : "Nuevo título del tablero",
|
||||
"Cancel upload" : "Cancelar carga",
|
||||
"by" : "por",
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Creado:",
|
||||
@@ -72,11 +57,9 @@
|
||||
"Saved" : "Guardado",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"Move board to archive" : "Mover el tablero al archivo",
|
||||
"Create a new board" : "Crear un nuevo tablero",
|
||||
"Settings" : "Configuraciones "
|
||||
"Create a new board" : "Crear un nuevo tablero"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
@@ -4,9 +4,7 @@ OC.L10N.register(
|
||||
"Remove user from card" : "Eliminar usuario de la tarjeta",
|
||||
"Hours" : "Horas",
|
||||
"Minutes" : "Minutos",
|
||||
"File already exists" : "El archivo ya existe",
|
||||
"Deck" : "Deck",
|
||||
"Personal" : "Personal",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
|
||||
"The board \"%s\" has been shared with you by %s." : "El tablero \"%s\" ha sido compartido contigo por %s.",
|
||||
"{user} has shared the board %s with you." : "{user} ha compartido el tablero %s contigo. ",
|
||||
@@ -14,30 +12,18 @@ OC.L10N.register(
|
||||
"To review" : "Para revisar",
|
||||
"Action needed" : "Acción requerida",
|
||||
"Later" : "Después",
|
||||
"Done" : "Terminado",
|
||||
"The file was uploaded" : "El archivo fue cargado",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El archivo cargado excede el valor establecido en la directiva upload_max_filesize en el archivo php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML",
|
||||
"The file was only partially uploaded" : "El archivo sólo fue cargado parcialmente",
|
||||
"No file was uploaded" : "No se cargó el archivo",
|
||||
"Missing a temporary folder" : "Falta una carpeta temporal",
|
||||
"Could not write file to disk" : "No fue posible escribir a disco",
|
||||
"A PHP extension stopped the file upload" : "Una extensión de PHP detuvo la carga del archivo",
|
||||
"Add a new stack" : "Agregar una nueva pila",
|
||||
"Submit" : "Enviar",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"All Boards" : "Todos los Tableros",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Actions" : "Acciones",
|
||||
"Enter a card title" : "Ingresa el título de la tarjeta",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Close" : "Cerrar",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Tags" : "Etiquetas",
|
||||
"Select users or groups to share with" : "Selecciona los usuarios o grupos con los cuales compartir",
|
||||
"Group" : "Grupo",
|
||||
"Circle" : "Círculo",
|
||||
"No matching user or group found." : "No se encontraron coincidencias de usuarios o grupos.",
|
||||
"Loading" : "Cargando",
|
||||
"Edit" : "Editar",
|
||||
@@ -57,7 +43,6 @@ OC.L10N.register(
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Deshacer borrado de tablero - De lo contrario el tablero se borrará durante la siguiente ejecución del cronjob. ",
|
||||
"Create new board" : "Crear un nuevo tablero",
|
||||
"New board title" : "Nuevo título del tablero",
|
||||
"Cancel upload" : "Cancelar carga",
|
||||
"by" : "por",
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Creado:",
|
||||
@@ -74,11 +59,9 @@ OC.L10N.register(
|
||||
"Saved" : "Guardado",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"Move board to archive" : "Mover el tablero al archivo",
|
||||
"Create a new board" : "Crear un nuevo tablero",
|
||||
"Settings" : "Configuraciones "
|
||||
"Create a new board" : "Crear un nuevo tablero"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -2,9 +2,7 @@
|
||||
"Remove user from card" : "Eliminar usuario de la tarjeta",
|
||||
"Hours" : "Horas",
|
||||
"Minutes" : "Minutos",
|
||||
"File already exists" : "El archivo ya existe",
|
||||
"Deck" : "Deck",
|
||||
"Personal" : "Personal",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
|
||||
"The board \"%s\" has been shared with you by %s." : "El tablero \"%s\" ha sido compartido contigo por %s.",
|
||||
"{user} has shared the board %s with you." : "{user} ha compartido el tablero %s contigo. ",
|
||||
@@ -12,30 +10,18 @@
|
||||
"To review" : "Para revisar",
|
||||
"Action needed" : "Acción requerida",
|
||||
"Later" : "Después",
|
||||
"Done" : "Terminado",
|
||||
"The file was uploaded" : "El archivo fue cargado",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El archivo cargado excede el valor establecido en la directiva upload_max_filesize en el archivo php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML",
|
||||
"The file was only partially uploaded" : "El archivo sólo fue cargado parcialmente",
|
||||
"No file was uploaded" : "No se cargó el archivo",
|
||||
"Missing a temporary folder" : "Falta una carpeta temporal",
|
||||
"Could not write file to disk" : "No fue posible escribir a disco",
|
||||
"A PHP extension stopped the file upload" : "Una extensión de PHP detuvo la carga del archivo",
|
||||
"Add a new stack" : "Agregar una nueva pila",
|
||||
"Submit" : "Enviar",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"All Boards" : "Todos los Tableros",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Actions" : "Acciones",
|
||||
"Enter a card title" : "Ingresa el título de la tarjeta",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Close" : "Cerrar",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Tags" : "Etiquetas",
|
||||
"Select users or groups to share with" : "Selecciona los usuarios o grupos con los cuales compartir",
|
||||
"Group" : "Grupo",
|
||||
"Circle" : "Círculo",
|
||||
"No matching user or group found." : "No se encontraron coincidencias de usuarios o grupos.",
|
||||
"Loading" : "Cargando",
|
||||
"Edit" : "Editar",
|
||||
@@ -55,7 +41,6 @@
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Deshacer borrado de tablero - De lo contrario el tablero se borrará durante la siguiente ejecución del cronjob. ",
|
||||
"Create new board" : "Crear un nuevo tablero",
|
||||
"New board title" : "Nuevo título del tablero",
|
||||
"Cancel upload" : "Cancelar carga",
|
||||
"by" : "por",
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Creado:",
|
||||
@@ -72,11 +57,9 @@
|
||||
"Saved" : "Guardado",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"Move board to archive" : "Mover el tablero al archivo",
|
||||
"Create a new board" : "Crear un nuevo tablero",
|
||||
"Settings" : "Configuraciones "
|
||||
"Create a new board" : "Crear un nuevo tablero"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
@@ -4,9 +4,7 @@ OC.L10N.register(
|
||||
"Remove user from card" : "Eliminar usuario de la tarjeta",
|
||||
"Hours" : "Horas",
|
||||
"Minutes" : "Minutos",
|
||||
"File already exists" : "El archivo ya existe",
|
||||
"Deck" : "Deck",
|
||||
"Personal" : "Personal",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
|
||||
"The board \"%s\" has been shared with you by %s." : "El tablero \"%s\" ha sido compartido contigo por %s.",
|
||||
"{user} has shared the board %s with you." : "{user} ha compartido el tablero %s contigo. ",
|
||||
@@ -14,30 +12,18 @@ OC.L10N.register(
|
||||
"To review" : "Para revisar",
|
||||
"Action needed" : "Acción requerida",
|
||||
"Later" : "Después",
|
||||
"Done" : "Terminado",
|
||||
"The file was uploaded" : "El archivo fue cargado",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El archivo cargado excede el valor establecido en la directiva upload_max_filesize en el archivo php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML",
|
||||
"The file was only partially uploaded" : "El archivo sólo fue cargado parcialmente",
|
||||
"No file was uploaded" : "No se cargó el archivo",
|
||||
"Missing a temporary folder" : "Falta una carpeta temporal",
|
||||
"Could not write file to disk" : "No fue posible escribir a disco",
|
||||
"A PHP extension stopped the file upload" : "Una extensión de PHP detuvo la carga del archivo",
|
||||
"Add a new stack" : "Agregar una nueva pila",
|
||||
"Submit" : "Enviar",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"All Boards" : "Todos los Tableros",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Actions" : "Acciones",
|
||||
"Enter a card title" : "Ingresa el título de la tarjeta",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Close" : "Cerrar",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Tags" : "Etiquetas",
|
||||
"Select users or groups to share with" : "Selecciona los usuarios o grupos con los cuales compartir",
|
||||
"Group" : "Grupo",
|
||||
"Circle" : "Círculo",
|
||||
"No matching user or group found." : "No se encontraron coincidencias de usuarios o grupos.",
|
||||
"Loading" : "Cargando",
|
||||
"Edit" : "Editar",
|
||||
@@ -57,7 +43,6 @@ OC.L10N.register(
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Deshacer borrado de tablero - De lo contrario el tablero se borrará durante la siguiente ejecución del cronjob. ",
|
||||
"Create new board" : "Crear un nuevo tablero",
|
||||
"New board title" : "Nuevo título del tablero",
|
||||
"Cancel upload" : "Cancelar carga",
|
||||
"by" : "por",
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Creado:",
|
||||
@@ -74,11 +59,9 @@ OC.L10N.register(
|
||||
"Saved" : "Guardado",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"Move board to archive" : "Mover el tablero al archivo",
|
||||
"Create a new board" : "Crear un nuevo tablero",
|
||||
"Settings" : "Configuraciones "
|
||||
"Create a new board" : "Crear un nuevo tablero"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -2,9 +2,7 @@
|
||||
"Remove user from card" : "Eliminar usuario de la tarjeta",
|
||||
"Hours" : "Horas",
|
||||
"Minutes" : "Minutos",
|
||||
"File already exists" : "El archivo ya existe",
|
||||
"Deck" : "Deck",
|
||||
"Personal" : "Personal",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
|
||||
"The board \"%s\" has been shared with you by %s." : "El tablero \"%s\" ha sido compartido contigo por %s.",
|
||||
"{user} has shared the board %s with you." : "{user} ha compartido el tablero %s contigo. ",
|
||||
@@ -12,30 +10,18 @@
|
||||
"To review" : "Para revisar",
|
||||
"Action needed" : "Acción requerida",
|
||||
"Later" : "Después",
|
||||
"Done" : "Terminado",
|
||||
"The file was uploaded" : "El archivo fue cargado",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El archivo cargado excede el valor establecido en la directiva upload_max_filesize en el archivo php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML",
|
||||
"The file was only partially uploaded" : "El archivo sólo fue cargado parcialmente",
|
||||
"No file was uploaded" : "No se cargó el archivo",
|
||||
"Missing a temporary folder" : "Falta una carpeta temporal",
|
||||
"Could not write file to disk" : "No fue posible escribir a disco",
|
||||
"A PHP extension stopped the file upload" : "Una extensión de PHP detuvo la carga del archivo",
|
||||
"Add a new stack" : "Agregar una nueva pila",
|
||||
"Submit" : "Enviar",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"All Boards" : "Todos los Tableros",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Actions" : "Acciones",
|
||||
"Enter a card title" : "Ingresa el título de la tarjeta",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Close" : "Cerrar",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Tags" : "Etiquetas",
|
||||
"Select users or groups to share with" : "Selecciona los usuarios o grupos con los cuales compartir",
|
||||
"Group" : "Grupo",
|
||||
"Circle" : "Círculo",
|
||||
"No matching user or group found." : "No se encontraron coincidencias de usuarios o grupos.",
|
||||
"Loading" : "Cargando",
|
||||
"Edit" : "Editar",
|
||||
@@ -55,7 +41,6 @@
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Deshacer borrado de tablero - De lo contrario el tablero se borrará durante la siguiente ejecución del cronjob. ",
|
||||
"Create new board" : "Crear un nuevo tablero",
|
||||
"New board title" : "Nuevo título del tablero",
|
||||
"Cancel upload" : "Cancelar carga",
|
||||
"by" : "por",
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Creado:",
|
||||
@@ -72,11 +57,9 @@
|
||||
"Saved" : "Guardado",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"Move board to archive" : "Mover el tablero al archivo",
|
||||
"Create a new board" : "Crear un nuevo tablero",
|
||||
"Settings" : "Configuraciones "
|
||||
"Create a new board" : "Crear un nuevo tablero"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
@@ -4,9 +4,7 @@ OC.L10N.register(
|
||||
"Remove user from card" : "Eliminar usuario de la tarjeta",
|
||||
"Hours" : "Horas",
|
||||
"Minutes" : "Minutos",
|
||||
"File already exists" : "El archivo ya existe",
|
||||
"Deck" : "Deck",
|
||||
"Personal" : "Personal",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
|
||||
"The board \"%s\" has been shared with you by %s." : "El tablero \"%s\" ha sido compartido contigo por %s.",
|
||||
"{user} has shared the board %s with you." : "{user} ha compartido el tablero %s contigo. ",
|
||||
@@ -14,30 +12,18 @@ OC.L10N.register(
|
||||
"To review" : "Para revisar",
|
||||
"Action needed" : "Acción requerida",
|
||||
"Later" : "Después",
|
||||
"Done" : "Terminado",
|
||||
"The file was uploaded" : "El archivo fue cargado",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El archivo cargado excede el valor establecido en la directiva upload_max_filesize en el archivo php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML",
|
||||
"The file was only partially uploaded" : "El archivo sólo fue cargado parcialmente",
|
||||
"No file was uploaded" : "No se cargó el archivo",
|
||||
"Missing a temporary folder" : "Falta una carpeta temporal",
|
||||
"Could not write file to disk" : "No fue posible escribir a disco",
|
||||
"A PHP extension stopped the file upload" : "Una extensión de PHP detuvo la carga del archivo",
|
||||
"Add a new stack" : "Agregar una nueva pila",
|
||||
"Submit" : "Enviar",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"All Boards" : "Todos los Tableros",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Actions" : "Acciones",
|
||||
"Enter a card title" : "Ingresa el título de la tarjeta",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Close" : "Cerrar",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Tags" : "Etiquetas",
|
||||
"Select users or groups to share with" : "Selecciona los usuarios o grupos con los cuales compartir",
|
||||
"Group" : "Grupo",
|
||||
"Circle" : "Círculo",
|
||||
"No matching user or group found." : "No se encontraron coincidencias de usuarios o grupos.",
|
||||
"Loading" : "Cargando",
|
||||
"Edit" : "Editar",
|
||||
@@ -57,7 +43,6 @@ OC.L10N.register(
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Deshacer borrado de tablero - De lo contrario el tablero se borrará durante la siguiente ejecución del cronjob. ",
|
||||
"Create new board" : "Crear un nuevo tablero",
|
||||
"New board title" : "Nuevo título del tablero",
|
||||
"Cancel upload" : "Cancelar carga",
|
||||
"by" : "por",
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Creado:",
|
||||
@@ -74,11 +59,9 @@ OC.L10N.register(
|
||||
"Saved" : "Guardado",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"Move board to archive" : "Mover el tablero al archivo",
|
||||
"Create a new board" : "Crear un nuevo tablero",
|
||||
"Settings" : "Configuraciones "
|
||||
"Create a new board" : "Crear un nuevo tablero"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -2,9 +2,7 @@
|
||||
"Remove user from card" : "Eliminar usuario de la tarjeta",
|
||||
"Hours" : "Horas",
|
||||
"Minutes" : "Minutos",
|
||||
"File already exists" : "El archivo ya existe",
|
||||
"Deck" : "Deck",
|
||||
"Personal" : "Personal",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
|
||||
"The board \"%s\" has been shared with you by %s." : "El tablero \"%s\" ha sido compartido contigo por %s.",
|
||||
"{user} has shared the board %s with you." : "{user} ha compartido el tablero %s contigo. ",
|
||||
@@ -12,30 +10,18 @@
|
||||
"To review" : "Para revisar",
|
||||
"Action needed" : "Acción requerida",
|
||||
"Later" : "Después",
|
||||
"Done" : "Terminado",
|
||||
"The file was uploaded" : "El archivo fue cargado",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El archivo cargado excede el valor establecido en la directiva upload_max_filesize en el archivo php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML",
|
||||
"The file was only partially uploaded" : "El archivo sólo fue cargado parcialmente",
|
||||
"No file was uploaded" : "No se cargó el archivo",
|
||||
"Missing a temporary folder" : "Falta una carpeta temporal",
|
||||
"Could not write file to disk" : "No fue posible escribir a disco",
|
||||
"A PHP extension stopped the file upload" : "Una extensión de PHP detuvo la carga del archivo",
|
||||
"Add a new stack" : "Agregar una nueva pila",
|
||||
"Submit" : "Enviar",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"All Boards" : "Todos los Tableros",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Actions" : "Acciones",
|
||||
"Enter a card title" : "Ingresa el título de la tarjeta",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Close" : "Cerrar",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Tags" : "Etiquetas",
|
||||
"Select users or groups to share with" : "Selecciona los usuarios o grupos con los cuales compartir",
|
||||
"Group" : "Grupo",
|
||||
"Circle" : "Círculo",
|
||||
"No matching user or group found." : "No se encontraron coincidencias de usuarios o grupos.",
|
||||
"Loading" : "Cargando",
|
||||
"Edit" : "Editar",
|
||||
@@ -55,7 +41,6 @@
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Deshacer borrado de tablero - De lo contrario el tablero se borrará durante la siguiente ejecución del cronjob. ",
|
||||
"Create new board" : "Crear un nuevo tablero",
|
||||
"New board title" : "Nuevo título del tablero",
|
||||
"Cancel upload" : "Cancelar carga",
|
||||
"by" : "por",
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Creado:",
|
||||
@@ -72,11 +57,9 @@
|
||||
"Saved" : "Guardado",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"Move board to archive" : "Mover el tablero al archivo",
|
||||
"Create a new board" : "Crear un nuevo tablero",
|
||||
"Settings" : "Configuraciones "
|
||||
"Create a new board" : "Crear un nuevo tablero"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
@@ -3,9 +3,7 @@ OC.L10N.register(
|
||||
{
|
||||
"Hours" : "Horas",
|
||||
"Minutes" : "Minutos",
|
||||
"File already exists" : "El archivo ya existe",
|
||||
"Deck" : "Deck",
|
||||
"Personal" : "Personal",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
|
||||
"The board \"%s\" has been shared with you by %s." : "El tablero \"%s\" ha sido compartido contigo por %s.",
|
||||
"{user} has shared the board %s with you." : "{user} ha compartido el tablero %s contigo. ",
|
||||
@@ -13,26 +11,18 @@ OC.L10N.register(
|
||||
"To review" : "Para revisar",
|
||||
"Action needed" : "Acción requerida",
|
||||
"Later" : "Después",
|
||||
"Done" : "Terminado",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El archivo cargado excede el valor establecido en la directiva upload_max_filesize en el archivo php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML",
|
||||
"No file was uploaded" : "No se cargó el archivo",
|
||||
"Missing a temporary folder" : "Falta una carpeta temporal",
|
||||
"Add a new stack" : "Agregar una nueva pila",
|
||||
"Submit" : "Enviar",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"All Boards" : "Todos los Tableros",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Actions" : "Acciones",
|
||||
"Enter a card title" : "Ingresa el título de la tarjeta",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Close" : "Cerrar",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Tags" : "Etiquetas",
|
||||
"Select users or groups to share with" : "Selecciona los usuarios o grupos con los cuales compartir",
|
||||
"Group" : "Grupo",
|
||||
"Circle" : "Círculo",
|
||||
"No matching user or group found." : "No se encontraron coincidencias de usuarios o grupos.",
|
||||
"Loading" : "Cargando",
|
||||
"Edit" : "Editar",
|
||||
@@ -52,7 +42,6 @@ OC.L10N.register(
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Deshacer borrado de tablero - De lo contrario el tablero se borrará durante la siguiente ejecución del cronjob. ",
|
||||
"Create new board" : "Crear un nuevo tablero",
|
||||
"New board title" : "Nuevo título del tablero",
|
||||
"Cancel upload" : "Cancelar carga",
|
||||
"by" : "por",
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Creado:",
|
||||
@@ -68,11 +57,9 @@ OC.L10N.register(
|
||||
"Saved" : "Guardado",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"Move board to archive" : "Mover el tablero al archivo",
|
||||
"Create a new board" : "Crear un nuevo tablero",
|
||||
"Settings" : "Configuraciones "
|
||||
"Create a new board" : "Crear un nuevo tablero"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -1,9 +1,7 @@
|
||||
{ "translations": {
|
||||
"Hours" : "Horas",
|
||||
"Minutes" : "Minutos",
|
||||
"File already exists" : "El archivo ya existe",
|
||||
"Deck" : "Deck",
|
||||
"Personal" : "Personal",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
|
||||
"The board \"%s\" has been shared with you by %s." : "El tablero \"%s\" ha sido compartido contigo por %s.",
|
||||
"{user} has shared the board %s with you." : "{user} ha compartido el tablero %s contigo. ",
|
||||
@@ -11,26 +9,18 @@
|
||||
"To review" : "Para revisar",
|
||||
"Action needed" : "Acción requerida",
|
||||
"Later" : "Después",
|
||||
"Done" : "Terminado",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El archivo cargado excede el valor establecido en la directiva upload_max_filesize en el archivo php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML",
|
||||
"No file was uploaded" : "No se cargó el archivo",
|
||||
"Missing a temporary folder" : "Falta una carpeta temporal",
|
||||
"Add a new stack" : "Agregar una nueva pila",
|
||||
"Submit" : "Enviar",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"All Boards" : "Todos los Tableros",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Actions" : "Acciones",
|
||||
"Enter a card title" : "Ingresa el título de la tarjeta",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Close" : "Cerrar",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Tags" : "Etiquetas",
|
||||
"Select users or groups to share with" : "Selecciona los usuarios o grupos con los cuales compartir",
|
||||
"Group" : "Grupo",
|
||||
"Circle" : "Círculo",
|
||||
"No matching user or group found." : "No se encontraron coincidencias de usuarios o grupos.",
|
||||
"Loading" : "Cargando",
|
||||
"Edit" : "Editar",
|
||||
@@ -50,7 +40,6 @@
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Deshacer borrado de tablero - De lo contrario el tablero se borrará durante la siguiente ejecución del cronjob. ",
|
||||
"Create new board" : "Crear un nuevo tablero",
|
||||
"New board title" : "Nuevo título del tablero",
|
||||
"Cancel upload" : "Cancelar carga",
|
||||
"by" : "por",
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Creado:",
|
||||
@@ -66,11 +55,9 @@
|
||||
"Saved" : "Guardado",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"Move board to archive" : "Mover el tablero al archivo",
|
||||
"Create a new board" : "Crear un nuevo tablero",
|
||||
"Settings" : "Configuraciones "
|
||||
"Create a new board" : "Crear un nuevo tablero"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
@@ -4,9 +4,7 @@ OC.L10N.register(
|
||||
"Remove user from card" : "Eliminar usuario de la tarjeta",
|
||||
"Hours" : "Horas",
|
||||
"Minutes" : "Minutos",
|
||||
"File already exists" : "El archivo ya existe",
|
||||
"Deck" : "Deck",
|
||||
"Personal" : "Personal",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
|
||||
"The board \"%s\" has been shared with you by %s." : "El tablero \"%s\" ha sido compartido contigo por %s.",
|
||||
"{user} has shared the board %s with you." : "{user} ha compartido el tablero %s contigo. ",
|
||||
@@ -14,15 +12,6 @@ OC.L10N.register(
|
||||
"To review" : "Para revisar",
|
||||
"Action needed" : "Acción requerida",
|
||||
"Later" : "Después",
|
||||
"Done" : "Terminado",
|
||||
"The file was uploaded" : "El archivo fue cargado",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El archivo cargado excede el valor establecido en la directiva upload_max_filesize en el archivo php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML",
|
||||
"The file was only partially uploaded" : "El archivo sólo fue cargado parcialmente",
|
||||
"No file was uploaded" : "No se cargó el archivo",
|
||||
"Missing a temporary folder" : "Falta una carpeta temporal",
|
||||
"Could not write file to disk" : "No fue posible escribir a disco",
|
||||
"A PHP extension stopped the file upload" : "Una extensión de PHP detuvo la carga del archivo",
|
||||
"A kanban style project and personal management tool for Nextcloud" : "Una herramienta de administración de proyectos y personal estilo kanban",
|
||||
"Add a new stack" : "Agregar una nueva pila",
|
||||
"Submit" : "Enviar",
|
||||
@@ -30,15 +19,12 @@ OC.L10N.register(
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"All Boards" : "Todos los Tableros",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Actions" : "Acciones",
|
||||
"Enter a card title" : "Ingresa el título de la tarjeta",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Close" : "Cerrar",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Tags" : "Etiquetas",
|
||||
"Select users or groups to share with" : "Selecciona los usuarios o grupos con los cuales compartir",
|
||||
"Group" : "Grupo",
|
||||
"Circle" : "Círculo",
|
||||
"No matching user or group found." : "No se encontraron coincidencias de usuarios o grupos.",
|
||||
"Loading" : "Cargando",
|
||||
"Edit" : "Editar",
|
||||
@@ -58,7 +44,6 @@ OC.L10N.register(
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Deshacer borrado de tablero - De lo contrario el tablero se borrará durante la siguiente ejecución del cronjob. ",
|
||||
"Create new board" : "Crear un nuevo tablero",
|
||||
"New board title" : "Nuevo título del tablero",
|
||||
"Cancel upload" : "Cancelar carga",
|
||||
"by" : "por",
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Creado:",
|
||||
@@ -72,15 +57,12 @@ OC.L10N.register(
|
||||
"Click to set" : "Da click aquí para establecer",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
"Attachments" : "Adjuntos",
|
||||
"Saved" : "Guardado",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"Move board to archive" : "Mover el tablero al archivo",
|
||||
"Create a new board" : "Crear un nuevo tablero",
|
||||
"Settings" : "Configuraciones "
|
||||
"Create a new board" : "Crear un nuevo tablero"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -2,9 +2,7 @@
|
||||
"Remove user from card" : "Eliminar usuario de la tarjeta",
|
||||
"Hours" : "Horas",
|
||||
"Minutes" : "Minutos",
|
||||
"File already exists" : "El archivo ya existe",
|
||||
"Deck" : "Deck",
|
||||
"Personal" : "Personal",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
|
||||
"The board \"%s\" has been shared with you by %s." : "El tablero \"%s\" ha sido compartido contigo por %s.",
|
||||
"{user} has shared the board %s with you." : "{user} ha compartido el tablero %s contigo. ",
|
||||
@@ -12,15 +10,6 @@
|
||||
"To review" : "Para revisar",
|
||||
"Action needed" : "Acción requerida",
|
||||
"Later" : "Después",
|
||||
"Done" : "Terminado",
|
||||
"The file was uploaded" : "El archivo fue cargado",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El archivo cargado excede el valor establecido en la directiva upload_max_filesize en el archivo php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML",
|
||||
"The file was only partially uploaded" : "El archivo sólo fue cargado parcialmente",
|
||||
"No file was uploaded" : "No se cargó el archivo",
|
||||
"Missing a temporary folder" : "Falta una carpeta temporal",
|
||||
"Could not write file to disk" : "No fue posible escribir a disco",
|
||||
"A PHP extension stopped the file upload" : "Una extensión de PHP detuvo la carga del archivo",
|
||||
"A kanban style project and personal management tool for Nextcloud" : "Una herramienta de administración de proyectos y personal estilo kanban",
|
||||
"Add a new stack" : "Agregar una nueva pila",
|
||||
"Submit" : "Enviar",
|
||||
@@ -28,15 +17,12 @@
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"All Boards" : "Todos los Tableros",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Actions" : "Acciones",
|
||||
"Enter a card title" : "Ingresa el título de la tarjeta",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Close" : "Cerrar",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Tags" : "Etiquetas",
|
||||
"Select users or groups to share with" : "Selecciona los usuarios o grupos con los cuales compartir",
|
||||
"Group" : "Grupo",
|
||||
"Circle" : "Círculo",
|
||||
"No matching user or group found." : "No se encontraron coincidencias de usuarios o grupos.",
|
||||
"Loading" : "Cargando",
|
||||
"Edit" : "Editar",
|
||||
@@ -56,7 +42,6 @@
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Deshacer borrado de tablero - De lo contrario el tablero se borrará durante la siguiente ejecución del cronjob. ",
|
||||
"Create new board" : "Crear un nuevo tablero",
|
||||
"New board title" : "Nuevo título del tablero",
|
||||
"Cancel upload" : "Cancelar carga",
|
||||
"by" : "por",
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Creado:",
|
||||
@@ -70,15 +55,12 @@
|
||||
"Click to set" : "Da click aquí para establecer",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
"Attachments" : "Adjuntos",
|
||||
"Saved" : "Guardado",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"Move board to archive" : "Mover el tablero al archivo",
|
||||
"Create a new board" : "Crear un nuevo tablero",
|
||||
"Settings" : "Configuraciones "
|
||||
"Create a new board" : "Crear un nuevo tablero"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
@@ -3,9 +3,7 @@ OC.L10N.register(
|
||||
{
|
||||
"Hours" : "Horas",
|
||||
"Minutes" : "Minutos",
|
||||
"File already exists" : "El archivo ya existe",
|
||||
"Deck" : "Deck",
|
||||
"Personal" : "Personal",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
|
||||
"The board \"%s\" has been shared with you by %s." : "El tablero \"%s\" ha sido compartido contigo por %s.",
|
||||
"{user} has shared the board %s with you." : "{user} ha compartido el tablero %s contigo. ",
|
||||
@@ -13,26 +11,18 @@ OC.L10N.register(
|
||||
"To review" : "Para revisar",
|
||||
"Action needed" : "Acción requerida",
|
||||
"Later" : "Después",
|
||||
"Done" : "Terminado",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El archivo cargado excede el valor establecido en la directiva upload_max_filesize en el archivo php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML",
|
||||
"No file was uploaded" : "No se cargó el archivo",
|
||||
"Missing a temporary folder" : "Falta una carpeta temporal",
|
||||
"Add a new stack" : "Agregar una nueva pila",
|
||||
"Submit" : "Enviar",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"All Boards" : "Todos los Tableros",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Actions" : "Acciones",
|
||||
"Enter a card title" : "Ingresa el título de la tarjeta",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Close" : "Cerrar",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Tags" : "Etiquetas",
|
||||
"Select users or groups to share with" : "Selecciona los usuarios o grupos con los cuales compartir",
|
||||
"Group" : "Grupo",
|
||||
"Circle" : "Círculo",
|
||||
"No matching user or group found." : "No se encontraron coincidencias de usuarios o grupos.",
|
||||
"Loading" : "Cargando",
|
||||
"Edit" : "Editar",
|
||||
@@ -52,7 +42,6 @@ OC.L10N.register(
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Deshacer borrado de tablero - De lo contrario el tablero se borrará durante la siguiente ejecución del cronjob. ",
|
||||
"Create new board" : "Crear un nuevo tablero",
|
||||
"New board title" : "Nuevo título del tablero",
|
||||
"Cancel upload" : "Cancelar carga",
|
||||
"by" : "por",
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Creado:",
|
||||
@@ -68,11 +57,9 @@ OC.L10N.register(
|
||||
"Saved" : "Guardado",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"Move board to archive" : "Mover el tablero al archivo",
|
||||
"Create a new board" : "Crear un nuevo tablero",
|
||||
"Settings" : "Configuraciones "
|
||||
"Create a new board" : "Crear un nuevo tablero"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -1,9 +1,7 @@
|
||||
{ "translations": {
|
||||
"Hours" : "Horas",
|
||||
"Minutes" : "Minutos",
|
||||
"File already exists" : "El archivo ya existe",
|
||||
"Deck" : "Deck",
|
||||
"Personal" : "Personal",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
|
||||
"The board \"%s\" has been shared with you by %s." : "El tablero \"%s\" ha sido compartido contigo por %s.",
|
||||
"{user} has shared the board %s with you." : "{user} ha compartido el tablero %s contigo. ",
|
||||
@@ -11,26 +9,18 @@
|
||||
"To review" : "Para revisar",
|
||||
"Action needed" : "Acción requerida",
|
||||
"Later" : "Después",
|
||||
"Done" : "Terminado",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El archivo cargado excede el valor establecido en la directiva upload_max_filesize en el archivo php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML",
|
||||
"No file was uploaded" : "No se cargó el archivo",
|
||||
"Missing a temporary folder" : "Falta una carpeta temporal",
|
||||
"Add a new stack" : "Agregar una nueva pila",
|
||||
"Submit" : "Enviar",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"All Boards" : "Todos los Tableros",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Actions" : "Acciones",
|
||||
"Enter a card title" : "Ingresa el título de la tarjeta",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Close" : "Cerrar",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Tags" : "Etiquetas",
|
||||
"Select users or groups to share with" : "Selecciona los usuarios o grupos con los cuales compartir",
|
||||
"Group" : "Grupo",
|
||||
"Circle" : "Círculo",
|
||||
"No matching user or group found." : "No se encontraron coincidencias de usuarios o grupos.",
|
||||
"Loading" : "Cargando",
|
||||
"Edit" : "Editar",
|
||||
@@ -50,7 +40,6 @@
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Deshacer borrado de tablero - De lo contrario el tablero se borrará durante la siguiente ejecución del cronjob. ",
|
||||
"Create new board" : "Crear un nuevo tablero",
|
||||
"New board title" : "Nuevo título del tablero",
|
||||
"Cancel upload" : "Cancelar carga",
|
||||
"by" : "por",
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Creado:",
|
||||
@@ -66,11 +55,9 @@
|
||||
"Saved" : "Guardado",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"Move board to archive" : "Mover el tablero al archivo",
|
||||
"Create a new board" : "Crear un nuevo tablero",
|
||||
"Settings" : "Configuraciones "
|
||||
"Create a new board" : "Crear un nuevo tablero"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
@@ -3,9 +3,7 @@ OC.L10N.register(
|
||||
{
|
||||
"Hours" : "Horas",
|
||||
"Minutes" : "Minutos",
|
||||
"File already exists" : "El archivo ya existe",
|
||||
"Deck" : "Deck",
|
||||
"Personal" : "Personal",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
|
||||
"The board \"%s\" has been shared with you by %s." : "El tablero \"%s\" ha sido compartido contigo por %s.",
|
||||
"{user} has shared the board %s with you." : "{user} ha compartido el tablero %s contigo. ",
|
||||
@@ -13,26 +11,18 @@ OC.L10N.register(
|
||||
"To review" : "Para revisar",
|
||||
"Action needed" : "Acción requerida",
|
||||
"Later" : "Después",
|
||||
"Done" : "Terminado",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El archivo cargado excede el valor establecido en la directiva upload_max_filesize en el archivo php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML",
|
||||
"No file was uploaded" : "No se cargó el archivo",
|
||||
"Missing a temporary folder" : "Falta una carpeta temporal",
|
||||
"Add a new stack" : "Agregar una nueva pila",
|
||||
"Submit" : "Enviar",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"All Boards" : "Todos los Tableros",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Actions" : "Acciones",
|
||||
"Enter a card title" : "Ingresa el título de la tarjeta",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Close" : "Cerrar",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Tags" : "Etiquetas",
|
||||
"Select users or groups to share with" : "Selecciona los usuarios o grupos con los cuales compartir",
|
||||
"Group" : "Grupo",
|
||||
"Circle" : "Círculo",
|
||||
"No matching user or group found." : "No se encontraron coincidencias de usuarios o grupos.",
|
||||
"Loading" : "Cargando",
|
||||
"Edit" : "Editar",
|
||||
@@ -52,7 +42,6 @@ OC.L10N.register(
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Deshacer borrado de tablero - De lo contrario el tablero se borrará durante la siguiente ejecución del cronjob. ",
|
||||
"Create new board" : "Crear un nuevo tablero",
|
||||
"New board title" : "Nuevo título del tablero",
|
||||
"Cancel upload" : "Cancelar carga",
|
||||
"by" : "por",
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Creado:",
|
||||
@@ -68,11 +57,9 @@ OC.L10N.register(
|
||||
"Saved" : "Guardado",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"Move board to archive" : "Mover el tablero al archivo",
|
||||
"Create a new board" : "Crear un nuevo tablero",
|
||||
"Settings" : "Configuraciones "
|
||||
"Create a new board" : "Crear un nuevo tablero"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -1,9 +1,7 @@
|
||||
{ "translations": {
|
||||
"Hours" : "Horas",
|
||||
"Minutes" : "Minutos",
|
||||
"File already exists" : "El archivo ya existe",
|
||||
"Deck" : "Deck",
|
||||
"Personal" : "Personal",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
|
||||
"The board \"%s\" has been shared with you by %s." : "El tablero \"%s\" ha sido compartido contigo por %s.",
|
||||
"{user} has shared the board %s with you." : "{user} ha compartido el tablero %s contigo. ",
|
||||
@@ -11,26 +9,18 @@
|
||||
"To review" : "Para revisar",
|
||||
"Action needed" : "Acción requerida",
|
||||
"Later" : "Después",
|
||||
"Done" : "Terminado",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El archivo cargado excede el valor establecido en la directiva upload_max_filesize en el archivo php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML",
|
||||
"No file was uploaded" : "No se cargó el archivo",
|
||||
"Missing a temporary folder" : "Falta una carpeta temporal",
|
||||
"Add a new stack" : "Agregar una nueva pila",
|
||||
"Submit" : "Enviar",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"All Boards" : "Todos los Tableros",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Actions" : "Acciones",
|
||||
"Enter a card title" : "Ingresa el título de la tarjeta",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Close" : "Cerrar",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Tags" : "Etiquetas",
|
||||
"Select users or groups to share with" : "Selecciona los usuarios o grupos con los cuales compartir",
|
||||
"Group" : "Grupo",
|
||||
"Circle" : "Círculo",
|
||||
"No matching user or group found." : "No se encontraron coincidencias de usuarios o grupos.",
|
||||
"Loading" : "Cargando",
|
||||
"Edit" : "Editar",
|
||||
@@ -50,7 +40,6 @@
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Deshacer borrado de tablero - De lo contrario el tablero se borrará durante la siguiente ejecución del cronjob. ",
|
||||
"Create new board" : "Crear un nuevo tablero",
|
||||
"New board title" : "Nuevo título del tablero",
|
||||
"Cancel upload" : "Cancelar carga",
|
||||
"by" : "por",
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Creado:",
|
||||
@@ -66,11 +55,9 @@
|
||||
"Saved" : "Guardado",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"Move board to archive" : "Mover el tablero al archivo",
|
||||
"Create a new board" : "Crear un nuevo tablero",
|
||||
"Settings" : "Configuraciones "
|
||||
"Create a new board" : "Crear un nuevo tablero"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
@@ -3,9 +3,7 @@ OC.L10N.register(
|
||||
{
|
||||
"Hours" : "Horas",
|
||||
"Minutes" : "Minutos",
|
||||
"File already exists" : "El archivo ya existe",
|
||||
"Deck" : "Deck",
|
||||
"Personal" : "Personal",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
|
||||
"The board \"%s\" has been shared with you by %s." : "El tablero \"%s\" ha sido compartido contigo por %s.",
|
||||
"{user} has shared the board %s with you." : "{user} ha compartido el tablero %s contigo. ",
|
||||
@@ -13,26 +11,18 @@ OC.L10N.register(
|
||||
"To review" : "Para revisar",
|
||||
"Action needed" : "Acción requerida",
|
||||
"Later" : "Después",
|
||||
"Done" : "Terminado",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El archivo cargado excede el valor establecido en la directiva upload_max_filesize en el archivo php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML",
|
||||
"No file was uploaded" : "No se cargó el archivo",
|
||||
"Missing a temporary folder" : "Falta una carpeta temporal",
|
||||
"Add a new stack" : "Agregar una nueva pila",
|
||||
"Submit" : "Enviar",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"All Boards" : "Todos los Tableros",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Actions" : "Acciones",
|
||||
"Enter a card title" : "Ingresa el título de la tarjeta",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Close" : "Cerrar",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Tags" : "Etiquetas",
|
||||
"Select users or groups to share with" : "Selecciona los usuarios o grupos con los cuales compartir",
|
||||
"Group" : "Grupo",
|
||||
"Circle" : "Círculo",
|
||||
"No matching user or group found." : "No se encontraron coincidencias de usuarios o grupos.",
|
||||
"Loading" : "Cargando",
|
||||
"Edit" : "Editar",
|
||||
@@ -52,7 +42,6 @@ OC.L10N.register(
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Deshacer borrado de tablero - De lo contrario el tablero se borrará durante la siguiente ejecución del cronjob. ",
|
||||
"Create new board" : "Crear un nuevo tablero",
|
||||
"New board title" : "Nuevo título del tablero",
|
||||
"Cancel upload" : "Cancelar carga",
|
||||
"by" : "por",
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Creado:",
|
||||
@@ -68,11 +57,9 @@ OC.L10N.register(
|
||||
"Saved" : "Guardado",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"Move board to archive" : "Mover el tablero al archivo",
|
||||
"Create a new board" : "Crear un nuevo tablero",
|
||||
"Settings" : "Configuraciones "
|
||||
"Create a new board" : "Crear un nuevo tablero"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -1,9 +1,7 @@
|
||||
{ "translations": {
|
||||
"Hours" : "Horas",
|
||||
"Minutes" : "Minutos",
|
||||
"File already exists" : "El archivo ya existe",
|
||||
"Deck" : "Deck",
|
||||
"Personal" : "Personal",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
|
||||
"The board \"%s\" has been shared with you by %s." : "El tablero \"%s\" ha sido compartido contigo por %s.",
|
||||
"{user} has shared the board %s with you." : "{user} ha compartido el tablero %s contigo. ",
|
||||
@@ -11,26 +9,18 @@
|
||||
"To review" : "Para revisar",
|
||||
"Action needed" : "Acción requerida",
|
||||
"Later" : "Después",
|
||||
"Done" : "Terminado",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El archivo cargado excede el valor establecido en la directiva upload_max_filesize en el archivo php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML",
|
||||
"No file was uploaded" : "No se cargó el archivo",
|
||||
"Missing a temporary folder" : "Falta una carpeta temporal",
|
||||
"Add a new stack" : "Agregar una nueva pila",
|
||||
"Submit" : "Enviar",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"All Boards" : "Todos los Tableros",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Actions" : "Acciones",
|
||||
"Enter a card title" : "Ingresa el título de la tarjeta",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Close" : "Cerrar",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Tags" : "Etiquetas",
|
||||
"Select users or groups to share with" : "Selecciona los usuarios o grupos con los cuales compartir",
|
||||
"Group" : "Grupo",
|
||||
"Circle" : "Círculo",
|
||||
"No matching user or group found." : "No se encontraron coincidencias de usuarios o grupos.",
|
||||
"Loading" : "Cargando",
|
||||
"Edit" : "Editar",
|
||||
@@ -50,7 +40,6 @@
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Deshacer borrado de tablero - De lo contrario el tablero se borrará durante la siguiente ejecución del cronjob. ",
|
||||
"Create new board" : "Crear un nuevo tablero",
|
||||
"New board title" : "Nuevo título del tablero",
|
||||
"Cancel upload" : "Cancelar carga",
|
||||
"by" : "por",
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Creado:",
|
||||
@@ -66,11 +55,9 @@
|
||||
"Saved" : "Guardado",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"Move board to archive" : "Mover el tablero al archivo",
|
||||
"Create a new board" : "Crear un nuevo tablero",
|
||||
"Settings" : "Configuraciones "
|
||||
"Create a new board" : "Crear un nuevo tablero"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
@@ -3,9 +3,7 @@ OC.L10N.register(
|
||||
{
|
||||
"Hours" : "Horas",
|
||||
"Minutes" : "Minutos",
|
||||
"File already exists" : "El archivo ya existe",
|
||||
"Deck" : "Deck",
|
||||
"Personal" : "Personal",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
|
||||
"The board \"%s\" has been shared with you by %s." : "El tablero \"%s\" ha sido compartido contigo por %s.",
|
||||
"{user} has shared the board %s with you." : "{user} ha compartido el tablero %s contigo. ",
|
||||
@@ -13,26 +11,18 @@ OC.L10N.register(
|
||||
"To review" : "Para revisar",
|
||||
"Action needed" : "Acción requerida",
|
||||
"Later" : "Después",
|
||||
"Done" : "Terminado",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El archivo cargado excede el valor establecido en la directiva upload_max_filesize en el archivo php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML",
|
||||
"No file was uploaded" : "No se cargó el archivo",
|
||||
"Missing a temporary folder" : "Falta una carpeta temporal",
|
||||
"Add a new stack" : "Agregar una nueva pila",
|
||||
"Submit" : "Enviar",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"All Boards" : "Todos los Tableros",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Actions" : "Acciones",
|
||||
"Enter a card title" : "Ingresa el título de la tarjeta",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Close" : "Cerrar",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Tags" : "Etiquetas",
|
||||
"Select users or groups to share with" : "Selecciona los usuarios o grupos con los cuales compartir",
|
||||
"Group" : "Grupo",
|
||||
"Circle" : "Círculo",
|
||||
"No matching user or group found." : "No se encontraron coincidencias de usuarios o grupos.",
|
||||
"Loading" : "Cargando",
|
||||
"Edit" : "Editar",
|
||||
@@ -52,7 +42,6 @@ OC.L10N.register(
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Deshacer borrado de tablero - De lo contrario el tablero se borrará durante la siguiente ejecución del cronjob. ",
|
||||
"Create new board" : "Crear un nuevo tablero",
|
||||
"New board title" : "Nuevo título del tablero",
|
||||
"Cancel upload" : "Cancelar carga",
|
||||
"by" : "por",
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Creado:",
|
||||
@@ -68,11 +57,9 @@ OC.L10N.register(
|
||||
"Saved" : "Guardado",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"Move board to archive" : "Mover el tablero al archivo",
|
||||
"Create a new board" : "Crear un nuevo tablero",
|
||||
"Settings" : "Configuraciones "
|
||||
"Create a new board" : "Crear un nuevo tablero"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -1,9 +1,7 @@
|
||||
{ "translations": {
|
||||
"Hours" : "Horas",
|
||||
"Minutes" : "Minutos",
|
||||
"File already exists" : "El archivo ya existe",
|
||||
"Deck" : "Deck",
|
||||
"Personal" : "Personal",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
|
||||
"The board \"%s\" has been shared with you by %s." : "El tablero \"%s\" ha sido compartido contigo por %s.",
|
||||
"{user} has shared the board %s with you." : "{user} ha compartido el tablero %s contigo. ",
|
||||
@@ -11,26 +9,18 @@
|
||||
"To review" : "Para revisar",
|
||||
"Action needed" : "Acción requerida",
|
||||
"Later" : "Después",
|
||||
"Done" : "Terminado",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El archivo cargado excede el valor establecido en la directiva upload_max_filesize en el archivo php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML",
|
||||
"No file was uploaded" : "No se cargó el archivo",
|
||||
"Missing a temporary folder" : "Falta una carpeta temporal",
|
||||
"Add a new stack" : "Agregar una nueva pila",
|
||||
"Submit" : "Enviar",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"All Boards" : "Todos los Tableros",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Actions" : "Acciones",
|
||||
"Enter a card title" : "Ingresa el título de la tarjeta",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Close" : "Cerrar",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Tags" : "Etiquetas",
|
||||
"Select users or groups to share with" : "Selecciona los usuarios o grupos con los cuales compartir",
|
||||
"Group" : "Grupo",
|
||||
"Circle" : "Círculo",
|
||||
"No matching user or group found." : "No se encontraron coincidencias de usuarios o grupos.",
|
||||
"Loading" : "Cargando",
|
||||
"Edit" : "Editar",
|
||||
@@ -50,7 +40,6 @@
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Deshacer borrado de tablero - De lo contrario el tablero se borrará durante la siguiente ejecución del cronjob. ",
|
||||
"Create new board" : "Crear un nuevo tablero",
|
||||
"New board title" : "Nuevo título del tablero",
|
||||
"Cancel upload" : "Cancelar carga",
|
||||
"by" : "por",
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Creado:",
|
||||
@@ -66,11 +55,9 @@
|
||||
"Saved" : "Guardado",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"Move board to archive" : "Mover el tablero al archivo",
|
||||
"Create a new board" : "Crear un nuevo tablero",
|
||||
"Settings" : "Configuraciones "
|
||||
"Create a new board" : "Crear un nuevo tablero"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
@@ -3,9 +3,7 @@ OC.L10N.register(
|
||||
{
|
||||
"Hours" : "Horas",
|
||||
"Minutes" : "Minutos",
|
||||
"File already exists" : "El archivo ya existe",
|
||||
"Deck" : "Deck",
|
||||
"Personal" : "Personal",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
|
||||
"The board \"%s\" has been shared with you by %s." : "El tablero \"%s\" ha sido compartido contigo por %s.",
|
||||
"{user} has shared the board %s with you." : "{user} ha compartido el tablero %s contigo. ",
|
||||
@@ -13,26 +11,18 @@ OC.L10N.register(
|
||||
"To review" : "Para revisar",
|
||||
"Action needed" : "Acción requerida",
|
||||
"Later" : "Después",
|
||||
"Done" : "Terminado",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El archivo cargado excede el valor establecido en la directiva upload_max_filesize en el archivo php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML",
|
||||
"No file was uploaded" : "No se cargó el archivo",
|
||||
"Missing a temporary folder" : "Falta una carpeta temporal",
|
||||
"Add a new stack" : "Agregar una nueva pila",
|
||||
"Submit" : "Enviar",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"All Boards" : "Todos los Tableros",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Actions" : "Acciones",
|
||||
"Enter a card title" : "Ingresa el título de la tarjeta",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Close" : "Cerrar",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Tags" : "Etiquetas",
|
||||
"Select users or groups to share with" : "Selecciona los usuarios o grupos con los cuales compartir",
|
||||
"Group" : "Grupo",
|
||||
"Circle" : "Círculo",
|
||||
"No matching user or group found." : "No se encontraron coincidencias de usuarios o grupos.",
|
||||
"Loading" : "Cargando",
|
||||
"Edit" : "Editar",
|
||||
@@ -52,7 +42,6 @@ OC.L10N.register(
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Deshacer borrado de tablero - De lo contrario el tablero se borrará durante la siguiente ejecución del cronjob. ",
|
||||
"Create new board" : "Crear un nuevo tablero",
|
||||
"New board title" : "Nuevo título del tablero",
|
||||
"Cancel upload" : "Cancelar carga",
|
||||
"by" : "por",
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Creado:",
|
||||
@@ -68,11 +57,9 @@ OC.L10N.register(
|
||||
"Saved" : "Guardado",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"Move board to archive" : "Mover el tablero al archivo",
|
||||
"Create a new board" : "Crear un nuevo tablero",
|
||||
"Settings" : "Configuraciones "
|
||||
"Create a new board" : "Crear un nuevo tablero"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -1,9 +1,7 @@
|
||||
{ "translations": {
|
||||
"Hours" : "Horas",
|
||||
"Minutes" : "Minutos",
|
||||
"File already exists" : "El archivo ya existe",
|
||||
"Deck" : "Deck",
|
||||
"Personal" : "Personal",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
|
||||
"The board \"%s\" has been shared with you by %s." : "El tablero \"%s\" ha sido compartido contigo por %s.",
|
||||
"{user} has shared the board %s with you." : "{user} ha compartido el tablero %s contigo. ",
|
||||
@@ -11,26 +9,18 @@
|
||||
"To review" : "Para revisar",
|
||||
"Action needed" : "Acción requerida",
|
||||
"Later" : "Después",
|
||||
"Done" : "Terminado",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El archivo cargado excede el valor establecido en la directiva upload_max_filesize en el archivo php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML",
|
||||
"No file was uploaded" : "No se cargó el archivo",
|
||||
"Missing a temporary folder" : "Falta una carpeta temporal",
|
||||
"Add a new stack" : "Agregar una nueva pila",
|
||||
"Submit" : "Enviar",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"All Boards" : "Todos los Tableros",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Actions" : "Acciones",
|
||||
"Enter a card title" : "Ingresa el título de la tarjeta",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Close" : "Cerrar",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Tags" : "Etiquetas",
|
||||
"Select users or groups to share with" : "Selecciona los usuarios o grupos con los cuales compartir",
|
||||
"Group" : "Grupo",
|
||||
"Circle" : "Círculo",
|
||||
"No matching user or group found." : "No se encontraron coincidencias de usuarios o grupos.",
|
||||
"Loading" : "Cargando",
|
||||
"Edit" : "Editar",
|
||||
@@ -50,7 +40,6 @@
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Deshacer borrado de tablero - De lo contrario el tablero se borrará durante la siguiente ejecución del cronjob. ",
|
||||
"Create new board" : "Crear un nuevo tablero",
|
||||
"New board title" : "Nuevo título del tablero",
|
||||
"Cancel upload" : "Cancelar carga",
|
||||
"by" : "por",
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Creado:",
|
||||
@@ -66,11 +55,9 @@
|
||||
"Saved" : "Guardado",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"Move board to archive" : "Mover el tablero al archivo",
|
||||
"Create a new board" : "Crear un nuevo tablero",
|
||||
"Settings" : "Configuraciones "
|
||||
"Create a new board" : "Crear un nuevo tablero"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
@@ -4,9 +4,7 @@ OC.L10N.register(
|
||||
"Remove user from card" : "Eliminar usuario de la tarjeta",
|
||||
"Hours" : "Horas",
|
||||
"Minutes" : "Minutos",
|
||||
"File already exists" : "El archivo ya existe",
|
||||
"Deck" : "Deck",
|
||||
"Personal" : "Personal",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
|
||||
"The board \"%s\" has been shared with you by %s." : "El tablero \"%s\" ha sido compartido contigo por %s.",
|
||||
"{user} has shared the board %s with you." : "{user} ha compartido el tablero %s contigo. ",
|
||||
@@ -14,30 +12,18 @@ OC.L10N.register(
|
||||
"To review" : "Para revisar",
|
||||
"Action needed" : "Acción requerida",
|
||||
"Later" : "Después",
|
||||
"Done" : "Terminado",
|
||||
"The file was uploaded" : "El archivo fue cargado",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El archivo cargado excede el valor establecido en la directiva upload_max_filesize en el archivo php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML",
|
||||
"The file was only partially uploaded" : "El archivo sólo fue cargado parcialmente",
|
||||
"No file was uploaded" : "No se cargó el archivo",
|
||||
"Missing a temporary folder" : "Falta una carpeta temporal",
|
||||
"Could not write file to disk" : "No fue posible escribir a disco",
|
||||
"A PHP extension stopped the file upload" : "Una extensión de PHP detuvo la carga del archivo",
|
||||
"Add a new stack" : "Agregar una nueva pila",
|
||||
"Submit" : "Enviar",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"All Boards" : "Todos los Tableros",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Actions" : "Acciones",
|
||||
"Enter a card title" : "Ingresa el título de la tarjeta",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Close" : "Cerrar",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Tags" : "Etiquetas",
|
||||
"Select users or groups to share with" : "Selecciona los usuarios o grupos con los cuales compartir",
|
||||
"Group" : "Grupo",
|
||||
"Circle" : "Círculo",
|
||||
"No matching user or group found." : "No se encontraron coincidencias de usuarios o grupos.",
|
||||
"Loading" : "Cargando",
|
||||
"Edit" : "Editar",
|
||||
@@ -57,7 +43,6 @@ OC.L10N.register(
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Deshacer borrado de tablero - De lo contrario el tablero se borrará durante la siguiente ejecución del cronjob. ",
|
||||
"Create new board" : "Crear un nuevo tablero",
|
||||
"New board title" : "Nuevo título del tablero",
|
||||
"Cancel upload" : "Cancelar carga",
|
||||
"by" : "por",
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Creado:",
|
||||
@@ -74,11 +59,9 @@ OC.L10N.register(
|
||||
"Saved" : "Guardado",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"Move board to archive" : "Mover el tablero al archivo",
|
||||
"Create a new board" : "Crear un nuevo tablero",
|
||||
"Settings" : "Configuraciones "
|
||||
"Create a new board" : "Crear un nuevo tablero"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -2,9 +2,7 @@
|
||||
"Remove user from card" : "Eliminar usuario de la tarjeta",
|
||||
"Hours" : "Horas",
|
||||
"Minutes" : "Minutos",
|
||||
"File already exists" : "El archivo ya existe",
|
||||
"Deck" : "Deck",
|
||||
"Personal" : "Personal",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
|
||||
"The board \"%s\" has been shared with you by %s." : "El tablero \"%s\" ha sido compartido contigo por %s.",
|
||||
"{user} has shared the board %s with you." : "{user} ha compartido el tablero %s contigo. ",
|
||||
@@ -12,30 +10,18 @@
|
||||
"To review" : "Para revisar",
|
||||
"Action needed" : "Acción requerida",
|
||||
"Later" : "Después",
|
||||
"Done" : "Terminado",
|
||||
"The file was uploaded" : "El archivo fue cargado",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El archivo cargado excede el valor establecido en la directiva upload_max_filesize en el archivo php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML",
|
||||
"The file was only partially uploaded" : "El archivo sólo fue cargado parcialmente",
|
||||
"No file was uploaded" : "No se cargó el archivo",
|
||||
"Missing a temporary folder" : "Falta una carpeta temporal",
|
||||
"Could not write file to disk" : "No fue posible escribir a disco",
|
||||
"A PHP extension stopped the file upload" : "Una extensión de PHP detuvo la carga del archivo",
|
||||
"Add a new stack" : "Agregar una nueva pila",
|
||||
"Submit" : "Enviar",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"All Boards" : "Todos los Tableros",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Actions" : "Acciones",
|
||||
"Enter a card title" : "Ingresa el título de la tarjeta",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Close" : "Cerrar",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Tags" : "Etiquetas",
|
||||
"Select users or groups to share with" : "Selecciona los usuarios o grupos con los cuales compartir",
|
||||
"Group" : "Grupo",
|
||||
"Circle" : "Círculo",
|
||||
"No matching user or group found." : "No se encontraron coincidencias de usuarios o grupos.",
|
||||
"Loading" : "Cargando",
|
||||
"Edit" : "Editar",
|
||||
@@ -55,7 +41,6 @@
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Deshacer borrado de tablero - De lo contrario el tablero se borrará durante la siguiente ejecución del cronjob. ",
|
||||
"Create new board" : "Crear un nuevo tablero",
|
||||
"New board title" : "Nuevo título del tablero",
|
||||
"Cancel upload" : "Cancelar carga",
|
||||
"by" : "por",
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Creado:",
|
||||
@@ -72,11 +57,9 @@
|
||||
"Saved" : "Guardado",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"Move board to archive" : "Mover el tablero al archivo",
|
||||
"Create a new board" : "Crear un nuevo tablero",
|
||||
"Settings" : "Configuraciones "
|
||||
"Create a new board" : "Crear un nuevo tablero"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
@@ -3,9 +3,7 @@ OC.L10N.register(
|
||||
{
|
||||
"Hours" : "Horas",
|
||||
"Minutes" : "Minutos",
|
||||
"File already exists" : "El archivo ya existe",
|
||||
"Deck" : "Deck",
|
||||
"Personal" : "Personal",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
|
||||
"The board \"%s\" has been shared with you by %s." : "El tablero \"%s\" ha sido compartido contigo por %s.",
|
||||
"{user} has shared the board %s with you." : "{user} ha compartido el tablero %s contigo. ",
|
||||
@@ -13,26 +11,18 @@ OC.L10N.register(
|
||||
"To review" : "Para revisar",
|
||||
"Action needed" : "Acción requerida",
|
||||
"Later" : "Después",
|
||||
"Done" : "Terminado",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El archivo cargado excede el valor establecido en la directiva upload_max_filesize en el archivo php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML",
|
||||
"No file was uploaded" : "No se cargó el archivo",
|
||||
"Missing a temporary folder" : "Falta una carpeta temporal",
|
||||
"Add a new stack" : "Agregar una nueva pila",
|
||||
"Submit" : "Enviar",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"All Boards" : "Todos los Tableros",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Actions" : "Acciones",
|
||||
"Enter a card title" : "Ingresa el título de la tarjeta",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Close" : "Cerrar",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Tags" : "Etiquetas",
|
||||
"Select users or groups to share with" : "Selecciona los usuarios o grupos con los cuales compartir",
|
||||
"Group" : "Grupo",
|
||||
"Circle" : "Círculo",
|
||||
"No matching user or group found." : "No se encontraron coincidencias de usuarios o grupos.",
|
||||
"Loading" : "Cargando",
|
||||
"Edit" : "Editar",
|
||||
@@ -52,7 +42,6 @@ OC.L10N.register(
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Deshacer borrado de tablero - De lo contrario el tablero se borrará durante la siguiente ejecución del cronjob. ",
|
||||
"Create new board" : "Crear un nuevo tablero",
|
||||
"New board title" : "Nuevo título del tablero",
|
||||
"Cancel upload" : "Cancelar carga",
|
||||
"by" : "por",
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Creado:",
|
||||
@@ -68,11 +57,9 @@ OC.L10N.register(
|
||||
"Saved" : "Guardado",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"Move board to archive" : "Mover el tablero al archivo",
|
||||
"Create a new board" : "Crear un nuevo tablero",
|
||||
"Settings" : "Configuraciones "
|
||||
"Create a new board" : "Crear un nuevo tablero"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
@@ -1,9 +1,7 @@
|
||||
{ "translations": {
|
||||
"Hours" : "Horas",
|
||||
"Minutes" : "Minutos",
|
||||
"File already exists" : "El archivo ya existe",
|
||||
"Deck" : "Deck",
|
||||
"Personal" : "Personal",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "La tarjeta \"%s\" en \"%s\" ha alacanzado su fecha de entrega",
|
||||
"The board \"%s\" has been shared with you by %s." : "El tablero \"%s\" ha sido compartido contigo por %s.",
|
||||
"{user} has shared the board %s with you." : "{user} ha compartido el tablero %s contigo. ",
|
||||
@@ -11,26 +9,18 @@
|
||||
"To review" : "Para revisar",
|
||||
"Action needed" : "Acción requerida",
|
||||
"Later" : "Después",
|
||||
"Done" : "Terminado",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El archivo cargado excede el valor establecido en la directiva upload_max_filesize en el archivo php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo cargado excede el valor especificado de la directiva MAX_FILE_SIZE en la forma de HTML",
|
||||
"No file was uploaded" : "No se cargó el archivo",
|
||||
"Missing a temporary folder" : "Falta una carpeta temporal",
|
||||
"Add a new stack" : "Agregar una nueva pila",
|
||||
"Submit" : "Enviar",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"All Boards" : "Todos los Tableros",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Actions" : "Acciones",
|
||||
"Enter a card title" : "Ingresa el título de la tarjeta",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Close" : "Cerrar",
|
||||
"Sharing" : "Compartiendo",
|
||||
"Tags" : "Etiquetas",
|
||||
"Select users or groups to share with" : "Selecciona los usuarios o grupos con los cuales compartir",
|
||||
"Group" : "Grupo",
|
||||
"Circle" : "Círculo",
|
||||
"No matching user or group found." : "No se encontraron coincidencias de usuarios o grupos.",
|
||||
"Loading" : "Cargando",
|
||||
"Edit" : "Editar",
|
||||
@@ -50,7 +40,6 @@
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Deshacer borrado de tablero - De lo contrario el tablero se borrará durante la siguiente ejecución del cronjob. ",
|
||||
"Create new board" : "Crear un nuevo tablero",
|
||||
"New board title" : "Nuevo título del tablero",
|
||||
"Cancel upload" : "Cancelar carga",
|
||||
"by" : "por",
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Creado:",
|
||||
@@ -66,11 +55,9 @@
|
||||
"Saved" : "Guardado",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Upload attachment" : "Cargar adjunto",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"Move board to archive" : "Mover el tablero al archivo",
|
||||
"Create a new board" : "Crear un nuevo tablero",
|
||||
"Settings" : "Configuraciones "
|
||||
"Create a new board" : "Crear un nuevo tablero"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
@@ -1,35 +0,0 @@
|
||||
OC.L10N.register(
|
||||
"deck",
|
||||
{
|
||||
"Hours" : "Tunnid",
|
||||
"Minutes" : "Minutid",
|
||||
"Personal" : "Isiklik",
|
||||
"Finished" : "Lõpetatud",
|
||||
"Later" : "Hiljem",
|
||||
"Done" : "Valmis",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Üleslaetud fail on suurem, kui php.ini failis määratud upload_max_filesize",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Üleslaetud fail on suurem, kui MAX_FILE_SIZE atribuut, mis seadistati HTML vormis",
|
||||
"No file was uploaded" : "Ühtegi faili ei latud üles",
|
||||
"Missing a temporary folder" : "Ajutine kausta on puudu",
|
||||
"Actions" : "Tegevused",
|
||||
"Close" : "Sulge",
|
||||
"Sharing" : "Jagamine",
|
||||
"Tags" : "Sildid",
|
||||
"Group" : "Grupp",
|
||||
"Circle" : "Ring",
|
||||
"Loading" : "Laadimine",
|
||||
"Edit" : "Redigeeri",
|
||||
"Share" : "Jaga",
|
||||
"Create" : "Loo",
|
||||
"Status" : "Staatus",
|
||||
"Title" : "Pealkiri",
|
||||
"Cancel upload" : "Tühista üleslaadimine",
|
||||
"by" : "lisas",
|
||||
"Modified:" : "Muudetud:",
|
||||
"Created:" : "Loodud:",
|
||||
"Due date" : "Tähtaeg",
|
||||
"Description" : "Kirjeldus",
|
||||
"Saved" : "Salvestatud",
|
||||
"Settings" : "Seaded"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
@@ -1,33 +0,0 @@
|
||||
{ "translations": {
|
||||
"Hours" : "Tunnid",
|
||||
"Minutes" : "Minutid",
|
||||
"Personal" : "Isiklik",
|
||||
"Finished" : "Lõpetatud",
|
||||
"Later" : "Hiljem",
|
||||
"Done" : "Valmis",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Üleslaetud fail on suurem, kui php.ini failis määratud upload_max_filesize",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Üleslaetud fail on suurem, kui MAX_FILE_SIZE atribuut, mis seadistati HTML vormis",
|
||||
"No file was uploaded" : "Ühtegi faili ei latud üles",
|
||||
"Missing a temporary folder" : "Ajutine kausta on puudu",
|
||||
"Actions" : "Tegevused",
|
||||
"Close" : "Sulge",
|
||||
"Sharing" : "Jagamine",
|
||||
"Tags" : "Sildid",
|
||||
"Group" : "Grupp",
|
||||
"Circle" : "Ring",
|
||||
"Loading" : "Laadimine",
|
||||
"Edit" : "Redigeeri",
|
||||
"Share" : "Jaga",
|
||||
"Create" : "Loo",
|
||||
"Status" : "Staatus",
|
||||
"Title" : "Pealkiri",
|
||||
"Cancel upload" : "Tühista üleslaadimine",
|
||||
"by" : "lisas",
|
||||
"Modified:" : "Muudetud:",
|
||||
"Created:" : "Loodud:",
|
||||
"Due date" : "Tähtaeg",
|
||||
"Description" : "Kirjeldus",
|
||||
"Saved" : "Salvestatud",
|
||||
"Settings" : "Seaded"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
176
l10n/eu.js
176
l10n/eu.js
@@ -4,89 +4,14 @@ OC.L10N.register(
|
||||
"Please provide a content for your comment." : "Eman edukia zure iruzkinari.",
|
||||
"Posting the comment failed." : "Iruzkinaren bidalketak huts egin du.",
|
||||
"The comment has been deleted" : "Iruzkina ezabatu da",
|
||||
"The associated stack is deleted as well, it will be restored as well." : "Lotutako pila ere ezabatu egingo da, baita zaharberrituko da.",
|
||||
"Restore associated stack" : "Leheneratu lotutako pila",
|
||||
"Remove user from card" : "Kendu erabiltzailea txarteletik",
|
||||
"Hours" : "Orduak",
|
||||
"Minutes" : "Minutuak",
|
||||
"Link to a board" : "Estekatu taula batera",
|
||||
"Maximum file size of {size} exceeded" : "Fitxategiaren gehienezko {size} tamaina gainditu da",
|
||||
"File already exists" : "Badago izen bereko fitxategi bat",
|
||||
"You have created a new board {board}" : "{board} taula berri bat sortu duzu",
|
||||
"{user} has created a new board {board}" : "{user} erabiltzaileak {board} taula berri bat sortu du",
|
||||
"You have deleted the board {board}" : "{board} taula ezabatu duzu",
|
||||
"{user} has deleted the board {board}" : "{user} erabiltzaileak {board} taula ezabatu du",
|
||||
"You have restored the board {board}" : "{board} taula leheneratu duzu",
|
||||
"{user} has restored the board {board}" : "{user} erabiltzaileak {board} taula leheneratu du",
|
||||
"You have shared the board {board} with {acl}" : "{board} taula {acl} erabiltzailearekin partekatu duzu",
|
||||
"{user} has shared the board {board} with {acl}" : "{user} erabiltzaileak {board} taula {acl} erabiltzailearekin partekatu du",
|
||||
"You have removed {acl} from the board {board}" : "{acl} erabiltzailea kendu duzu {board} taulatik",
|
||||
"{user} has removed {acl} from the board {board}" : "{user} erabiltzaileak {acl} erabiltzailea kendu du {board} taulatik",
|
||||
"You have renamed the board {before} to {board}" : "{before} taula zena {board} bezala berrizendatu duzu",
|
||||
"{user} has renamed the board {before} to {board}" : "{user} erabiltzaileak {before} taula zena {board} bezala berrizendatu du",
|
||||
"You have archived the board {board}" : "{board} taula artxibatu duzu",
|
||||
"{user} has archived the board {before}" : "{user} erabiltzaileak {before} taula artxibatu du",
|
||||
"You have unarchived the board {board}" : "{board} taula artxibotik berreskuratu duzu",
|
||||
"{user} has unarchived the board {before}" : "{user} erabiltzaileak {before} taula artxibotik berreskuratu du",
|
||||
"You have created a new stack {stack} on board {board}" : "{stack} pila berri bat sortu duzu {board} taulan",
|
||||
"{user} has created a new stack {stack} on board {board}" : "{user} erabiltzaileak {stack} pila berri bat sortu duzu {board} taulan",
|
||||
"You have renamed stack {before} to {stack} on board {board}" : "{before} pila zena {stack} bezala berrizendatu duzu {board} taulan",
|
||||
"{user} has renamed stack {before} to {stack} on board {board}" : "{user} erabiltzaileak {before} pila zena {stack} bezala berrizendatu du {board} taulan",
|
||||
"You have deleted stack {stack} on board {board}" : "{stack} pila ezabatu duzu {board} taulan",
|
||||
"{user} has deleted stack {stack} on board {board}" : "{user} erabiltzaileak {stack} pila ezabatu du {board} taulan",
|
||||
"You have created card {card} in stack {stack} on board {board}" : "{card} txartela sortu duzu {board} taulako {stack} pilan",
|
||||
"{user} has created card {card} in stack {stack} on board {board}" : "{user} erabiltzaileak {card} txartela sortu du {board} taulako {stack} pilan",
|
||||
"You have deleted card {card} in stack {stack} on board {board}" : "{card} txartela ezabatu duzu {board} taulako {stack} pilan",
|
||||
"{user} has deleted card {card} in stack {stack} on board {board}" : "{user} erabiltzaileak {card} txartela ezabatu du {board} taulako {stack} pilan",
|
||||
"You have renamed the card {before} to {card}" : "{before} taula zena {card} bezala berrizendatu duzu",
|
||||
"{user} has renamed the card {before} to {card}" : "{user} erabiltzaileak {before} taula zena {card} bezala berrizendatu du",
|
||||
"You have added a description to card {card} in stack {stack} on board {board}" : "{board} taulako {stack} pilako {card} txartelari deskribapena gehitu diozu",
|
||||
"{user} has added a description to card {card} in stack {stack} on board {board}" : "{user} erabiltzaileak {board} taulako {stack} pilako {card} txartelari deskribapena gehitu dio",
|
||||
"You have updated the description of card {card} in stack {stack} on board {board}" : "{board} taulako {stack} pilako {card} txartelaren deskribapena eguneratu duzu",
|
||||
"{user} has updated the description of the card {card} in stack {stack} on board {board}" : "{user} erabiltzaileak {board} taulako {stack} pilako {card} txartelaren deskribapena eguneratu du",
|
||||
"You have archived card {card} in stack {stack} on board {board}" : "{board} taulako {stack} pilako {card} txartela artxibatu duzu",
|
||||
"{user} has archived card {card} in stack {stack} on board {board}" : "{user} erabiltzaileak {board} taulako {stack} pilako {card} txartela artxibatu du",
|
||||
"You have unarchived card {card} in stack {stack} on board {board}" : "{board} taulako {stack} pilako {card} txartela berreskuratu duzu artxibotik",
|
||||
"{user} has unarchived card {card} in stack {stack} on board {board}" : "{user} erabiltzaileak {board} taulako {stack} pilako {card} txartela berreskuratu du artxibotik",
|
||||
"You have removed the due date of card {card}" : "{card} txartelari epemuga kendu diozu",
|
||||
"{user} has removed the due date of card {card}" : "{user} erabiltzaileak {card} txartelari epemuga kendu dio",
|
||||
"You have set the due date of card {card} to {after}" : "{card} txartelari {after} epemuga ezarri diozu",
|
||||
"{user} has set the due date of card {card} to {after}" : "{user} erabiltzaileak {card} txartelari {after} epemuga ezarri dio",
|
||||
"You have updated the due date of card {card} to {after}" : "{card} txartelari epemuga eguneratu diozu: {after}",
|
||||
"{user} has updated the due date of card {card} to {after}" : "{user} erabiltzaileak {card} txartelari epemuga eguneratu dio: {after}",
|
||||
"You have added the tag {label} to card {card} in stack {stack} on board {board}" : "{board} taulako {stack} pilako {card} txartelari {label} etiketa jarri diozu",
|
||||
"{user} has added the tag {label} to card {card} in stack {stack} on board {board}" : "{user} erabiltzaileak {board} taulako {stack} pilako {card} txartelari {label} etiketa jarri dio",
|
||||
"You have removed the tag {label} from card {card} in stack {stack} on board {board}" : "{board} taulako {stack} pilako {card} txartelari {label} etiketa kendu diozu",
|
||||
"{user} has removed the tag {label} from card {card} in stack {stack} on board {board}" : "{user} erabiltzaileak {board} taulako {stack} pilako {card} txartelari {label} etiketa kendu dio",
|
||||
"You have assigned {assigneduser} to card {card} on board {board}" : "{board} taulako {card} txartela {assigneduser} erabiltzaileari esleitu diozu",
|
||||
"{user} has assigned {assigneduser} to card {card} on board {board}" : "{user} erabiltzaileak {board} taulako {card} txartela {assigneduser} erabiltzaileari esleitu dio",
|
||||
"You have unassigned {assigneduser} from card {card} on board {board}" : "{board} taulako {card} txartela {assigneduser} erabiltzaileari esleitzea ezeztatu duzu",
|
||||
"{user} has unassigned {assigneduser} from card {card} on board {board}" : "{user} erabiltzaileak {board} taulako {card} txartela {assigneduser} erabiltzaileari esleitzea ezeztatu du",
|
||||
"You have moved the card {card} from stack {stackBefore} to {stack}" : "{card} txartela {stackBefore} pilatik {stack} pilara aldatu duzu",
|
||||
"{user} has moved the card {card} from stack {stackBefore} to {stack}" : "{user} erabiltzaileak {card} txartela {stackBefore} pilatik {stack} pilara aldatu du",
|
||||
"You have added the attachment {attachment} to card {card}" : "{attachment} eranskina gehitu diozu {card} txartelari",
|
||||
"{user} has added the attachment {attachment} to card {card}" : "{user} erabiltzaileak {attachment} eranskina gehitu dio {card} txartelari",
|
||||
"You have updated the attachment {attachment} on card {card}" : "{card} txartelaren {attachment} eranskina eguneratu duzu",
|
||||
"{user} has updated the attachment {attachment} on card {card}" : "{user} erabiltzaileak {card} txartelaren {attachment} eranskina eguneratu du",
|
||||
"You have deleted the attachment {attachment} from card {card}" : "{card} txartelaren {attachment} eranskina ezabatu duzu",
|
||||
"{user} has deleted the attachment {attachment} from card {card}" : "{user} erabiltzaileak {card} txartelaren {attachment} eranskina ezabatu du",
|
||||
"You have restored the attachment {attachment} to card {card}" : "{card} txartelaren {attachment} eranskina leheneratu duzu",
|
||||
"{user} has restored the attachment {attachment} to card {card}" : "{user} erabiltzaileak {card} txartelaren {attachment} eranskina leheneratu du",
|
||||
"You have commented on card {card}" : "{card} txartela iruzkindu duzu",
|
||||
"{user} has commented on card {card}" : "{user} erabiltzaileak {card} txartela iruzkindu du",
|
||||
"A <strong>card description</strong> inside the Deck app has been changed" : "<strong>Txartel baten deskribapena</strong> aldatu da Deck app-aren barruan",
|
||||
"Deck" : "Mahaigaina",
|
||||
"Changes in the <strong>Deck app</strong>" : "<strong>Deck app</strong>-an aldaketak",
|
||||
"A <strong>comment</strong> was created on a card" : "<strong>Iruzkin bat</strong> sortu da txartel batean",
|
||||
"Personal" : "Pertsonala",
|
||||
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "\"%s\" txartela \"%s\"-n %sk esleitu zaizu.",
|
||||
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user}k \"%s\" txartela \"%s\"-n esleitu zaitu.",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : " \"%s\" txartela, \"%s\" -n dagoena, epe-mugara ailegatu da.",
|
||||
"%s has mentioned you in a comment on \"%s\"." : "%sk aipatu dizu \"%s\"-ri buruzko iruzkin batean.",
|
||||
"{user} has mentioned you in a comment on \"%s\"." : "{user}k aipatu dizu \"%s\"-ri buruzko iruzkin batean.",
|
||||
"The board \"%s\" has been shared with you by %s." : "\"%s\" taula %sk zurekin partekatu du.",
|
||||
"{user} has shared the board %s with you." : "{user}k %s taula zurekin partekatu du.",
|
||||
"No data was provided to create an attachment." : "Ez da daturik eman eranskina sortzeko.",
|
||||
"The board \"%s\" has been shared with you by %s." : "\"%s\" mahaingaina %s-k zurekin partekatu du.",
|
||||
"{user} has shared the board %s with you." : "{user} erabiltzaileak %s mahaigaina zurekin partekatu du.",
|
||||
"Finished" : "Bukatuta",
|
||||
"To review" : "Errebisatzeko",
|
||||
"Action needed" : "Ekintza beharrezkoa",
|
||||
@@ -94,96 +19,61 @@ OC.L10N.register(
|
||||
"To do" : "Egiteke",
|
||||
"Doing" : "Egiten",
|
||||
"Done" : "Egina",
|
||||
"Example Task 3" : "Adibidetarako ataza 3",
|
||||
"Example Task 2" : "Adibidetarako ataza 2",
|
||||
"Example Task 1" : "Adibidetarako ataza 1",
|
||||
"The file was uploaded" : "Fitxategia igo da",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Kargatutako fitxategiak php.ini fitxategiko upload_max_filesize direktiban zehazturikoa gainditzen du",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Kargatutako fitxategiak HTML formularioan ezarritako MAX_FILE_SIZE direktiban zehazturikoa gainditzen du",
|
||||
"The file was only partially uploaded" : "Fitxategia erdizka kargatu da",
|
||||
"No file was uploaded" : "Ez da fitxategirik kargatu",
|
||||
"Missing a temporary folder" : "Aldi baterako karpeta bat falta da",
|
||||
"Could not write file to disk" : "Ezin izan da fitxategia diskoan idatzi",
|
||||
"A PHP extension stopped the file upload" : "PHP hedapen batek fitxategiaren karga gelditu du",
|
||||
"No file uploaded or file size exceeds maximum of %s" : "Ez da fitxategirik kargatu edo fitxategi-tamainak gehienezko %s muga gainditzen du",
|
||||
"A kanban style project and personal management tool for Nextcloud" : "Proiektuen kudeaketa eta antolaketa pertsonalerako Kanban moduko Nextclouderako tresna",
|
||||
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck plangintza pertsonalera eta proiektuen antolaketara zuzendutako Nextcloudekin integratutako kanban moduko tresna bat da.\n\n\n- 📥 Gehitu atazak txarteletan eta ordenatu\n- 📄 Idatzi ohar gehigarriak markdown erabiliz\n- 🔖 Esleitu etiketak antolaketa are gehiago hobetzeko\n- 👥 Partekatu zure talde, lagun edo familiarekin\n- 📎 Erantsi fitxategiak eta kapsulatu zure markdown deskribapenean\n- 💬 Eztabaidatu zure taldearekin iruzkinak erabiliz\n- ⚡ Egin aldaketen jarraipena jarduera jarioa erabiliz\n- 🚀 Antolatu zure proiektua",
|
||||
"Select the board to link to a project" : "Hautatu taula proiektu bati estekatzeko",
|
||||
"Select board" : "Hautatu taula",
|
||||
"Add a new stack" : "Gehitu pila berria",
|
||||
"No file was uploaded" : "Ez da fitxategirik igo",
|
||||
"Add a new stack" : "Pila berria gehitu",
|
||||
"Submit" : "Bidali",
|
||||
"Show archived cards" : "Erakutsi artxibatutako txartelak",
|
||||
"Hide archived cards" : "Ezkutatu artxibatutako txartelak",
|
||||
"Toggle compact mode" : "Txandakatu modu trinkoa",
|
||||
"Show board details" : "Erakutsi taularen xehetasunak",
|
||||
"All Boards" : "Taula guztiak",
|
||||
"Show archived cards" : "Artxibatutako txartelak erakutsi",
|
||||
"Hide archived cards" : "Artxibatutako txartelak ezkutatu",
|
||||
"All Boards" : "Mahai guztiak",
|
||||
"Archived boards" : "Artxibatutako txartelak",
|
||||
"Share board" : "Partekatu taula",
|
||||
"Archived cards" : "Artxibatutako txartelak",
|
||||
"Actions" : "Ekintzak",
|
||||
"Drop your files here to upload it to the card" : "Jaregin fitxategiak hemen txartelera kargatzeko",
|
||||
"Assign card to me" : "Esleitu txartela niri",
|
||||
"Unassign card from me" : "Desegin txartela niri esleitzea",
|
||||
"Archive card" : "Artxibatu txartela",
|
||||
"Unarchive card" : "Berreskuratu txartela artxibotik",
|
||||
"Delete card" : "Ezabatu txartela",
|
||||
"Enter a card title" : "Sartu txartelaren izenburua",
|
||||
"Add card" : "Gehitu txartela",
|
||||
"Enter a card title" : "Txartelaren titulua sartu",
|
||||
"Add card" : "Txartela gehitu",
|
||||
"Close" : "Itxi",
|
||||
"Sharing" : "Partekatzen",
|
||||
"Tags" : "Etiketak",
|
||||
"Deleted items" : "Ezabatutako elementuak",
|
||||
"Timeline" : "Denbora-lerroa",
|
||||
"Select users or groups to share with" : "Hautatu erabiltzaile edo taldeak haiekin partekatzeko",
|
||||
"Group" : "Taldea",
|
||||
"Circle" : "Zirkulua",
|
||||
"No matching user or group found." : "Ez da aurkitu bat datorren erabiltzailerik edo talderik.",
|
||||
"Select users or groups to share with" : "Partekatzeko erabiltzaile eta taldeak hautatu",
|
||||
"No matching user or group found." : "Ados datorren erabiltzailerik edo talderik ez da topatu",
|
||||
"Loading" : "Kargatzen",
|
||||
"Edit" : "Editatu",
|
||||
"Share" : "Partekatu",
|
||||
"Manage" : "Kudeatu",
|
||||
"Discard share" : "Baztertu partekatzea",
|
||||
"Sharing has been disabled for your account." : "Partekatzea desgaitu da zure kontuarentzat.",
|
||||
"Update tag" : "Eguneratu etiketa",
|
||||
"Manage" : "Kudeaketa",
|
||||
"Discard share" : "Partekatutakoa ezeztatu",
|
||||
"Edit tag" : "Editatu etiketa",
|
||||
"Delete tag" : "Ezabatu etiketa",
|
||||
"Create" : "Sortu",
|
||||
"Create a new tag" : "Sortu etiketa berria",
|
||||
"Deleted stacks" : "Ezabatutako pilak",
|
||||
"Deleted cards" : "Ezabatutako txartelak",
|
||||
"Create a new tag" : "Etiketa berria sortu",
|
||||
"Status" : "Egoera",
|
||||
"No archived boards to display" : "Artxibatutako taularik ez dago bistaratzeko",
|
||||
"No shared boards to display" : "Partekatutako taularik ez dago bistaratzeko",
|
||||
"Title" : "Izenburua",
|
||||
"Members" : "Partaideak",
|
||||
"More actions" : "Ekintza gehiago",
|
||||
"Edit board" : "Editatu taula",
|
||||
"Archive board" : "Artxibatu taula",
|
||||
"Unarchive board" : "Atera taula artxibotik",
|
||||
"Delete board" : "Ezabatu taula",
|
||||
"Update board" : "Eguneratu taula",
|
||||
"Reset board" : "Berrezarri taula",
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Desegin taularen ezabaketa - Bestela taula hurrengo cron lanaren exekuzioan ezabatuko da.",
|
||||
"Create new board" : "Sortu taula berri bat",
|
||||
"New board title" : "Taula berriaren izenburua",
|
||||
"Create board" : "Sortu taula",
|
||||
"Edit board" : "Mahaigaina editatu",
|
||||
"Archive board" : "Mahaigaina artxibatu",
|
||||
"Unarchive board" : "Mahaigaina artxibotik atera",
|
||||
"Delete board" : "Mahaigaina borratu",
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Mahaiagainaren borratzea ezeztatu - Bestela cron lanaren hurrengo aktibazioan borratuko da.",
|
||||
"Create new board" : "Mahaigain berria sortzen du",
|
||||
"New board title" : "Mahaigainaren izenburu berria",
|
||||
"Select an attachment" : "Hautatu eranskin bat",
|
||||
"Cancel upload" : "Ezeztatu kargatzea",
|
||||
"by" : "Nork",
|
||||
"Undo file deletion - Otherwise the file will be deleted during the next cronjob run." : "Desegin fitxategiaren ezabaketa - bestela fitxategia hurrengo cron lanaren exekuzioan ezabatuko da.",
|
||||
"by" : "-engatik",
|
||||
"Undo file deletion" : "Desegin fitxategiaren ezabaketa",
|
||||
"Insert the file into the description" : "Txertatu fitxategia deskribapenean",
|
||||
"Delete attachment" : "Ezabatu eranskina",
|
||||
"Modified:" : "Aldatua:",
|
||||
"Created:" : "Sortua:",
|
||||
"Choose a tag" : "Aukeratu etiketa bat",
|
||||
"Add a tag" : "Gehitu etiketa bat",
|
||||
"Select tags" : "Hautatu etiketak",
|
||||
"Assign users" : "Esleitu erabiltzaileak",
|
||||
"Choose a user to assign" : "Aukeratu erabiltzaile bat esleitzeko",
|
||||
"Assign this card to a user" : "Esleitu txartel hau erabiltzaile bati",
|
||||
"Choose a tag" : "Etiketa hautatu",
|
||||
"Add a tag" : "Etiketa gehitu",
|
||||
"Select tags" : "Etiketa hautatu",
|
||||
"Assign users" : "Erabiltzaileak esleitu",
|
||||
"Assign this card to a user" : "Txartel hau erabiltzaile bati esleitu",
|
||||
"Due date" : "Epe-muga",
|
||||
"Click to set" : "Egin klik ezartzeko",
|
||||
"Click to set" : "Klik ezartzeko",
|
||||
"Remove due date" : "Ezabatu epe-muga",
|
||||
"Description" : "Deskribapena",
|
||||
"Attachments" : "Eranskinak",
|
||||
@@ -192,12 +82,10 @@ OC.L10N.register(
|
||||
"Insert attachment" : "Txertatu eranskina",
|
||||
"Formatting help" : "Formatua emateko laguntza",
|
||||
"Upload attachment" : "Igo eranskina",
|
||||
"Add a card description…" : "Gehitu txartelaren deskribapena...",
|
||||
"Add a card description…" : "Txartelaren deskribapena gehitu...",
|
||||
"Shared boards" : "Partekatutako txartelak",
|
||||
"Move board to archive" : "Artxibatu txartela",
|
||||
"Create a new board" : "Sortu taula berri bat",
|
||||
"Settings" : "Ezarpenak",
|
||||
"Limit deck to groups" : "Mugatu deck-a taldeei",
|
||||
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Deck mugatzeak taldeetako kide ez diren erabiltzaileei bere arbel propioak sortzea eragotziko die. Erabiltzaileek beraiekin partekatu diren arbeletan lan egin ahalko dute."
|
||||
"Move board to archive" : "Txartela artxibora mugitu",
|
||||
"Create a new board" : "Mahaigain berria sortu",
|
||||
"Settings" : "Ezarpenak"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
176
l10n/eu.json
176
l10n/eu.json
@@ -2,89 +2,14 @@
|
||||
"Please provide a content for your comment." : "Eman edukia zure iruzkinari.",
|
||||
"Posting the comment failed." : "Iruzkinaren bidalketak huts egin du.",
|
||||
"The comment has been deleted" : "Iruzkina ezabatu da",
|
||||
"The associated stack is deleted as well, it will be restored as well." : "Lotutako pila ere ezabatu egingo da, baita zaharberrituko da.",
|
||||
"Restore associated stack" : "Leheneratu lotutako pila",
|
||||
"Remove user from card" : "Kendu erabiltzailea txarteletik",
|
||||
"Hours" : "Orduak",
|
||||
"Minutes" : "Minutuak",
|
||||
"Link to a board" : "Estekatu taula batera",
|
||||
"Maximum file size of {size} exceeded" : "Fitxategiaren gehienezko {size} tamaina gainditu da",
|
||||
"File already exists" : "Badago izen bereko fitxategi bat",
|
||||
"You have created a new board {board}" : "{board} taula berri bat sortu duzu",
|
||||
"{user} has created a new board {board}" : "{user} erabiltzaileak {board} taula berri bat sortu du",
|
||||
"You have deleted the board {board}" : "{board} taula ezabatu duzu",
|
||||
"{user} has deleted the board {board}" : "{user} erabiltzaileak {board} taula ezabatu du",
|
||||
"You have restored the board {board}" : "{board} taula leheneratu duzu",
|
||||
"{user} has restored the board {board}" : "{user} erabiltzaileak {board} taula leheneratu du",
|
||||
"You have shared the board {board} with {acl}" : "{board} taula {acl} erabiltzailearekin partekatu duzu",
|
||||
"{user} has shared the board {board} with {acl}" : "{user} erabiltzaileak {board} taula {acl} erabiltzailearekin partekatu du",
|
||||
"You have removed {acl} from the board {board}" : "{acl} erabiltzailea kendu duzu {board} taulatik",
|
||||
"{user} has removed {acl} from the board {board}" : "{user} erabiltzaileak {acl} erabiltzailea kendu du {board} taulatik",
|
||||
"You have renamed the board {before} to {board}" : "{before} taula zena {board} bezala berrizendatu duzu",
|
||||
"{user} has renamed the board {before} to {board}" : "{user} erabiltzaileak {before} taula zena {board} bezala berrizendatu du",
|
||||
"You have archived the board {board}" : "{board} taula artxibatu duzu",
|
||||
"{user} has archived the board {before}" : "{user} erabiltzaileak {before} taula artxibatu du",
|
||||
"You have unarchived the board {board}" : "{board} taula artxibotik berreskuratu duzu",
|
||||
"{user} has unarchived the board {before}" : "{user} erabiltzaileak {before} taula artxibotik berreskuratu du",
|
||||
"You have created a new stack {stack} on board {board}" : "{stack} pila berri bat sortu duzu {board} taulan",
|
||||
"{user} has created a new stack {stack} on board {board}" : "{user} erabiltzaileak {stack} pila berri bat sortu duzu {board} taulan",
|
||||
"You have renamed stack {before} to {stack} on board {board}" : "{before} pila zena {stack} bezala berrizendatu duzu {board} taulan",
|
||||
"{user} has renamed stack {before} to {stack} on board {board}" : "{user} erabiltzaileak {before} pila zena {stack} bezala berrizendatu du {board} taulan",
|
||||
"You have deleted stack {stack} on board {board}" : "{stack} pila ezabatu duzu {board} taulan",
|
||||
"{user} has deleted stack {stack} on board {board}" : "{user} erabiltzaileak {stack} pila ezabatu du {board} taulan",
|
||||
"You have created card {card} in stack {stack} on board {board}" : "{card} txartela sortu duzu {board} taulako {stack} pilan",
|
||||
"{user} has created card {card} in stack {stack} on board {board}" : "{user} erabiltzaileak {card} txartela sortu du {board} taulako {stack} pilan",
|
||||
"You have deleted card {card} in stack {stack} on board {board}" : "{card} txartela ezabatu duzu {board} taulako {stack} pilan",
|
||||
"{user} has deleted card {card} in stack {stack} on board {board}" : "{user} erabiltzaileak {card} txartela ezabatu du {board} taulako {stack} pilan",
|
||||
"You have renamed the card {before} to {card}" : "{before} taula zena {card} bezala berrizendatu duzu",
|
||||
"{user} has renamed the card {before} to {card}" : "{user} erabiltzaileak {before} taula zena {card} bezala berrizendatu du",
|
||||
"You have added a description to card {card} in stack {stack} on board {board}" : "{board} taulako {stack} pilako {card} txartelari deskribapena gehitu diozu",
|
||||
"{user} has added a description to card {card} in stack {stack} on board {board}" : "{user} erabiltzaileak {board} taulako {stack} pilako {card} txartelari deskribapena gehitu dio",
|
||||
"You have updated the description of card {card} in stack {stack} on board {board}" : "{board} taulako {stack} pilako {card} txartelaren deskribapena eguneratu duzu",
|
||||
"{user} has updated the description of the card {card} in stack {stack} on board {board}" : "{user} erabiltzaileak {board} taulako {stack} pilako {card} txartelaren deskribapena eguneratu du",
|
||||
"You have archived card {card} in stack {stack} on board {board}" : "{board} taulako {stack} pilako {card} txartela artxibatu duzu",
|
||||
"{user} has archived card {card} in stack {stack} on board {board}" : "{user} erabiltzaileak {board} taulako {stack} pilako {card} txartela artxibatu du",
|
||||
"You have unarchived card {card} in stack {stack} on board {board}" : "{board} taulako {stack} pilako {card} txartela berreskuratu duzu artxibotik",
|
||||
"{user} has unarchived card {card} in stack {stack} on board {board}" : "{user} erabiltzaileak {board} taulako {stack} pilako {card} txartela berreskuratu du artxibotik",
|
||||
"You have removed the due date of card {card}" : "{card} txartelari epemuga kendu diozu",
|
||||
"{user} has removed the due date of card {card}" : "{user} erabiltzaileak {card} txartelari epemuga kendu dio",
|
||||
"You have set the due date of card {card} to {after}" : "{card} txartelari {after} epemuga ezarri diozu",
|
||||
"{user} has set the due date of card {card} to {after}" : "{user} erabiltzaileak {card} txartelari {after} epemuga ezarri dio",
|
||||
"You have updated the due date of card {card} to {after}" : "{card} txartelari epemuga eguneratu diozu: {after}",
|
||||
"{user} has updated the due date of card {card} to {after}" : "{user} erabiltzaileak {card} txartelari epemuga eguneratu dio: {after}",
|
||||
"You have added the tag {label} to card {card} in stack {stack} on board {board}" : "{board} taulako {stack} pilako {card} txartelari {label} etiketa jarri diozu",
|
||||
"{user} has added the tag {label} to card {card} in stack {stack} on board {board}" : "{user} erabiltzaileak {board} taulako {stack} pilako {card} txartelari {label} etiketa jarri dio",
|
||||
"You have removed the tag {label} from card {card} in stack {stack} on board {board}" : "{board} taulako {stack} pilako {card} txartelari {label} etiketa kendu diozu",
|
||||
"{user} has removed the tag {label} from card {card} in stack {stack} on board {board}" : "{user} erabiltzaileak {board} taulako {stack} pilako {card} txartelari {label} etiketa kendu dio",
|
||||
"You have assigned {assigneduser} to card {card} on board {board}" : "{board} taulako {card} txartela {assigneduser} erabiltzaileari esleitu diozu",
|
||||
"{user} has assigned {assigneduser} to card {card} on board {board}" : "{user} erabiltzaileak {board} taulako {card} txartela {assigneduser} erabiltzaileari esleitu dio",
|
||||
"You have unassigned {assigneduser} from card {card} on board {board}" : "{board} taulako {card} txartela {assigneduser} erabiltzaileari esleitzea ezeztatu duzu",
|
||||
"{user} has unassigned {assigneduser} from card {card} on board {board}" : "{user} erabiltzaileak {board} taulako {card} txartela {assigneduser} erabiltzaileari esleitzea ezeztatu du",
|
||||
"You have moved the card {card} from stack {stackBefore} to {stack}" : "{card} txartela {stackBefore} pilatik {stack} pilara aldatu duzu",
|
||||
"{user} has moved the card {card} from stack {stackBefore} to {stack}" : "{user} erabiltzaileak {card} txartela {stackBefore} pilatik {stack} pilara aldatu du",
|
||||
"You have added the attachment {attachment} to card {card}" : "{attachment} eranskina gehitu diozu {card} txartelari",
|
||||
"{user} has added the attachment {attachment} to card {card}" : "{user} erabiltzaileak {attachment} eranskina gehitu dio {card} txartelari",
|
||||
"You have updated the attachment {attachment} on card {card}" : "{card} txartelaren {attachment} eranskina eguneratu duzu",
|
||||
"{user} has updated the attachment {attachment} on card {card}" : "{user} erabiltzaileak {card} txartelaren {attachment} eranskina eguneratu du",
|
||||
"You have deleted the attachment {attachment} from card {card}" : "{card} txartelaren {attachment} eranskina ezabatu duzu",
|
||||
"{user} has deleted the attachment {attachment} from card {card}" : "{user} erabiltzaileak {card} txartelaren {attachment} eranskina ezabatu du",
|
||||
"You have restored the attachment {attachment} to card {card}" : "{card} txartelaren {attachment} eranskina leheneratu duzu",
|
||||
"{user} has restored the attachment {attachment} to card {card}" : "{user} erabiltzaileak {card} txartelaren {attachment} eranskina leheneratu du",
|
||||
"You have commented on card {card}" : "{card} txartela iruzkindu duzu",
|
||||
"{user} has commented on card {card}" : "{user} erabiltzaileak {card} txartela iruzkindu du",
|
||||
"A <strong>card description</strong> inside the Deck app has been changed" : "<strong>Txartel baten deskribapena</strong> aldatu da Deck app-aren barruan",
|
||||
"Deck" : "Mahaigaina",
|
||||
"Changes in the <strong>Deck app</strong>" : "<strong>Deck app</strong>-an aldaketak",
|
||||
"A <strong>comment</strong> was created on a card" : "<strong>Iruzkin bat</strong> sortu da txartel batean",
|
||||
"Personal" : "Pertsonala",
|
||||
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "\"%s\" txartela \"%s\"-n %sk esleitu zaizu.",
|
||||
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user}k \"%s\" txartela \"%s\"-n esleitu zaitu.",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : " \"%s\" txartela, \"%s\" -n dagoena, epe-mugara ailegatu da.",
|
||||
"%s has mentioned you in a comment on \"%s\"." : "%sk aipatu dizu \"%s\"-ri buruzko iruzkin batean.",
|
||||
"{user} has mentioned you in a comment on \"%s\"." : "{user}k aipatu dizu \"%s\"-ri buruzko iruzkin batean.",
|
||||
"The board \"%s\" has been shared with you by %s." : "\"%s\" taula %sk zurekin partekatu du.",
|
||||
"{user} has shared the board %s with you." : "{user}k %s taula zurekin partekatu du.",
|
||||
"No data was provided to create an attachment." : "Ez da daturik eman eranskina sortzeko.",
|
||||
"The board \"%s\" has been shared with you by %s." : "\"%s\" mahaingaina %s-k zurekin partekatu du.",
|
||||
"{user} has shared the board %s with you." : "{user} erabiltzaileak %s mahaigaina zurekin partekatu du.",
|
||||
"Finished" : "Bukatuta",
|
||||
"To review" : "Errebisatzeko",
|
||||
"Action needed" : "Ekintza beharrezkoa",
|
||||
@@ -92,96 +17,61 @@
|
||||
"To do" : "Egiteke",
|
||||
"Doing" : "Egiten",
|
||||
"Done" : "Egina",
|
||||
"Example Task 3" : "Adibidetarako ataza 3",
|
||||
"Example Task 2" : "Adibidetarako ataza 2",
|
||||
"Example Task 1" : "Adibidetarako ataza 1",
|
||||
"The file was uploaded" : "Fitxategia igo da",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Kargatutako fitxategiak php.ini fitxategiko upload_max_filesize direktiban zehazturikoa gainditzen du",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Kargatutako fitxategiak HTML formularioan ezarritako MAX_FILE_SIZE direktiban zehazturikoa gainditzen du",
|
||||
"The file was only partially uploaded" : "Fitxategia erdizka kargatu da",
|
||||
"No file was uploaded" : "Ez da fitxategirik kargatu",
|
||||
"Missing a temporary folder" : "Aldi baterako karpeta bat falta da",
|
||||
"Could not write file to disk" : "Ezin izan da fitxategia diskoan idatzi",
|
||||
"A PHP extension stopped the file upload" : "PHP hedapen batek fitxategiaren karga gelditu du",
|
||||
"No file uploaded or file size exceeds maximum of %s" : "Ez da fitxategirik kargatu edo fitxategi-tamainak gehienezko %s muga gainditzen du",
|
||||
"A kanban style project and personal management tool for Nextcloud" : "Proiektuen kudeaketa eta antolaketa pertsonalerako Kanban moduko Nextclouderako tresna",
|
||||
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck plangintza pertsonalera eta proiektuen antolaketara zuzendutako Nextcloudekin integratutako kanban moduko tresna bat da.\n\n\n- 📥 Gehitu atazak txarteletan eta ordenatu\n- 📄 Idatzi ohar gehigarriak markdown erabiliz\n- 🔖 Esleitu etiketak antolaketa are gehiago hobetzeko\n- 👥 Partekatu zure talde, lagun edo familiarekin\n- 📎 Erantsi fitxategiak eta kapsulatu zure markdown deskribapenean\n- 💬 Eztabaidatu zure taldearekin iruzkinak erabiliz\n- ⚡ Egin aldaketen jarraipena jarduera jarioa erabiliz\n- 🚀 Antolatu zure proiektua",
|
||||
"Select the board to link to a project" : "Hautatu taula proiektu bati estekatzeko",
|
||||
"Select board" : "Hautatu taula",
|
||||
"Add a new stack" : "Gehitu pila berria",
|
||||
"No file was uploaded" : "Ez da fitxategirik igo",
|
||||
"Add a new stack" : "Pila berria gehitu",
|
||||
"Submit" : "Bidali",
|
||||
"Show archived cards" : "Erakutsi artxibatutako txartelak",
|
||||
"Hide archived cards" : "Ezkutatu artxibatutako txartelak",
|
||||
"Toggle compact mode" : "Txandakatu modu trinkoa",
|
||||
"Show board details" : "Erakutsi taularen xehetasunak",
|
||||
"All Boards" : "Taula guztiak",
|
||||
"Show archived cards" : "Artxibatutako txartelak erakutsi",
|
||||
"Hide archived cards" : "Artxibatutako txartelak ezkutatu",
|
||||
"All Boards" : "Mahai guztiak",
|
||||
"Archived boards" : "Artxibatutako txartelak",
|
||||
"Share board" : "Partekatu taula",
|
||||
"Archived cards" : "Artxibatutako txartelak",
|
||||
"Actions" : "Ekintzak",
|
||||
"Drop your files here to upload it to the card" : "Jaregin fitxategiak hemen txartelera kargatzeko",
|
||||
"Assign card to me" : "Esleitu txartela niri",
|
||||
"Unassign card from me" : "Desegin txartela niri esleitzea",
|
||||
"Archive card" : "Artxibatu txartela",
|
||||
"Unarchive card" : "Berreskuratu txartela artxibotik",
|
||||
"Delete card" : "Ezabatu txartela",
|
||||
"Enter a card title" : "Sartu txartelaren izenburua",
|
||||
"Add card" : "Gehitu txartela",
|
||||
"Enter a card title" : "Txartelaren titulua sartu",
|
||||
"Add card" : "Txartela gehitu",
|
||||
"Close" : "Itxi",
|
||||
"Sharing" : "Partekatzen",
|
||||
"Tags" : "Etiketak",
|
||||
"Deleted items" : "Ezabatutako elementuak",
|
||||
"Timeline" : "Denbora-lerroa",
|
||||
"Select users or groups to share with" : "Hautatu erabiltzaile edo taldeak haiekin partekatzeko",
|
||||
"Group" : "Taldea",
|
||||
"Circle" : "Zirkulua",
|
||||
"No matching user or group found." : "Ez da aurkitu bat datorren erabiltzailerik edo talderik.",
|
||||
"Select users or groups to share with" : "Partekatzeko erabiltzaile eta taldeak hautatu",
|
||||
"No matching user or group found." : "Ados datorren erabiltzailerik edo talderik ez da topatu",
|
||||
"Loading" : "Kargatzen",
|
||||
"Edit" : "Editatu",
|
||||
"Share" : "Partekatu",
|
||||
"Manage" : "Kudeatu",
|
||||
"Discard share" : "Baztertu partekatzea",
|
||||
"Sharing has been disabled for your account." : "Partekatzea desgaitu da zure kontuarentzat.",
|
||||
"Update tag" : "Eguneratu etiketa",
|
||||
"Manage" : "Kudeaketa",
|
||||
"Discard share" : "Partekatutakoa ezeztatu",
|
||||
"Edit tag" : "Editatu etiketa",
|
||||
"Delete tag" : "Ezabatu etiketa",
|
||||
"Create" : "Sortu",
|
||||
"Create a new tag" : "Sortu etiketa berria",
|
||||
"Deleted stacks" : "Ezabatutako pilak",
|
||||
"Deleted cards" : "Ezabatutako txartelak",
|
||||
"Create a new tag" : "Etiketa berria sortu",
|
||||
"Status" : "Egoera",
|
||||
"No archived boards to display" : "Artxibatutako taularik ez dago bistaratzeko",
|
||||
"No shared boards to display" : "Partekatutako taularik ez dago bistaratzeko",
|
||||
"Title" : "Izenburua",
|
||||
"Members" : "Partaideak",
|
||||
"More actions" : "Ekintza gehiago",
|
||||
"Edit board" : "Editatu taula",
|
||||
"Archive board" : "Artxibatu taula",
|
||||
"Unarchive board" : "Atera taula artxibotik",
|
||||
"Delete board" : "Ezabatu taula",
|
||||
"Update board" : "Eguneratu taula",
|
||||
"Reset board" : "Berrezarri taula",
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Desegin taularen ezabaketa - Bestela taula hurrengo cron lanaren exekuzioan ezabatuko da.",
|
||||
"Create new board" : "Sortu taula berri bat",
|
||||
"New board title" : "Taula berriaren izenburua",
|
||||
"Create board" : "Sortu taula",
|
||||
"Edit board" : "Mahaigaina editatu",
|
||||
"Archive board" : "Mahaigaina artxibatu",
|
||||
"Unarchive board" : "Mahaigaina artxibotik atera",
|
||||
"Delete board" : "Mahaigaina borratu",
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Mahaiagainaren borratzea ezeztatu - Bestela cron lanaren hurrengo aktibazioan borratuko da.",
|
||||
"Create new board" : "Mahaigain berria sortzen du",
|
||||
"New board title" : "Mahaigainaren izenburu berria",
|
||||
"Select an attachment" : "Hautatu eranskin bat",
|
||||
"Cancel upload" : "Ezeztatu kargatzea",
|
||||
"by" : "Nork",
|
||||
"Undo file deletion - Otherwise the file will be deleted during the next cronjob run." : "Desegin fitxategiaren ezabaketa - bestela fitxategia hurrengo cron lanaren exekuzioan ezabatuko da.",
|
||||
"by" : "-engatik",
|
||||
"Undo file deletion" : "Desegin fitxategiaren ezabaketa",
|
||||
"Insert the file into the description" : "Txertatu fitxategia deskribapenean",
|
||||
"Delete attachment" : "Ezabatu eranskina",
|
||||
"Modified:" : "Aldatua:",
|
||||
"Created:" : "Sortua:",
|
||||
"Choose a tag" : "Aukeratu etiketa bat",
|
||||
"Add a tag" : "Gehitu etiketa bat",
|
||||
"Select tags" : "Hautatu etiketak",
|
||||
"Assign users" : "Esleitu erabiltzaileak",
|
||||
"Choose a user to assign" : "Aukeratu erabiltzaile bat esleitzeko",
|
||||
"Assign this card to a user" : "Esleitu txartel hau erabiltzaile bati",
|
||||
"Choose a tag" : "Etiketa hautatu",
|
||||
"Add a tag" : "Etiketa gehitu",
|
||||
"Select tags" : "Etiketa hautatu",
|
||||
"Assign users" : "Erabiltzaileak esleitu",
|
||||
"Assign this card to a user" : "Txartel hau erabiltzaile bati esleitu",
|
||||
"Due date" : "Epe-muga",
|
||||
"Click to set" : "Egin klik ezartzeko",
|
||||
"Click to set" : "Klik ezartzeko",
|
||||
"Remove due date" : "Ezabatu epe-muga",
|
||||
"Description" : "Deskribapena",
|
||||
"Attachments" : "Eranskinak",
|
||||
@@ -190,12 +80,10 @@
|
||||
"Insert attachment" : "Txertatu eranskina",
|
||||
"Formatting help" : "Formatua emateko laguntza",
|
||||
"Upload attachment" : "Igo eranskina",
|
||||
"Add a card description…" : "Gehitu txartelaren deskribapena...",
|
||||
"Add a card description…" : "Txartelaren deskribapena gehitu...",
|
||||
"Shared boards" : "Partekatutako txartelak",
|
||||
"Move board to archive" : "Artxibatu txartela",
|
||||
"Create a new board" : "Sortu taula berri bat",
|
||||
"Settings" : "Ezarpenak",
|
||||
"Limit deck to groups" : "Mugatu deck-a taldeei",
|
||||
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Deck mugatzeak taldeetako kide ez diren erabiltzaileei bere arbel propioak sortzea eragotziko die. Erabiltzaileek beraiekin partekatu diren arbeletan lan egin ahalko dute."
|
||||
"Move board to archive" : "Txartela artxibora mugitu",
|
||||
"Create a new board" : "Mahaigain berria sortu",
|
||||
"Settings" : "Ezarpenak"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
44
l10n/fa.js
44
l10n/fa.js
@@ -1,44 +0,0 @@
|
||||
OC.L10N.register(
|
||||
"deck",
|
||||
{
|
||||
"Hours" : "ساعت ها",
|
||||
"Minutes" : "دقایق",
|
||||
"Personal" : "شخصی",
|
||||
"Finished" : "تمام شده",
|
||||
"Done" : "انجام شد",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "حداکثر حجم قابل بار گذاری از طریق HTML MAX_FILE_SIZE است",
|
||||
"No file was uploaded" : "هیچ پروندهای بارگذاری نشده",
|
||||
"Missing a temporary folder" : "یک پوشه موقت گم شده",
|
||||
"Share board" : "صفحه مشترک",
|
||||
"Actions" : "فعالیت ها",
|
||||
"Assign card to me" : "کارت را به من اختصاص دهید",
|
||||
"Unassign card from me" : "جدا کردن کارت از من",
|
||||
"Archive card" : "کارت بایگانی",
|
||||
"Delete card" : "حذف کارت",
|
||||
"Add card" : "کارت اضافه کنید",
|
||||
"Close" : "بستن",
|
||||
"Sharing" : "اشتراک گذاری",
|
||||
"Tags" : "برچسبها",
|
||||
"Group" : "گروه",
|
||||
"Circle" : "حلقه",
|
||||
"Loading" : "در حال بار گزاری",
|
||||
"Edit" : "ویرایش",
|
||||
"Share" : "همرسانی",
|
||||
"Create" : "ایجاد کردن",
|
||||
"Title" : "عنوان",
|
||||
"More actions" : "اقدامات بیشتر",
|
||||
"Edit board" : "ویرایش تخته ها",
|
||||
"Archive board" : " بایگانی تابلو",
|
||||
"Delete board" : "حذف تابلو",
|
||||
"Cancel upload" : "متوقف کردن بار گذاری",
|
||||
"by" : "با",
|
||||
"Modified:" : "تغییر یافته توسط:",
|
||||
"Created:" : "ایجاد شده توسط:",
|
||||
"Assign users" : "اختصاص کاربران",
|
||||
"Due date" : "موعد مقرر",
|
||||
"Description" : "توضیحات",
|
||||
"Attachments" : "پیوست ها",
|
||||
"Saved" : "ذخیره شد",
|
||||
"Settings" : "تنظیمات"
|
||||
},
|
||||
"nplurals=2; plural=(n > 1);");
|
||||
42
l10n/fa.json
42
l10n/fa.json
@@ -1,42 +0,0 @@
|
||||
{ "translations": {
|
||||
"Hours" : "ساعت ها",
|
||||
"Minutes" : "دقایق",
|
||||
"Personal" : "شخصی",
|
||||
"Finished" : "تمام شده",
|
||||
"Done" : "انجام شد",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "حداکثر حجم قابل بار گذاری از طریق HTML MAX_FILE_SIZE است",
|
||||
"No file was uploaded" : "هیچ پروندهای بارگذاری نشده",
|
||||
"Missing a temporary folder" : "یک پوشه موقت گم شده",
|
||||
"Share board" : "صفحه مشترک",
|
||||
"Actions" : "فعالیت ها",
|
||||
"Assign card to me" : "کارت را به من اختصاص دهید",
|
||||
"Unassign card from me" : "جدا کردن کارت از من",
|
||||
"Archive card" : "کارت بایگانی",
|
||||
"Delete card" : "حذف کارت",
|
||||
"Add card" : "کارت اضافه کنید",
|
||||
"Close" : "بستن",
|
||||
"Sharing" : "اشتراک گذاری",
|
||||
"Tags" : "برچسبها",
|
||||
"Group" : "گروه",
|
||||
"Circle" : "حلقه",
|
||||
"Loading" : "در حال بار گزاری",
|
||||
"Edit" : "ویرایش",
|
||||
"Share" : "همرسانی",
|
||||
"Create" : "ایجاد کردن",
|
||||
"Title" : "عنوان",
|
||||
"More actions" : "اقدامات بیشتر",
|
||||
"Edit board" : "ویرایش تخته ها",
|
||||
"Archive board" : " بایگانی تابلو",
|
||||
"Delete board" : "حذف تابلو",
|
||||
"Cancel upload" : "متوقف کردن بار گذاری",
|
||||
"by" : "با",
|
||||
"Modified:" : "تغییر یافته توسط:",
|
||||
"Created:" : "ایجاد شده توسط:",
|
||||
"Assign users" : "اختصاص کاربران",
|
||||
"Due date" : "موعد مقرر",
|
||||
"Description" : "توضیحات",
|
||||
"Attachments" : "پیوست ها",
|
||||
"Saved" : "ذخیره شد",
|
||||
"Settings" : "تنظیمات"
|
||||
},"pluralForm" :"nplurals=2; plural=(n > 1);"
|
||||
}
|
||||
129
l10n/fi.js
129
l10n/fi.js
@@ -1,153 +1,44 @@
|
||||
OC.L10N.register(
|
||||
"deck",
|
||||
{
|
||||
"Please provide a content for your comment." : "Kirjoita sisältö kommenttiisi.",
|
||||
"Posting the comment failed." : "Kommentin lähettäminen epäonnistui.",
|
||||
"The comment has been deleted" : "Kommentti on poistettu",
|
||||
"Remove user from card" : "Poista käyttäjä kortilta",
|
||||
"Hours" : "Tunnit",
|
||||
"Minutes" : "Minuutit",
|
||||
"Link to a board" : "Linkki taululle",
|
||||
"Maximum file size of {size} exceeded" : "Tiedoston enimmäiskoko {size} ylitetty",
|
||||
"File already exists" : "Tiedosto on jo olemassa",
|
||||
"You have created a new board {board}" : "Loit uuden taulun {board}",
|
||||
"{user} has created a new board {board}" : "{user} loi uuden taulun {board}",
|
||||
"You have deleted the board {board}" : "Poistit taulun {board}",
|
||||
"{user} has deleted the board {board}" : "{user} poisti taulun {board}",
|
||||
"You have restored the board {board}" : "Palautit taulun {board}",
|
||||
"{user} has restored the board {board}" : "{user} palautti taulun {board}",
|
||||
"You have shared the board {board} with {acl}" : "Jaoit taulun {board} ryhmälle {acl}",
|
||||
"{user} has shared the board {board} with {acl}" : "{user} jakoi taulun {board} ryhmälle {acl}",
|
||||
"You have removed {acl} from the board {board}" : "Poistit ryhmän {acl} taulun {board} jaosta",
|
||||
"{user} has removed {acl} from the board {board}" : "{user} poisti {acl}-ryhmän taululta {board}",
|
||||
"You have renamed the board {before} to {board}" : "Asetit taulun {before} uudeksi nimeksi {board}",
|
||||
"{user} has renamed the board {before} to {board}" : "{user} asetti taulun {before} uudeksi nimeksi {board}",
|
||||
"You have archived the board {board}" : "Arkistoit taulun {board}",
|
||||
"{user} has archived the board {before}" : "{user} arkistoi taulun {before}",
|
||||
"You have unarchived the board {board}" : "Palautit taulun {board} arkistosta ",
|
||||
"{user} has unarchived the board {before}" : "{user} palautti taulun {before} arkistosta",
|
||||
"You have created a new stack {stack} on board {board}" : "Loit pinon {stack} tauluun {board}",
|
||||
"{user} has created a new stack {stack} on board {board}" : "{user} loi pinon {stack} tauluun {board}",
|
||||
"You have renamed stack {before} to {stack} on board {board}" : "Muutit pinon {before} nimeksi {stack} taululla {board}",
|
||||
"{user} has renamed stack {before} to {stack} on board {board}" : "{user} muutti pinon {before} nimeksi {stack} taululla {board}",
|
||||
"You have deleted stack {stack} on board {board}" : "Poistit pinon {stack} taululta {board}",
|
||||
"{user} has deleted stack {stack} on board {board}" : "{user} poisti pinon {stack} taululta {board}",
|
||||
"You have created card {card} in stack {stack} on board {board}" : "Loit kortin {card} pinoon {stack} taululla {board}",
|
||||
"{user} has created card {card} in stack {stack} on board {board}" : "{user} loi kortin {card} pinoon {stack} taululla {board}",
|
||||
"You have deleted card {card} in stack {stack} on board {board}" : "Poistit kortin {card} pinosta {stack} taululta {board}",
|
||||
"{user} has deleted card {card} in stack {stack} on board {board}" : "{user} poisti kortin {card} pinosta {stack} taululta {board}",
|
||||
"You have renamed the card {before} to {card}" : "Muutit kortin {before} uudeksi nimeksi {card}",
|
||||
"{user} has renamed the card {before} to {card}" : "{user} muutti kortin {before} uudeksi nimeksi {card}",
|
||||
"You have added a description to card {card} in stack {stack} on board {board}" : "Lisäsit kuvauksen korttiin {card} pinossa {stack} taululla {board}",
|
||||
"{user} has added a description to card {card} in stack {stack} on board {board}" : "{user} lisäsi kuvauksen korttiin {card} pinossa {stack} taululla {board}",
|
||||
"You have updated the description of card {card} in stack {stack} on board {board}" : "Päivitit kortin {card} kuvausta pinossa {stack} taululla {board}",
|
||||
"{user} has updated the description of the card {card} in stack {stack} on board {board}" : "{user} päivitti kortin {card} kuvausta pinossa {stack} taululla {board}",
|
||||
"You have archived card {card} in stack {stack} on board {board}" : "Arkistoit kortin {card} pinossa {stack} taululla {board}",
|
||||
"{user} has archived card {card} in stack {stack} on board {board}" : "{user} arkistoi kortin {card} pinossa {stack} taululla {board}",
|
||||
"You have unarchived card {card} in stack {stack} on board {board}" : "Palautit arkistosta kortin {card} pinossa {stack} taululla {board}",
|
||||
"{user} has unarchived card {card} in stack {stack} on board {board}" : "{user} palautti arkistosta kortin {card} pinossa {stack} taululla {board}",
|
||||
"You have removed the due date of card {card}" : "Poistit eräpäivän kortilta {card}",
|
||||
"{user} has removed the due date of card {card}" : "{user} poisti eräpäivän kortilta {card}",
|
||||
"You have set the due date of card {card} to {after}" : "Asetit kortille {card} eräpäivän {after}",
|
||||
"{user} has set the due date of card {card} to {after}" : "{user} asetti kortille {card} eräpäivän {after}",
|
||||
"You have updated the due date of card {card} to {after}" : "Päivitit kortin {card} eräpäiväksi {after}",
|
||||
"{user} has updated the due date of card {card} to {after}" : "{user} päivitti kortin {card} eräpäiväksi {after}",
|
||||
"You have added the tag {label} to card {card} in stack {stack} on board {board}" : "Lisäsit tunnisteen {label} korttiin {card} pinossa {stack} taululla {board}",
|
||||
"{user} has added the tag {label} to card {card} in stack {stack} on board {board}" : "{user} lisäsi tunnisteen {label} korttiin {card} pinossa {stack} taululla {board}",
|
||||
"You have removed the tag {label} from card {card} in stack {stack} on board {board}" : "Poistit tunnisteen {label} kortista {card} pinossa {stack} taululla {board}",
|
||||
"{user} has removed the tag {label} from card {card} in stack {stack} on board {board}" : "{user} poisti tunnisteen {label} kortista {card} pinossa {stack} taululla {board}",
|
||||
"You have assigned {assigneduser} to card {card} on board {board}" : "Asetit kortin {card} käyttäjän {assigneduser} tehtäväksi taululla {board}",
|
||||
"{user} has assigned {assigneduser} to card {card} on board {board}" : "{user} asetti kortin {card} käyttäjän {assigneduser} tehtäväksi taululla {board}",
|
||||
"You have unassigned {assigneduser} from card {card} on board {board}" : "Poistit kortin {card} käyttäjän {assigneduser} tehtävistä taululla {board}",
|
||||
"{user} has unassigned {assigneduser} from card {card} on board {board}" : "{user} poisti kortin {card} käyttäjän {assigneduser} tehtävistä taululla {board}",
|
||||
"You have moved the card {card} from stack {stackBefore} to {stack}" : "Siirsit kortin {card} pinosta {stackBefore} pinoon {stack}",
|
||||
"{user} has moved the card {card} from stack {stackBefore} to {stack}" : "{user} siirsi kortin {card} pinosta {stackBefore} pinoon {stack}",
|
||||
"You have added the attachment {attachment} to card {card}" : "Lisäsit liitteen {attachment} kortille {card}",
|
||||
"{user} has added the attachment {attachment} to card {card}" : "{user} lisäsi liitteen {attachment} kortille {card}",
|
||||
"You have updated the attachment {attachment} on card {card}" : "Päivitit kortin {card} liitettä {attachment}",
|
||||
"{user} has updated the attachment {attachment} on card {card}" : "{user} päivitti kortin {card} liitteen {attachment}",
|
||||
"You have deleted the attachment {attachment} from card {card}" : "Poistit liitteen {attachment} kortilta {card}",
|
||||
"You have restored the attachment {attachment} to card {card}" : "Palautit liitteen {attachment} kortille {card}",
|
||||
"{user} has restored the attachment {attachment} to card {card}" : "{user} palautti liitteen {attachment} kortille {card}",
|
||||
"You have commented on card {card}" : "Kommentoit korttia {card}",
|
||||
"{user} has commented on card {card}" : "{user} kommentoi korttia {card}",
|
||||
"A <strong>card description</strong> inside the Deck app has been changed" : "<strong>Kortin kuvaus</strong> Pakka-sovelluksessa on vaihtunut",
|
||||
"Deck" : "Pakka",
|
||||
"Changes in the <strong>Deck app</strong>" : "Muutokset <strong>Pakka-sovelluksessa</strong>",
|
||||
"A <strong>comment</strong> was created on a card" : "<strong>Kommentti</strong> luotiin kortille",
|
||||
"Personal" : "Henkilökohtainen",
|
||||
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Kortti \"%s\" taululla \"%s\" on asetettu sinulle käyttäjän %s toimesta.",
|
||||
"Deck" : "Kansi",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "Kortin \"%s\" on \"%s\" eräpäivä on tullut vastaan.",
|
||||
"%s has mentioned you in a comment on \"%s\"." : "%s mainitsi sinut kommentissa kortilla \"%s\".",
|
||||
"The board \"%s\" has been shared with you by %s." : "Taulu \"%s\" on jaettu kanssasi käyttäjän %s toimesta.",
|
||||
"{user} has shared the board %s with you." : "{user} on jakanut taulun %s kanssasi.",
|
||||
"Finished" : "Valmistunut",
|
||||
"To review" : "Arvosteltavana",
|
||||
"To review" : "Arvostella",
|
||||
"Action needed" : "Toimia vaaditaan",
|
||||
"Later" : "Myöhemmin",
|
||||
"To do" : "Odottaa",
|
||||
"Doing" : "Tekeillä",
|
||||
"Done" : "Valmis",
|
||||
"Example Task 3" : "Esimerkkitehtävä 3",
|
||||
"Example Task 2" : "Esimerkkitehtävä 2",
|
||||
"Example Task 1" : "Esimerkkitehtävä 1",
|
||||
"The file was uploaded" : "Tiedosto lähetettiin",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Lähetetty tiedosto ylittää php.ini-tiedostossa määritellyn upload_max_filesize -säännön ",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Lähetettävän tiedoston enimmäiskoko ylittää HTML-lomakkeessa määritellyn MAX_FILE_SIZE-säännön",
|
||||
"The file was only partially uploaded" : "Tiedosto lähetettiin vain osittain",
|
||||
"No file was uploaded" : "Tiedostoa ei lähetetty",
|
||||
"Missing a temporary folder" : "Väliaikaistiedostojen kansio puuttuu",
|
||||
"Could not write file to disk" : "Tiedostoa ei voitu kirjoittaa levylle",
|
||||
"A PHP extension stopped the file upload" : "PHP:n laajennus esti tiedoston lähettämisen",
|
||||
"No file uploaded or file size exceeds maximum of %s" : "Tiedostoa ei lähetetty tai sen koko ylitti maksimin %s",
|
||||
"A kanban style project and personal management tool for Nextcloud" : "Kanban-tyylinen projektien ja henkilökohtaisten asioiden hallintatyökalu Nextcloudille",
|
||||
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Pakka on Nextcloudissa työtään hallinnoivien tiimien käyttöön tarkoitettu kanban-tyyppinen organisointityökalu.\n\n\n- 📥 Lisää tehtävät korteille ja järjestele ne mielesi mukaan\n- 📄 Kirjoita lisätietoja markdown-kielellä\n- 🔖 Määritä tunnisteita helpottaaksesi hallintaa\n- 👥 Jaa tiimin, perheen tai kavereiden kanssa\n- 📎 Lisää tiedostoja ja upota ne lisätietoihin\n- 💬 Keskustele tiimisi kanssa kommenteilla\n- ⚡ Pidä kirjaa muutoksista tapahtumavirran avulla\n- 🚀 Pidä projektisi hallinnassa",
|
||||
"Select the board to link to a project" : "Valitse projektiin linkitettävä taulu",
|
||||
"Select board" : "Valitse taulu",
|
||||
"Add a new stack" : "Lisää uusi pino",
|
||||
"Submit" : "Lähetä",
|
||||
"Show archived cards" : "Näytä arkistoidut kortit",
|
||||
"Hide archived cards" : "Piilota arkistoidut kortit",
|
||||
"Toggle compact mode" : "Käytä kompaktia tilaa",
|
||||
"Show board details" : "Näytä taulun tiedot",
|
||||
"All Boards" : "Kaikki taulut",
|
||||
"Archived boards" : "Arkistoidut taulut",
|
||||
"Share board" : "Jaa taulu",
|
||||
"Archived cards" : "Arkistoidut kortit",
|
||||
"Actions" : "Toiminnot",
|
||||
"Drop your files here to upload it to the card" : "Pudota tiedostot tähän lähettääksesi ne kortille",
|
||||
"Assign card to me" : "Määritä kortti minulle",
|
||||
"Unassign card from me" : "Poista kortin määritys minulta",
|
||||
"Archive card" : "Arkistoi kortti",
|
||||
"Unarchive card" : "Poista kortti arkistosta",
|
||||
"Delete card" : "Poista kortti",
|
||||
"Enter a card title" : "Anna otsikko",
|
||||
"Add card" : "Lisää kortti",
|
||||
"Close" : "Sulje",
|
||||
"Sharing" : "Jakaminen",
|
||||
"Tags" : "Tunnisteet",
|
||||
"Deleted items" : "Poistetut tietueet",
|
||||
"Timeline" : "Aikajana",
|
||||
"Select users or groups to share with" : "Valitse käyttäjiä tai ryhmiä joille haluat jakaa",
|
||||
"Group" : "Ryhmä",
|
||||
"Circle" : "Piiri",
|
||||
"No matching user or group found." : "Käyttäjää tai ryhmää ei löytynyt.",
|
||||
"Loading" : "Ladataan",
|
||||
"Edit" : "Muokkaa",
|
||||
"Share" : "Jaa",
|
||||
"Manage" : "Hallitse",
|
||||
"Discard share" : "Peru jakaminen",
|
||||
"Sharing has been disabled for your account." : "Jakaminen on poistettu käytöstä tililtäsi.",
|
||||
"Update tag" : "Päivitä tunniste",
|
||||
"Edit tag" : "Muokkaa tunnistetta",
|
||||
"Delete tag" : "Poista tunniste",
|
||||
"Create" : "Luo",
|
||||
"Create a new tag" : "Luo uusi tunniste",
|
||||
"Deleted stacks" : "Poistetut pinot",
|
||||
"Deleted cards" : "Poistetut kortit",
|
||||
"Status" : "Tila",
|
||||
"No archived boards to display" : "Ei arkistoituja tauluja näytettäväksi",
|
||||
"No shared boards to display" : "Ei jaettuja tauluja näytettäväksi",
|
||||
"Title" : "Otsikko",
|
||||
"Members" : "Jäsenet",
|
||||
"More actions" : "Lisää toimintoja",
|
||||
@@ -155,19 +46,11 @@ OC.L10N.register(
|
||||
"Archive board" : "Arkistoi taulu",
|
||||
"Unarchive board" : "Kumoa taulun arkistointi",
|
||||
"Delete board" : "Poista taulu",
|
||||
"Update board" : "Päivitä taulu",
|
||||
"Reset board" : "Nollaa taulu",
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Peru taulun poisto - muussa tapauksessa taulu poistetaan seuraavan cron-ajon yhteydessä.",
|
||||
"Create new board" : "Luo uusi taulu",
|
||||
"New board title" : "Uusi taulun otsikko",
|
||||
"Create board" : "Luo taulu",
|
||||
"Select an attachment" : "Valitse liite",
|
||||
"Cancel upload" : "Peruuta lähetys",
|
||||
"by" : " Kirjoittaja:",
|
||||
"Undo file deletion - Otherwise the file will be deleted during the next cronjob run." : "Peru tiedoston poisto - muussa tapauksessa tiedosto poistetaan seuraavan cron-ajon yhteydessä.",
|
||||
"Undo file deletion" : "Kumoa tiedoston poisto",
|
||||
"Insert the file into the description" : "Lisää tiedosto kuvaukseen",
|
||||
"Delete attachment" : "Poista liite",
|
||||
"Undo file deletion" : "Kumoa tiedoston luonti",
|
||||
"Modified:" : "Muokattu:",
|
||||
"Created:" : "Luotu:",
|
||||
"Choose a tag" : "Valitse tunniste",
|
||||
@@ -183,15 +66,11 @@ OC.L10N.register(
|
||||
"Attachments" : "Liitteet",
|
||||
"Saved" : "Tallennettu",
|
||||
"Unsaved changes" : "Tallentamattomia muutoksia",
|
||||
"Insert attachment" : "Lisää liite",
|
||||
"Formatting help" : "Muotoiluapu",
|
||||
"Upload attachment" : "Lähetä liite",
|
||||
"Add a card description…" : "Lisää kortin kuvaus…",
|
||||
"Shared boards" : "Jaetut taulut",
|
||||
"Move board to archive" : "Siirrä taulu arkistoon",
|
||||
"Create a new board" : "Luo uusi taulu",
|
||||
"Settings" : "Asetukset",
|
||||
"Limit deck to groups" : "Rajoita Pakan käyttö ryhmille",
|
||||
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Pakan käytön rajoittaminen estää merkittyjen ryhmien jäseniä luomasta omia taulujaan, mutta käyttäjät pystyvät silti käyttämään heidän kanssaan jaettuja tauluja."
|
||||
"Create a new board" : "Luo uusi taulu"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
|
||||
129
l10n/fi.json
129
l10n/fi.json
@@ -1,151 +1,42 @@
|
||||
{ "translations": {
|
||||
"Please provide a content for your comment." : "Kirjoita sisältö kommenttiisi.",
|
||||
"Posting the comment failed." : "Kommentin lähettäminen epäonnistui.",
|
||||
"The comment has been deleted" : "Kommentti on poistettu",
|
||||
"Remove user from card" : "Poista käyttäjä kortilta",
|
||||
"Hours" : "Tunnit",
|
||||
"Minutes" : "Minuutit",
|
||||
"Link to a board" : "Linkki taululle",
|
||||
"Maximum file size of {size} exceeded" : "Tiedoston enimmäiskoko {size} ylitetty",
|
||||
"File already exists" : "Tiedosto on jo olemassa",
|
||||
"You have created a new board {board}" : "Loit uuden taulun {board}",
|
||||
"{user} has created a new board {board}" : "{user} loi uuden taulun {board}",
|
||||
"You have deleted the board {board}" : "Poistit taulun {board}",
|
||||
"{user} has deleted the board {board}" : "{user} poisti taulun {board}",
|
||||
"You have restored the board {board}" : "Palautit taulun {board}",
|
||||
"{user} has restored the board {board}" : "{user} palautti taulun {board}",
|
||||
"You have shared the board {board} with {acl}" : "Jaoit taulun {board} ryhmälle {acl}",
|
||||
"{user} has shared the board {board} with {acl}" : "{user} jakoi taulun {board} ryhmälle {acl}",
|
||||
"You have removed {acl} from the board {board}" : "Poistit ryhmän {acl} taulun {board} jaosta",
|
||||
"{user} has removed {acl} from the board {board}" : "{user} poisti {acl}-ryhmän taululta {board}",
|
||||
"You have renamed the board {before} to {board}" : "Asetit taulun {before} uudeksi nimeksi {board}",
|
||||
"{user} has renamed the board {before} to {board}" : "{user} asetti taulun {before} uudeksi nimeksi {board}",
|
||||
"You have archived the board {board}" : "Arkistoit taulun {board}",
|
||||
"{user} has archived the board {before}" : "{user} arkistoi taulun {before}",
|
||||
"You have unarchived the board {board}" : "Palautit taulun {board} arkistosta ",
|
||||
"{user} has unarchived the board {before}" : "{user} palautti taulun {before} arkistosta",
|
||||
"You have created a new stack {stack} on board {board}" : "Loit pinon {stack} tauluun {board}",
|
||||
"{user} has created a new stack {stack} on board {board}" : "{user} loi pinon {stack} tauluun {board}",
|
||||
"You have renamed stack {before} to {stack} on board {board}" : "Muutit pinon {before} nimeksi {stack} taululla {board}",
|
||||
"{user} has renamed stack {before} to {stack} on board {board}" : "{user} muutti pinon {before} nimeksi {stack} taululla {board}",
|
||||
"You have deleted stack {stack} on board {board}" : "Poistit pinon {stack} taululta {board}",
|
||||
"{user} has deleted stack {stack} on board {board}" : "{user} poisti pinon {stack} taululta {board}",
|
||||
"You have created card {card} in stack {stack} on board {board}" : "Loit kortin {card} pinoon {stack} taululla {board}",
|
||||
"{user} has created card {card} in stack {stack} on board {board}" : "{user} loi kortin {card} pinoon {stack} taululla {board}",
|
||||
"You have deleted card {card} in stack {stack} on board {board}" : "Poistit kortin {card} pinosta {stack} taululta {board}",
|
||||
"{user} has deleted card {card} in stack {stack} on board {board}" : "{user} poisti kortin {card} pinosta {stack} taululta {board}",
|
||||
"You have renamed the card {before} to {card}" : "Muutit kortin {before} uudeksi nimeksi {card}",
|
||||
"{user} has renamed the card {before} to {card}" : "{user} muutti kortin {before} uudeksi nimeksi {card}",
|
||||
"You have added a description to card {card} in stack {stack} on board {board}" : "Lisäsit kuvauksen korttiin {card} pinossa {stack} taululla {board}",
|
||||
"{user} has added a description to card {card} in stack {stack} on board {board}" : "{user} lisäsi kuvauksen korttiin {card} pinossa {stack} taululla {board}",
|
||||
"You have updated the description of card {card} in stack {stack} on board {board}" : "Päivitit kortin {card} kuvausta pinossa {stack} taululla {board}",
|
||||
"{user} has updated the description of the card {card} in stack {stack} on board {board}" : "{user} päivitti kortin {card} kuvausta pinossa {stack} taululla {board}",
|
||||
"You have archived card {card} in stack {stack} on board {board}" : "Arkistoit kortin {card} pinossa {stack} taululla {board}",
|
||||
"{user} has archived card {card} in stack {stack} on board {board}" : "{user} arkistoi kortin {card} pinossa {stack} taululla {board}",
|
||||
"You have unarchived card {card} in stack {stack} on board {board}" : "Palautit arkistosta kortin {card} pinossa {stack} taululla {board}",
|
||||
"{user} has unarchived card {card} in stack {stack} on board {board}" : "{user} palautti arkistosta kortin {card} pinossa {stack} taululla {board}",
|
||||
"You have removed the due date of card {card}" : "Poistit eräpäivän kortilta {card}",
|
||||
"{user} has removed the due date of card {card}" : "{user} poisti eräpäivän kortilta {card}",
|
||||
"You have set the due date of card {card} to {after}" : "Asetit kortille {card} eräpäivän {after}",
|
||||
"{user} has set the due date of card {card} to {after}" : "{user} asetti kortille {card} eräpäivän {after}",
|
||||
"You have updated the due date of card {card} to {after}" : "Päivitit kortin {card} eräpäiväksi {after}",
|
||||
"{user} has updated the due date of card {card} to {after}" : "{user} päivitti kortin {card} eräpäiväksi {after}",
|
||||
"You have added the tag {label} to card {card} in stack {stack} on board {board}" : "Lisäsit tunnisteen {label} korttiin {card} pinossa {stack} taululla {board}",
|
||||
"{user} has added the tag {label} to card {card} in stack {stack} on board {board}" : "{user} lisäsi tunnisteen {label} korttiin {card} pinossa {stack} taululla {board}",
|
||||
"You have removed the tag {label} from card {card} in stack {stack} on board {board}" : "Poistit tunnisteen {label} kortista {card} pinossa {stack} taululla {board}",
|
||||
"{user} has removed the tag {label} from card {card} in stack {stack} on board {board}" : "{user} poisti tunnisteen {label} kortista {card} pinossa {stack} taululla {board}",
|
||||
"You have assigned {assigneduser} to card {card} on board {board}" : "Asetit kortin {card} käyttäjän {assigneduser} tehtäväksi taululla {board}",
|
||||
"{user} has assigned {assigneduser} to card {card} on board {board}" : "{user} asetti kortin {card} käyttäjän {assigneduser} tehtäväksi taululla {board}",
|
||||
"You have unassigned {assigneduser} from card {card} on board {board}" : "Poistit kortin {card} käyttäjän {assigneduser} tehtävistä taululla {board}",
|
||||
"{user} has unassigned {assigneduser} from card {card} on board {board}" : "{user} poisti kortin {card} käyttäjän {assigneduser} tehtävistä taululla {board}",
|
||||
"You have moved the card {card} from stack {stackBefore} to {stack}" : "Siirsit kortin {card} pinosta {stackBefore} pinoon {stack}",
|
||||
"{user} has moved the card {card} from stack {stackBefore} to {stack}" : "{user} siirsi kortin {card} pinosta {stackBefore} pinoon {stack}",
|
||||
"You have added the attachment {attachment} to card {card}" : "Lisäsit liitteen {attachment} kortille {card}",
|
||||
"{user} has added the attachment {attachment} to card {card}" : "{user} lisäsi liitteen {attachment} kortille {card}",
|
||||
"You have updated the attachment {attachment} on card {card}" : "Päivitit kortin {card} liitettä {attachment}",
|
||||
"{user} has updated the attachment {attachment} on card {card}" : "{user} päivitti kortin {card} liitteen {attachment}",
|
||||
"You have deleted the attachment {attachment} from card {card}" : "Poistit liitteen {attachment} kortilta {card}",
|
||||
"You have restored the attachment {attachment} to card {card}" : "Palautit liitteen {attachment} kortille {card}",
|
||||
"{user} has restored the attachment {attachment} to card {card}" : "{user} palautti liitteen {attachment} kortille {card}",
|
||||
"You have commented on card {card}" : "Kommentoit korttia {card}",
|
||||
"{user} has commented on card {card}" : "{user} kommentoi korttia {card}",
|
||||
"A <strong>card description</strong> inside the Deck app has been changed" : "<strong>Kortin kuvaus</strong> Pakka-sovelluksessa on vaihtunut",
|
||||
"Deck" : "Pakka",
|
||||
"Changes in the <strong>Deck app</strong>" : "Muutokset <strong>Pakka-sovelluksessa</strong>",
|
||||
"A <strong>comment</strong> was created on a card" : "<strong>Kommentti</strong> luotiin kortille",
|
||||
"Personal" : "Henkilökohtainen",
|
||||
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Kortti \"%s\" taululla \"%s\" on asetettu sinulle käyttäjän %s toimesta.",
|
||||
"Deck" : "Kansi",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "Kortin \"%s\" on \"%s\" eräpäivä on tullut vastaan.",
|
||||
"%s has mentioned you in a comment on \"%s\"." : "%s mainitsi sinut kommentissa kortilla \"%s\".",
|
||||
"The board \"%s\" has been shared with you by %s." : "Taulu \"%s\" on jaettu kanssasi käyttäjän %s toimesta.",
|
||||
"{user} has shared the board %s with you." : "{user} on jakanut taulun %s kanssasi.",
|
||||
"Finished" : "Valmistunut",
|
||||
"To review" : "Arvosteltavana",
|
||||
"To review" : "Arvostella",
|
||||
"Action needed" : "Toimia vaaditaan",
|
||||
"Later" : "Myöhemmin",
|
||||
"To do" : "Odottaa",
|
||||
"Doing" : "Tekeillä",
|
||||
"Done" : "Valmis",
|
||||
"Example Task 3" : "Esimerkkitehtävä 3",
|
||||
"Example Task 2" : "Esimerkkitehtävä 2",
|
||||
"Example Task 1" : "Esimerkkitehtävä 1",
|
||||
"The file was uploaded" : "Tiedosto lähetettiin",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Lähetetty tiedosto ylittää php.ini-tiedostossa määritellyn upload_max_filesize -säännön ",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Lähetettävän tiedoston enimmäiskoko ylittää HTML-lomakkeessa määritellyn MAX_FILE_SIZE-säännön",
|
||||
"The file was only partially uploaded" : "Tiedosto lähetettiin vain osittain",
|
||||
"No file was uploaded" : "Tiedostoa ei lähetetty",
|
||||
"Missing a temporary folder" : "Väliaikaistiedostojen kansio puuttuu",
|
||||
"Could not write file to disk" : "Tiedostoa ei voitu kirjoittaa levylle",
|
||||
"A PHP extension stopped the file upload" : "PHP:n laajennus esti tiedoston lähettämisen",
|
||||
"No file uploaded or file size exceeds maximum of %s" : "Tiedostoa ei lähetetty tai sen koko ylitti maksimin %s",
|
||||
"A kanban style project and personal management tool for Nextcloud" : "Kanban-tyylinen projektien ja henkilökohtaisten asioiden hallintatyökalu Nextcloudille",
|
||||
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Pakka on Nextcloudissa työtään hallinnoivien tiimien käyttöön tarkoitettu kanban-tyyppinen organisointityökalu.\n\n\n- 📥 Lisää tehtävät korteille ja järjestele ne mielesi mukaan\n- 📄 Kirjoita lisätietoja markdown-kielellä\n- 🔖 Määritä tunnisteita helpottaaksesi hallintaa\n- 👥 Jaa tiimin, perheen tai kavereiden kanssa\n- 📎 Lisää tiedostoja ja upota ne lisätietoihin\n- 💬 Keskustele tiimisi kanssa kommenteilla\n- ⚡ Pidä kirjaa muutoksista tapahtumavirran avulla\n- 🚀 Pidä projektisi hallinnassa",
|
||||
"Select the board to link to a project" : "Valitse projektiin linkitettävä taulu",
|
||||
"Select board" : "Valitse taulu",
|
||||
"Add a new stack" : "Lisää uusi pino",
|
||||
"Submit" : "Lähetä",
|
||||
"Show archived cards" : "Näytä arkistoidut kortit",
|
||||
"Hide archived cards" : "Piilota arkistoidut kortit",
|
||||
"Toggle compact mode" : "Käytä kompaktia tilaa",
|
||||
"Show board details" : "Näytä taulun tiedot",
|
||||
"All Boards" : "Kaikki taulut",
|
||||
"Archived boards" : "Arkistoidut taulut",
|
||||
"Share board" : "Jaa taulu",
|
||||
"Archived cards" : "Arkistoidut kortit",
|
||||
"Actions" : "Toiminnot",
|
||||
"Drop your files here to upload it to the card" : "Pudota tiedostot tähän lähettääksesi ne kortille",
|
||||
"Assign card to me" : "Määritä kortti minulle",
|
||||
"Unassign card from me" : "Poista kortin määritys minulta",
|
||||
"Archive card" : "Arkistoi kortti",
|
||||
"Unarchive card" : "Poista kortti arkistosta",
|
||||
"Delete card" : "Poista kortti",
|
||||
"Enter a card title" : "Anna otsikko",
|
||||
"Add card" : "Lisää kortti",
|
||||
"Close" : "Sulje",
|
||||
"Sharing" : "Jakaminen",
|
||||
"Tags" : "Tunnisteet",
|
||||
"Deleted items" : "Poistetut tietueet",
|
||||
"Timeline" : "Aikajana",
|
||||
"Select users or groups to share with" : "Valitse käyttäjiä tai ryhmiä joille haluat jakaa",
|
||||
"Group" : "Ryhmä",
|
||||
"Circle" : "Piiri",
|
||||
"No matching user or group found." : "Käyttäjää tai ryhmää ei löytynyt.",
|
||||
"Loading" : "Ladataan",
|
||||
"Edit" : "Muokkaa",
|
||||
"Share" : "Jaa",
|
||||
"Manage" : "Hallitse",
|
||||
"Discard share" : "Peru jakaminen",
|
||||
"Sharing has been disabled for your account." : "Jakaminen on poistettu käytöstä tililtäsi.",
|
||||
"Update tag" : "Päivitä tunniste",
|
||||
"Edit tag" : "Muokkaa tunnistetta",
|
||||
"Delete tag" : "Poista tunniste",
|
||||
"Create" : "Luo",
|
||||
"Create a new tag" : "Luo uusi tunniste",
|
||||
"Deleted stacks" : "Poistetut pinot",
|
||||
"Deleted cards" : "Poistetut kortit",
|
||||
"Status" : "Tila",
|
||||
"No archived boards to display" : "Ei arkistoituja tauluja näytettäväksi",
|
||||
"No shared boards to display" : "Ei jaettuja tauluja näytettäväksi",
|
||||
"Title" : "Otsikko",
|
||||
"Members" : "Jäsenet",
|
||||
"More actions" : "Lisää toimintoja",
|
||||
@@ -153,19 +44,11 @@
|
||||
"Archive board" : "Arkistoi taulu",
|
||||
"Unarchive board" : "Kumoa taulun arkistointi",
|
||||
"Delete board" : "Poista taulu",
|
||||
"Update board" : "Päivitä taulu",
|
||||
"Reset board" : "Nollaa taulu",
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Peru taulun poisto - muussa tapauksessa taulu poistetaan seuraavan cron-ajon yhteydessä.",
|
||||
"Create new board" : "Luo uusi taulu",
|
||||
"New board title" : "Uusi taulun otsikko",
|
||||
"Create board" : "Luo taulu",
|
||||
"Select an attachment" : "Valitse liite",
|
||||
"Cancel upload" : "Peruuta lähetys",
|
||||
"by" : " Kirjoittaja:",
|
||||
"Undo file deletion - Otherwise the file will be deleted during the next cronjob run." : "Peru tiedoston poisto - muussa tapauksessa tiedosto poistetaan seuraavan cron-ajon yhteydessä.",
|
||||
"Undo file deletion" : "Kumoa tiedoston poisto",
|
||||
"Insert the file into the description" : "Lisää tiedosto kuvaukseen",
|
||||
"Delete attachment" : "Poista liite",
|
||||
"Undo file deletion" : "Kumoa tiedoston luonti",
|
||||
"Modified:" : "Muokattu:",
|
||||
"Created:" : "Luotu:",
|
||||
"Choose a tag" : "Valitse tunniste",
|
||||
@@ -181,15 +64,11 @@
|
||||
"Attachments" : "Liitteet",
|
||||
"Saved" : "Tallennettu",
|
||||
"Unsaved changes" : "Tallentamattomia muutoksia",
|
||||
"Insert attachment" : "Lisää liite",
|
||||
"Formatting help" : "Muotoiluapu",
|
||||
"Upload attachment" : "Lähetä liite",
|
||||
"Add a card description…" : "Lisää kortin kuvaus…",
|
||||
"Shared boards" : "Jaetut taulut",
|
||||
"Move board to archive" : "Siirrä taulu arkistoon",
|
||||
"Create a new board" : "Luo uusi taulu",
|
||||
"Settings" : "Asetukset",
|
||||
"Limit deck to groups" : "Rajoita Pakan käyttö ryhmille",
|
||||
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Pakan käytön rajoittaminen estää merkittyjen ryhmien jäseniä luomasta omia taulujaan, mutta käyttäjät pystyvät silti käyttämään heidän kanssaan jaettuja tauluja."
|
||||
"Create a new board" : "Luo uusi taulu"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
@@ -67,9 +67,9 @@ OC.L10N.register(
|
||||
"You have added the attachment {attachment} to card {card}" : "Vous avez ajouté la pièce jointe {attachment} à la carte {card}",
|
||||
"{user} has added the attachment {attachment} to card {card}" : "{user} a ajouté la pièce jointe {attachment} à la carte {card}",
|
||||
"You have updated the attachment {attachment} on card {card}" : "Vous avez mis à jour la pièce jointe {attachment} de la carte {card}",
|
||||
"{user} has updated the attachment {attachment} on card {card}" : "{user} a mis à jour la pièce jointe {attachment} de la carte {card}",
|
||||
"{user} has updated the attachment {attachment} to card {card}" : "{user} a mis à jour la pièce jointe {attachment} de la carte {card}",
|
||||
"You have deleted the attachment {attachment} from card {card}" : "Vous avez supprimé la pièce jointe {attachment} de la carte {card}",
|
||||
"{user} has deleted the attachment {attachment} from card {card}" : "{user} a supprimé la pièce jointe {attachment} de la carte {card}",
|
||||
"{user} has deleted the attachment {attachment} to card {card}" : "{user} a supprimé la pièce jointe {attachment} de la carte {card}",
|
||||
"You have restored the attachment {attachment} to card {card}" : "Vous avez restauré la pièce jointe {attachment} de la carte {card}",
|
||||
"{user} has restored the attachment {attachment} to card {card}" : "{user} a restauré la pièce jointe {attachment} de la carte {card}",
|
||||
"You have commented on card {card}" : "Vous avez commenté la carte {card}",
|
||||
@@ -110,7 +110,7 @@ OC.L10N.register(
|
||||
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck est un outil d'organisation de style kanban destiné à la planification personnelle et à l'organisation de projets pour les équipes intégrées à Nextcloud.\n\n\n- 📥 Ajoutez vos tâches à des cartes et organisez-les\n- 📄 Écrivez des notes supplémentaires en Markdown\n- 🔖 Affectez des étiquettes pour une organisation encore meilleure\n- 👥 Partagez avec votre équipe, vos amis ou votre famille\n- 📎 Attachez des fichiers et utilisez les dans vos descriptions en Markdown\n- 💬 Échangez avec votre équipe grâce aux commentaires\n- ⚡ Gardez un œil sur les modifications dans le flux d'activité\n- 🚀 Organisez vos projets",
|
||||
"Select the board to link to a project" : "Sélection le tableau pour faire le lien avec un projet.",
|
||||
"Select board" : "Sélectionner le tableau",
|
||||
"Add a new stack" : "Nouvelle pile",
|
||||
"Add a new stack" : "Ajouter une nouvelle pile",
|
||||
"Submit" : "Envoyer",
|
||||
"Show archived cards" : "Afficher les cartes archivées",
|
||||
"Hide archived cards" : "Masquer les cartes archivées",
|
||||
@@ -183,7 +183,7 @@ OC.L10N.register(
|
||||
"Choose a user to assign" : "Choisir un utilisateur à assigner",
|
||||
"Assign this card to a user" : "Assigner cette carte à un utilisateur",
|
||||
"Due date" : "Date d'échéance",
|
||||
"Click to set" : "Définir",
|
||||
"Click to set" : "Cliquer pour définir",
|
||||
"Remove due date" : "Supprimer la date d'échéance",
|
||||
"Description" : "Description",
|
||||
"Attachments" : "Pièces jointes",
|
||||
|
||||
@@ -65,9 +65,9 @@
|
||||
"You have added the attachment {attachment} to card {card}" : "Vous avez ajouté la pièce jointe {attachment} à la carte {card}",
|
||||
"{user} has added the attachment {attachment} to card {card}" : "{user} a ajouté la pièce jointe {attachment} à la carte {card}",
|
||||
"You have updated the attachment {attachment} on card {card}" : "Vous avez mis à jour la pièce jointe {attachment} de la carte {card}",
|
||||
"{user} has updated the attachment {attachment} on card {card}" : "{user} a mis à jour la pièce jointe {attachment} de la carte {card}",
|
||||
"{user} has updated the attachment {attachment} to card {card}" : "{user} a mis à jour la pièce jointe {attachment} de la carte {card}",
|
||||
"You have deleted the attachment {attachment} from card {card}" : "Vous avez supprimé la pièce jointe {attachment} de la carte {card}",
|
||||
"{user} has deleted the attachment {attachment} from card {card}" : "{user} a supprimé la pièce jointe {attachment} de la carte {card}",
|
||||
"{user} has deleted the attachment {attachment} to card {card}" : "{user} a supprimé la pièce jointe {attachment} de la carte {card}",
|
||||
"You have restored the attachment {attachment} to card {card}" : "Vous avez restauré la pièce jointe {attachment} de la carte {card}",
|
||||
"{user} has restored the attachment {attachment} to card {card}" : "{user} a restauré la pièce jointe {attachment} de la carte {card}",
|
||||
"You have commented on card {card}" : "Vous avez commenté la carte {card}",
|
||||
@@ -108,7 +108,7 @@
|
||||
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck est un outil d'organisation de style kanban destiné à la planification personnelle et à l'organisation de projets pour les équipes intégrées à Nextcloud.\n\n\n- 📥 Ajoutez vos tâches à des cartes et organisez-les\n- 📄 Écrivez des notes supplémentaires en Markdown\n- 🔖 Affectez des étiquettes pour une organisation encore meilleure\n- 👥 Partagez avec votre équipe, vos amis ou votre famille\n- 📎 Attachez des fichiers et utilisez les dans vos descriptions en Markdown\n- 💬 Échangez avec votre équipe grâce aux commentaires\n- ⚡ Gardez un œil sur les modifications dans le flux d'activité\n- 🚀 Organisez vos projets",
|
||||
"Select the board to link to a project" : "Sélection le tableau pour faire le lien avec un projet.",
|
||||
"Select board" : "Sélectionner le tableau",
|
||||
"Add a new stack" : "Nouvelle pile",
|
||||
"Add a new stack" : "Ajouter une nouvelle pile",
|
||||
"Submit" : "Envoyer",
|
||||
"Show archived cards" : "Afficher les cartes archivées",
|
||||
"Hide archived cards" : "Masquer les cartes archivées",
|
||||
@@ -181,7 +181,7 @@
|
||||
"Choose a user to assign" : "Choisir un utilisateur à assigner",
|
||||
"Assign this card to a user" : "Assigner cette carte à un utilisateur",
|
||||
"Due date" : "Date d'échéance",
|
||||
"Click to set" : "Définir",
|
||||
"Click to set" : "Cliquer pour définir",
|
||||
"Remove due date" : "Supprimer la date d'échéance",
|
||||
"Description" : "Description",
|
||||
"Attachments" : "Pièces jointes",
|
||||
|
||||
14
l10n/gl.js
14
l10n/gl.js
@@ -67,16 +67,16 @@ OC.L10N.register(
|
||||
"You have added the attachment {attachment} to card {card}" : "Vostede engadiu o anexo {attachment} na tarxeta {card}",
|
||||
"{user} has added the attachment {attachment} to card {card}" : "{user} engadiu o anexo {attachment} na tarxeta {card}",
|
||||
"You have updated the attachment {attachment} on card {card}" : "Vostede actualizou o anexo {attachment} na tarxeta {card}",
|
||||
"{user} has updated the attachment {attachment} on card {card}" : "{user} actualizou o anexo {attachment} na tarxeta {card}",
|
||||
"{user} has updated the attachment {attachment} to card {card}" : "{user} actualizou o anexo {attachment} na tarxeta {card}",
|
||||
"You have deleted the attachment {attachment} from card {card}" : "Vostede eliminou o anexo {attachment} da tarxeta {card}",
|
||||
"{user} has deleted the attachment {attachment} from card {card}" : "{user} eliminou o anexo {attachment} da tarxeta {card}",
|
||||
"{user} has deleted the attachment {attachment} to card {card}" : "{user} eliminou o anexo {attachment} da tarxeta {card}",
|
||||
"You have restored the attachment {attachment} to card {card}" : "Vostede restaurou o anexo {attachment} na tarxeta {card}",
|
||||
"{user} has restored the attachment {attachment} to card {card}" : "{user} restaurou o anexo {attachment} da tarxeta {card}",
|
||||
"You have commented on card {card}" : "Vostede comentou na tarxeta {card}",
|
||||
"{user} has commented on card {card}" : "{user} comentou na tarxeta {card}",
|
||||
"A <strong>card description</strong> inside the Deck app has been changed" : "Cambiouse a <strong>descripción da tarxeta</strong> dentro da aplicación Deck",
|
||||
"A <strong>card description</strong> inside the Deck app has been changed" : "Cambiouse a <strong>descripción da tarxeta</strong> dentro do aplicativo Deck",
|
||||
"Deck" : "Deck",
|
||||
"Changes in the <strong>Deck app</strong>" : "Cambios na <strong>aplicación Deck</strong>",
|
||||
"Changes in the <strong>Deck app</strong>" : "Cambios no <strong>aplicativo Deck</strong>",
|
||||
"A <strong>comment</strong> was created on a card" : "Creouse un <strong>comentario</strong> nunha tarxeta",
|
||||
"Personal" : "Persoal",
|
||||
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "A tarxeta «%s» en «%s» foi asignada a vostede por %s.",
|
||||
@@ -118,12 +118,12 @@ OC.L10N.register(
|
||||
"Show board details" : "Amosar os detalles do taboleiro",
|
||||
"All Boards" : "Todos os taboleiros",
|
||||
"Archived boards" : "Taboleiros arquivados",
|
||||
"Share board" : "Taboleiro compartido",
|
||||
"Share board" : "Comparte taboleiro",
|
||||
"Archived cards" : "Tarxetas arquivadas",
|
||||
"Actions" : "Accións",
|
||||
"Drop your files here to upload it to the card" : "Solte aquí os seus ficheiros para envialos á tarxeta",
|
||||
"Assign card to me" : "Asignarme a tarxeta",
|
||||
"Unassign card from me" : "Desasignarme a tarxeta",
|
||||
"Unassign card from me" : "Desasignarme tarxeta",
|
||||
"Archive card" : "Arquivar a tarxeta",
|
||||
"Unarchive card" : "Desarquivar a tarxeta",
|
||||
"Delete card" : "Eliminar tarxeta",
|
||||
@@ -190,7 +190,7 @@ OC.L10N.register(
|
||||
"Saved" : "Gardado",
|
||||
"Unsaved changes" : "Cambios sen gardar",
|
||||
"Insert attachment" : "Inserir o anexo",
|
||||
"Formatting help" : "Axuda de formatado",
|
||||
"Formatting help" : "Axuda de formato",
|
||||
"Upload attachment" : "Enviar anexos",
|
||||
"Add a card description…" : "Engadir unha descrición da tarxeta…",
|
||||
"Shared boards" : "Taboleiros compartidos",
|
||||
|
||||
14
l10n/gl.json
14
l10n/gl.json
@@ -65,16 +65,16 @@
|
||||
"You have added the attachment {attachment} to card {card}" : "Vostede engadiu o anexo {attachment} na tarxeta {card}",
|
||||
"{user} has added the attachment {attachment} to card {card}" : "{user} engadiu o anexo {attachment} na tarxeta {card}",
|
||||
"You have updated the attachment {attachment} on card {card}" : "Vostede actualizou o anexo {attachment} na tarxeta {card}",
|
||||
"{user} has updated the attachment {attachment} on card {card}" : "{user} actualizou o anexo {attachment} na tarxeta {card}",
|
||||
"{user} has updated the attachment {attachment} to card {card}" : "{user} actualizou o anexo {attachment} na tarxeta {card}",
|
||||
"You have deleted the attachment {attachment} from card {card}" : "Vostede eliminou o anexo {attachment} da tarxeta {card}",
|
||||
"{user} has deleted the attachment {attachment} from card {card}" : "{user} eliminou o anexo {attachment} da tarxeta {card}",
|
||||
"{user} has deleted the attachment {attachment} to card {card}" : "{user} eliminou o anexo {attachment} da tarxeta {card}",
|
||||
"You have restored the attachment {attachment} to card {card}" : "Vostede restaurou o anexo {attachment} na tarxeta {card}",
|
||||
"{user} has restored the attachment {attachment} to card {card}" : "{user} restaurou o anexo {attachment} da tarxeta {card}",
|
||||
"You have commented on card {card}" : "Vostede comentou na tarxeta {card}",
|
||||
"{user} has commented on card {card}" : "{user} comentou na tarxeta {card}",
|
||||
"A <strong>card description</strong> inside the Deck app has been changed" : "Cambiouse a <strong>descripción da tarxeta</strong> dentro da aplicación Deck",
|
||||
"A <strong>card description</strong> inside the Deck app has been changed" : "Cambiouse a <strong>descripción da tarxeta</strong> dentro do aplicativo Deck",
|
||||
"Deck" : "Deck",
|
||||
"Changes in the <strong>Deck app</strong>" : "Cambios na <strong>aplicación Deck</strong>",
|
||||
"Changes in the <strong>Deck app</strong>" : "Cambios no <strong>aplicativo Deck</strong>",
|
||||
"A <strong>comment</strong> was created on a card" : "Creouse un <strong>comentario</strong> nunha tarxeta",
|
||||
"Personal" : "Persoal",
|
||||
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "A tarxeta «%s» en «%s» foi asignada a vostede por %s.",
|
||||
@@ -116,12 +116,12 @@
|
||||
"Show board details" : "Amosar os detalles do taboleiro",
|
||||
"All Boards" : "Todos os taboleiros",
|
||||
"Archived boards" : "Taboleiros arquivados",
|
||||
"Share board" : "Taboleiro compartido",
|
||||
"Share board" : "Comparte taboleiro",
|
||||
"Archived cards" : "Tarxetas arquivadas",
|
||||
"Actions" : "Accións",
|
||||
"Drop your files here to upload it to the card" : "Solte aquí os seus ficheiros para envialos á tarxeta",
|
||||
"Assign card to me" : "Asignarme a tarxeta",
|
||||
"Unassign card from me" : "Desasignarme a tarxeta",
|
||||
"Unassign card from me" : "Desasignarme tarxeta",
|
||||
"Archive card" : "Arquivar a tarxeta",
|
||||
"Unarchive card" : "Desarquivar a tarxeta",
|
||||
"Delete card" : "Eliminar tarxeta",
|
||||
@@ -188,7 +188,7 @@
|
||||
"Saved" : "Gardado",
|
||||
"Unsaved changes" : "Cambios sen gardar",
|
||||
"Insert attachment" : "Inserir o anexo",
|
||||
"Formatting help" : "Axuda de formatado",
|
||||
"Formatting help" : "Axuda de formato",
|
||||
"Upload attachment" : "Enviar anexos",
|
||||
"Add a card description…" : "Engadir unha descrición da tarxeta…",
|
||||
"Shared boards" : "Taboleiros compartidos",
|
||||
|
||||
11
l10n/he.js
11
l10n/he.js
@@ -5,9 +5,7 @@ OC.L10N.register(
|
||||
"Hours" : "שעות",
|
||||
"Minutes" : "דקות",
|
||||
"Maximum file size of {size} exceeded" : "גודל הקבצים המרבי {size} הושג",
|
||||
"File already exists" : "הקובץ כבר קיים",
|
||||
"Deck" : "חפיסה",
|
||||
"Personal" : "אישי",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "הכרטיס „%s” שתחת „%s” הגיע למועד התפוגה שלו.",
|
||||
"The board \"%s\" has been shared with you by %s." : "הלוח „%s” שותף אתך על ידי %s.",
|
||||
"{user} has shared the board %s with you." : "הלוח %s שותף אתך על ידי {user}",
|
||||
@@ -16,7 +14,6 @@ OC.L10N.register(
|
||||
"To review" : "לסקירה",
|
||||
"Action needed" : "נדרשת פעולה",
|
||||
"Later" : "מאוחר יותר",
|
||||
"Done" : "הסתיים",
|
||||
"The file was uploaded" : "הקובץ הועלה",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "הקובץ שהועלה חורג מההנחיה upload_max_filesize ב־php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "הקובץ שהועלה חורג מההנחיה MAX_FILE_SIZE שצוינה בטופס ה־HTML",
|
||||
@@ -33,17 +30,13 @@ OC.L10N.register(
|
||||
"Hide archived cards" : "הסתרת כרטיסים בארכיון",
|
||||
"All Boards" : "כל הלוחות",
|
||||
"Archived boards" : "לוחות שנשמרו בארכיון",
|
||||
"Actions" : "פעולולת",
|
||||
"Drop your files here to upload it to the card" : "ניתן להשליך את הקבצים שלך כאן כדי להעלות אותם לכרטיס",
|
||||
"Archive card" : "העברת כרטיס לארכיון",
|
||||
"Delete card" : "מחיקת כרטיס לארכיון",
|
||||
"Enter a card title" : "נא להקליד כותרת לכרטיס",
|
||||
"Add card" : "הוספת כרטיס",
|
||||
"Close" : "סגירה",
|
||||
"Sharing" : "שיתוף",
|
||||
"Tags" : "תגיות",
|
||||
"Select users or groups to share with" : "נא לבחור משתמשים או קבוצות לשתף אתם",
|
||||
"Group" : "קבוצה",
|
||||
"No matching user or group found." : "לא נמצא משתמש או קבוצה.",
|
||||
"Loading" : "בטעינה",
|
||||
"Edit" : "עריכה",
|
||||
@@ -63,7 +56,6 @@ OC.L10N.register(
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "ביטול מחיקת לוח - אחרת הלוח יימחק במהלך ריצת ה־cronjob הבאה.",
|
||||
"Create new board" : "יצירת לוח חדש",
|
||||
"New board title" : "כותרת לוח חדשה",
|
||||
"Create board" : "יצירת לוח",
|
||||
"Select an attachment" : "נא לבחור קובץ מצורף",
|
||||
"Cancel upload" : "ביטול העלאה",
|
||||
"by" : "מאת",
|
||||
@@ -91,7 +83,6 @@ OC.L10N.register(
|
||||
"Add a card description…" : "הוספת תיאור כרטיס…",
|
||||
"Shared boards" : "לוחות משותפים",
|
||||
"Move board to archive" : "העברת לוח לארכיון",
|
||||
"Create a new board" : "יצירת לוח חדש",
|
||||
"Settings" : "הגדרות"
|
||||
"Create a new board" : "יצירת לוח חדש"
|
||||
},
|
||||
"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;");
|
||||
|
||||
11
l10n/he.json
11
l10n/he.json
@@ -3,9 +3,7 @@
|
||||
"Hours" : "שעות",
|
||||
"Minutes" : "דקות",
|
||||
"Maximum file size of {size} exceeded" : "גודל הקבצים המרבי {size} הושג",
|
||||
"File already exists" : "הקובץ כבר קיים",
|
||||
"Deck" : "חפיסה",
|
||||
"Personal" : "אישי",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "הכרטיס „%s” שתחת „%s” הגיע למועד התפוגה שלו.",
|
||||
"The board \"%s\" has been shared with you by %s." : "הלוח „%s” שותף אתך על ידי %s.",
|
||||
"{user} has shared the board %s with you." : "הלוח %s שותף אתך על ידי {user}",
|
||||
@@ -14,7 +12,6 @@
|
||||
"To review" : "לסקירה",
|
||||
"Action needed" : "נדרשת פעולה",
|
||||
"Later" : "מאוחר יותר",
|
||||
"Done" : "הסתיים",
|
||||
"The file was uploaded" : "הקובץ הועלה",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "הקובץ שהועלה חורג מההנחיה upload_max_filesize ב־php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "הקובץ שהועלה חורג מההנחיה MAX_FILE_SIZE שצוינה בטופס ה־HTML",
|
||||
@@ -31,17 +28,13 @@
|
||||
"Hide archived cards" : "הסתרת כרטיסים בארכיון",
|
||||
"All Boards" : "כל הלוחות",
|
||||
"Archived boards" : "לוחות שנשמרו בארכיון",
|
||||
"Actions" : "פעולולת",
|
||||
"Drop your files here to upload it to the card" : "ניתן להשליך את הקבצים שלך כאן כדי להעלות אותם לכרטיס",
|
||||
"Archive card" : "העברת כרטיס לארכיון",
|
||||
"Delete card" : "מחיקת כרטיס לארכיון",
|
||||
"Enter a card title" : "נא להקליד כותרת לכרטיס",
|
||||
"Add card" : "הוספת כרטיס",
|
||||
"Close" : "סגירה",
|
||||
"Sharing" : "שיתוף",
|
||||
"Tags" : "תגיות",
|
||||
"Select users or groups to share with" : "נא לבחור משתמשים או קבוצות לשתף אתם",
|
||||
"Group" : "קבוצה",
|
||||
"No matching user or group found." : "לא נמצא משתמש או קבוצה.",
|
||||
"Loading" : "בטעינה",
|
||||
"Edit" : "עריכה",
|
||||
@@ -61,7 +54,6 @@
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "ביטול מחיקת לוח - אחרת הלוח יימחק במהלך ריצת ה־cronjob הבאה.",
|
||||
"Create new board" : "יצירת לוח חדש",
|
||||
"New board title" : "כותרת לוח חדשה",
|
||||
"Create board" : "יצירת לוח",
|
||||
"Select an attachment" : "נא לבחור קובץ מצורף",
|
||||
"Cancel upload" : "ביטול העלאה",
|
||||
"by" : "מאת",
|
||||
@@ -89,7 +81,6 @@
|
||||
"Add a card description…" : "הוספת תיאור כרטיס…",
|
||||
"Shared boards" : "לוחות משותפים",
|
||||
"Move board to archive" : "העברת לוח לארכיון",
|
||||
"Create a new board" : "יצירת לוח חדש",
|
||||
"Settings" : "הגדרות"
|
||||
"Create a new board" : "יצירת לוח חדש"
|
||||
},"pluralForm" :"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;"
|
||||
}
|
||||
190
l10n/hr.js
190
l10n/hr.js
@@ -1,203 +1,31 @@
|
||||
OC.L10N.register(
|
||||
"deck",
|
||||
{
|
||||
"Please provide a content for your comment." : "Navedite sadržaj za svoj komentar.",
|
||||
"Posting the comment failed." : "Objavljivanje komentara nije uspjelo.",
|
||||
"The comment has been deleted" : "Komentar je izbrisan",
|
||||
"The associated stack is deleted as well, it will be restored as well." : "Također se briše pridruženi stog, ali će se također vratiti.",
|
||||
"Restore associated stack" : "Vrati pridruženi stog",
|
||||
"Remove user from card" : "Ukloni korisnika s kartice",
|
||||
"Hours" : "Sati",
|
||||
"Minutes" : "Minute",
|
||||
"Link to a board" : "Poveznica na ploču",
|
||||
"Maximum file size of {size} exceeded" : "Prekoračena je maksimalna veličina datoteke od {size}",
|
||||
"File already exists" : "Datoteka već postoji",
|
||||
"You have created a new board {board}" : "Stvorili ste novu ploču {board}",
|
||||
"{user} has created a new board {board}" : "{user} je stvorio novu ploču {board}",
|
||||
"You have deleted the board {board}" : "Izbrisali ste ploču {board}",
|
||||
"{user} has deleted the board {board}" : "{user} je izbrisao ploču {board}",
|
||||
"You have restored the board {board}" : "Vratili ste ploču {board}",
|
||||
"{user} has restored the board {board}" : "{user} je vratio ploču {board}",
|
||||
"You have shared the board {board} with {acl}" : "Podijelili ste ploču {board} s {acl}",
|
||||
"{user} has shared the board {board} with {acl}" : "{user} je podijelio ploču {board} s {acl}",
|
||||
"You have removed {acl} from the board {board}" : "Uklonili ste {acl} s ploče {board}",
|
||||
"{user} has removed {acl} from the board {board}" : "{user} je uklonio {acl} s ploče {board}",
|
||||
"You have renamed the board {before} to {board}" : "Preimenovali ste ploču {before} u {board}",
|
||||
"{user} has renamed the board {before} to {board}" : "{user} je preimenovao ploču {before} u {board}",
|
||||
"You have archived the board {board}" : "Arhivirali ste ploču {board}",
|
||||
"{user} has archived the board {before}" : "{user} je arhivirao ploču {before}",
|
||||
"You have unarchived the board {board}" : "Dearhivirali ste ploču {board}",
|
||||
"{user} has unarchived the board {before}" : "{user} je dearhivirao ploču {before}",
|
||||
"You have created a new stack {stack} on board {board}" : "Stvorili ste novi stog {stack} na ploči {board}",
|
||||
"{user} has created a new stack {stack} on board {board}" : "{user} je stvorio novi stog {stack} na ploči {board}",
|
||||
"You have renamed stack {before} to {stack} on board {board}" : "Preimenovali ste stog {before} u {stack} na ploči {board}",
|
||||
"{user} has renamed stack {before} to {stack} on board {board}" : "{user} je preimenovao stog {before} u {stack} na ploči {board}",
|
||||
"You have deleted stack {stack} on board {board}" : "Izbrisali ste stog {stack} na ploči {board}",
|
||||
"{user} has deleted stack {stack} on board {board}" : "{user} je izbrisao stog {stack} na ploči {board}",
|
||||
"You have created card {card} in stack {stack} on board {board}" : "Stvorili ste karticu {card} u stogu {stack} na ploči {board}",
|
||||
"{user} has created card {card} in stack {stack} on board {board}" : "{user} je stvorio karticu {card} u stogu {stack} na ploči {board}",
|
||||
"You have deleted card {card} in stack {stack} on board {board}" : "Izbrisali ste karticu {card} u stogu {stack} na ploči {board}",
|
||||
"{user} has deleted card {card} in stack {stack} on board {board}" : "{user} je izbrisao karticu {card} u stogu {stack} na ploči {board}",
|
||||
"You have renamed the card {before} to {card}" : "Preimenovali ste karticu {before} u {card}",
|
||||
"{user} has renamed the card {before} to {card}" : "{user} je preimenovao karticu {before} u {card}",
|
||||
"You have added a description to card {card} in stack {stack} on board {board}" : "Dodali ste opis kartici {card} u stogu {stack} na ploči {board}",
|
||||
"{user} has added a description to card {card} in stack {stack} on board {board}" : "{user} je dodao opis kartici {card} u stogu {stack} na ploči {board}",
|
||||
"You have updated the description of card {card} in stack {stack} on board {board}" : "Ažurirali ste opis kartice {card} u stogu {stack} na ploči {board}",
|
||||
"{user} has updated the description of the card {card} in stack {stack} on board {board}" : "{user} je ažurirao opis kartice {card} u stogu {stack} na ploči {board}",
|
||||
"You have archived card {card} in stack {stack} on board {board}" : "Arhivirali ste karticu {card} u stogu {stack} na ploči {board}",
|
||||
"{user} has archived card {card} in stack {stack} on board {board}" : "{user} je arhivirao karticu {card} u stogu {stack} na ploči {board}",
|
||||
"You have unarchived card {card} in stack {stack} on board {board}" : "Dearhivirali ste karticu {card} u stogu {stack} na ploči {board}",
|
||||
"{user} has unarchived card {card} in stack {stack} on board {board}" : "{user} je dearhivirao karticu {card} u stogu {stack} na ploči {board}",
|
||||
"You have removed the due date of card {card}" : "Uklonili ste datum dospijeća kartice {card}",
|
||||
"{user} has removed the due date of card {card}" : "{user} je uklonio datum dospijeća kartice {card}",
|
||||
"You have set the due date of card {card} to {after}" : "Postavili ste datum dospijeća kartice {card} na {after}",
|
||||
"{user} has set the due date of card {card} to {after}" : "{user} je postavio datum dospijeća kartice {card} na {after}",
|
||||
"You have updated the due date of card {card} to {after}" : "Ažurirali ste datum dospijeća kartice {card} na {after}",
|
||||
"{user} has updated the due date of card {card} to {after}" : "{user} je ažurirao datum dospijeća kartice {card} na {after}",
|
||||
"You have added the tag {label} to card {card} in stack {stack} on board {board}" : "Dodali ste oznaku {label} na karticu {card} u stogu {stack} na ploči {board}",
|
||||
"{user} has added the tag {label} to card {card} in stack {stack} on board {board}" : "{user} je dodao oznaku {label} na karticu {card} u stogu {stack} na ploči {board}",
|
||||
"You have removed the tag {label} from card {card} in stack {stack} on board {board}" : "Uklonili ste oznaku {label} s kartice {card} u stogu {stack} na ploči {board}",
|
||||
"{user} has removed the tag {label} from card {card} in stack {stack} on board {board}" : "{user} je uklonio oznaku {label} s kartice {card} u stogu {stack} na ploči {board}",
|
||||
"You have assigned {assigneduser} to card {card} on board {board}" : "Dodijelili ste {assigneduser} kartici {card} na ploči {board}",
|
||||
"{user} has assigned {assigneduser} to card {card} on board {board}" : "{user} je dodijelio {assigneduser} kartici {card} na ploči {board}",
|
||||
"You have unassigned {assigneduser} from card {card} on board {board}" : "Uklonili ste {assigneduser} s kartice {card} na ploči {board}",
|
||||
"{user} has unassigned {assigneduser} from card {card} on board {board}" : "{user} je uklonio {assigneduser} s kartice {card} na ploči {board}",
|
||||
"You have moved the card {card} from stack {stackBefore} to {stack}" : "Premjestili ste karticu {card} iz stoga {stackBefore} u {stack}",
|
||||
"{user} has moved the card {card} from stack {stackBefore} to {stack}" : "{user} je premjestio karticu {card} iz stoga {stackBefore} u {stack}",
|
||||
"You have added the attachment {attachment} to card {card}" : "Dodali ste privitak {attachment} kartici {card}",
|
||||
"{user} has added the attachment {attachment} to card {card}" : "{user} je dodao privitak {attachment} kartici {card}",
|
||||
"You have updated the attachment {attachment} on card {card}" : "Ažurirali ste privitak {attachment} na kartici {card}",
|
||||
"{user} has updated the attachment {attachment} on card {card}" : "{user} je ažurirao privitak {attachment} na kartici {card}",
|
||||
"You have deleted the attachment {attachment} from card {card}" : "Izbrisali ste privitak {attachment} s kartice {card}",
|
||||
"{user} has deleted the attachment {attachment} from card {card}" : "{user} je izbrisao privitak {attachment} s kartice {card}",
|
||||
"You have restored the attachment {attachment} to card {card}" : "Vratili ste privitak {attachment} na karticu {card}",
|
||||
"{user} has restored the attachment {attachment} to card {card}" : "{user} je vratio privitak {attachment} na karticu {card}",
|
||||
"You have commented on card {card}" : "Komentirali ste karticu {card}",
|
||||
"{user} has commented on card {card}" : "{user} je komentirao karticu {card}",
|
||||
"A <strong>card description</strong> inside the Deck app has been changed" : "Promijenjen je <strong>opis kartice</strong> u aplikaciji Deck",
|
||||
"Deck" : "Deck",
|
||||
"Changes in the <strong>Deck app</strong>" : "Promjene u <strong>aplikaciji Deck</strong>",
|
||||
"A <strong>comment</strong> was created on a card" : "<strong>Komentar</strong> je stvoren na kartici",
|
||||
"Personal" : "Osobno",
|
||||
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Karticu „%s” na „%s” dodijelio vam je %s.",
|
||||
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} vam je dodijelio karticu „%s” na „%s”.",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "Kartica „%s” na „%s” dosegla je datum dospijeća.",
|
||||
"%s has mentioned you in a comment on \"%s\"." : "%s vas spominje u komentaru na „%s”.",
|
||||
"{user} has mentioned you in a comment on \"%s\"." : "{user} vas je spomenuo u komentaru na „%s”.",
|
||||
"The board \"%s\" has been shared with you by %s." : "Ploču „%s” je s vama podijelio %s.",
|
||||
"{user} has shared the board %s with you." : "{user} je s vama podijelio ploču %s.",
|
||||
"No data was provided to create an attachment." : "Nema podataka za izradu privitka.",
|
||||
"Finished" : "Završeno",
|
||||
"To review" : "Provjeriti",
|
||||
"Action needed" : "Potrebna radnja",
|
||||
"Later" : "Kasnije",
|
||||
"To do" : "Zadatak",
|
||||
"Doing" : "U postupku",
|
||||
"Done" : "Gotovo",
|
||||
"Example Task 3" : "Primjer zadatka 3.",
|
||||
"Example Task 2" : "Primjer zadatka 2.",
|
||||
"Example Task 1" : "Primjer zadatka 1.",
|
||||
"The file was uploaded" : "Datoteka je otpremljena",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Otpremljena datoteka premašuje postavku upload_max_filesize u datoteci php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Otpremljena datoteka premašuje postavku MAX_FILE_SIZE koja je navedena u obrascu HTML-a",
|
||||
"The file was only partially uploaded" : "Datoteka je samo djelomično otpremljena",
|
||||
"No file was uploaded" : "Nije otpremljena nijedna datoteka",
|
||||
"Missing a temporary folder" : "Nedostaje privremena mapa",
|
||||
"Could not write file to disk" : "Nije moguće zapisati datoteku na disk",
|
||||
"A PHP extension stopped the file upload" : "Proširenje PHP-a zaustavilo je otpremanje datoteke",
|
||||
"No file uploaded or file size exceeds maximum of %s" : "Nijedna datoteka nije otpremljena ili veličina datoteke premašuje maksimalnu veličinu od %s",
|
||||
"A kanban style project and personal management tool for Nextcloud" : "Kanban projekt i osobni alat za upravljanje za Nextcloud",
|
||||
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck je organizacijski alat za kanban projekte usmjeren na osobno planiranje i organizaciju projekta za timove integrirane s Nextcloudom.\n\n\n- 📥 Dodajte svoje zadatke na kartice i poredajte ih po želji\n- 📄 Zapišite dodatne bilješke u markdown\n- 🔖 Dodijelite oznake za još bolju organizaciju\n- 👥 Dijelite sa svojim timom, prijateljima ili obitelji\n- 📎 Priložite datoteke i ugradite ih u svoj markdown opis\n- 💬 Raspravljajte sa svojim timom putem komentara\n- ⚡ Pratite promjene u strujanju aktivnosti\n- 🚀 Organizirajte svoj projekt",
|
||||
"Select the board to link to a project" : "Odaberite ploču za povezivanje s projektom",
|
||||
"Select board" : "Odaberi ploču",
|
||||
"Add a new stack" : "Dodaj novi stog",
|
||||
"Submit" : "Šalji",
|
||||
"Show archived cards" : "Prikaži arhivirane kartice",
|
||||
"Hide archived cards" : "Sakrij arhivirane kartice",
|
||||
"Toggle compact mode" : "Prebaci u kompaktni način rada",
|
||||
"Show board details" : "Prikaži pojedinosti o ploči",
|
||||
"All Boards" : "Sve ploče",
|
||||
"Archived boards" : "Arhivirane ploče",
|
||||
"Share board" : "Dijeli ploču",
|
||||
"Archived cards" : "Arhivirane kartice",
|
||||
"Actions" : "Radnje",
|
||||
"Drop your files here to upload it to the card" : "Ispustite datoteke ovdje kako biste ih otpremili na karticu",
|
||||
"Assign card to me" : "Dodijeli mi karticu",
|
||||
"Unassign card from me" : "Ukloni me s kartice",
|
||||
"Archive card" : "Arhiviraj karticu",
|
||||
"Unarchive card" : "Dearhiviraj karticu",
|
||||
"Delete card" : "Izbriši karticu",
|
||||
"Enter a card title" : "Unesi naslov kartice",
|
||||
"Add card" : "Dodaj karticu",
|
||||
"Close" : "Zatvori",
|
||||
"Enter a card title" : "Naslov kartice",
|
||||
"Sharing" : "Dijeljenje",
|
||||
"Tags" : "Oznake",
|
||||
"Deleted items" : "Izbrisane stavke",
|
||||
"Timeline" : "Vremenska crta",
|
||||
"Select users or groups to share with" : "Dijeli s korisnicima ili grupama",
|
||||
"Group" : "Grupa",
|
||||
"Circle" : "Krug",
|
||||
"No matching user or group found." : "Nije pronađen odgovarajući korisnik ili grupa.",
|
||||
"Loading" : "Učitavanje",
|
||||
"Select users or groups to share with" : "Podijeli s korisnicima ili grupama",
|
||||
"No matching user or group found." : "Nije pronađen odgovarajući korisnik ili grupa",
|
||||
"Edit" : "Uređivanje",
|
||||
"Share" : "Dijeli",
|
||||
"Share" : "Dijeljenje",
|
||||
"Manage" : "Upravljanje",
|
||||
"Discard share" : "Prestani dijeliti",
|
||||
"Sharing has been disabled for your account." : "Dijeljenje je onemogućeno za vaš račun.",
|
||||
"Update tag" : "Ažuriraj oznaku",
|
||||
"Edit tag" : "Uredi oznaku",
|
||||
"Delete tag" : "Izbriši oznaku",
|
||||
"Create" : "Stvori",
|
||||
"Create a new tag" : "Stvori novu oznaku",
|
||||
"Deleted stacks" : "Izbrisani stogovi",
|
||||
"Deleted cards" : "Izbrisane kartice",
|
||||
"Status" : "Status",
|
||||
"No archived boards to display" : "Nema arhiviranih ploča za prikaz",
|
||||
"No shared boards to display" : "Nema dijeljenih ploča za prikaz",
|
||||
"Title" : "Naslov",
|
||||
"Members" : "Članovi",
|
||||
"More actions" : "Dodatne radnje",
|
||||
"Edit board" : "Uredi ploču",
|
||||
"Archive board" : "Arhiviraj ploču",
|
||||
"Unarchive board" : "Dearhiviraj ploču",
|
||||
"Delete board" : "Izbriši ploču",
|
||||
"Update board" : "Ažuriraj ploču",
|
||||
"Reset board" : "Resetiraj ploču",
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Poništi brisanje ploče – u suprotnom će se ploča izbrisati tijekom sljedećeg izvođenja cronjoba.",
|
||||
"Create new board" : "Stvori novu ploču",
|
||||
"New board title" : "Novi naslov ploče",
|
||||
"Create board" : "Stvori ploču",
|
||||
"Select an attachment" : "Odaberi privitak",
|
||||
"Cancel upload" : "Otkaži otpremanje",
|
||||
"Create new board" : "Izradi novu ploču",
|
||||
"New board title" : "Naslov ploče",
|
||||
"by" : "od",
|
||||
"Undo file deletion - Otherwise the file will be deleted during the next cronjob run." : "Poništi brisanje datoteke – u suprotnom će se datoteka izbrisati tijekom sljedećeg izvođenja cronjoba.",
|
||||
"Undo file deletion" : "Poništi brisanje datoteke",
|
||||
"Insert the file into the description" : "Umetni datoteku u opis",
|
||||
"Delete attachment" : "Izbriši privitak",
|
||||
"Modified:" : "Promijenjeno:",
|
||||
"Modified:" : "Promijenjena:",
|
||||
"Created:" : "Stvorena:",
|
||||
"Choose a tag" : "Odaberi oznaku",
|
||||
"Add a tag" : "Dodaj oznaku",
|
||||
"Select tags" : "Odaberite oznake",
|
||||
"Assign users" : "Dodijeli korisnike",
|
||||
"Choose a user to assign" : "Odaberi korisnika za dodjelu",
|
||||
"Assign this card to a user" : "Dodijeli ovu karticu korisniku",
|
||||
"Due date" : "Datum dospijeća",
|
||||
"Click to set" : "Klikni za postavljanje",
|
||||
"Remove due date" : "Ukloni datum dospijeća",
|
||||
"Description" : "Opis",
|
||||
"Attachments" : "Privici",
|
||||
"Saved" : "Spremljeno",
|
||||
"Unsaved changes" : "Nespremljene promjene",
|
||||
"Insert attachment" : "Umetni privitak",
|
||||
"Formatting help" : "Pomoć pri oblikovanju",
|
||||
"Upload attachment" : "Otpremi privitak",
|
||||
"Add a card description…" : "Dodaj opis kartice...",
|
||||
"Shared boards" : "Dijeljene ploče",
|
||||
"Move board to archive" : "Premjesti ploču u arhivu",
|
||||
"Create a new board" : "Stvori novu ploču",
|
||||
"Settings" : "Postavke",
|
||||
"Limit deck to groups" : "Ograniči Deck na grupe",
|
||||
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Ograničenjem Decka možete spriječiti korisnike koji ne sudjeluju u tim grupama da stvaraju vlastite ploče. Korisnici će i dalje moći raditi na pločama koje su dijeljene s njima."
|
||||
"Add a card description…" : "Dodaj opis...",
|
||||
"Create a new board" : "Izradi novu ploču"
|
||||
},
|
||||
"nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;");
|
||||
|
||||
190
l10n/hr.json
190
l10n/hr.json
@@ -1,201 +1,29 @@
|
||||
{ "translations": {
|
||||
"Please provide a content for your comment." : "Navedite sadržaj za svoj komentar.",
|
||||
"Posting the comment failed." : "Objavljivanje komentara nije uspjelo.",
|
||||
"The comment has been deleted" : "Komentar je izbrisan",
|
||||
"The associated stack is deleted as well, it will be restored as well." : "Također se briše pridruženi stog, ali će se također vratiti.",
|
||||
"Restore associated stack" : "Vrati pridruženi stog",
|
||||
"Remove user from card" : "Ukloni korisnika s kartice",
|
||||
"Hours" : "Sati",
|
||||
"Minutes" : "Minute",
|
||||
"Link to a board" : "Poveznica na ploču",
|
||||
"Maximum file size of {size} exceeded" : "Prekoračena je maksimalna veličina datoteke od {size}",
|
||||
"File already exists" : "Datoteka već postoji",
|
||||
"You have created a new board {board}" : "Stvorili ste novu ploču {board}",
|
||||
"{user} has created a new board {board}" : "{user} je stvorio novu ploču {board}",
|
||||
"You have deleted the board {board}" : "Izbrisali ste ploču {board}",
|
||||
"{user} has deleted the board {board}" : "{user} je izbrisao ploču {board}",
|
||||
"You have restored the board {board}" : "Vratili ste ploču {board}",
|
||||
"{user} has restored the board {board}" : "{user} je vratio ploču {board}",
|
||||
"You have shared the board {board} with {acl}" : "Podijelili ste ploču {board} s {acl}",
|
||||
"{user} has shared the board {board} with {acl}" : "{user} je podijelio ploču {board} s {acl}",
|
||||
"You have removed {acl} from the board {board}" : "Uklonili ste {acl} s ploče {board}",
|
||||
"{user} has removed {acl} from the board {board}" : "{user} je uklonio {acl} s ploče {board}",
|
||||
"You have renamed the board {before} to {board}" : "Preimenovali ste ploču {before} u {board}",
|
||||
"{user} has renamed the board {before} to {board}" : "{user} je preimenovao ploču {before} u {board}",
|
||||
"You have archived the board {board}" : "Arhivirali ste ploču {board}",
|
||||
"{user} has archived the board {before}" : "{user} je arhivirao ploču {before}",
|
||||
"You have unarchived the board {board}" : "Dearhivirali ste ploču {board}",
|
||||
"{user} has unarchived the board {before}" : "{user} je dearhivirao ploču {before}",
|
||||
"You have created a new stack {stack} on board {board}" : "Stvorili ste novi stog {stack} na ploči {board}",
|
||||
"{user} has created a new stack {stack} on board {board}" : "{user} je stvorio novi stog {stack} na ploči {board}",
|
||||
"You have renamed stack {before} to {stack} on board {board}" : "Preimenovali ste stog {before} u {stack} na ploči {board}",
|
||||
"{user} has renamed stack {before} to {stack} on board {board}" : "{user} je preimenovao stog {before} u {stack} na ploči {board}",
|
||||
"You have deleted stack {stack} on board {board}" : "Izbrisali ste stog {stack} na ploči {board}",
|
||||
"{user} has deleted stack {stack} on board {board}" : "{user} je izbrisao stog {stack} na ploči {board}",
|
||||
"You have created card {card} in stack {stack} on board {board}" : "Stvorili ste karticu {card} u stogu {stack} na ploči {board}",
|
||||
"{user} has created card {card} in stack {stack} on board {board}" : "{user} je stvorio karticu {card} u stogu {stack} na ploči {board}",
|
||||
"You have deleted card {card} in stack {stack} on board {board}" : "Izbrisali ste karticu {card} u stogu {stack} na ploči {board}",
|
||||
"{user} has deleted card {card} in stack {stack} on board {board}" : "{user} je izbrisao karticu {card} u stogu {stack} na ploči {board}",
|
||||
"You have renamed the card {before} to {card}" : "Preimenovali ste karticu {before} u {card}",
|
||||
"{user} has renamed the card {before} to {card}" : "{user} je preimenovao karticu {before} u {card}",
|
||||
"You have added a description to card {card} in stack {stack} on board {board}" : "Dodali ste opis kartici {card} u stogu {stack} na ploči {board}",
|
||||
"{user} has added a description to card {card} in stack {stack} on board {board}" : "{user} je dodao opis kartici {card} u stogu {stack} na ploči {board}",
|
||||
"You have updated the description of card {card} in stack {stack} on board {board}" : "Ažurirali ste opis kartice {card} u stogu {stack} na ploči {board}",
|
||||
"{user} has updated the description of the card {card} in stack {stack} on board {board}" : "{user} je ažurirao opis kartice {card} u stogu {stack} na ploči {board}",
|
||||
"You have archived card {card} in stack {stack} on board {board}" : "Arhivirali ste karticu {card} u stogu {stack} na ploči {board}",
|
||||
"{user} has archived card {card} in stack {stack} on board {board}" : "{user} je arhivirao karticu {card} u stogu {stack} na ploči {board}",
|
||||
"You have unarchived card {card} in stack {stack} on board {board}" : "Dearhivirali ste karticu {card} u stogu {stack} na ploči {board}",
|
||||
"{user} has unarchived card {card} in stack {stack} on board {board}" : "{user} je dearhivirao karticu {card} u stogu {stack} na ploči {board}",
|
||||
"You have removed the due date of card {card}" : "Uklonili ste datum dospijeća kartice {card}",
|
||||
"{user} has removed the due date of card {card}" : "{user} je uklonio datum dospijeća kartice {card}",
|
||||
"You have set the due date of card {card} to {after}" : "Postavili ste datum dospijeća kartice {card} na {after}",
|
||||
"{user} has set the due date of card {card} to {after}" : "{user} je postavio datum dospijeća kartice {card} na {after}",
|
||||
"You have updated the due date of card {card} to {after}" : "Ažurirali ste datum dospijeća kartice {card} na {after}",
|
||||
"{user} has updated the due date of card {card} to {after}" : "{user} je ažurirao datum dospijeća kartice {card} na {after}",
|
||||
"You have added the tag {label} to card {card} in stack {stack} on board {board}" : "Dodali ste oznaku {label} na karticu {card} u stogu {stack} na ploči {board}",
|
||||
"{user} has added the tag {label} to card {card} in stack {stack} on board {board}" : "{user} je dodao oznaku {label} na karticu {card} u stogu {stack} na ploči {board}",
|
||||
"You have removed the tag {label} from card {card} in stack {stack} on board {board}" : "Uklonili ste oznaku {label} s kartice {card} u stogu {stack} na ploči {board}",
|
||||
"{user} has removed the tag {label} from card {card} in stack {stack} on board {board}" : "{user} je uklonio oznaku {label} s kartice {card} u stogu {stack} na ploči {board}",
|
||||
"You have assigned {assigneduser} to card {card} on board {board}" : "Dodijelili ste {assigneduser} kartici {card} na ploči {board}",
|
||||
"{user} has assigned {assigneduser} to card {card} on board {board}" : "{user} je dodijelio {assigneduser} kartici {card} na ploči {board}",
|
||||
"You have unassigned {assigneduser} from card {card} on board {board}" : "Uklonili ste {assigneduser} s kartice {card} na ploči {board}",
|
||||
"{user} has unassigned {assigneduser} from card {card} on board {board}" : "{user} je uklonio {assigneduser} s kartice {card} na ploči {board}",
|
||||
"You have moved the card {card} from stack {stackBefore} to {stack}" : "Premjestili ste karticu {card} iz stoga {stackBefore} u {stack}",
|
||||
"{user} has moved the card {card} from stack {stackBefore} to {stack}" : "{user} je premjestio karticu {card} iz stoga {stackBefore} u {stack}",
|
||||
"You have added the attachment {attachment} to card {card}" : "Dodali ste privitak {attachment} kartici {card}",
|
||||
"{user} has added the attachment {attachment} to card {card}" : "{user} je dodao privitak {attachment} kartici {card}",
|
||||
"You have updated the attachment {attachment} on card {card}" : "Ažurirali ste privitak {attachment} na kartici {card}",
|
||||
"{user} has updated the attachment {attachment} on card {card}" : "{user} je ažurirao privitak {attachment} na kartici {card}",
|
||||
"You have deleted the attachment {attachment} from card {card}" : "Izbrisali ste privitak {attachment} s kartice {card}",
|
||||
"{user} has deleted the attachment {attachment} from card {card}" : "{user} je izbrisao privitak {attachment} s kartice {card}",
|
||||
"You have restored the attachment {attachment} to card {card}" : "Vratili ste privitak {attachment} na karticu {card}",
|
||||
"{user} has restored the attachment {attachment} to card {card}" : "{user} je vratio privitak {attachment} na karticu {card}",
|
||||
"You have commented on card {card}" : "Komentirali ste karticu {card}",
|
||||
"{user} has commented on card {card}" : "{user} je komentirao karticu {card}",
|
||||
"A <strong>card description</strong> inside the Deck app has been changed" : "Promijenjen je <strong>opis kartice</strong> u aplikaciji Deck",
|
||||
"Deck" : "Deck",
|
||||
"Changes in the <strong>Deck app</strong>" : "Promjene u <strong>aplikaciji Deck</strong>",
|
||||
"A <strong>comment</strong> was created on a card" : "<strong>Komentar</strong> je stvoren na kartici",
|
||||
"Personal" : "Osobno",
|
||||
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Karticu „%s” na „%s” dodijelio vam je %s.",
|
||||
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} vam je dodijelio karticu „%s” na „%s”.",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "Kartica „%s” na „%s” dosegla je datum dospijeća.",
|
||||
"%s has mentioned you in a comment on \"%s\"." : "%s vas spominje u komentaru na „%s”.",
|
||||
"{user} has mentioned you in a comment on \"%s\"." : "{user} vas je spomenuo u komentaru na „%s”.",
|
||||
"The board \"%s\" has been shared with you by %s." : "Ploču „%s” je s vama podijelio %s.",
|
||||
"{user} has shared the board %s with you." : "{user} je s vama podijelio ploču %s.",
|
||||
"No data was provided to create an attachment." : "Nema podataka za izradu privitka.",
|
||||
"Finished" : "Završeno",
|
||||
"To review" : "Provjeriti",
|
||||
"Action needed" : "Potrebna radnja",
|
||||
"Later" : "Kasnije",
|
||||
"To do" : "Zadatak",
|
||||
"Doing" : "U postupku",
|
||||
"Done" : "Gotovo",
|
||||
"Example Task 3" : "Primjer zadatka 3.",
|
||||
"Example Task 2" : "Primjer zadatka 2.",
|
||||
"Example Task 1" : "Primjer zadatka 1.",
|
||||
"The file was uploaded" : "Datoteka je otpremljena",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Otpremljena datoteka premašuje postavku upload_max_filesize u datoteci php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Otpremljena datoteka premašuje postavku MAX_FILE_SIZE koja je navedena u obrascu HTML-a",
|
||||
"The file was only partially uploaded" : "Datoteka je samo djelomično otpremljena",
|
||||
"No file was uploaded" : "Nije otpremljena nijedna datoteka",
|
||||
"Missing a temporary folder" : "Nedostaje privremena mapa",
|
||||
"Could not write file to disk" : "Nije moguće zapisati datoteku na disk",
|
||||
"A PHP extension stopped the file upload" : "Proširenje PHP-a zaustavilo je otpremanje datoteke",
|
||||
"No file uploaded or file size exceeds maximum of %s" : "Nijedna datoteka nije otpremljena ili veličina datoteke premašuje maksimalnu veličinu od %s",
|
||||
"A kanban style project and personal management tool for Nextcloud" : "Kanban projekt i osobni alat za upravljanje za Nextcloud",
|
||||
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Deck je organizacijski alat za kanban projekte usmjeren na osobno planiranje i organizaciju projekta za timove integrirane s Nextcloudom.\n\n\n- 📥 Dodajte svoje zadatke na kartice i poredajte ih po želji\n- 📄 Zapišite dodatne bilješke u markdown\n- 🔖 Dodijelite oznake za još bolju organizaciju\n- 👥 Dijelite sa svojim timom, prijateljima ili obitelji\n- 📎 Priložite datoteke i ugradite ih u svoj markdown opis\n- 💬 Raspravljajte sa svojim timom putem komentara\n- ⚡ Pratite promjene u strujanju aktivnosti\n- 🚀 Organizirajte svoj projekt",
|
||||
"Select the board to link to a project" : "Odaberite ploču za povezivanje s projektom",
|
||||
"Select board" : "Odaberi ploču",
|
||||
"Add a new stack" : "Dodaj novi stog",
|
||||
"Submit" : "Šalji",
|
||||
"Show archived cards" : "Prikaži arhivirane kartice",
|
||||
"Hide archived cards" : "Sakrij arhivirane kartice",
|
||||
"Toggle compact mode" : "Prebaci u kompaktni način rada",
|
||||
"Show board details" : "Prikaži pojedinosti o ploči",
|
||||
"All Boards" : "Sve ploče",
|
||||
"Archived boards" : "Arhivirane ploče",
|
||||
"Share board" : "Dijeli ploču",
|
||||
"Archived cards" : "Arhivirane kartice",
|
||||
"Actions" : "Radnje",
|
||||
"Drop your files here to upload it to the card" : "Ispustite datoteke ovdje kako biste ih otpremili na karticu",
|
||||
"Assign card to me" : "Dodijeli mi karticu",
|
||||
"Unassign card from me" : "Ukloni me s kartice",
|
||||
"Archive card" : "Arhiviraj karticu",
|
||||
"Unarchive card" : "Dearhiviraj karticu",
|
||||
"Delete card" : "Izbriši karticu",
|
||||
"Enter a card title" : "Unesi naslov kartice",
|
||||
"Add card" : "Dodaj karticu",
|
||||
"Close" : "Zatvori",
|
||||
"Enter a card title" : "Naslov kartice",
|
||||
"Sharing" : "Dijeljenje",
|
||||
"Tags" : "Oznake",
|
||||
"Deleted items" : "Izbrisane stavke",
|
||||
"Timeline" : "Vremenska crta",
|
||||
"Select users or groups to share with" : "Dijeli s korisnicima ili grupama",
|
||||
"Group" : "Grupa",
|
||||
"Circle" : "Krug",
|
||||
"No matching user or group found." : "Nije pronađen odgovarajući korisnik ili grupa.",
|
||||
"Loading" : "Učitavanje",
|
||||
"Select users or groups to share with" : "Podijeli s korisnicima ili grupama",
|
||||
"No matching user or group found." : "Nije pronađen odgovarajući korisnik ili grupa",
|
||||
"Edit" : "Uređivanje",
|
||||
"Share" : "Dijeli",
|
||||
"Share" : "Dijeljenje",
|
||||
"Manage" : "Upravljanje",
|
||||
"Discard share" : "Prestani dijeliti",
|
||||
"Sharing has been disabled for your account." : "Dijeljenje je onemogućeno za vaš račun.",
|
||||
"Update tag" : "Ažuriraj oznaku",
|
||||
"Edit tag" : "Uredi oznaku",
|
||||
"Delete tag" : "Izbriši oznaku",
|
||||
"Create" : "Stvori",
|
||||
"Create a new tag" : "Stvori novu oznaku",
|
||||
"Deleted stacks" : "Izbrisani stogovi",
|
||||
"Deleted cards" : "Izbrisane kartice",
|
||||
"Status" : "Status",
|
||||
"No archived boards to display" : "Nema arhiviranih ploča za prikaz",
|
||||
"No shared boards to display" : "Nema dijeljenih ploča za prikaz",
|
||||
"Title" : "Naslov",
|
||||
"Members" : "Članovi",
|
||||
"More actions" : "Dodatne radnje",
|
||||
"Edit board" : "Uredi ploču",
|
||||
"Archive board" : "Arhiviraj ploču",
|
||||
"Unarchive board" : "Dearhiviraj ploču",
|
||||
"Delete board" : "Izbriši ploču",
|
||||
"Update board" : "Ažuriraj ploču",
|
||||
"Reset board" : "Resetiraj ploču",
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Poništi brisanje ploče – u suprotnom će se ploča izbrisati tijekom sljedećeg izvođenja cronjoba.",
|
||||
"Create new board" : "Stvori novu ploču",
|
||||
"New board title" : "Novi naslov ploče",
|
||||
"Create board" : "Stvori ploču",
|
||||
"Select an attachment" : "Odaberi privitak",
|
||||
"Cancel upload" : "Otkaži otpremanje",
|
||||
"Create new board" : "Izradi novu ploču",
|
||||
"New board title" : "Naslov ploče",
|
||||
"by" : "od",
|
||||
"Undo file deletion - Otherwise the file will be deleted during the next cronjob run." : "Poništi brisanje datoteke – u suprotnom će se datoteka izbrisati tijekom sljedećeg izvođenja cronjoba.",
|
||||
"Undo file deletion" : "Poništi brisanje datoteke",
|
||||
"Insert the file into the description" : "Umetni datoteku u opis",
|
||||
"Delete attachment" : "Izbriši privitak",
|
||||
"Modified:" : "Promijenjeno:",
|
||||
"Modified:" : "Promijenjena:",
|
||||
"Created:" : "Stvorena:",
|
||||
"Choose a tag" : "Odaberi oznaku",
|
||||
"Add a tag" : "Dodaj oznaku",
|
||||
"Select tags" : "Odaberite oznake",
|
||||
"Assign users" : "Dodijeli korisnike",
|
||||
"Choose a user to assign" : "Odaberi korisnika za dodjelu",
|
||||
"Assign this card to a user" : "Dodijeli ovu karticu korisniku",
|
||||
"Due date" : "Datum dospijeća",
|
||||
"Click to set" : "Klikni za postavljanje",
|
||||
"Remove due date" : "Ukloni datum dospijeća",
|
||||
"Description" : "Opis",
|
||||
"Attachments" : "Privici",
|
||||
"Saved" : "Spremljeno",
|
||||
"Unsaved changes" : "Nespremljene promjene",
|
||||
"Insert attachment" : "Umetni privitak",
|
||||
"Formatting help" : "Pomoć pri oblikovanju",
|
||||
"Upload attachment" : "Otpremi privitak",
|
||||
"Add a card description…" : "Dodaj opis kartice...",
|
||||
"Shared boards" : "Dijeljene ploče",
|
||||
"Move board to archive" : "Premjesti ploču u arhivu",
|
||||
"Create a new board" : "Stvori novu ploču",
|
||||
"Settings" : "Postavke",
|
||||
"Limit deck to groups" : "Ograniči Deck na grupe",
|
||||
"Limiting Deck will block users not part of those groups from creating their own boards. Users will still be able to work on boards that have been shared with them." : "Ograničenjem Decka možete spriječiti korisnike koji ne sudjeluju u tim grupama da stvaraju vlastite ploče. Korisnici će i dalje moći raditi na pločama koje su dijeljene s njima."
|
||||
"Add a card description…" : "Dodaj opis...",
|
||||
"Create a new board" : "Izradi novu ploču"
|
||||
},"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;"
|
||||
}
|
||||
@@ -19,7 +19,6 @@ OC.L10N.register(
|
||||
"You have restored the board {board}" : "Visszaállította a(z) {board} táblát",
|
||||
"{user} has restored the board {board}" : "{user} visszaállította a(z) {board} táblát",
|
||||
"You have shared the board {board} with {acl}" : "Megosztotta a(z) {board} táblát a következővel: {acl}",
|
||||
"{user} has shared the board {board} with {acl}" : "{user} megosztotta a(z) {board} táblát a következővel: {acl}",
|
||||
"You have removed {acl} from the board {board}" : "Eltávolította a következőt a(z) {board} táblától: {acl}",
|
||||
"{user} has removed {acl} from the board {board}" : "{user} eltávolította a következőt a(z) {board} táblától: {acl}",
|
||||
"You have renamed the board {before} to {board}" : "Átnevezte a(z) {before} táblát erre: {board}",
|
||||
@@ -67,7 +66,9 @@ OC.L10N.register(
|
||||
"You have added the attachment {attachment} to card {card}" : "Hozzáadta a(z) {attachment} mellékletet a(z) {card} kártyához",
|
||||
"{user} has added the attachment {attachment} to card {card}" : "{user} hozzáadta a(z) {attachment} mellékletet a(z) {card} kártyához",
|
||||
"You have updated the attachment {attachment} on card {card}" : "Frissítette a(z) {attachment} mellékletet a(z) {card} kártyánál",
|
||||
"{user} has updated the attachment {attachment} to card {card}" : "{user} frissítette a(z) {attachment} mellékletet a(z) {card} kártyánál",
|
||||
"You have deleted the attachment {attachment} from card {card}" : "Eltávolította a(z) {attachment} mellékletet a(z) {card} kártyáról",
|
||||
"{user} has deleted the attachment {attachment} to card {card}" : "{user} eltávolította a(z) {attachment} mellékletet a(z) {card} kártyáról",
|
||||
"You have restored the attachment {attachment} to card {card}" : "Visszaállította a(z) {attachment} mellékletet a(z) {card} kártyánál",
|
||||
"{user} has restored the attachment {attachment} to card {card}" : "{user} visszaállította a(z) {attachment} mellékletet a(z) {card} kártyánál",
|
||||
"You have commented on card {card}" : "Hozzászólt a(z) {card} kártyához",
|
||||
@@ -75,7 +76,6 @@ OC.L10N.register(
|
||||
"A <strong>card description</strong> inside the Deck app has been changed" : "A <strong>kártyaleírás</strong> megváltozott a Kártyák alkalmazásban",
|
||||
"Deck" : "Kártyák",
|
||||
"Changes in the <strong>Deck app</strong>" : "Változások a <strong>Kártyák alkalmazásban</strong>",
|
||||
"A <strong>comment</strong> was created on a card" : "Egy <strong>hozzászólás</strong> lett létrehozva egy kártyán",
|
||||
"Personal" : "Személyes",
|
||||
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "A(z) „%s” kártyát a(z) „%s” táblán %s hozzárendelte Önhöz.",
|
||||
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} hozzárendelte Önhöz a(z) „%s” kártyát a(z) „%s”.",
|
||||
|
||||
@@ -17,7 +17,6 @@
|
||||
"You have restored the board {board}" : "Visszaállította a(z) {board} táblát",
|
||||
"{user} has restored the board {board}" : "{user} visszaállította a(z) {board} táblát",
|
||||
"You have shared the board {board} with {acl}" : "Megosztotta a(z) {board} táblát a következővel: {acl}",
|
||||
"{user} has shared the board {board} with {acl}" : "{user} megosztotta a(z) {board} táblát a következővel: {acl}",
|
||||
"You have removed {acl} from the board {board}" : "Eltávolította a következőt a(z) {board} táblától: {acl}",
|
||||
"{user} has removed {acl} from the board {board}" : "{user} eltávolította a következőt a(z) {board} táblától: {acl}",
|
||||
"You have renamed the board {before} to {board}" : "Átnevezte a(z) {before} táblát erre: {board}",
|
||||
@@ -65,7 +64,9 @@
|
||||
"You have added the attachment {attachment} to card {card}" : "Hozzáadta a(z) {attachment} mellékletet a(z) {card} kártyához",
|
||||
"{user} has added the attachment {attachment} to card {card}" : "{user} hozzáadta a(z) {attachment} mellékletet a(z) {card} kártyához",
|
||||
"You have updated the attachment {attachment} on card {card}" : "Frissítette a(z) {attachment} mellékletet a(z) {card} kártyánál",
|
||||
"{user} has updated the attachment {attachment} to card {card}" : "{user} frissítette a(z) {attachment} mellékletet a(z) {card} kártyánál",
|
||||
"You have deleted the attachment {attachment} from card {card}" : "Eltávolította a(z) {attachment} mellékletet a(z) {card} kártyáról",
|
||||
"{user} has deleted the attachment {attachment} to card {card}" : "{user} eltávolította a(z) {attachment} mellékletet a(z) {card} kártyáról",
|
||||
"You have restored the attachment {attachment} to card {card}" : "Visszaállította a(z) {attachment} mellékletet a(z) {card} kártyánál",
|
||||
"{user} has restored the attachment {attachment} to card {card}" : "{user} visszaállította a(z) {attachment} mellékletet a(z) {card} kártyánál",
|
||||
"You have commented on card {card}" : "Hozzászólt a(z) {card} kártyához",
|
||||
@@ -73,7 +74,6 @@
|
||||
"A <strong>card description</strong> inside the Deck app has been changed" : "A <strong>kártyaleírás</strong> megváltozott a Kártyák alkalmazásban",
|
||||
"Deck" : "Kártyák",
|
||||
"Changes in the <strong>Deck app</strong>" : "Változások a <strong>Kártyák alkalmazásban</strong>",
|
||||
"A <strong>comment</strong> was created on a card" : "Egy <strong>hozzászólás</strong> lett létrehozva egy kártyán",
|
||||
"Personal" : "Személyes",
|
||||
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "A(z) „%s” kártyát a(z) „%s” táblán %s hozzárendelte Önhöz.",
|
||||
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} hozzárendelte Önhöz a(z) „%s” kártyát a(z) „%s”.",
|
||||
|
||||
21
l10n/hy.js
21
l10n/hy.js
@@ -1,21 +0,0 @@
|
||||
OC.L10N.register(
|
||||
"deck",
|
||||
{
|
||||
"Hours" : "Ժամ",
|
||||
"Minutes" : "Րոպե",
|
||||
"Personal" : "Անձնական",
|
||||
"Done" : "Done",
|
||||
"Close" : "Փակել",
|
||||
"Group" : "Խումբ",
|
||||
"Loading" : "Loading",
|
||||
"Edit" : "մշակել",
|
||||
"Share" : "Կիսվել",
|
||||
"Create" : "Ստեղծել",
|
||||
"Title" : "Վերնագիր",
|
||||
"Modified:" : "Փոփոխված.",
|
||||
"Created:" : "Ստեղծված.",
|
||||
"Description" : "Նկարագրություն",
|
||||
"Saved" : "Պահված",
|
||||
"Settings" : "կարգավորումներ"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user