Compare commits
70 Commits
v0.4.0-bet
...
v0.4.0
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
fde5096856 | ||
|
|
f3296dd443 | ||
|
|
820ad7c523 | ||
|
|
9f66ce618e | ||
|
|
2318425160 | ||
|
|
213e3083a1 | ||
|
|
4fc65c8302 | ||
|
|
bcb54faeaf | ||
|
|
f5753f3fde | ||
|
|
5ff8618c10 | ||
|
|
bee918e810 | ||
|
|
37301ae92b | ||
|
|
bd304d5f27 | ||
|
|
827c69bd7b | ||
|
|
812a225334 | ||
|
|
90c4e7818a | ||
|
|
1299df539e | ||
|
|
20b25e0108 | ||
|
|
e959afb2de | ||
|
|
cb25643741 | ||
|
|
bbfb9e713a | ||
|
|
e71a38fe96 | ||
|
|
120e4e13a6 | ||
|
|
04aa9df45b | ||
|
|
8d60a4379d | ||
|
|
4e96dec474 | ||
|
|
9727356d3b | ||
|
|
c0c0cb8545 | ||
|
|
af646c1999 | ||
|
|
38bb4c7a3a | ||
|
|
573fa2c457 | ||
|
|
d7e7fd58b0 | ||
|
|
f5a234fd26 | ||
|
|
f75c9e0d4a | ||
|
|
5eca92a0ea | ||
|
|
384b7a41a9 | ||
|
|
47e27a7a89 | ||
|
|
ac19621d5b | ||
|
|
cf2e84873c | ||
|
|
c523474980 | ||
|
|
754486673a | ||
|
|
a7110082e7 | ||
|
|
db619e4cda | ||
|
|
34d05f2ac0 | ||
|
|
fdb1dbf397 | ||
|
|
5c2925aeed | ||
|
|
dc5fbbf7eb | ||
|
|
e46844988e | ||
|
|
9d98107f3a | ||
|
|
681176c684 | ||
|
|
5d4757ddf1 | ||
|
|
9731e6811a | ||
|
|
23c86a4fcc | ||
|
|
43ea0136c8 | ||
|
|
2cc8eb1313 | ||
|
|
bfe71900d3 | ||
|
|
c6a6b41193 | ||
|
|
b0f7bef279 | ||
|
|
014f76b2fb | ||
|
|
546928fb79 | ||
|
|
b4ead5a2eb | ||
|
|
124918b744 | ||
|
|
9308ad125a | ||
|
|
7dc43829ab | ||
|
|
63ac985f15 | ||
|
|
93725e481d | ||
|
|
8e976cb2a6 | ||
|
|
58a89374e2 | ||
|
|
313bbca462 | ||
|
|
f0c22370e0 |
38
.drone.yml
38
.drone.yml
@@ -22,6 +22,42 @@ pipeline:
|
||||
when:
|
||||
matrix:
|
||||
TESTS: check-app-compatbility
|
||||
check-app-compatbility-12:
|
||||
image: nextcloudci/php7.0:php7.0-17
|
||||
environment:
|
||||
- APP_NAME=deck
|
||||
- CORE_BRANCH=stable12
|
||||
- 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
|
||||
# Code checker
|
||||
- ./occ app:check-code $APP_NAME -c strong-comparison
|
||||
- ./occ app:check-code $APP_NAME -c deprecation
|
||||
- cd apps/$APP_NAME/
|
||||
when:
|
||||
matrix:
|
||||
TESTS: check-app-compatbility-13
|
||||
check-app-compatbility-12:
|
||||
image: nextcloudci/php7.0:php7.0-17
|
||||
environment:
|
||||
- APP_NAME=deck
|
||||
- CORE_BRANCH=stable12
|
||||
- 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
|
||||
# Code checker
|
||||
- ./occ app:check-code $APP_NAME -c strong-comparison
|
||||
- ./occ app:check-code $APP_NAME -c deprecation
|
||||
- cd apps/$APP_NAME/
|
||||
when:
|
||||
matrix:
|
||||
TESTS: check-app-compatbility-12
|
||||
signed-off-check:
|
||||
image: nextcloudci/php7.0:php7.0-17
|
||||
environment:
|
||||
@@ -194,6 +230,8 @@ pipeline:
|
||||
matrix:
|
||||
include:
|
||||
- TESTS: check-app-compatbility
|
||||
- TESTS: check-app-compatbility-12
|
||||
- TESTS: check-app-compatbility-13
|
||||
- TESTS: signed-off-check
|
||||
- TESTS: syntax-php5.6
|
||||
- TESTS: syntax-php7.0
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
# Changelog
|
||||
All notable changes to this project will be documented in this file.
|
||||
|
||||
## 0.4.0 - unreleased
|
||||
## 0.4.0 - 2018-07-11
|
||||
|
||||
### Added
|
||||
|
||||
@@ -9,6 +9,7 @@ All notable changes to this project will be documented in this file.
|
||||
- Embed attachments into the card description
|
||||
- Color picker to use any color value for board and labels
|
||||
- Support for checkboxes inside the description
|
||||
- occ command to export user data as JSON
|
||||
|
||||
### Fixed
|
||||
|
||||
|
||||
4
Makefile
4
Makefile
@@ -12,7 +12,7 @@ sign_dir=$(build_dir)/sign
|
||||
cert_dir=$(HOME)/.nextcloud/certificates
|
||||
|
||||
|
||||
default: build
|
||||
default: package
|
||||
|
||||
clean-build:
|
||||
rm -rf $(build_dir)
|
||||
@@ -95,3 +95,5 @@ test-integration:
|
||||
test-js: install-deps
|
||||
cd js && run test
|
||||
|
||||
package:
|
||||
krankerl package
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
- 🚀 Get your project organized
|
||||
|
||||
</description>
|
||||
<version>0.4.0-beta1</version>
|
||||
<version>0.4.0</version>
|
||||
<licence>agpl</licence>
|
||||
<author>Julius Härtl</author>
|
||||
<namespace>Deck</namespace>
|
||||
@@ -37,4 +37,7 @@
|
||||
<step>OCA\Deck\Migration\UnknownUsers</step>
|
||||
</post-migration>
|
||||
</repair-steps>
|
||||
<commands>
|
||||
<command>OCA\Deck\Command\UserExport</command>
|
||||
</commands>
|
||||
</info>
|
||||
|
||||
@@ -877,6 +877,9 @@ input.input-inline {
|
||||
button.icon-history {
|
||||
width: 44px;
|
||||
}
|
||||
progress {
|
||||
margin-top: 3px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -911,14 +914,11 @@ input.input-inline {
|
||||
}
|
||||
}
|
||||
|
||||
#card-attachments {
|
||||
ul {
|
||||
margin: 5px;
|
||||
}
|
||||
|
||||
.details {
|
||||
font-size: 8pt;
|
||||
padding-left: 15px;
|
||||
.card-attachments {
|
||||
.error {
|
||||
padding-left: 38px;
|
||||
margin-bottom: 5px;
|
||||
background-position: 10px;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -976,8 +976,8 @@ input.input-inline {
|
||||
}
|
||||
}
|
||||
|
||||
.colorselect-label {
|
||||
background-image: url('../img/color_picker.svg');
|
||||
.colorselect-label, .colorselect-label-white {
|
||||
background-image: url('../img/color_picker-dark.svg');
|
||||
background-position: center center;
|
||||
background-repeat: no-repeat;
|
||||
opacity: 1;
|
||||
@@ -988,6 +988,9 @@ input.input-inline {
|
||||
width: 40px;
|
||||
}
|
||||
}
|
||||
.colorselect-label-white {
|
||||
background-image: url('../img/color_picker.svg');
|
||||
}
|
||||
}
|
||||
|
||||
.labels {
|
||||
|
||||
1
img/color_picker-dark.svg
Normal file
1
img/color_picker-dark.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="15" height="15" viewBox="0 0 100 100"><path d="M91.645 8.355c-4.474-4.474-11.727-4.474-16.2 0l-13.5 13.501-3.727-3.727a5.015 5.015 0 1 0-7.093 7.093l3.727 3.727-41.51 41.508a11.411 11.411 0 0 0-3.329 7.324c-.073 1.087-.347 3.105-.675 5.292a1.748 1.748 0 0 1-.487.983l-3.105 3.106a2.546 2.546 0 0 0 0 3.6l3.493 3.493a2.546 2.546 0 0 0 3.6 0l3.106-3.105c.277-.275.622-.433.981-.486 2.187-.329 4.205-.602 5.293-.675a11.412 11.412 0 0 0 7.325-3.33l41.508-41.508 3.727 3.727a5.015 5.015 0 1 0 7.093-7.093L69.507 29.419l9.697 7.577 12.44-12.441c4.475-4.473 4.474-11.726.001-16.2zM65.051 42.749l-20.53 20.53a2.546 2.546 0 0 1-3.6 0l-3.27-3.27a2.545 2.545 0 0 0-3.599.001l-.616.616-.002-.002-14.728 14.727c-.337.337-.819.401-1.076.143s-.194-.74.143-1.076l23.841-23.841.004.004 15.633-15.633a2.546 2.546 0 0 1 3.6 0l4.2 4.201a2.546 2.546 0 0 1 0 3.6z"/></svg>
|
||||
|
After Width: | Height: | Size: 897 B |
@@ -1,5 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!-- Generator: Adobe Illustrator 17.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg id="Layer_1" width="15" height="15" enable-background="new 0 0 100 100" version="1.1" viewBox="0 0 100 100" xml:space="preserve" xmlns="http://www.w3.org/2000/svg" xmlns:cc="http://web.resource.org/cc/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
||||
<path d="m91.645 8.355c-4.474-4.474-11.727-4.474-16.2 0l-13.5 13.501-3.727-3.727c-1.959-1.959-5.134-1.959-7.093 0s-1.959 5.134 0 7.093l3.727 3.727-41.51 41.508c-2.039 2.039-3.149 4.656-3.329 7.324-0.073 1.087-0.347 3.105-0.675 5.292-0.053 0.359-0.212 0.706-0.487 0.983l-3.105 3.106c-0.994 0.994-0.994 2.606 0 3.6l3.493 3.493c0.994 0.994 2.606 0.994 3.6 0l3.106-3.105c0.277-0.275 0.622-0.433 0.981-0.486 2.187-0.329 4.205-0.602 5.293-0.675 2.668-0.18 5.285-1.29 7.325-3.33l41.508-41.508 3.727 3.727c1.959 1.959 5.134 1.959 7.093 0s1.959-5.134 0-7.093l-12.365-12.366 9.697 7.577 12.44-12.441c4.475-4.473 4.474-11.726 1e-3 -16.2zm-26.594 34.394l-20.53 20.53c-0.994 0.994-2.606 0.994-3.6 0l-3.27-3.27c-0.994-0.993-2.605-0.993-3.599 1e-3l-0.616 0.616-2e-3 -2e-3 -14.728 14.727c-0.337 0.337-0.819 0.401-1.076 0.143s-0.194-0.74 0.143-1.076l23.841-23.841 4e-3 4e-3 15.633-15.633c0.994-0.994 2.606-0.994 3.6 0l4.2 4.201c0.994 0.994 0.994 2.606 0 3.6z" fill="#fff"/>
|
||||
<metadata><rdf:RDF><cc:Work><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/><cc:license rdf:resource="http://creativecommons.org/licenses/publicdomain/"/><dc:publisher><cc:Agent rdf:about="http://openclipart.org/"><dc:title>Openclipart</dc:title></cc:Agent></dc:publisher></cc:Work><cc:License rdf:about="http://creativecommons.org/licenses/publicdomain/"><cc:permits rdf:resource="http://creativecommons.org/ns#Reproduction"/><cc:permits rdf:resource="http://creativecommons.org/ns#Distribution"/><cc:permits rdf:resource="http://creativecommons.org/ns#DerivativeWorks"/></cc:License></rdf:RDF></metadata></svg>
|
||||
<svg width="15" height="15" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M91.645 8.355c-4.474-4.474-11.727-4.474-16.2 0l-13.5 13.501-3.727-3.727a5.015 5.015 0 1 0-7.093 7.093l3.727 3.727-41.51 41.508a11.411 11.411 0 0 0-3.329 7.324c-.073 1.087-.347 3.105-.675 5.292a1.748 1.748 0 0 1-.487.983l-3.105 3.106a2.546 2.546 0 0 0 0 3.6l3.493 3.493a2.546 2.546 0 0 0 3.6 0l3.106-3.105c.277-.275.622-.433.981-.486 2.187-.329 4.205-.602 5.293-.675a11.412 11.412 0 0 0 7.325-3.33l41.508-41.508 3.727 3.727a5.015 5.015 0 1 0 7.093-7.093L69.507 29.419l9.697 7.577 12.44-12.441c4.475-4.473 4.474-11.726.001-16.2zM65.051 42.749l-20.53 20.53a2.546 2.546 0 0 1-3.6 0l-3.27-3.27a2.545 2.545 0 0 0-3.599.001l-.616.616-.002-.002-14.728 14.727c-.337.337-.819.401-1.076.143s-.194-.74.143-1.076l23.841-23.841.004.004 15.633-15.633a2.546 2.546 0 0 1 3.6 0l4.2 4.201a2.546 2.546 0 0 1 0 3.6z" fill="#fff"/></svg>
|
||||
|
||||
|
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 910 B |
@@ -33,12 +33,16 @@ app.config(function ($provide, $interpolateProvider, $httpProvider, $urlRouterPr
|
||||
|
||||
|
||||
$compileProvider.debugInfoEnabled(true);
|
||||
// This should fix adding "unsafe:" prefix to ui-select href links containing javascript
|
||||
// inline JS is blocked by CSP anyway and filtered out by our markdown renderer as well
|
||||
$compileProvider.aHrefSanitizationWhitelist(/^\s*(https?|javascript):/);
|
||||
|
||||
markdownItConverterProvider.use(markdownitLinkTarget, {
|
||||
markdownItConverterProvider.config({
|
||||
breaks: true,
|
||||
linkify: true,
|
||||
xhtmlOut: true
|
||||
}).use(markdownitCheckbox);
|
||||
});
|
||||
markdownItConverterProvider.use(markdownitLinkTarget).use(markdownitCheckbox);
|
||||
|
||||
$urlRouterProvider.otherwise('/');
|
||||
|
||||
|
||||
@@ -23,10 +23,11 @@
|
||||
import app from '../app/App.js';
|
||||
|
||||
/** global: OC */
|
||||
app.controller('AppController', function ($scope, $location, $http, $log, $rootScope) {
|
||||
app.controller('AppController', function ($scope, $location, $http, $log, $rootScope, $attrs) {
|
||||
$rootScope.sidebar = {
|
||||
show: false
|
||||
};
|
||||
$scope.sidebar = $rootScope.sidebar;
|
||||
$scope.user = oc_current_user;
|
||||
$rootScope.config = JSON.parse($attrs.config);
|
||||
});
|
||||
|
||||
@@ -43,6 +43,7 @@ app.controller('CardController', function ($scope, $rootScope, $sce, $location,
|
||||
return $state.params;
|
||||
}, function (params) {
|
||||
$scope.params = params;
|
||||
$scope.fileservice.reset();
|
||||
}, true);
|
||||
$scope.params = $state.params;
|
||||
|
||||
|
||||
2981
js/package-lock.json
generated
2981
js/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -8,27 +8,29 @@
|
||||
"test": "tests"
|
||||
},
|
||||
"dependencies": {
|
||||
"@uirouter/angularjs": "^1.0.18",
|
||||
"angular": "^1.7.2",
|
||||
"angular-animate": "^1.7.2",
|
||||
"angular-file-upload": "^2.5.0",
|
||||
"angular-markdown-it": "^0.6.1",
|
||||
"angular-sanitize": "^1.7.2",
|
||||
"babel-polyfill": "^6.26.0",
|
||||
"markdown-it": "^8.4.1",
|
||||
"markdown-it-link-target": "^1.0.2",
|
||||
"ng-sortable": "^1.3.8",
|
||||
"ui-select": "^0.19.8",
|
||||
"@uirouter/angularjs": "^1.0.18"
|
||||
"ui-select": "^0.19.8"
|
||||
},
|
||||
"devDependencies": {
|
||||
"babel-core": "^6.26.0",
|
||||
"babel-loader": "^7.1.2",
|
||||
"css-loader": "^0.28.9",
|
||||
"mini-css-extract-plugin": "^0.4.0",
|
||||
"node-sass": "^4.5.3",
|
||||
"webpack": "^4.12.0",
|
||||
"babel-loader": "^7.1.5",
|
||||
"babel-preset-env": "^1.7.0",
|
||||
"css-loader": "^1.0.0",
|
||||
"karma": "^2.0.4",
|
||||
"mini-css-extract-plugin": "^0.4.1",
|
||||
"node-sass": "^4.9.2",
|
||||
"webpack": "^4.15.1",
|
||||
"webpack-cli": "^3.0.8",
|
||||
"webpack-merge": "^4.1.3",
|
||||
"karma": "^2.0.3"
|
||||
"webpack-merge": "^4.1.3"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "./node_modules/webpack-cli/bin/cli.js --mode production --config webpack.prod.config.js",
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* @copyright Copyright (c) 2018 Julius Härtl <jus@bitgrid.net>
|
||||
* @copyright Copyright (c) 2018 Julius Härtl <jus@bitgrid.net>
|
||||
*
|
||||
* @author Julius Härtl <jus@bitgrid.net>
|
||||
*
|
||||
@@ -25,18 +25,29 @@ import app from '../app/App.js';
|
||||
/* global OC oc_requesttoken */
|
||||
export default class FileService {
|
||||
|
||||
constructor ($http, FileUploader, CardService) {
|
||||
constructor (FileUploader, CardService, $rootScope, $filter) {
|
||||
this.$filter = $filter;
|
||||
this.uploader = new FileUploader();
|
||||
this.cardservice = CardService;
|
||||
this.uploader.onAfterAddingFile = this.onAfterAddingFile.bind(this);
|
||||
this.uploader.onSuccessItem = this.onSuccessItem.bind(this);
|
||||
this.uploader.onErrorItem = this.onErrorItem.bind(this);
|
||||
this.uploader.onCancelItem = this.onCancelItem.bind(this);
|
||||
|
||||
this.maxUploadSize = $rootScope.config.maxUploadSize;
|
||||
this.progress = [];
|
||||
this.status = null;
|
||||
}
|
||||
|
||||
reset () {
|
||||
this.status = null;
|
||||
}
|
||||
|
||||
runUpload (fileItem, attachmentId) {
|
||||
fileItem.url = OC.generateUrl('/apps/deck/cards/' + fileItem.cardId + '/attachment');
|
||||
this.status = null;
|
||||
fileItem.url = OC.generateUrl('/apps/deck/cards/' + fileItem.cardId + '/attachment?type=deck_file');
|
||||
if (typeof attachmentId !== 'undefined') {
|
||||
fileItem.url = OC.generateUrl('/apps/deck/cards/' + fileItem.cardId + '/attachment/' + attachmentId);
|
||||
fileItem.url = OC.generateUrl('/apps/deck/cards/' + fileItem.cardId + '/attachment/' + attachmentId + '?type=deck_file');
|
||||
} else {
|
||||
fileItem.formData = [
|
||||
{
|
||||
@@ -51,8 +62,17 @@ export default class FileService {
|
||||
}
|
||||
|
||||
onAfterAddingFile (fileItem) {
|
||||
if (this.maxUploadSize > 0 && fileItem.file.size > this.maxUploadSize) {
|
||||
this.status = {
|
||||
error: t('deck', `Failed to upload {name}`, {name: fileItem.file.name}),
|
||||
message: t('deck', 'Maximum file size of {size} exceeded', {size: this.$filter('bytes')(this.maxUploadSize)})
|
||||
};
|
||||
return;
|
||||
}
|
||||
|
||||
// Fetch card details before trying to upload so we can detect filename collisions properly
|
||||
let self = this;
|
||||
this.progress.push(fileItem);
|
||||
this.cardservice.fetchOne(fileItem.cardId).then(function (data) {
|
||||
let attachments = self.cardservice.get(fileItem.cardId).attachments;
|
||||
let existingFile = attachments.find((attachment) => {
|
||||
@@ -81,7 +101,7 @@ export default class FileService {
|
||||
self.runUpload(fileItem);
|
||||
}
|
||||
}, function (error) {
|
||||
|
||||
this.progress = this.progress.filter((item) => (fileItem.file.name !== item.file.name));
|
||||
});
|
||||
|
||||
}
|
||||
@@ -93,8 +113,25 @@ export default class FileService {
|
||||
attachments = attachments.splice(index, 1);
|
||||
}
|
||||
this.cardservice.get(item.cardId).attachments.push(response);
|
||||
this.progress = this.progress.filter((fileItem) => (fileItem.file.name !== item.file.name));
|
||||
}
|
||||
|
||||
onErrorItem (item, response) {
|
||||
this.progress = this.progress.filter((fileItem) => (fileItem.file.name !== item.file.name));
|
||||
this.status = {
|
||||
error: t('deck', `Failed to upload:`) + ' ' + item.file.name,
|
||||
message: response.message
|
||||
};
|
||||
}
|
||||
|
||||
onCancelItem (item) {
|
||||
this.progress = this.progress.filter((fileItem) => (fileItem.file.name !== item.file.name));
|
||||
}
|
||||
|
||||
getProgressItemsForCard (cardId) {
|
||||
return this.progress.filter((fileItem) => (fileItem.cardId === cardId));
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
app.service('FileService', FileService);
|
||||
app.service('FileService', FileService);
|
||||
|
||||
@@ -2,12 +2,14 @@ const path = require('path');
|
||||
const webpack = require('webpack');
|
||||
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
|
||||
|
||||
require('babel-polyfill');
|
||||
|
||||
module.exports = {
|
||||
node: {
|
||||
fs: 'empty',
|
||||
},
|
||||
entry: {
|
||||
deck: './init.js',
|
||||
deck: ['babel-polyfill', './init.js'],
|
||||
},
|
||||
output: {
|
||||
filename: '[name].js',
|
||||
@@ -22,6 +24,9 @@ module.exports = {
|
||||
test: /\.js$/,
|
||||
exclude: /node_modules/,
|
||||
loader: 'babel-loader',
|
||||
query: {
|
||||
presets: ['env'],
|
||||
}
|
||||
},
|
||||
{
|
||||
test: /\.css$/,
|
||||
|
||||
24
l10n/bg.js
24
l10n/bg.js
@@ -1,24 +0,0 @@
|
||||
OC.L10N.register(
|
||||
"deck",
|
||||
{
|
||||
"Delete" : "Изтриване",
|
||||
"Finished" : "Завършен",
|
||||
"To review" : "За преглед",
|
||||
"Action needed" : "Необходимо е действие",
|
||||
"Later" : "По-късно",
|
||||
"Archive" : "Архивиране",
|
||||
"Unarchive" : "Разархивиране",
|
||||
"Sharing" : "Споделяне",
|
||||
"Select users or groups to share with" : "Избор на потребители и групи за споделяне",
|
||||
"No matching user or group found." : "Не са намерени съвпадащи потребители или групи",
|
||||
"Share" : "Сподели",
|
||||
"Edit" : "Редакция",
|
||||
"Manage" : "Управление",
|
||||
"Discard share" : "Отхвърляне на споделяне",
|
||||
"Members" : "Членове",
|
||||
"Modified:" : "Променен на:",
|
||||
"Created:" : "Създаден на:",
|
||||
"by" : "от",
|
||||
"Saved" : "Запазено"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
22
l10n/bg.json
22
l10n/bg.json
@@ -1,22 +0,0 @@
|
||||
{ "translations": {
|
||||
"Delete" : "Изтриване",
|
||||
"Finished" : "Завършен",
|
||||
"To review" : "За преглед",
|
||||
"Action needed" : "Необходимо е действие",
|
||||
"Later" : "По-късно",
|
||||
"Archive" : "Архивиране",
|
||||
"Unarchive" : "Разархивиране",
|
||||
"Sharing" : "Споделяне",
|
||||
"Select users or groups to share with" : "Избор на потребители и групи за споделяне",
|
||||
"No matching user or group found." : "Не са намерени съвпадащи потребители или групи",
|
||||
"Share" : "Сподели",
|
||||
"Edit" : "Редакция",
|
||||
"Manage" : "Управление",
|
||||
"Discard share" : "Отхвърляне на споделяне",
|
||||
"Members" : "Членове",
|
||||
"Modified:" : "Променен на:",
|
||||
"Created:" : "Създаден на:",
|
||||
"by" : "от",
|
||||
"Saved" : "Запазено"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
@@ -37,15 +37,15 @@ OC.L10N.register(
|
||||
"Delete board" : "Eliminat",
|
||||
"Create new board" : "Crear nova",
|
||||
"New board title" : "Nou títol",
|
||||
"by" : "per",
|
||||
"Modified:" : "Modificat:",
|
||||
"Created:" : "Creat:",
|
||||
"by" : "per",
|
||||
"Due date" : "Per la data",
|
||||
"Click to set" : "Feu clic per configurar",
|
||||
"Remove due date" : "Elimina la data de venciment",
|
||||
"Description" : "Descripció",
|
||||
"Formatting help" : "Format d'ajuda",
|
||||
"Saved" : "Desat",
|
||||
"Formatting help" : "Format d'ajuda",
|
||||
"Add a card description…" : "Afegeix una descripció de la targeta ...",
|
||||
"Shared boards" : "Taulers compartits",
|
||||
"Move board to archive" : "Mou la placa a l'arxiu",
|
||||
|
||||
@@ -35,15 +35,15 @@
|
||||
"Delete board" : "Eliminat",
|
||||
"Create new board" : "Crear nova",
|
||||
"New board title" : "Nou títol",
|
||||
"by" : "per",
|
||||
"Modified:" : "Modificat:",
|
||||
"Created:" : "Creat:",
|
||||
"by" : "per",
|
||||
"Due date" : "Per la data",
|
||||
"Click to set" : "Feu clic per configurar",
|
||||
"Remove due date" : "Elimina la data de venciment",
|
||||
"Description" : "Descripció",
|
||||
"Formatting help" : "Format d'ajuda",
|
||||
"Saved" : "Desat",
|
||||
"Formatting help" : "Format d'ajuda",
|
||||
"Add a card description…" : "Afegeix una descripció de la targeta ...",
|
||||
"Shared boards" : "Taulers compartits",
|
||||
"Move board to archive" : "Mou la placa a l'arxiu",
|
||||
|
||||
12
l10n/cs.js
12
l10n/cs.js
@@ -14,6 +14,11 @@ OC.L10N.register(
|
||||
"To review" : "K revizi",
|
||||
"Action needed" : "Nutná akce",
|
||||
"Later" : "Později",
|
||||
"The file was uploaded" : "Soubor byl nahrán",
|
||||
"No file was uploaded" : "Nebyl nahrán žádný soubor",
|
||||
"Missing a temporary folder" : "Chybí adresář pro dočasné soubory",
|
||||
"Could not write file to disk" : "Nedaří se zapsat soubor do úložiště",
|
||||
"A PHP extension stopped the file upload" : "Rozšíření PHP zastavilo nahrávání souboru.",
|
||||
"Deck" : "Balík",
|
||||
"Add a new stack" : "Přidat nový zásobník",
|
||||
"Submit" : "Odeslat",
|
||||
@@ -52,9 +57,9 @@ OC.L10N.register(
|
||||
"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 ovou desku",
|
||||
"New board title" : "Nadpis nové desky",
|
||||
"by" : "od",
|
||||
"Modified:" : "Upraveno:",
|
||||
"Created:" : "Vytvořeno:",
|
||||
"by" : "od",
|
||||
"Choose a tag" : "Vyberte štítek",
|
||||
"Add a tag" : "Přidat štítek",
|
||||
"Select tags" : "Výběr štítků",
|
||||
@@ -65,9 +70,12 @@ OC.L10N.register(
|
||||
"Click to set" : "Klikněte pro výběr",
|
||||
"Remove due date" : "Odstranit termín",
|
||||
"Description" : "Popis",
|
||||
"Formatting help" : "Nápověda k formátování",
|
||||
"Attachments" : "Přílohy",
|
||||
"Saved" : "Uloženo",
|
||||
"Unsaved changes" : "Neuložené změny",
|
||||
"Formatting help" : "Nápověda k formátování",
|
||||
"Upload attachment" : "Nahrát přílohu",
|
||||
"Insert attachment" : "Vložit přílohu",
|
||||
"Add a card description…" : "Přidat popis karty...",
|
||||
"Shared boards" : "Sdílené desky",
|
||||
"View more" : "Ukázat více",
|
||||
|
||||
12
l10n/cs.json
12
l10n/cs.json
@@ -12,6 +12,11 @@
|
||||
"To review" : "K revizi",
|
||||
"Action needed" : "Nutná akce",
|
||||
"Later" : "Později",
|
||||
"The file was uploaded" : "Soubor byl nahrán",
|
||||
"No file was uploaded" : "Nebyl nahrán žádný soubor",
|
||||
"Missing a temporary folder" : "Chybí adresář pro dočasné soubory",
|
||||
"Could not write file to disk" : "Nedaří se zapsat soubor do úložiště",
|
||||
"A PHP extension stopped the file upload" : "Rozšíření PHP zastavilo nahrávání souboru.",
|
||||
"Deck" : "Balík",
|
||||
"Add a new stack" : "Přidat nový zásobník",
|
||||
"Submit" : "Odeslat",
|
||||
@@ -50,9 +55,9 @@
|
||||
"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 ovou desku",
|
||||
"New board title" : "Nadpis nové desky",
|
||||
"by" : "od",
|
||||
"Modified:" : "Upraveno:",
|
||||
"Created:" : "Vytvořeno:",
|
||||
"by" : "od",
|
||||
"Choose a tag" : "Vyberte štítek",
|
||||
"Add a tag" : "Přidat štítek",
|
||||
"Select tags" : "Výběr štítků",
|
||||
@@ -63,9 +68,12 @@
|
||||
"Click to set" : "Klikněte pro výběr",
|
||||
"Remove due date" : "Odstranit termín",
|
||||
"Description" : "Popis",
|
||||
"Formatting help" : "Nápověda k formátování",
|
||||
"Attachments" : "Přílohy",
|
||||
"Saved" : "Uloženo",
|
||||
"Unsaved changes" : "Neuložené změny",
|
||||
"Formatting help" : "Nápověda k formátování",
|
||||
"Upload attachment" : "Nahrát přílohu",
|
||||
"Insert attachment" : "Vložit přílohu",
|
||||
"Add a card description…" : "Přidat popis karty...",
|
||||
"Shared boards" : "Sdílené desky",
|
||||
"View more" : "Ukázat více",
|
||||
|
||||
@@ -54,9 +54,9 @@ 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",
|
||||
"by" : "af",
|
||||
"Modified:" : "Ændret:",
|
||||
"Created:" : "Oprettet:",
|
||||
"by" : "af",
|
||||
"Choose a tag" : "Vælg et tag",
|
||||
"Add a tag" : "Tilføj et tag",
|
||||
"Select tags" : "Vælg tags",
|
||||
@@ -67,9 +67,9 @@ OC.L10N.register(
|
||||
"Click to set" : "Klik for at sætte",
|
||||
"Remove due date" : "Fjern forfaldsdato",
|
||||
"Description" : "Beskrivelse",
|
||||
"Formatting help" : "Hjælp til formatering",
|
||||
"Saved" : "Gemt",
|
||||
"Unsaved changes" : "Ikke gemte ændringer",
|
||||
"Formatting help" : "Hjælp til formatering",
|
||||
"Add a card description…" : "Tilføj en beskrivelse...",
|
||||
"Shared boards" : "Delte lister",
|
||||
"View more" : "Vis mere",
|
||||
|
||||
@@ -52,9 +52,9 @@
|
||||
"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",
|
||||
"by" : "af",
|
||||
"Modified:" : "Ændret:",
|
||||
"Created:" : "Oprettet:",
|
||||
"by" : "af",
|
||||
"Choose a tag" : "Vælg et tag",
|
||||
"Add a tag" : "Tilføj et tag",
|
||||
"Select tags" : "Vælg tags",
|
||||
@@ -65,9 +65,9 @@
|
||||
"Click to set" : "Klik for at sætte",
|
||||
"Remove due date" : "Fjern forfaldsdato",
|
||||
"Description" : "Beskrivelse",
|
||||
"Formatting help" : "Hjælp til formatering",
|
||||
"Saved" : "Gemt",
|
||||
"Unsaved changes" : "Ikke gemte ændringer",
|
||||
"Formatting help" : "Hjælp til formatering",
|
||||
"Add a card description…" : "Tilføj en beskrivelse...",
|
||||
"Shared boards" : "Delte lister",
|
||||
"View more" : "Vis mere",
|
||||
|
||||
27
l10n/de.js
27
l10n/de.js
@@ -6,16 +6,28 @@ OC.L10N.register(
|
||||
"Remove user from card" : "Benutzer von Karte entfernen",
|
||||
"Hours" : "Stunden",
|
||||
"Minutes" : "Minuten",
|
||||
"Maximum file size of {size} exceeded" : "Maximale Dateigröße von {size} überschritten",
|
||||
"Are you sure you want to delete the stack with all of its data?" : "Möchtest du diesen Stapel mit allen Daten wirklich löschen?",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "Die Karte \"%s\" auf \"%s\" ist überfällig.",
|
||||
"The board \"%s\" has been shared with you by %s." : "Das Board \"%s\" wurde von %s mit Dir geteilt.",
|
||||
"{user} has shared the board %s with you." : "{user} hat das Board %s mit Dir geteilt.",
|
||||
"No data was provided to create an attachment." : "Es wurde keine Daten zum Erstellen eines Anhangs bereitgestellt.",
|
||||
"Finished" : "Abgeschlossen",
|
||||
"To review" : "Zu überprüfen",
|
||||
"Action needed" : "Handlung erforderlich",
|
||||
"Later" : "Später",
|
||||
"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 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",
|
||||
"Deck" : "Deck",
|
||||
"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- 🚀 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- 🚀 Organisiere Dein Projekt",
|
||||
"Add a new stack" : "Stapel hinzufügen",
|
||||
"Submit" : "Übermitteln",
|
||||
"Show archived cards" : "Archivierte Karten anzeigen",
|
||||
@@ -23,6 +35,7 @@ OC.L10N.register(
|
||||
"Board details" : "Board-Details",
|
||||
"All Boards" : "Alle Boards",
|
||||
"Archived boards" : "Archivierte Boards",
|
||||
"Drop your files here to upload it to the card" : "Lege Deine Dateien hier ab, um sie auf die Karte hochzuladen",
|
||||
"Archive" : "Archivieren",
|
||||
"Unarchive" : "Dearchivieren",
|
||||
"Enter a card title" : "Kartentitel eingeben",
|
||||
@@ -53,22 +66,30 @@ OC.L10N.register(
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Löschen des Boards rückgängig machen - Andernfalls wird das Board beim nächsten CronJob-Lauf gelöscht.",
|
||||
"Create new board" : "Neues Board erstellen",
|
||||
"New board title" : "Neuer Board-Titel",
|
||||
"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 CronJob-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",
|
||||
"Modified:" : "Geändert:",
|
||||
"Created:" : "Erstellt:",
|
||||
"by" : "von",
|
||||
"Choose a tag" : "Schlagwort auswählen",
|
||||
"Add a tag" : "Schlagwort hinzufügen",
|
||||
"Select tags" : "Schlagworte auswählen",
|
||||
"Assign users" : "Nutzer zuweisen",
|
||||
"Choose a user to assign" : "Wähle einen Benutzer zum Zuweisen",
|
||||
"Choose a user to assign" : "Wähle einen Benutzer für die Zuweisung aus",
|
||||
"Assign this card to a user" : "Diese Karte einem Benutzer zuweisen",
|
||||
"Due date" : "Fälligkeitsdatum",
|
||||
"Click to set" : "Klicken zum Übernehmen",
|
||||
"Remove due date" : "Ablaufdatum löschen",
|
||||
"Description" : "Beschreibung",
|
||||
"Formatting help" : "Formatierungshilfe",
|
||||
"Attachments" : "Anhänge",
|
||||
"Saved" : "Gespeichert",
|
||||
"Unsaved changes" : "Ungesicherte Änderungen",
|
||||
"Formatting help" : "Formatierungshilfe",
|
||||
"Upload attachment" : "Anhang hochladen",
|
||||
"Insert attachment" : "Anhang einfügen",
|
||||
"Add a card description…" : "Eine Kartenbeschreibung hinzufügen…",
|
||||
"Shared boards" : "Geteilte Boards",
|
||||
"View more" : "Mehr anzeigen",
|
||||
|
||||
27
l10n/de.json
27
l10n/de.json
@@ -4,16 +4,28 @@
|
||||
"Remove user from card" : "Benutzer von Karte entfernen",
|
||||
"Hours" : "Stunden",
|
||||
"Minutes" : "Minuten",
|
||||
"Maximum file size of {size} exceeded" : "Maximale Dateigröße von {size} überschritten",
|
||||
"Are you sure you want to delete the stack with all of its data?" : "Möchtest du diesen Stapel mit allen Daten wirklich löschen?",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "Die Karte \"%s\" auf \"%s\" ist überfällig.",
|
||||
"The board \"%s\" has been shared with you by %s." : "Das Board \"%s\" wurde von %s mit Dir geteilt.",
|
||||
"{user} has shared the board %s with you." : "{user} hat das Board %s mit Dir geteilt.",
|
||||
"No data was provided to create an attachment." : "Es wurde keine Daten zum Erstellen eines Anhangs bereitgestellt.",
|
||||
"Finished" : "Abgeschlossen",
|
||||
"To review" : "Zu überprüfen",
|
||||
"Action needed" : "Handlung erforderlich",
|
||||
"Later" : "Später",
|
||||
"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 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",
|
||||
"Deck" : "Deck",
|
||||
"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- 🚀 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- 🚀 Organisiere Dein Projekt",
|
||||
"Add a new stack" : "Stapel hinzufügen",
|
||||
"Submit" : "Übermitteln",
|
||||
"Show archived cards" : "Archivierte Karten anzeigen",
|
||||
@@ -21,6 +33,7 @@
|
||||
"Board details" : "Board-Details",
|
||||
"All Boards" : "Alle Boards",
|
||||
"Archived boards" : "Archivierte Boards",
|
||||
"Drop your files here to upload it to the card" : "Lege Deine Dateien hier ab, um sie auf die Karte hochzuladen",
|
||||
"Archive" : "Archivieren",
|
||||
"Unarchive" : "Dearchivieren",
|
||||
"Enter a card title" : "Kartentitel eingeben",
|
||||
@@ -51,22 +64,30 @@
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Löschen des Boards rückgängig machen - Andernfalls wird das Board beim nächsten CronJob-Lauf gelöscht.",
|
||||
"Create new board" : "Neues Board erstellen",
|
||||
"New board title" : "Neuer Board-Titel",
|
||||
"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 CronJob-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",
|
||||
"Modified:" : "Geändert:",
|
||||
"Created:" : "Erstellt:",
|
||||
"by" : "von",
|
||||
"Choose a tag" : "Schlagwort auswählen",
|
||||
"Add a tag" : "Schlagwort hinzufügen",
|
||||
"Select tags" : "Schlagworte auswählen",
|
||||
"Assign users" : "Nutzer zuweisen",
|
||||
"Choose a user to assign" : "Wähle einen Benutzer zum Zuweisen",
|
||||
"Choose a user to assign" : "Wähle einen Benutzer für die Zuweisung aus",
|
||||
"Assign this card to a user" : "Diese Karte einem Benutzer zuweisen",
|
||||
"Due date" : "Fälligkeitsdatum",
|
||||
"Click to set" : "Klicken zum Übernehmen",
|
||||
"Remove due date" : "Ablaufdatum löschen",
|
||||
"Description" : "Beschreibung",
|
||||
"Formatting help" : "Formatierungshilfe",
|
||||
"Attachments" : "Anhänge",
|
||||
"Saved" : "Gespeichert",
|
||||
"Unsaved changes" : "Ungesicherte Änderungen",
|
||||
"Formatting help" : "Formatierungshilfe",
|
||||
"Upload attachment" : "Anhang hochladen",
|
||||
"Insert attachment" : "Anhang einfügen",
|
||||
"Add a card description…" : "Eine Kartenbeschreibung hinzufügen…",
|
||||
"Shared boards" : "Geteilte Boards",
|
||||
"View more" : "Mehr anzeigen",
|
||||
|
||||
@@ -6,16 +6,28 @@ OC.L10N.register(
|
||||
"Remove user from card" : "Benutzer von Karte entfernen",
|
||||
"Hours" : "Stunden",
|
||||
"Minutes" : "Minuten",
|
||||
"Maximum file size of {size} exceeded" : "Maximale Dateigröße von {size} überschritten",
|
||||
"Are you sure you want to delete the stack with all of its data?" : "Möchten Sie diesen Stapel mit allen Daten wirklich löschen?",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "Die Karte \"%s\" auf \"%s\" ist überfällig.",
|
||||
"The board \"%s\" has been shared with you by %s." : "Das Board \"%s\" wurde von %s mit Ihnen geteilt.",
|
||||
"{user} has shared the board %s with you." : "{user} hat das Board %s mit Ihnen geteilt.",
|
||||
"No data was provided to create an attachment." : "Es wurde keine Daten zum Erstellen eines Anhangs bereitgestellt.",
|
||||
"Finished" : "Abgeschlossen",
|
||||
"To review" : "Zu überprüfen",
|
||||
"Action needed" : "Handlung erforderlich",
|
||||
"Later" : "Später",
|
||||
"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 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",
|
||||
"Deck" : "Deck",
|
||||
"A kanban style project and personal management tool for Nextcloud" : "Ein Kanban Werzeug 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- 🚀 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- 🔖 Vergabe von Labels für noch bessere Organisation\n- 👥 Teilen Sie mit Ihrem Team, Ihren Freunden oder Ihrer Familie\n- 🚀 Organisieren Sie Ihr Projekt",
|
||||
"Add a new stack" : "Neuen Stapel hinzufügen",
|
||||
"Submit" : "Übermitteln",
|
||||
"Show archived cards" : "Archivierte Karten anzeigen",
|
||||
@@ -23,6 +35,7 @@ OC.L10N.register(
|
||||
"Board details" : "Board-Details",
|
||||
"All Boards" : "Alle Boards",
|
||||
"Archived boards" : "Archivierte Boards",
|
||||
"Drop your files here to upload it to the card" : "Legen Sie Ihre Dateien hier ab, um sie auf die Karte hochzuladen",
|
||||
"Archive" : "Archivieren",
|
||||
"Unarchive" : "Dearchivieren",
|
||||
"Enter a card title" : "Kartentitel eingeben",
|
||||
@@ -53,22 +66,30 @@ OC.L10N.register(
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Löschen des Boards rückgängig machen - Andernfalls wird das Board beim nächsten CronJob-Lauf gelöscht.",
|
||||
"Create new board" : "Neues Board erstellen",
|
||||
"New board title" : "Neuer Board-Titel",
|
||||
"Select an attachment" : "Wählen Sie einen Anhang",
|
||||
"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 CronJob-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",
|
||||
"Modified:" : "Geändert:",
|
||||
"Created:" : "Erstellt:",
|
||||
"by" : "von",
|
||||
"Choose a tag" : "Schlagwort auswählen",
|
||||
"Add a tag" : "Schlagwort hinzufügen",
|
||||
"Select tags" : "Schlagworte auswählen",
|
||||
"Assign users" : "Benutzer zuordnen",
|
||||
"Choose a user to assign" : "Wählen Sie einen Benutzer zum Zuweisen",
|
||||
"Choose a user to assign" : "Wähle einen Benutzer für die Zuweisung aus",
|
||||
"Assign this card to a user" : "Diese Karte einem Benutzer zuordnen",
|
||||
"Due date" : "Zieltermin",
|
||||
"Click to set" : "Setzen",
|
||||
"Remove due date" : "Zieltermin entfernen",
|
||||
"Description" : "Beschreibung",
|
||||
"Formatting help" : "Formatierungshilfe",
|
||||
"Attachments" : "Anhänge",
|
||||
"Saved" : "Gespeichert",
|
||||
"Unsaved changes" : "Ungesicherte Änderungen",
|
||||
"Formatting help" : "Formatierungshilfe",
|
||||
"Upload attachment" : "Anhang hochladen",
|
||||
"Insert attachment" : "Anhang einfügen",
|
||||
"Add a card description…" : "Beschreibung hinzufügen…",
|
||||
"Shared boards" : "Geteilte Boards",
|
||||
"View more" : "Mehr anzeigen",
|
||||
|
||||
@@ -4,16 +4,28 @@
|
||||
"Remove user from card" : "Benutzer von Karte entfernen",
|
||||
"Hours" : "Stunden",
|
||||
"Minutes" : "Minuten",
|
||||
"Maximum file size of {size} exceeded" : "Maximale Dateigröße von {size} überschritten",
|
||||
"Are you sure you want to delete the stack with all of its data?" : "Möchten Sie diesen Stapel mit allen Daten wirklich löschen?",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "Die Karte \"%s\" auf \"%s\" ist überfällig.",
|
||||
"The board \"%s\" has been shared with you by %s." : "Das Board \"%s\" wurde von %s mit Ihnen geteilt.",
|
||||
"{user} has shared the board %s with you." : "{user} hat das Board %s mit Ihnen geteilt.",
|
||||
"No data was provided to create an attachment." : "Es wurde keine Daten zum Erstellen eines Anhangs bereitgestellt.",
|
||||
"Finished" : "Abgeschlossen",
|
||||
"To review" : "Zu überprüfen",
|
||||
"Action needed" : "Handlung erforderlich",
|
||||
"Later" : "Später",
|
||||
"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 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",
|
||||
"Deck" : "Deck",
|
||||
"A kanban style project and personal management tool for Nextcloud" : "Ein Kanban Werzeug 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- 🚀 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- 🔖 Vergabe von Labels für noch bessere Organisation\n- 👥 Teilen Sie mit Ihrem Team, Ihren Freunden oder Ihrer Familie\n- 🚀 Organisieren Sie Ihr Projekt",
|
||||
"Add a new stack" : "Neuen Stapel hinzufügen",
|
||||
"Submit" : "Übermitteln",
|
||||
"Show archived cards" : "Archivierte Karten anzeigen",
|
||||
@@ -21,6 +33,7 @@
|
||||
"Board details" : "Board-Details",
|
||||
"All Boards" : "Alle Boards",
|
||||
"Archived boards" : "Archivierte Boards",
|
||||
"Drop your files here to upload it to the card" : "Legen Sie Ihre Dateien hier ab, um sie auf die Karte hochzuladen",
|
||||
"Archive" : "Archivieren",
|
||||
"Unarchive" : "Dearchivieren",
|
||||
"Enter a card title" : "Kartentitel eingeben",
|
||||
@@ -51,22 +64,30 @@
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Löschen des Boards rückgängig machen - Andernfalls wird das Board beim nächsten CronJob-Lauf gelöscht.",
|
||||
"Create new board" : "Neues Board erstellen",
|
||||
"New board title" : "Neuer Board-Titel",
|
||||
"Select an attachment" : "Wählen Sie einen Anhang",
|
||||
"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 CronJob-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",
|
||||
"Modified:" : "Geändert:",
|
||||
"Created:" : "Erstellt:",
|
||||
"by" : "von",
|
||||
"Choose a tag" : "Schlagwort auswählen",
|
||||
"Add a tag" : "Schlagwort hinzufügen",
|
||||
"Select tags" : "Schlagworte auswählen",
|
||||
"Assign users" : "Benutzer zuordnen",
|
||||
"Choose a user to assign" : "Wählen Sie einen Benutzer zum Zuweisen",
|
||||
"Choose a user to assign" : "Wähle einen Benutzer für die Zuweisung aus",
|
||||
"Assign this card to a user" : "Diese Karte einem Benutzer zuordnen",
|
||||
"Due date" : "Zieltermin",
|
||||
"Click to set" : "Setzen",
|
||||
"Remove due date" : "Zieltermin entfernen",
|
||||
"Description" : "Beschreibung",
|
||||
"Formatting help" : "Formatierungshilfe",
|
||||
"Attachments" : "Anhänge",
|
||||
"Saved" : "Gespeichert",
|
||||
"Unsaved changes" : "Ungesicherte Änderungen",
|
||||
"Formatting help" : "Formatierungshilfe",
|
||||
"Upload attachment" : "Anhang hochladen",
|
||||
"Insert attachment" : "Anhang einfügen",
|
||||
"Add a card description…" : "Beschreibung hinzufügen…",
|
||||
"Shared boards" : "Geteilte Boards",
|
||||
"View more" : "Mehr anzeigen",
|
||||
|
||||
@@ -45,15 +45,15 @@ OC.L10N.register(
|
||||
"Delete board" : "Διαγραφή πίνακα",
|
||||
"Create new board" : "Δημιουργία νέου πίνακα",
|
||||
"New board title" : "Νέος τίτλος πίνακα",
|
||||
"by" : "από",
|
||||
"Modified:" : "Τροποποιήθηκε:",
|
||||
"Created:" : "Δημιουργήθηκε:",
|
||||
"by" : "από",
|
||||
"Due date" : "Ημερομηνία λήξης",
|
||||
"Click to set" : "Κλικ για να ορίσετε",
|
||||
"Remove due date" : "Αφαίρεση ημερομηνίας λήξης",
|
||||
"Description" : "Περιγραφή",
|
||||
"Formatting help" : "Βοήθεια μορφοποίησης",
|
||||
"Saved" : "Αποθηκεύτηκε",
|
||||
"Formatting help" : "Βοήθεια μορφοποίησης",
|
||||
"Add a card description…" : "Προσθήκη περιγραφής κάρτας...",
|
||||
"Shared boards" : "Διαμοιρασμένοι πίνακες",
|
||||
"View more" : "Προβολή περισσοτέρων",
|
||||
|
||||
@@ -43,15 +43,15 @@
|
||||
"Delete board" : "Διαγραφή πίνακα",
|
||||
"Create new board" : "Δημιουργία νέου πίνακα",
|
||||
"New board title" : "Νέος τίτλος πίνακα",
|
||||
"by" : "από",
|
||||
"Modified:" : "Τροποποιήθηκε:",
|
||||
"Created:" : "Δημιουργήθηκε:",
|
||||
"by" : "από",
|
||||
"Due date" : "Ημερομηνία λήξης",
|
||||
"Click to set" : "Κλικ για να ορίσετε",
|
||||
"Remove due date" : "Αφαίρεση ημερομηνίας λήξης",
|
||||
"Description" : "Περιγραφή",
|
||||
"Formatting help" : "Βοήθεια μορφοποίησης",
|
||||
"Saved" : "Αποθηκεύτηκε",
|
||||
"Formatting help" : "Βοήθεια μορφοποίησης",
|
||||
"Add a card description…" : "Προσθήκη περιγραφής κάρτας...",
|
||||
"Shared boards" : "Διαμοιρασμένοι πίνακες",
|
||||
"View more" : "Προβολή περισσοτέρων",
|
||||
|
||||
@@ -54,9 +54,9 @@ 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",
|
||||
"by" : "by",
|
||||
"Modified:" : "Modified:",
|
||||
"Created:" : "Created:",
|
||||
"by" : "by",
|
||||
"Choose a tag" : "Choose a tag",
|
||||
"Add a tag" : "Add a tag",
|
||||
"Select tags" : "Select tags",
|
||||
@@ -67,9 +67,9 @@ OC.L10N.register(
|
||||
"Click to set" : "Click to set",
|
||||
"Remove due date" : "Remove due date",
|
||||
"Description" : "Description",
|
||||
"Formatting help" : "Formatting help",
|
||||
"Saved" : "Saved",
|
||||
"Unsaved changes" : "Unsaved changes",
|
||||
"Formatting help" : "Formatting help",
|
||||
"Add a card description…" : "Add a card description…",
|
||||
"Shared boards" : "Shared boards",
|
||||
"View more" : "View more",
|
||||
|
||||
@@ -52,9 +52,9 @@
|
||||
"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",
|
||||
"by" : "by",
|
||||
"Modified:" : "Modified:",
|
||||
"Created:" : "Created:",
|
||||
"by" : "by",
|
||||
"Choose a tag" : "Choose a tag",
|
||||
"Add a tag" : "Add a tag",
|
||||
"Select tags" : "Select tags",
|
||||
@@ -65,9 +65,9 @@
|
||||
"Click to set" : "Click to set",
|
||||
"Remove due date" : "Remove due date",
|
||||
"Description" : "Description",
|
||||
"Formatting help" : "Formatting help",
|
||||
"Saved" : "Saved",
|
||||
"Unsaved changes" : "Unsaved changes",
|
||||
"Formatting help" : "Formatting help",
|
||||
"Add a card description…" : "Add a card description…",
|
||||
"Shared boards" : "Shared boards",
|
||||
"View more" : "View more",
|
||||
|
||||
24
l10n/es.js
24
l10n/es.js
@@ -6,14 +6,25 @@ OC.L10N.register(
|
||||
"Remove user from card" : "Eliminar usuario de la tarjeta",
|
||||
"Hours" : "Horas",
|
||||
"Minutes" : "Minutos",
|
||||
"Maximum file size of {size} exceeded" : "Tamaño máximo de archivo de {size} excedido",
|
||||
"Are you sure you want to delete the stack with all of its data?" : "¿Estás seguro de que quieres eliminar el mazo con todos sus datos?",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "La tarjeta \"%s\" en \"%s\" ha alcanzado su fecha límite.",
|
||||
"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.",
|
||||
"No data was provided to create an attachment." : "No se proporcionaron datos para crear un adjunto",
|
||||
"Finished" : "Finalizado",
|
||||
"To review" : "Para revisar",
|
||||
"Action needed" : "Acción necesaria",
|
||||
"Later" : "Después",
|
||||
"The file was uploaded" : "Se ha subido el archivo",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El archivo subido excede la directiva upload_max_filesize en php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo subido excede la directiva MAX_FILE-SIZE directive que se especificó en el formulario web",
|
||||
"The file was only partially uploaded" : "El archivo se ha subido solo parcialmente",
|
||||
"No file was uploaded" : "No se ha subido ningún archivo",
|
||||
"Missing a temporary folder" : "Falta una carpeta temporal",
|
||||
"Could not write file to disk" : "No se ha podido escribir el archivo al disco",
|
||||
"A PHP extension stopped the file upload" : "Una extensión de PHP ha detenido la subida del archivo",
|
||||
"No file uploaded or file size exceeds maximum of %s" : "No se ha subido ningún archivo, o el tamaño del archivo excede el máximo de %s",
|
||||
"Deck" : "Deck",
|
||||
"A kanban style project and personal management tool for Nextcloud" : "Una herramienta de manejo de proyectos y personal al estilo kanban para 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- 🚀 Get your project organized" : "Deckes una herramienta de organización al estilo kanban enfocada en la planificación personal y en la organización de proyectos para equipos, integrada en Nextcloud.\n\n\n- 📥 Añade tus tareas a tarjetas y ordénalas\n- 📄 Escribe notas adicionales en markdown\n- 🔖 Asigna etiquetas para una organización aún mejor\n- 👥 Comparte con tu equipo, amigos o familia\n- 🚀 Organiza tu proyecto",
|
||||
@@ -24,6 +35,7 @@ OC.L10N.register(
|
||||
"Board details" : "Detalles del tablero",
|
||||
"All Boards" : "Todos los tableros",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Drop your files here to upload it to the card" : "Arrastra tus archivos aquí para subirlos a la tarjeta",
|
||||
"Archive" : "Archivar",
|
||||
"Unarchive" : "Desarchivar",
|
||||
"Enter a card title" : "Introducir título de tarjeta",
|
||||
@@ -54,9 +66,14 @@ OC.L10N.register(
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Deshacer borrado del tablero. Si no, el tablero será eliminado durante la próxima ejecución del cronjob.",
|
||||
"Create new board" : "Crear nuevo tablero",
|
||||
"New board title" : "Nuevo título de tablero",
|
||||
"Select an attachment" : "Selecciona un adjunto",
|
||||
"Cancel upload" : "Cancelar la subida",
|
||||
"by" : "por",
|
||||
"Undo file deletion - Otherwise the file will be deleted during the next cronjob run." : "Deshacer eliminación del archivo. De otra forma el archivo se borrará durante la próxima ejecución del trabajo cron.",
|
||||
"Undo file deletion" : "Deshacer eliminación del archivo",
|
||||
"Insert the file into the description" : "Introduce el archivo en la descripción",
|
||||
"Modified:" : "Modificado: ",
|
||||
"Created:" : "Creado: ",
|
||||
"by" : "por",
|
||||
"Choose a tag" : "Escoge una etiqueta",
|
||||
"Add a tag" : "Añade una etiqueta",
|
||||
"Select tags" : "Selecciona etiquetas",
|
||||
@@ -67,9 +84,12 @@ OC.L10N.register(
|
||||
"Click to set" : "Pinchar para establecer",
|
||||
"Remove due date" : "Eliminar fecha límite",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Attachments" : "Adjuntos",
|
||||
"Saved" : "Guardado",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Upload attachment" : "Subir adjunto",
|
||||
"Insert attachment" : "Insertar adjunto",
|
||||
"Add a card description…" : "Añadir una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"View more" : "Ver más",
|
||||
|
||||
24
l10n/es.json
24
l10n/es.json
@@ -4,14 +4,25 @@
|
||||
"Remove user from card" : "Eliminar usuario de la tarjeta",
|
||||
"Hours" : "Horas",
|
||||
"Minutes" : "Minutos",
|
||||
"Maximum file size of {size} exceeded" : "Tamaño máximo de archivo de {size} excedido",
|
||||
"Are you sure you want to delete the stack with all of its data?" : "¿Estás seguro de que quieres eliminar el mazo con todos sus datos?",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "La tarjeta \"%s\" en \"%s\" ha alcanzado su fecha límite.",
|
||||
"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.",
|
||||
"No data was provided to create an attachment." : "No se proporcionaron datos para crear un adjunto",
|
||||
"Finished" : "Finalizado",
|
||||
"To review" : "Para revisar",
|
||||
"Action needed" : "Acción necesaria",
|
||||
"Later" : "Después",
|
||||
"The file was uploaded" : "Se ha subido el archivo",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "El archivo subido excede la directiva upload_max_filesize en php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "El archivo subido excede la directiva MAX_FILE-SIZE directive que se especificó en el formulario web",
|
||||
"The file was only partially uploaded" : "El archivo se ha subido solo parcialmente",
|
||||
"No file was uploaded" : "No se ha subido ningún archivo",
|
||||
"Missing a temporary folder" : "Falta una carpeta temporal",
|
||||
"Could not write file to disk" : "No se ha podido escribir el archivo al disco",
|
||||
"A PHP extension stopped the file upload" : "Una extensión de PHP ha detenido la subida del archivo",
|
||||
"No file uploaded or file size exceeds maximum of %s" : "No se ha subido ningún archivo, o el tamaño del archivo excede el máximo de %s",
|
||||
"Deck" : "Deck",
|
||||
"A kanban style project and personal management tool for Nextcloud" : "Una herramienta de manejo de proyectos y personal al estilo kanban para 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- 🚀 Get your project organized" : "Deckes una herramienta de organización al estilo kanban enfocada en la planificación personal y en la organización de proyectos para equipos, integrada en Nextcloud.\n\n\n- 📥 Añade tus tareas a tarjetas y ordénalas\n- 📄 Escribe notas adicionales en markdown\n- 🔖 Asigna etiquetas para una organización aún mejor\n- 👥 Comparte con tu equipo, amigos o familia\n- 🚀 Organiza tu proyecto",
|
||||
@@ -22,6 +33,7 @@
|
||||
"Board details" : "Detalles del tablero",
|
||||
"All Boards" : "Todos los tableros",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Drop your files here to upload it to the card" : "Arrastra tus archivos aquí para subirlos a la tarjeta",
|
||||
"Archive" : "Archivar",
|
||||
"Unarchive" : "Desarchivar",
|
||||
"Enter a card title" : "Introducir título de tarjeta",
|
||||
@@ -52,9 +64,14 @@
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Deshacer borrado del tablero. Si no, el tablero será eliminado durante la próxima ejecución del cronjob.",
|
||||
"Create new board" : "Crear nuevo tablero",
|
||||
"New board title" : "Nuevo título de tablero",
|
||||
"Select an attachment" : "Selecciona un adjunto",
|
||||
"Cancel upload" : "Cancelar la subida",
|
||||
"by" : "por",
|
||||
"Undo file deletion - Otherwise the file will be deleted during the next cronjob run." : "Deshacer eliminación del archivo. De otra forma el archivo se borrará durante la próxima ejecución del trabajo cron.",
|
||||
"Undo file deletion" : "Deshacer eliminación del archivo",
|
||||
"Insert the file into the description" : "Introduce el archivo en la descripción",
|
||||
"Modified:" : "Modificado: ",
|
||||
"Created:" : "Creado: ",
|
||||
"by" : "por",
|
||||
"Choose a tag" : "Escoge una etiqueta",
|
||||
"Add a tag" : "Añade una etiqueta",
|
||||
"Select tags" : "Selecciona etiquetas",
|
||||
@@ -65,9 +82,12 @@
|
||||
"Click to set" : "Pinchar para establecer",
|
||||
"Remove due date" : "Eliminar fecha límite",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Attachments" : "Adjuntos",
|
||||
"Saved" : "Guardado",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Upload attachment" : "Subir adjunto",
|
||||
"Insert attachment" : "Insertar adjunto",
|
||||
"Add a card description…" : "Añadir una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"View more" : "Ver más",
|
||||
|
||||
@@ -49,9 +49,9 @@ 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",
|
||||
"by" : "por",
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Creado:",
|
||||
"by" : "por",
|
||||
"Choose a tag" : "Elije una etiqueta",
|
||||
"Add a tag" : "Agrega una etiqueta",
|
||||
"Select tags" : "Selecciona las etiquetas",
|
||||
@@ -61,9 +61,9 @@ OC.L10N.register(
|
||||
"Click to set" : "Da click aquí para establecer",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Saved" : "Guardado",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"View more" : "Ver más",
|
||||
|
||||
@@ -47,9 +47,9 @@
|
||||
"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",
|
||||
"by" : "por",
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Creado:",
|
||||
"by" : "por",
|
||||
"Choose a tag" : "Elije una etiqueta",
|
||||
"Add a tag" : "Agrega una etiqueta",
|
||||
"Select tags" : "Selecciona las etiquetas",
|
||||
@@ -59,9 +59,9 @@
|
||||
"Click to set" : "Da click aquí para establecer",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Saved" : "Guardado",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"View more" : "Ver más",
|
||||
|
||||
@@ -24,12 +24,12 @@ OC.L10N.register(
|
||||
"Members" : "Miembros",
|
||||
"Create new board" : "Crear un nuevo tablero",
|
||||
"New board title" : "Nuevo título de tablero",
|
||||
"by" : "por",
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Creado:",
|
||||
"by" : "por",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Saved" : "Guardado",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Create a new board" : "Crear nuevo tablero"
|
||||
},
|
||||
|
||||
@@ -22,12 +22,12 @@
|
||||
"Members" : "Miembros",
|
||||
"Create new board" : "Crear un nuevo tablero",
|
||||
"New board title" : "Nuevo título de tablero",
|
||||
"by" : "por",
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Creado:",
|
||||
"by" : "por",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Saved" : "Guardado",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Create a new board" : "Crear nuevo tablero"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
|
||||
@@ -52,9 +52,9 @@ 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",
|
||||
"by" : "por",
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Creado:",
|
||||
"by" : "por",
|
||||
"Choose a tag" : "Elije una etiqueta",
|
||||
"Add a tag" : "Agrega una etiqueta",
|
||||
"Select tags" : "Selecciona las etiquetas",
|
||||
@@ -65,9 +65,9 @@ OC.L10N.register(
|
||||
"Click to set" : "Da click aquí para establecer",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Saved" : "Guardado",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"View more" : "Ver más",
|
||||
|
||||
@@ -50,9 +50,9 @@
|
||||
"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",
|
||||
"by" : "por",
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Creado:",
|
||||
"by" : "por",
|
||||
"Choose a tag" : "Elije una etiqueta",
|
||||
"Add a tag" : "Agrega una etiqueta",
|
||||
"Select tags" : "Selecciona las etiquetas",
|
||||
@@ -63,9 +63,9 @@
|
||||
"Click to set" : "Da click aquí para establecer",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Saved" : "Guardado",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"View more" : "Ver más",
|
||||
|
||||
@@ -52,9 +52,9 @@ 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",
|
||||
"by" : "por",
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Creado:",
|
||||
"by" : "por",
|
||||
"Choose a tag" : "Elije una etiqueta",
|
||||
"Add a tag" : "Agrega una etiqueta",
|
||||
"Select tags" : "Selecciona las etiquetas",
|
||||
@@ -65,9 +65,9 @@ OC.L10N.register(
|
||||
"Click to set" : "Da click aquí para establecer",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Saved" : "Guardado",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"View more" : "Ver más",
|
||||
|
||||
@@ -50,9 +50,9 @@
|
||||
"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",
|
||||
"by" : "por",
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Creado:",
|
||||
"by" : "por",
|
||||
"Choose a tag" : "Elije una etiqueta",
|
||||
"Add a tag" : "Agrega una etiqueta",
|
||||
"Select tags" : "Selecciona las etiquetas",
|
||||
@@ -63,9 +63,9 @@
|
||||
"Click to set" : "Da click aquí para establecer",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Saved" : "Guardado",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"View more" : "Ver más",
|
||||
|
||||
@@ -52,9 +52,9 @@ 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",
|
||||
"by" : "por",
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Creado:",
|
||||
"by" : "por",
|
||||
"Choose a tag" : "Elije una etiqueta",
|
||||
"Add a tag" : "Agrega una etiqueta",
|
||||
"Select tags" : "Selecciona las etiquetas",
|
||||
@@ -65,9 +65,9 @@ OC.L10N.register(
|
||||
"Click to set" : "Da click aquí para establecer",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Saved" : "Guardado",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"View more" : "Ver más",
|
||||
|
||||
@@ -50,9 +50,9 @@
|
||||
"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",
|
||||
"by" : "por",
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Creado:",
|
||||
"by" : "por",
|
||||
"Choose a tag" : "Elije una etiqueta",
|
||||
"Add a tag" : "Agrega una etiqueta",
|
||||
"Select tags" : "Selecciona las etiquetas",
|
||||
@@ -63,9 +63,9 @@
|
||||
"Click to set" : "Da click aquí para establecer",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Saved" : "Guardado",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"View more" : "Ver más",
|
||||
|
||||
@@ -52,9 +52,9 @@ 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",
|
||||
"by" : "por",
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Creado:",
|
||||
"by" : "por",
|
||||
"Choose a tag" : "Elije una etiqueta",
|
||||
"Add a tag" : "Agrega una etiqueta",
|
||||
"Select tags" : "Selecciona las etiquetas",
|
||||
@@ -65,9 +65,9 @@ OC.L10N.register(
|
||||
"Click to set" : "Da click aquí para establecer",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Saved" : "Guardado",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"View more" : "Ver más",
|
||||
|
||||
@@ -50,9 +50,9 @@
|
||||
"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",
|
||||
"by" : "por",
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Creado:",
|
||||
"by" : "por",
|
||||
"Choose a tag" : "Elije una etiqueta",
|
||||
"Add a tag" : "Agrega una etiqueta",
|
||||
"Select tags" : "Selecciona las etiquetas",
|
||||
@@ -63,9 +63,9 @@
|
||||
"Click to set" : "Da click aquí para establecer",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Saved" : "Guardado",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"View more" : "Ver más",
|
||||
|
||||
@@ -52,9 +52,9 @@ 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",
|
||||
"by" : "por",
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Creado:",
|
||||
"by" : "por",
|
||||
"Choose a tag" : "Elije una etiqueta",
|
||||
"Add a tag" : "Agrega una etiqueta",
|
||||
"Select tags" : "Selecciona las etiquetas",
|
||||
@@ -65,9 +65,9 @@ OC.L10N.register(
|
||||
"Click to set" : "Da click aquí para establecer",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Saved" : "Guardado",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"View more" : "Ver más",
|
||||
|
||||
@@ -50,9 +50,9 @@
|
||||
"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",
|
||||
"by" : "por",
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Creado:",
|
||||
"by" : "por",
|
||||
"Choose a tag" : "Elije una etiqueta",
|
||||
"Add a tag" : "Agrega una etiqueta",
|
||||
"Select tags" : "Selecciona las etiquetas",
|
||||
@@ -63,9 +63,9 @@
|
||||
"Click to set" : "Da click aquí para establecer",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Saved" : "Guardado",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"View more" : "Ver más",
|
||||
|
||||
@@ -52,9 +52,9 @@ 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",
|
||||
"by" : "por",
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Creado:",
|
||||
"by" : "por",
|
||||
"Choose a tag" : "Elije una etiqueta",
|
||||
"Add a tag" : "Agrega una etiqueta",
|
||||
"Select tags" : "Selecciona las etiquetas",
|
||||
@@ -65,9 +65,9 @@ OC.L10N.register(
|
||||
"Click to set" : "Da click aquí para establecer",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Saved" : "Guardado",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"View more" : "Ver más",
|
||||
|
||||
@@ -50,9 +50,9 @@
|
||||
"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",
|
||||
"by" : "por",
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Creado:",
|
||||
"by" : "por",
|
||||
"Choose a tag" : "Elije una etiqueta",
|
||||
"Add a tag" : "Agrega una etiqueta",
|
||||
"Select tags" : "Selecciona las etiquetas",
|
||||
@@ -63,9 +63,9 @@
|
||||
"Click to set" : "Da click aquí para establecer",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Saved" : "Guardado",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"View more" : "Ver más",
|
||||
|
||||
@@ -49,9 +49,9 @@ 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",
|
||||
"by" : "por",
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Creado:",
|
||||
"by" : "por",
|
||||
"Choose a tag" : "Elije una etiqueta",
|
||||
"Add a tag" : "Agrega una etiqueta",
|
||||
"Select tags" : "Selecciona las etiquetas",
|
||||
@@ -61,9 +61,9 @@ OC.L10N.register(
|
||||
"Click to set" : "Da click aquí para establecer",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Saved" : "Guardado",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"View more" : "Ver más",
|
||||
|
||||
@@ -47,9 +47,9 @@
|
||||
"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",
|
||||
"by" : "por",
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Creado:",
|
||||
"by" : "por",
|
||||
"Choose a tag" : "Elije una etiqueta",
|
||||
"Add a tag" : "Agrega una etiqueta",
|
||||
"Select tags" : "Selecciona las etiquetas",
|
||||
@@ -59,9 +59,9 @@
|
||||
"Click to set" : "Da click aquí para establecer",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Saved" : "Guardado",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"View more" : "Ver más",
|
||||
|
||||
@@ -54,9 +54,9 @@ 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",
|
||||
"by" : "por",
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Creado:",
|
||||
"by" : "por",
|
||||
"Choose a tag" : "Elije una etiqueta",
|
||||
"Add a tag" : "Agrega una etiqueta",
|
||||
"Select tags" : "Selecciona las etiquetas",
|
||||
@@ -67,9 +67,9 @@ OC.L10N.register(
|
||||
"Click to set" : "Da click aquí para establecer",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Saved" : "Guardado",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"View more" : "Ver más",
|
||||
|
||||
@@ -52,9 +52,9 @@
|
||||
"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",
|
||||
"by" : "por",
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Creado:",
|
||||
"by" : "por",
|
||||
"Choose a tag" : "Elije una etiqueta",
|
||||
"Add a tag" : "Agrega una etiqueta",
|
||||
"Select tags" : "Selecciona las etiquetas",
|
||||
@@ -65,9 +65,9 @@
|
||||
"Click to set" : "Da click aquí para establecer",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Saved" : "Guardado",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"View more" : "Ver más",
|
||||
|
||||
@@ -49,9 +49,9 @@ 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",
|
||||
"by" : "por",
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Creado:",
|
||||
"by" : "por",
|
||||
"Choose a tag" : "Elije una etiqueta",
|
||||
"Add a tag" : "Agrega una etiqueta",
|
||||
"Select tags" : "Selecciona las etiquetas",
|
||||
@@ -61,9 +61,9 @@ OC.L10N.register(
|
||||
"Click to set" : "Da click aquí para establecer",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Saved" : "Guardado",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"View more" : "Ver más",
|
||||
|
||||
@@ -47,9 +47,9 @@
|
||||
"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",
|
||||
"by" : "por",
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Creado:",
|
||||
"by" : "por",
|
||||
"Choose a tag" : "Elije una etiqueta",
|
||||
"Add a tag" : "Agrega una etiqueta",
|
||||
"Select tags" : "Selecciona las etiquetas",
|
||||
@@ -59,9 +59,9 @@
|
||||
"Click to set" : "Da click aquí para establecer",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Saved" : "Guardado",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"View more" : "Ver más",
|
||||
|
||||
@@ -49,9 +49,9 @@ 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",
|
||||
"by" : "por",
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Creado:",
|
||||
"by" : "por",
|
||||
"Choose a tag" : "Elije una etiqueta",
|
||||
"Add a tag" : "Agrega una etiqueta",
|
||||
"Select tags" : "Selecciona las etiquetas",
|
||||
@@ -61,9 +61,9 @@ OC.L10N.register(
|
||||
"Click to set" : "Da click aquí para establecer",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Saved" : "Guardado",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"View more" : "Ver más",
|
||||
|
||||
@@ -47,9 +47,9 @@
|
||||
"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",
|
||||
"by" : "por",
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Creado:",
|
||||
"by" : "por",
|
||||
"Choose a tag" : "Elije una etiqueta",
|
||||
"Add a tag" : "Agrega una etiqueta",
|
||||
"Select tags" : "Selecciona las etiquetas",
|
||||
@@ -59,9 +59,9 @@
|
||||
"Click to set" : "Da click aquí para establecer",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Saved" : "Guardado",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"View more" : "Ver más",
|
||||
|
||||
@@ -49,9 +49,9 @@ 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",
|
||||
"by" : "por",
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Creado:",
|
||||
"by" : "por",
|
||||
"Choose a tag" : "Elije una etiqueta",
|
||||
"Add a tag" : "Agrega una etiqueta",
|
||||
"Select tags" : "Selecciona las etiquetas",
|
||||
@@ -61,9 +61,9 @@ OC.L10N.register(
|
||||
"Click to set" : "Da click aquí para establecer",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Saved" : "Guardado",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"View more" : "Ver más",
|
||||
|
||||
@@ -47,9 +47,9 @@
|
||||
"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",
|
||||
"by" : "por",
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Creado:",
|
||||
"by" : "por",
|
||||
"Choose a tag" : "Elije una etiqueta",
|
||||
"Add a tag" : "Agrega una etiqueta",
|
||||
"Select tags" : "Selecciona las etiquetas",
|
||||
@@ -59,9 +59,9 @@
|
||||
"Click to set" : "Da click aquí para establecer",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Saved" : "Guardado",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"View more" : "Ver más",
|
||||
|
||||
@@ -49,9 +49,9 @@ 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",
|
||||
"by" : "por",
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Creado:",
|
||||
"by" : "por",
|
||||
"Choose a tag" : "Elije una etiqueta",
|
||||
"Add a tag" : "Agrega una etiqueta",
|
||||
"Select tags" : "Selecciona las etiquetas",
|
||||
@@ -61,9 +61,9 @@ OC.L10N.register(
|
||||
"Click to set" : "Da click aquí para establecer",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Saved" : "Guardado",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"View more" : "Ver más",
|
||||
|
||||
@@ -47,9 +47,9 @@
|
||||
"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",
|
||||
"by" : "por",
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Creado:",
|
||||
"by" : "por",
|
||||
"Choose a tag" : "Elije una etiqueta",
|
||||
"Add a tag" : "Agrega una etiqueta",
|
||||
"Select tags" : "Selecciona las etiquetas",
|
||||
@@ -59,9 +59,9 @@
|
||||
"Click to set" : "Da click aquí para establecer",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Saved" : "Guardado",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"View more" : "Ver más",
|
||||
|
||||
@@ -49,9 +49,9 @@ 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",
|
||||
"by" : "por",
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Creado:",
|
||||
"by" : "por",
|
||||
"Choose a tag" : "Elije una etiqueta",
|
||||
"Add a tag" : "Agrega una etiqueta",
|
||||
"Select tags" : "Selecciona las etiquetas",
|
||||
@@ -61,9 +61,9 @@ OC.L10N.register(
|
||||
"Click to set" : "Da click aquí para establecer",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Saved" : "Guardado",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"View more" : "Ver más",
|
||||
|
||||
@@ -47,9 +47,9 @@
|
||||
"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",
|
||||
"by" : "por",
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Creado:",
|
||||
"by" : "por",
|
||||
"Choose a tag" : "Elije una etiqueta",
|
||||
"Add a tag" : "Agrega una etiqueta",
|
||||
"Select tags" : "Selecciona las etiquetas",
|
||||
@@ -59,9 +59,9 @@
|
||||
"Click to set" : "Da click aquí para establecer",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Saved" : "Guardado",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"View more" : "Ver más",
|
||||
|
||||
@@ -52,9 +52,9 @@ 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",
|
||||
"by" : "por",
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Creado:",
|
||||
"by" : "por",
|
||||
"Choose a tag" : "Elije una etiqueta",
|
||||
"Add a tag" : "Agrega una etiqueta",
|
||||
"Select tags" : "Selecciona las etiquetas",
|
||||
@@ -65,9 +65,9 @@ OC.L10N.register(
|
||||
"Click to set" : "Da click aquí para establecer",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Saved" : "Guardado",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"View more" : "Ver más",
|
||||
|
||||
@@ -50,9 +50,9 @@
|
||||
"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",
|
||||
"by" : "por",
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Creado:",
|
||||
"by" : "por",
|
||||
"Choose a tag" : "Elije una etiqueta",
|
||||
"Add a tag" : "Agrega una etiqueta",
|
||||
"Select tags" : "Selecciona las etiquetas",
|
||||
@@ -63,9 +63,9 @@
|
||||
"Click to set" : "Da click aquí para establecer",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Saved" : "Guardado",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"View more" : "Ver más",
|
||||
|
||||
@@ -49,9 +49,9 @@ 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",
|
||||
"by" : "por",
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Creado:",
|
||||
"by" : "por",
|
||||
"Choose a tag" : "Elije una etiqueta",
|
||||
"Add a tag" : "Agrega una etiqueta",
|
||||
"Select tags" : "Selecciona las etiquetas",
|
||||
@@ -61,9 +61,9 @@ OC.L10N.register(
|
||||
"Click to set" : "Da click aquí para establecer",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Saved" : "Guardado",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"View more" : "Ver más",
|
||||
|
||||
@@ -47,9 +47,9 @@
|
||||
"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",
|
||||
"by" : "por",
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Creado:",
|
||||
"by" : "por",
|
||||
"Choose a tag" : "Elije una etiqueta",
|
||||
"Add a tag" : "Agrega una etiqueta",
|
||||
"Select tags" : "Selecciona las etiquetas",
|
||||
@@ -59,9 +59,9 @@
|
||||
"Click to set" : "Da click aquí para establecer",
|
||||
"Remove due date" : "Eliminar fecha de expiración",
|
||||
"Description" : "Descripción",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Saved" : "Guardado",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"View more" : "Ver más",
|
||||
|
||||
@@ -49,9 +49,9 @@ OC.L10N.register(
|
||||
"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",
|
||||
"by" : "-engatik",
|
||||
"Modified:" : "Aldatua:",
|
||||
"Created:" : "Sortua:",
|
||||
"by" : "-engatik",
|
||||
"Choose a tag" : "Etiketa hautatu",
|
||||
"Add a tag" : "Etiketa gehitu",
|
||||
"Select tags" : "Etiketa hautatu",
|
||||
@@ -61,9 +61,9 @@ OC.L10N.register(
|
||||
"Click to set" : "Klik ezartzeko",
|
||||
"Remove due date" : "Epe-muga borratu",
|
||||
"Description" : "Deskribapena",
|
||||
"Formatting help" : "Formatua emateko laguntza",
|
||||
"Saved" : "Gordeta",
|
||||
"Unsaved changes" : "Gorde gabeko aldaketak",
|
||||
"Formatting help" : "Formatua emateko laguntza",
|
||||
"Add a card description…" : "Txartelaren deskribapena gehitu...",
|
||||
"Shared boards" : "Partekatutako txartelak",
|
||||
"View more" : "Gehiago ikusi",
|
||||
|
||||
@@ -47,9 +47,9 @@
|
||||
"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",
|
||||
"by" : "-engatik",
|
||||
"Modified:" : "Aldatua:",
|
||||
"Created:" : "Sortua:",
|
||||
"by" : "-engatik",
|
||||
"Choose a tag" : "Etiketa hautatu",
|
||||
"Add a tag" : "Etiketa gehitu",
|
||||
"Select tags" : "Etiketa hautatu",
|
||||
@@ -59,9 +59,9 @@
|
||||
"Click to set" : "Klik ezartzeko",
|
||||
"Remove due date" : "Epe-muga borratu",
|
||||
"Description" : "Deskribapena",
|
||||
"Formatting help" : "Formatua emateko laguntza",
|
||||
"Saved" : "Gordeta",
|
||||
"Unsaved changes" : "Gorde gabeko aldaketak",
|
||||
"Formatting help" : "Formatua emateko laguntza",
|
||||
"Add a card description…" : "Txartelaren deskribapena gehitu...",
|
||||
"Shared boards" : "Partekatutako txartelak",
|
||||
"View more" : "Gehiago ikusi",
|
||||
|
||||
18
l10n/fi.js
18
l10n/fi.js
@@ -6,6 +6,8 @@ OC.L10N.register(
|
||||
"Remove user from card" : "Poista käyttäjä kortilta",
|
||||
"Hours" : "Tunnit",
|
||||
"Minutes" : "Minuutit",
|
||||
"Maximum file size of {size} exceeded" : "Tiedoston enimmäiskoko {size} ylitetty",
|
||||
"Are you sure you want to delete the stack with all of its data?" : "Haluatko varmasti poistaa pinon ja kaikki siinä olevat tiedot?",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "Kortin \"%s\" on \"%s\" eräpäivä on tullut vastaan.",
|
||||
"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.",
|
||||
@@ -13,12 +15,19 @@ OC.L10N.register(
|
||||
"To review" : "Arvostella",
|
||||
"Action needed" : "Toimia vaaditaan",
|
||||
"Later" : "Myöhemmin",
|
||||
"The file was uploaded" : "Tiedosto lähetettiin",
|
||||
"The file was only partially uploaded" : "Tiedosto lähetettiin vain osittain",
|
||||
"No file was uploaded" : "Tiedostoa ei lähetetty",
|
||||
"Could not write file to disk" : "Tiedostoa ei voitu kirjoittaa levylle",
|
||||
"Deck" : "Kansi",
|
||||
"A kanban style project and personal management tool for Nextcloud" : "Kanban-tyylinen projektien ja henkilökohtaisten asioiden hallintatyökalu Nextcloudille",
|
||||
"Add a new stack" : "Lisää uusi pino",
|
||||
"Show archived cards" : "Näytä arkistoidut kortit",
|
||||
"Hide archived cards" : "Piilota arkistoidut kortit",
|
||||
"Board details" : "Taulun tiedot",
|
||||
"All Boards" : "Kaikki taulut",
|
||||
"Archived boards" : "Arkistoidut taulut",
|
||||
"Drop your files here to upload it to the card" : "Pudota tiedostot tähän lähettääksesi ne kortille",
|
||||
"Archive" : "Arkisto",
|
||||
"Unarchive" : "Pois arkistosta",
|
||||
"Enter a card title" : "Anna otsikko",
|
||||
@@ -42,12 +51,15 @@ OC.L10N.register(
|
||||
"More actions" : "Lisää toimintoja",
|
||||
"Edit board" : "Muokkaa taulua",
|
||||
"Archive board" : "Arkistoi taulu",
|
||||
"Unarchive board" : "Kumoa taulun arkistointi",
|
||||
"Delete board" : "Poista taulu",
|
||||
"Create new board" : "Luo uusi taulu",
|
||||
"New board title" : "Uusi taulun otsikko",
|
||||
"Select an attachment" : "Valitse liite",
|
||||
"by" : " Kirjoittaja:",
|
||||
"Undo file deletion" : "Kumoa tiedoston luonti",
|
||||
"Modified:" : "Muokattu:",
|
||||
"Created:" : "Luotu:",
|
||||
"by" : " Kirjoittaja:",
|
||||
"Choose a tag" : "Valitse tunniste",
|
||||
"Add a tag" : "Lisää tunniste",
|
||||
"Select tags" : "Valitse tunnisteet",
|
||||
@@ -58,9 +70,11 @@ OC.L10N.register(
|
||||
"Click to set" : "Napsauta asettaaksesi",
|
||||
"Remove due date" : "Poista eräpäivä",
|
||||
"Description" : "Kuvaus",
|
||||
"Formatting help" : "Muotoiluapu",
|
||||
"Attachments" : "Liitteet",
|
||||
"Saved" : "Tallennettu",
|
||||
"Unsaved changes" : "Tallentamattomia muutoksia",
|
||||
"Formatting help" : "Muotoiluapu",
|
||||
"Upload attachment" : "Lähetä liite",
|
||||
"Add a card description…" : "Lisää kortin kuvaus…",
|
||||
"Shared boards" : "Jaetut taulut",
|
||||
"View more" : "Näytä lisää",
|
||||
|
||||
18
l10n/fi.json
18
l10n/fi.json
@@ -4,6 +4,8 @@
|
||||
"Remove user from card" : "Poista käyttäjä kortilta",
|
||||
"Hours" : "Tunnit",
|
||||
"Minutes" : "Minuutit",
|
||||
"Maximum file size of {size} exceeded" : "Tiedoston enimmäiskoko {size} ylitetty",
|
||||
"Are you sure you want to delete the stack with all of its data?" : "Haluatko varmasti poistaa pinon ja kaikki siinä olevat tiedot?",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "Kortin \"%s\" on \"%s\" eräpäivä on tullut vastaan.",
|
||||
"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.",
|
||||
@@ -11,12 +13,19 @@
|
||||
"To review" : "Arvostella",
|
||||
"Action needed" : "Toimia vaaditaan",
|
||||
"Later" : "Myöhemmin",
|
||||
"The file was uploaded" : "Tiedosto lähetettiin",
|
||||
"The file was only partially uploaded" : "Tiedosto lähetettiin vain osittain",
|
||||
"No file was uploaded" : "Tiedostoa ei lähetetty",
|
||||
"Could not write file to disk" : "Tiedostoa ei voitu kirjoittaa levylle",
|
||||
"Deck" : "Kansi",
|
||||
"A kanban style project and personal management tool for Nextcloud" : "Kanban-tyylinen projektien ja henkilökohtaisten asioiden hallintatyökalu Nextcloudille",
|
||||
"Add a new stack" : "Lisää uusi pino",
|
||||
"Show archived cards" : "Näytä arkistoidut kortit",
|
||||
"Hide archived cards" : "Piilota arkistoidut kortit",
|
||||
"Board details" : "Taulun tiedot",
|
||||
"All Boards" : "Kaikki taulut",
|
||||
"Archived boards" : "Arkistoidut taulut",
|
||||
"Drop your files here to upload it to the card" : "Pudota tiedostot tähän lähettääksesi ne kortille",
|
||||
"Archive" : "Arkisto",
|
||||
"Unarchive" : "Pois arkistosta",
|
||||
"Enter a card title" : "Anna otsikko",
|
||||
@@ -40,12 +49,15 @@
|
||||
"More actions" : "Lisää toimintoja",
|
||||
"Edit board" : "Muokkaa taulua",
|
||||
"Archive board" : "Arkistoi taulu",
|
||||
"Unarchive board" : "Kumoa taulun arkistointi",
|
||||
"Delete board" : "Poista taulu",
|
||||
"Create new board" : "Luo uusi taulu",
|
||||
"New board title" : "Uusi taulun otsikko",
|
||||
"Select an attachment" : "Valitse liite",
|
||||
"by" : " Kirjoittaja:",
|
||||
"Undo file deletion" : "Kumoa tiedoston luonti",
|
||||
"Modified:" : "Muokattu:",
|
||||
"Created:" : "Luotu:",
|
||||
"by" : " Kirjoittaja:",
|
||||
"Choose a tag" : "Valitse tunniste",
|
||||
"Add a tag" : "Lisää tunniste",
|
||||
"Select tags" : "Valitse tunnisteet",
|
||||
@@ -56,9 +68,11 @@
|
||||
"Click to set" : "Napsauta asettaaksesi",
|
||||
"Remove due date" : "Poista eräpäivä",
|
||||
"Description" : "Kuvaus",
|
||||
"Formatting help" : "Muotoiluapu",
|
||||
"Attachments" : "Liitteet",
|
||||
"Saved" : "Tallennettu",
|
||||
"Unsaved changes" : "Tallentamattomia muutoksia",
|
||||
"Formatting help" : "Muotoiluapu",
|
||||
"Upload attachment" : "Lähetä liite",
|
||||
"Add a card description…" : "Lisää kortin kuvaus…",
|
||||
"Shared boards" : "Jaetut taulut",
|
||||
"View more" : "Näytä lisää",
|
||||
|
||||
26
l10n/fr.js
26
l10n/fr.js
@@ -6,15 +6,28 @@ OC.L10N.register(
|
||||
"Remove user from card" : "Supprimer l'utilisateur de la carte",
|
||||
"Hours" : "Heures",
|
||||
"Minutes" : "Minutes",
|
||||
"Maximum file size of {size} exceeded" : "Taille de fichier maximale de {size} dépassée",
|
||||
"Are you sure you want to delete the stack with all of its data?" : "Êtes-vous sûr de vouloir supprimer la pile avec toutes ses données ?",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "Le délais de la carte %s de %s est expiré.",
|
||||
"The board \"%s\" has been shared with you by %s." : "Le tableau %s a été partagé avec vous par %s.",
|
||||
"{user} has shared the board %s with you." : "{user} a partagé le tableau %s avec vous.",
|
||||
"No data was provided to create an attachment." : "Aucune donnée n'a été fournie pour créer une pièce jointe.",
|
||||
"Finished" : "Terminé",
|
||||
"To review" : "A réviser",
|
||||
"Action needed" : "Action requise",
|
||||
"Later" : "Plus tard",
|
||||
"The file was uploaded" : "Le fichier a été téléchargé",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Le fichier téléversé dépasse la valeur upload_max_filesize située dans le fichier php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Le fichier envoyé dépasse la valeur MAX_FILE_SIZE qui était spécifiée dans le formulaire HTML",
|
||||
"The file was only partially uploaded" : "Le fichier n'a été que partiellement envoyé",
|
||||
"No file was uploaded" : "Aucun fichier n'a été téléchargé",
|
||||
"Missing a temporary folder" : "Absence de dossier temporaire",
|
||||
"Could not write file to disk" : "Impossible d'écrire le fichier sur le disque.",
|
||||
"A PHP extension stopped the file upload" : "Une extension PHP a arrêté le téléversement du fichier",
|
||||
"No file uploaded or file size exceeds maximum of %s" : "Aucun fichier téléversé ou la taille du fichier dépasse la maximum de %s",
|
||||
"Deck" : "Deck",
|
||||
"A kanban style project and personal management tool for Nextcloud" : " Un outil de style kanban pour Nextcloud, pour la gestion de votre vie personnelle et de vos projets.",
|
||||
"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- 🚀 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- 🚀 Organisez vos projets",
|
||||
"Add a new stack" : "Ajouter une nouvelle pile",
|
||||
"Submit" : "Envoyer",
|
||||
"Show archived cards" : "Afficher les cartes archivées",
|
||||
@@ -22,6 +35,7 @@ OC.L10N.register(
|
||||
"Board details" : "Détails du tableau",
|
||||
"All Boards" : "Tous les tableaux",
|
||||
"Archived boards" : "Tableaux archivés",
|
||||
"Drop your files here to upload it to the card" : "Déposez vos fichiers ici pour les téléverser sur la carte",
|
||||
"Archive" : "Archiver",
|
||||
"Unarchive" : "Ne plus archiver",
|
||||
"Enter a card title" : "Saisissez un titre de carte",
|
||||
@@ -52,9 +66,14 @@ OC.L10N.register(
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Annuler la suppression du tableau - Autrement le tableau sera supprimé lors du prochain lancement de la tâche cron.",
|
||||
"Create new board" : "Créer un nouveau tableau",
|
||||
"New board title" : "Nouveau titre pour le tableau",
|
||||
"Select an attachment" : "Sélectionner une pièce jointe",
|
||||
"Cancel upload" : "Annuler le téléversement",
|
||||
"by" : "par",
|
||||
"Undo file deletion - Otherwise the file will be deleted during the next cronjob run." : "Annuler la suppression du fichier - Autrement le fichier sera supprimé lors du prochain lancement de la tâche cron.",
|
||||
"Undo file deletion" : "Annuler la suppression du fichier",
|
||||
"Insert the file into the description" : "Insérer le fichier dans la description",
|
||||
"Modified:" : "Modifié le :",
|
||||
"Created:" : "Créé le :",
|
||||
"by" : "par",
|
||||
"Choose a tag" : "Choisir une étiquette",
|
||||
"Add a tag" : "Ajouter une étiquette",
|
||||
"Select tags" : "Sélectionner les étiquettes",
|
||||
@@ -65,9 +84,12 @@ OC.L10N.register(
|
||||
"Click to set" : "Cliquez pour définir",
|
||||
"Remove due date" : "Supprimer la date d'échéance",
|
||||
"Description" : "Description",
|
||||
"Formatting help" : "Aide sur la mise en forme",
|
||||
"Attachments" : "Pièces jointes",
|
||||
"Saved" : "Enregistré",
|
||||
"Unsaved changes" : "Modifications non sauvegardées",
|
||||
"Formatting help" : "Aide sur la mise en forme",
|
||||
"Upload attachment" : "Téléverser la pièce jointe",
|
||||
"Insert attachment" : "Insérer une pièce jointe",
|
||||
"Add a card description…" : "Ajouter une description pour la carte",
|
||||
"Shared boards" : "Tableaux partagés",
|
||||
"View more" : "Voir plus",
|
||||
|
||||
26
l10n/fr.json
26
l10n/fr.json
@@ -4,15 +4,28 @@
|
||||
"Remove user from card" : "Supprimer l'utilisateur de la carte",
|
||||
"Hours" : "Heures",
|
||||
"Minutes" : "Minutes",
|
||||
"Maximum file size of {size} exceeded" : "Taille de fichier maximale de {size} dépassée",
|
||||
"Are you sure you want to delete the stack with all of its data?" : "Êtes-vous sûr de vouloir supprimer la pile avec toutes ses données ?",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "Le délais de la carte %s de %s est expiré.",
|
||||
"The board \"%s\" has been shared with you by %s." : "Le tableau %s a été partagé avec vous par %s.",
|
||||
"{user} has shared the board %s with you." : "{user} a partagé le tableau %s avec vous.",
|
||||
"No data was provided to create an attachment." : "Aucune donnée n'a été fournie pour créer une pièce jointe.",
|
||||
"Finished" : "Terminé",
|
||||
"To review" : "A réviser",
|
||||
"Action needed" : "Action requise",
|
||||
"Later" : "Plus tard",
|
||||
"The file was uploaded" : "Le fichier a été téléchargé",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Le fichier téléversé dépasse la valeur upload_max_filesize située dans le fichier php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Le fichier envoyé dépasse la valeur MAX_FILE_SIZE qui était spécifiée dans le formulaire HTML",
|
||||
"The file was only partially uploaded" : "Le fichier n'a été que partiellement envoyé",
|
||||
"No file was uploaded" : "Aucun fichier n'a été téléchargé",
|
||||
"Missing a temporary folder" : "Absence de dossier temporaire",
|
||||
"Could not write file to disk" : "Impossible d'écrire le fichier sur le disque.",
|
||||
"A PHP extension stopped the file upload" : "Une extension PHP a arrêté le téléversement du fichier",
|
||||
"No file uploaded or file size exceeds maximum of %s" : "Aucun fichier téléversé ou la taille du fichier dépasse la maximum de %s",
|
||||
"Deck" : "Deck",
|
||||
"A kanban style project and personal management tool for Nextcloud" : " Un outil de style kanban pour Nextcloud, pour la gestion de votre vie personnelle et de vos projets.",
|
||||
"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- 🚀 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- 🚀 Organisez vos projets",
|
||||
"Add a new stack" : "Ajouter une nouvelle pile",
|
||||
"Submit" : "Envoyer",
|
||||
"Show archived cards" : "Afficher les cartes archivées",
|
||||
@@ -20,6 +33,7 @@
|
||||
"Board details" : "Détails du tableau",
|
||||
"All Boards" : "Tous les tableaux",
|
||||
"Archived boards" : "Tableaux archivés",
|
||||
"Drop your files here to upload it to the card" : "Déposez vos fichiers ici pour les téléverser sur la carte",
|
||||
"Archive" : "Archiver",
|
||||
"Unarchive" : "Ne plus archiver",
|
||||
"Enter a card title" : "Saisissez un titre de carte",
|
||||
@@ -50,9 +64,14 @@
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Annuler la suppression du tableau - Autrement le tableau sera supprimé lors du prochain lancement de la tâche cron.",
|
||||
"Create new board" : "Créer un nouveau tableau",
|
||||
"New board title" : "Nouveau titre pour le tableau",
|
||||
"Select an attachment" : "Sélectionner une pièce jointe",
|
||||
"Cancel upload" : "Annuler le téléversement",
|
||||
"by" : "par",
|
||||
"Undo file deletion - Otherwise the file will be deleted during the next cronjob run." : "Annuler la suppression du fichier - Autrement le fichier sera supprimé lors du prochain lancement de la tâche cron.",
|
||||
"Undo file deletion" : "Annuler la suppression du fichier",
|
||||
"Insert the file into the description" : "Insérer le fichier dans la description",
|
||||
"Modified:" : "Modifié le :",
|
||||
"Created:" : "Créé le :",
|
||||
"by" : "par",
|
||||
"Choose a tag" : "Choisir une étiquette",
|
||||
"Add a tag" : "Ajouter une étiquette",
|
||||
"Select tags" : "Sélectionner les étiquettes",
|
||||
@@ -63,9 +82,12 @@
|
||||
"Click to set" : "Cliquez pour définir",
|
||||
"Remove due date" : "Supprimer la date d'échéance",
|
||||
"Description" : "Description",
|
||||
"Formatting help" : "Aide sur la mise en forme",
|
||||
"Attachments" : "Pièces jointes",
|
||||
"Saved" : "Enregistré",
|
||||
"Unsaved changes" : "Modifications non sauvegardées",
|
||||
"Formatting help" : "Aide sur la mise en forme",
|
||||
"Upload attachment" : "Téléverser la pièce jointe",
|
||||
"Insert attachment" : "Insérer une pièce jointe",
|
||||
"Add a card description…" : "Ajouter une description pour la carte",
|
||||
"Shared boards" : "Tableaux partagés",
|
||||
"View more" : "Voir plus",
|
||||
|
||||
24
l10n/he.js
24
l10n/he.js
@@ -6,14 +6,25 @@ OC.L10N.register(
|
||||
"Remove user from card" : "הסרת משתמש מכרטיס",
|
||||
"Hours" : "שעות",
|
||||
"Minutes" : "דקות",
|
||||
"Maximum file size of {size} exceeded" : "גודל הקבצים המרבי {size} הושג",
|
||||
"Are you sure you want to delete the stack with all of its data?" : "למחוק את הערימה הזאת עם כל הנתונים שלה?",
|
||||
"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}",
|
||||
"No data was provided to create an attachment." : "לא סופקו נתונים ליצירת קובץ מצורף",
|
||||
"Finished" : "הסתיים",
|
||||
"To review" : "לסקירה",
|
||||
"Action needed" : "נדרשת פעולה",
|
||||
"Later" : "מאוחר יותר",
|
||||
"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",
|
||||
"The file was only partially uploaded" : "הקובץ הועלה באופן חלקי בלבד",
|
||||
"No file was uploaded" : "לא הועלה קובץ",
|
||||
"Missing a temporary folder" : "חסרה תיקייה זמנית",
|
||||
"Could not write file to disk" : "לא ניתן לכתוב לכונן",
|
||||
"A PHP extension stopped the file upload" : "הרחבת PHP עצרה את העלאת הקובץ",
|
||||
"No file uploaded or file size exceeds maximum of %s" : "לא הועלה אף קובץ או שגודל הקובץ חרג מהסף המרבי של %s",
|
||||
"Deck" : "חפיסה",
|
||||
"A kanban style project and personal management tool for Nextcloud" : "כלי ניהול למיזמים או לדברים אישיים עבור 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- 🚀 Get your project organized" : "חבילה היא כלי ניהול בסגנון קנבן שמיועד לתכנון אישי או לארגון מיזמים לצוותים בשילוב עם Nextcloud.\n\n\n- 📥 הוספת המשימות שלך וסידור שלהן\n- 📄 כתיבת הערות נוספות בתצורת markdown\n- 🔖 הקצאת תוויות למטרת ארגון טוב יותר\n- 👥 שיתוף עם הצוות, החברים או המשפחה שלך\n- 🚀 ארגון המיזם שלך כמו שצריך",
|
||||
@@ -24,6 +35,7 @@ OC.L10N.register(
|
||||
"Board details" : "פרטי לוח",
|
||||
"All Boards" : "כל הלוחות",
|
||||
"Archived boards" : "לוחות שנשמרו בארכיון",
|
||||
"Drop your files here to upload it to the card" : "ניתן להשליך את הקבצים שלך כאן כדי להעלות אותם לכרטיס",
|
||||
"Archive" : "לארכיון",
|
||||
"Unarchive" : "הוצאה מהארכיון",
|
||||
"Enter a card title" : "נא להקליד כותרת לכרטיס",
|
||||
@@ -54,9 +66,14 @@ OC.L10N.register(
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "ביטול מחיקת לוח - אחרת הלוח יימחק במהלך ריצת ה־cronjob הבאה.",
|
||||
"Create new board" : "יצירת לוח חדש",
|
||||
"New board title" : "כותרת לוח חדשה",
|
||||
"Select an attachment" : "נא לבחור קובץ מצורף",
|
||||
"Cancel upload" : "ביטול העלאה",
|
||||
"by" : "מאת",
|
||||
"Undo file deletion - Otherwise the file will be deleted during the next cronjob run." : "ביטול מחיקת קובץ - אחרת הקובץ יימחק עם ריצת משימת ה־cron הבאה.",
|
||||
"Undo file deletion" : "ביטול מחיקת קובץ",
|
||||
"Insert the file into the description" : "הוספת הקובץ לתיאור",
|
||||
"Modified:" : "מועד השינוי",
|
||||
"Created:" : "מועד היצירה:",
|
||||
"by" : "מאת",
|
||||
"Choose a tag" : "נא לבחור תגית",
|
||||
"Add a tag" : "הוספת תגית",
|
||||
"Select tags" : "בחירת תגיות",
|
||||
@@ -67,9 +84,12 @@ OC.L10N.register(
|
||||
"Click to set" : "יש ללחוץ להגדרה",
|
||||
"Remove due date" : "הסרת מועד התפוגה",
|
||||
"Description" : "תיאוג",
|
||||
"Formatting help" : "עזרה בסידור בתבנית",
|
||||
"Attachments" : "קבצים מצורפים",
|
||||
"Saved" : "נשמר",
|
||||
"Unsaved changes" : "שינויים שלא נשמרו",
|
||||
"Formatting help" : "עזרה בסידור בתבנית",
|
||||
"Upload attachment" : "העלאת קבצים מצורפים",
|
||||
"Insert attachment" : "הוספת קובץ מצורף",
|
||||
"Add a card description…" : "הוספת תיאור כרטיס…",
|
||||
"Shared boards" : "לוחות משותפים",
|
||||
"View more" : "הצגת עוד",
|
||||
|
||||
24
l10n/he.json
24
l10n/he.json
@@ -4,14 +4,25 @@
|
||||
"Remove user from card" : "הסרת משתמש מכרטיס",
|
||||
"Hours" : "שעות",
|
||||
"Minutes" : "דקות",
|
||||
"Maximum file size of {size} exceeded" : "גודל הקבצים המרבי {size} הושג",
|
||||
"Are you sure you want to delete the stack with all of its data?" : "למחוק את הערימה הזאת עם כל הנתונים שלה?",
|
||||
"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}",
|
||||
"No data was provided to create an attachment." : "לא סופקו נתונים ליצירת קובץ מצורף",
|
||||
"Finished" : "הסתיים",
|
||||
"To review" : "לסקירה",
|
||||
"Action needed" : "נדרשת פעולה",
|
||||
"Later" : "מאוחר יותר",
|
||||
"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",
|
||||
"The file was only partially uploaded" : "הקובץ הועלה באופן חלקי בלבד",
|
||||
"No file was uploaded" : "לא הועלה קובץ",
|
||||
"Missing a temporary folder" : "חסרה תיקייה זמנית",
|
||||
"Could not write file to disk" : "לא ניתן לכתוב לכונן",
|
||||
"A PHP extension stopped the file upload" : "הרחבת PHP עצרה את העלאת הקובץ",
|
||||
"No file uploaded or file size exceeds maximum of %s" : "לא הועלה אף קובץ או שגודל הקובץ חרג מהסף המרבי של %s",
|
||||
"Deck" : "חפיסה",
|
||||
"A kanban style project and personal management tool for Nextcloud" : "כלי ניהול למיזמים או לדברים אישיים עבור 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- 🚀 Get your project organized" : "חבילה היא כלי ניהול בסגנון קנבן שמיועד לתכנון אישי או לארגון מיזמים לצוותים בשילוב עם Nextcloud.\n\n\n- 📥 הוספת המשימות שלך וסידור שלהן\n- 📄 כתיבת הערות נוספות בתצורת markdown\n- 🔖 הקצאת תוויות למטרת ארגון טוב יותר\n- 👥 שיתוף עם הצוות, החברים או המשפחה שלך\n- 🚀 ארגון המיזם שלך כמו שצריך",
|
||||
@@ -22,6 +33,7 @@
|
||||
"Board details" : "פרטי לוח",
|
||||
"All Boards" : "כל הלוחות",
|
||||
"Archived boards" : "לוחות שנשמרו בארכיון",
|
||||
"Drop your files here to upload it to the card" : "ניתן להשליך את הקבצים שלך כאן כדי להעלות אותם לכרטיס",
|
||||
"Archive" : "לארכיון",
|
||||
"Unarchive" : "הוצאה מהארכיון",
|
||||
"Enter a card title" : "נא להקליד כותרת לכרטיס",
|
||||
@@ -52,9 +64,14 @@
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "ביטול מחיקת לוח - אחרת הלוח יימחק במהלך ריצת ה־cronjob הבאה.",
|
||||
"Create new board" : "יצירת לוח חדש",
|
||||
"New board title" : "כותרת לוח חדשה",
|
||||
"Select an attachment" : "נא לבחור קובץ מצורף",
|
||||
"Cancel upload" : "ביטול העלאה",
|
||||
"by" : "מאת",
|
||||
"Undo file deletion - Otherwise the file will be deleted during the next cronjob run." : "ביטול מחיקת קובץ - אחרת הקובץ יימחק עם ריצת משימת ה־cron הבאה.",
|
||||
"Undo file deletion" : "ביטול מחיקת קובץ",
|
||||
"Insert the file into the description" : "הוספת הקובץ לתיאור",
|
||||
"Modified:" : "מועד השינוי",
|
||||
"Created:" : "מועד היצירה:",
|
||||
"by" : "מאת",
|
||||
"Choose a tag" : "נא לבחור תגית",
|
||||
"Add a tag" : "הוספת תגית",
|
||||
"Select tags" : "בחירת תגיות",
|
||||
@@ -65,9 +82,12 @@
|
||||
"Click to set" : "יש ללחוץ להגדרה",
|
||||
"Remove due date" : "הסרת מועד התפוגה",
|
||||
"Description" : "תיאוג",
|
||||
"Formatting help" : "עזרה בסידור בתבנית",
|
||||
"Attachments" : "קבצים מצורפים",
|
||||
"Saved" : "נשמר",
|
||||
"Unsaved changes" : "שינויים שלא נשמרו",
|
||||
"Formatting help" : "עזרה בסידור בתבנית",
|
||||
"Upload attachment" : "העלאת קבצים מצורפים",
|
||||
"Insert attachment" : "הוספת קובץ מצורף",
|
||||
"Add a card description…" : "הוספת תיאור כרטיס…",
|
||||
"Shared boards" : "לוחות משותפים",
|
||||
"View more" : "הצגת עוד",
|
||||
|
||||
@@ -24,9 +24,9 @@ OC.L10N.register(
|
||||
"Members" : "Članovi",
|
||||
"Create new board" : "Izradi novu ploču",
|
||||
"New board title" : "Naslov ploče",
|
||||
"by" : "od",
|
||||
"Modified:" : "Promijenjena:",
|
||||
"Created:" : "Stvorena:",
|
||||
"by" : "od",
|
||||
"Description" : "Opis",
|
||||
"Saved" : "Spremljeno",
|
||||
"Add a card description…" : "Dodaj opis...",
|
||||
|
||||
@@ -22,9 +22,9 @@
|
||||
"Members" : "Članovi",
|
||||
"Create new board" : "Izradi novu ploču",
|
||||
"New board title" : "Naslov ploče",
|
||||
"by" : "od",
|
||||
"Modified:" : "Promijenjena:",
|
||||
"Created:" : "Stvorena:",
|
||||
"by" : "od",
|
||||
"Description" : "Opis",
|
||||
"Saved" : "Spremljeno",
|
||||
"Add a card description…" : "Dodaj opis...",
|
||||
|
||||
@@ -52,9 +52,9 @@ OC.L10N.register(
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Táblatörlés visszavonása - Egyébként a tábla a következő időzített folyamatfutáskor törlődik.",
|
||||
"Create new board" : "Új tábla",
|
||||
"New board title" : "Új tábla címe",
|
||||
"by" : "tőle: ",
|
||||
"Modified:" : "Módosítva:",
|
||||
"Created:" : "Létrehozva:",
|
||||
"by" : "tőle: ",
|
||||
"Choose a tag" : "Válassz címkét",
|
||||
"Add a tag" : "Címke hozzáadása",
|
||||
"Select tags" : "Címkék kiválasztása",
|
||||
@@ -65,9 +65,9 @@ OC.L10N.register(
|
||||
"Click to set" : "Kattints a beállításhoz",
|
||||
"Remove due date" : "Határidő eltávolítása",
|
||||
"Description" : "Leírás",
|
||||
"Formatting help" : "Formázási segítség",
|
||||
"Saved" : "Elmentve",
|
||||
"Unsaved changes" : "Mentetlen változtatások",
|
||||
"Formatting help" : "Formázási segítség",
|
||||
"Add a card description…" : "Adj hozzá kártya leírást...",
|
||||
"Shared boards" : "Megosztott táblák",
|
||||
"View more" : "Több megtekintése",
|
||||
|
||||
@@ -50,9 +50,9 @@
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Táblatörlés visszavonása - Egyébként a tábla a következő időzített folyamatfutáskor törlődik.",
|
||||
"Create new board" : "Új tábla",
|
||||
"New board title" : "Új tábla címe",
|
||||
"by" : "tőle: ",
|
||||
"Modified:" : "Módosítva:",
|
||||
"Created:" : "Létrehozva:",
|
||||
"by" : "tőle: ",
|
||||
"Choose a tag" : "Válassz címkét",
|
||||
"Add a tag" : "Címke hozzáadása",
|
||||
"Select tags" : "Címkék kiválasztása",
|
||||
@@ -63,9 +63,9 @@
|
||||
"Click to set" : "Kattints a beállításhoz",
|
||||
"Remove due date" : "Határidő eltávolítása",
|
||||
"Description" : "Leírás",
|
||||
"Formatting help" : "Formázási segítség",
|
||||
"Saved" : "Elmentve",
|
||||
"Unsaved changes" : "Mentetlen változtatások",
|
||||
"Formatting help" : "Formázási segítség",
|
||||
"Add a card description…" : "Adj hozzá kártya leírást...",
|
||||
"Shared boards" : "Megosztott táblák",
|
||||
"View more" : "Több megtekintése",
|
||||
|
||||
@@ -52,9 +52,9 @@ OC.L10N.register(
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Afturkalla eyðingu borðs - annars verður því eytt við næstu keyrslu cron-verks.",
|
||||
"Create new board" : "Búa til nýtt borð",
|
||||
"New board title" : "Nýr titill á borð",
|
||||
"by" : "af",
|
||||
"Modified:" : "Breytt þann:",
|
||||
"Created:" : "Búið til:",
|
||||
"by" : "af",
|
||||
"Choose a tag" : "Veldu merki",
|
||||
"Add a tag" : "Bæta við merki",
|
||||
"Select tags" : "Veldu merki",
|
||||
@@ -65,9 +65,9 @@ OC.L10N.register(
|
||||
"Click to set" : "Smelltu til að setja",
|
||||
"Remove due date" : "Fjarlægja skiladag",
|
||||
"Description" : "Lýsing",
|
||||
"Formatting help" : "Hjálp við að sníða",
|
||||
"Saved" : "Vistað",
|
||||
"Unsaved changes" : "Óvistaðar breytingar",
|
||||
"Formatting help" : "Hjálp við að sníða",
|
||||
"Add a card description…" : "Settu inn lýsingu á spjaldi ...",
|
||||
"Shared boards" : "Deild borð",
|
||||
"View more" : "Skoða meira",
|
||||
|
||||
@@ -50,9 +50,9 @@
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Afturkalla eyðingu borðs - annars verður því eytt við næstu keyrslu cron-verks.",
|
||||
"Create new board" : "Búa til nýtt borð",
|
||||
"New board title" : "Nýr titill á borð",
|
||||
"by" : "af",
|
||||
"Modified:" : "Breytt þann:",
|
||||
"Created:" : "Búið til:",
|
||||
"by" : "af",
|
||||
"Choose a tag" : "Veldu merki",
|
||||
"Add a tag" : "Bæta við merki",
|
||||
"Select tags" : "Veldu merki",
|
||||
@@ -63,9 +63,9 @@
|
||||
"Click to set" : "Smelltu til að setja",
|
||||
"Remove due date" : "Fjarlægja skiladag",
|
||||
"Description" : "Lýsing",
|
||||
"Formatting help" : "Hjálp við að sníða",
|
||||
"Saved" : "Vistað",
|
||||
"Unsaved changes" : "Óvistaðar breytingar",
|
||||
"Formatting help" : "Hjálp við að sníða",
|
||||
"Add a card description…" : "Settu inn lýsingu á spjaldi ...",
|
||||
"Shared boards" : "Deild borð",
|
||||
"View more" : "Skoða meira",
|
||||
|
||||
24
l10n/it.js
24
l10n/it.js
@@ -6,14 +6,25 @@ OC.L10N.register(
|
||||
"Remove user from card" : "Rimuovi utente dalla scheda",
|
||||
"Hours" : "Ore",
|
||||
"Minutes" : "Minuti",
|
||||
"Maximum file size of {size} exceeded" : "Dimensione massima dei file di {size} superata",
|
||||
"Are you sure you want to delete the stack with all of its data?" : "Sei sicuro di voler eliminare questa pila con tutti i suoi dati?",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "La scheda \"%s\" in \"%s\" ha raggiunto la sua data di scadenza.",
|
||||
"The board \"%s\" has been shared with you by %s." : "La lavagna \"%s\" è stata condivisa con te da %s.",
|
||||
"{user} has shared the board %s with you." : "{user} ha condiviso la lavagna %s con te.",
|
||||
"No data was provided to create an attachment." : "Non è stato fornito alcun dato per creare un allegato.",
|
||||
"Finished" : "Finito",
|
||||
"To review" : "Da revisionare",
|
||||
"Action needed" : "Azione necessaria",
|
||||
"Later" : "Dopo",
|
||||
"The file was uploaded" : "Il file è stato caricato",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Il file caricato supera la direttiva upload_max_filesize in php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Il file caricato supera la direttiva MAX_FILE_SIZE specificata nel modulo HTML",
|
||||
"The file was only partially uploaded" : "Il file è stato caricato solo parzialmente",
|
||||
"No file was uploaded" : "Non è stato caricato alcun file",
|
||||
"Missing a temporary folder" : "Manca una cartella temporanea",
|
||||
"Could not write file to disk" : "Impossibile scrivere il file su disco",
|
||||
"A PHP extension stopped the file upload" : "Un'estensione PHP ha fermato il caricamento del file",
|
||||
"No file uploaded or file size exceeds maximum of %s" : "Nessun file caricato o la dimensione del file supera il massimo di %s",
|
||||
"Deck" : "Deck",
|
||||
"A kanban style project and personal management tool for Nextcloud" : "Uno strumento in stile kanban di gestione progetti e personale per 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- 🚀 Get your project organized" : "Deck è uno strumenti di organizzazione in stile kanban destinato alla pianificazione personale e all'organizzazione di progetti per squadre integrata con Nextcloud.\n\n\n- 📥 Aggiungi le tue attività alle schede e mettile in ordine\n- 📄 Scrivi note aggiuntive in markdown\n- 🔖 Assegna etichette per un'organizzazione ancora migliore\n- 👥 Cindividi cin la tua squadra, amici o famiglia\n- 🚀 Organizza il tuo progetto",
|
||||
@@ -24,6 +35,7 @@ OC.L10N.register(
|
||||
"Board details" : "Dettaglio lavagna",
|
||||
"All Boards" : "Tutte le lavagne",
|
||||
"Archived boards" : "Lavagne archiviate",
|
||||
"Drop your files here to upload it to the card" : "Rilascia qui i tuoi file per caricarli nella scheda",
|
||||
"Archive" : "Archivio",
|
||||
"Unarchive" : "Togli dall'archivio",
|
||||
"Enter a card title" : "Inserisci un titolo alla scheda",
|
||||
@@ -54,9 +66,14 @@ OC.L10N.register(
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Annulla eliminazione della lavagna - Altrimenti la lavagna sarà eliminata durante la prossima esecuzione del job di cron.",
|
||||
"Create new board" : "Crea una nuova lavagna",
|
||||
"New board title" : "Titolo nuova lavagna",
|
||||
"Select an attachment" : "Scegli un allegato",
|
||||
"Cancel upload" : "Annulla caricamento",
|
||||
"by" : "da",
|
||||
"Undo file deletion - Otherwise the file will be deleted during the next cronjob run." : "Annulla eliminazione del file - Altrimenti il file sarà eliminato durante la prossima esecuzione del job di cron.",
|
||||
"Undo file deletion" : "Annulla l'eliminazione della file",
|
||||
"Insert the file into the description" : "Inserisci il file nella descrizione",
|
||||
"Modified:" : "Modificato:",
|
||||
"Created:" : "Creato:",
|
||||
"by" : "da",
|
||||
"Choose a tag" : "Scegli un'etichetta",
|
||||
"Add a tag" : "Aggiungi un'etichetta",
|
||||
"Select tags" : "Seleziona etichette",
|
||||
@@ -67,9 +84,12 @@ OC.L10N.register(
|
||||
"Click to set" : "Clic per impostare",
|
||||
"Remove due date" : "Rimuovi data di scadenza",
|
||||
"Description" : "Descrizione",
|
||||
"Formatting help" : "Guida di formattazione",
|
||||
"Attachments" : "Allegati",
|
||||
"Saved" : "Salvato",
|
||||
"Unsaved changes" : "Modifiche non salvate",
|
||||
"Formatting help" : "Guida di formattazione",
|
||||
"Upload attachment" : "Carica allegato",
|
||||
"Insert attachment" : "Inserisci allegato",
|
||||
"Add a card description…" : "Aggiungi descrizione della scheda...",
|
||||
"Shared boards" : "Lavagne condivise",
|
||||
"View more" : "Visualizza altro",
|
||||
|
||||
24
l10n/it.json
24
l10n/it.json
@@ -4,14 +4,25 @@
|
||||
"Remove user from card" : "Rimuovi utente dalla scheda",
|
||||
"Hours" : "Ore",
|
||||
"Minutes" : "Minuti",
|
||||
"Maximum file size of {size} exceeded" : "Dimensione massima dei file di {size} superata",
|
||||
"Are you sure you want to delete the stack with all of its data?" : "Sei sicuro di voler eliminare questa pila con tutti i suoi dati?",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "La scheda \"%s\" in \"%s\" ha raggiunto la sua data di scadenza.",
|
||||
"The board \"%s\" has been shared with you by %s." : "La lavagna \"%s\" è stata condivisa con te da %s.",
|
||||
"{user} has shared the board %s with you." : "{user} ha condiviso la lavagna %s con te.",
|
||||
"No data was provided to create an attachment." : "Non è stato fornito alcun dato per creare un allegato.",
|
||||
"Finished" : "Finito",
|
||||
"To review" : "Da revisionare",
|
||||
"Action needed" : "Azione necessaria",
|
||||
"Later" : "Dopo",
|
||||
"The file was uploaded" : "Il file è stato caricato",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Il file caricato supera la direttiva upload_max_filesize in php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Il file caricato supera la direttiva MAX_FILE_SIZE specificata nel modulo HTML",
|
||||
"The file was only partially uploaded" : "Il file è stato caricato solo parzialmente",
|
||||
"No file was uploaded" : "Non è stato caricato alcun file",
|
||||
"Missing a temporary folder" : "Manca una cartella temporanea",
|
||||
"Could not write file to disk" : "Impossibile scrivere il file su disco",
|
||||
"A PHP extension stopped the file upload" : "Un'estensione PHP ha fermato il caricamento del file",
|
||||
"No file uploaded or file size exceeds maximum of %s" : "Nessun file caricato o la dimensione del file supera il massimo di %s",
|
||||
"Deck" : "Deck",
|
||||
"A kanban style project and personal management tool for Nextcloud" : "Uno strumento in stile kanban di gestione progetti e personale per 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- 🚀 Get your project organized" : "Deck è uno strumenti di organizzazione in stile kanban destinato alla pianificazione personale e all'organizzazione di progetti per squadre integrata con Nextcloud.\n\n\n- 📥 Aggiungi le tue attività alle schede e mettile in ordine\n- 📄 Scrivi note aggiuntive in markdown\n- 🔖 Assegna etichette per un'organizzazione ancora migliore\n- 👥 Cindividi cin la tua squadra, amici o famiglia\n- 🚀 Organizza il tuo progetto",
|
||||
@@ -22,6 +33,7 @@
|
||||
"Board details" : "Dettaglio lavagna",
|
||||
"All Boards" : "Tutte le lavagne",
|
||||
"Archived boards" : "Lavagne archiviate",
|
||||
"Drop your files here to upload it to the card" : "Rilascia qui i tuoi file per caricarli nella scheda",
|
||||
"Archive" : "Archivio",
|
||||
"Unarchive" : "Togli dall'archivio",
|
||||
"Enter a card title" : "Inserisci un titolo alla scheda",
|
||||
@@ -52,9 +64,14 @@
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Annulla eliminazione della lavagna - Altrimenti la lavagna sarà eliminata durante la prossima esecuzione del job di cron.",
|
||||
"Create new board" : "Crea una nuova lavagna",
|
||||
"New board title" : "Titolo nuova lavagna",
|
||||
"Select an attachment" : "Scegli un allegato",
|
||||
"Cancel upload" : "Annulla caricamento",
|
||||
"by" : "da",
|
||||
"Undo file deletion - Otherwise the file will be deleted during the next cronjob run." : "Annulla eliminazione del file - Altrimenti il file sarà eliminato durante la prossima esecuzione del job di cron.",
|
||||
"Undo file deletion" : "Annulla l'eliminazione della file",
|
||||
"Insert the file into the description" : "Inserisci il file nella descrizione",
|
||||
"Modified:" : "Modificato:",
|
||||
"Created:" : "Creato:",
|
||||
"by" : "da",
|
||||
"Choose a tag" : "Scegli un'etichetta",
|
||||
"Add a tag" : "Aggiungi un'etichetta",
|
||||
"Select tags" : "Seleziona etichette",
|
||||
@@ -65,9 +82,12 @@
|
||||
"Click to set" : "Clic per impostare",
|
||||
"Remove due date" : "Rimuovi data di scadenza",
|
||||
"Description" : "Descrizione",
|
||||
"Formatting help" : "Guida di formattazione",
|
||||
"Attachments" : "Allegati",
|
||||
"Saved" : "Salvato",
|
||||
"Unsaved changes" : "Modifiche non salvate",
|
||||
"Formatting help" : "Guida di formattazione",
|
||||
"Upload attachment" : "Carica allegato",
|
||||
"Insert attachment" : "Inserisci allegato",
|
||||
"Add a card description…" : "Aggiungi descrizione della scheda...",
|
||||
"Shared boards" : "Lavagne condivise",
|
||||
"View more" : "Visualizza altro",
|
||||
|
||||
@@ -51,9 +51,9 @@ OC.L10N.register(
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "დაფის გაუქმების უკუგდება - სხვა შემთხვევაში დაფა შემდეგი conjob-ის გაშვებისას წაიშლება.",
|
||||
"Create new board" : "ახალი დაფის შექმნა",
|
||||
"New board title" : "ახალი დაფის სახელი",
|
||||
"by" : "შემქმნელი",
|
||||
"Modified:" : "შეცვლილია:",
|
||||
"Created:" : "შექმნილია:",
|
||||
"by" : "შემქმნელი",
|
||||
"Choose a tag" : "აირჩიეთ ტეგი",
|
||||
"Add a tag" : "დაამატეთ ტეგი",
|
||||
"Select tags" : "აირჩიეთ ტეგები",
|
||||
@@ -64,9 +64,9 @@ OC.L10N.register(
|
||||
"Click to set" : "დააწკაპუნეთ დასაყენებლად",
|
||||
"Remove due date" : "მოაშორეთ დანიშნულების დრო",
|
||||
"Description" : "აღწერა",
|
||||
"Formatting help" : "დახმარება ფორმატირებაზე",
|
||||
"Saved" : "შენახულია",
|
||||
"Unsaved changes" : "შეუნახავი ცვლილებები",
|
||||
"Formatting help" : "დახმარება ფორმატირებაზე",
|
||||
"Add a card description…" : "დაამატეთ ბარათის აღწერილობა...",
|
||||
"Shared boards" : "გაზიარებული დაფები",
|
||||
"View more" : "მეტის ჩვენება",
|
||||
|
||||
@@ -49,9 +49,9 @@
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "დაფის გაუქმების უკუგდება - სხვა შემთხვევაში დაფა შემდეგი conjob-ის გაშვებისას წაიშლება.",
|
||||
"Create new board" : "ახალი დაფის შექმნა",
|
||||
"New board title" : "ახალი დაფის სახელი",
|
||||
"by" : "შემქმნელი",
|
||||
"Modified:" : "შეცვლილია:",
|
||||
"Created:" : "შექმნილია:",
|
||||
"by" : "შემქმნელი",
|
||||
"Choose a tag" : "აირჩიეთ ტეგი",
|
||||
"Add a tag" : "დაამატეთ ტეგი",
|
||||
"Select tags" : "აირჩიეთ ტეგები",
|
||||
@@ -62,9 +62,9 @@
|
||||
"Click to set" : "დააწკაპუნეთ დასაყენებლად",
|
||||
"Remove due date" : "მოაშორეთ დანიშნულების დრო",
|
||||
"Description" : "აღწერა",
|
||||
"Formatting help" : "დახმარება ფორმატირებაზე",
|
||||
"Saved" : "შენახულია",
|
||||
"Unsaved changes" : "შეუნახავი ცვლილებები",
|
||||
"Formatting help" : "დახმარება ფორმატირებაზე",
|
||||
"Add a card description…" : "დაამატეთ ბარათის აღწერილობა...",
|
||||
"Shared boards" : "გაზიარებული დაფები",
|
||||
"View more" : "მეტის ჩვენება",
|
||||
|
||||
@@ -50,9 +50,9 @@ OC.L10N.register(
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "게시판 삭제 실행 취소 - 작업을 계속 진행하면 다음 cron 작업 실행 시 게시판을 삭제합니다.",
|
||||
"Create new board" : "새 게시판 만들기",
|
||||
"New board title" : "새 게시판 제목",
|
||||
"by" : "by",
|
||||
"Modified:" : "수정한 날짜:",
|
||||
"Created:" : "만든 날짜:",
|
||||
"by" : "by",
|
||||
"Choose a tag" : "태그 선택",
|
||||
"Add a tag" : "태그 추가",
|
||||
"Select tags" : "태그 선택",
|
||||
@@ -63,9 +63,9 @@ OC.L10N.register(
|
||||
"Click to set" : "설정하려면 누르기",
|
||||
"Remove due date" : "만료 날짜 삭제",
|
||||
"Description" : "설명",
|
||||
"Formatting help" : "서식 도움말",
|
||||
"Saved" : "저장됨",
|
||||
"Unsaved changes" : "저장하지 않은 변경 사항",
|
||||
"Formatting help" : "서식 도움말",
|
||||
"Add a card description…" : "카드 설명 추가…",
|
||||
"Shared boards" : "공유된 게시판",
|
||||
"View more" : "더 보기",
|
||||
|
||||
@@ -48,9 +48,9 @@
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "게시판 삭제 실행 취소 - 작업을 계속 진행하면 다음 cron 작업 실행 시 게시판을 삭제합니다.",
|
||||
"Create new board" : "새 게시판 만들기",
|
||||
"New board title" : "새 게시판 제목",
|
||||
"by" : "by",
|
||||
"Modified:" : "수정한 날짜:",
|
||||
"Created:" : "만든 날짜:",
|
||||
"by" : "by",
|
||||
"Choose a tag" : "태그 선택",
|
||||
"Add a tag" : "태그 추가",
|
||||
"Select tags" : "태그 선택",
|
||||
@@ -61,9 +61,9 @@
|
||||
"Click to set" : "설정하려면 누르기",
|
||||
"Remove due date" : "만료 날짜 삭제",
|
||||
"Description" : "설명",
|
||||
"Formatting help" : "서식 도움말",
|
||||
"Saved" : "저장됨",
|
||||
"Unsaved changes" : "저장하지 않은 변경 사항",
|
||||
"Formatting help" : "서식 도움말",
|
||||
"Add a card description…" : "카드 설명 추가…",
|
||||
"Shared boards" : "공유된 게시판",
|
||||
"View more" : "더 보기",
|
||||
|
||||
@@ -8,6 +8,12 @@ OC.L10N.register(
|
||||
"To review" : "Peržiūrėti",
|
||||
"Action needed" : "Reikalingas veiksmas",
|
||||
"Later" : "Vėliau",
|
||||
"The file was uploaded" : "Failas buvo įkeltas",
|
||||
"The file was only partially uploaded" : "Failas buvo tik dalinai įkeltas",
|
||||
"No file was uploaded" : "Nebuvo įkeltas joks failas",
|
||||
"Missing a temporary folder" : "Trūksta laikinojo aplanko",
|
||||
"Could not write file to disk" : "Nepavyko įrašyti failą į diską",
|
||||
"A PHP extension stopped the file upload" : "PHP plėtinys sustabdė failo įkėlimą",
|
||||
"Deck" : "Užduočių saugykla",
|
||||
"Add a new stack" : "Pridėti naują skiltį",
|
||||
"Submit" : "Pateikti",
|
||||
@@ -19,6 +25,7 @@ OC.L10N.register(
|
||||
"Archive" : "Archyvuoti",
|
||||
"Unarchive" : "Išskleisti",
|
||||
"Enter a card title" : "Įveskite kortelės vardą",
|
||||
"Add card" : "Pridėti kortelę",
|
||||
"Close" : "Užverti",
|
||||
"Sharing" : "Bendrinimas",
|
||||
"Tags" : "Žymės",
|
||||
@@ -29,6 +36,8 @@ OC.L10N.register(
|
||||
"Edit" : "Taisyti",
|
||||
"Manage" : "Redaguoti",
|
||||
"Discard share" : "Atšaukti dalinimąsi",
|
||||
"Update" : "Atnaujinti",
|
||||
"Create" : "Sukurti",
|
||||
"Create a new tag" : "Sukurti naują žymę",
|
||||
"Status" : "Būsena",
|
||||
"Title" : "Pavadinimas",
|
||||
@@ -41,17 +50,22 @@ OC.L10N.register(
|
||||
"Reset" : "Atstatyti",
|
||||
"Create new board" : "Sukurti naują sąrašą",
|
||||
"New board title" : "Naujas sąrašo vardas",
|
||||
"by" : " ",
|
||||
"Undo file deletion" : "Atšaukti failo ištrynimą",
|
||||
"Insert the file into the description" : "Įterpti failą į aprašą",
|
||||
"Modified:" : "Keitimo laikas:",
|
||||
"Created:" : "Sukūrimo laikas:",
|
||||
"by" : " ",
|
||||
"Assign users" : "Priskirti naudotojus",
|
||||
"Due date" : "Terminas",
|
||||
"Click to set" : "Spustelėkite pakeitimams atlikti",
|
||||
"Remove due date" : "Pašalinti terminą",
|
||||
"Description" : "Aprašas",
|
||||
"Formatting help" : "Formatavimo pagalba",
|
||||
"Attachments" : "Priedai",
|
||||
"Saved" : "Įrašyta",
|
||||
"Unsaved changes" : "Neįrašyti pakeitimai",
|
||||
"Formatting help" : "Formatavimo pagalba",
|
||||
"Upload attachment" : "Įkelti priedą",
|
||||
"Insert attachment" : "Įterpti priedą",
|
||||
"Add a card description…" : "Pridėti elemento apibūdinimą...",
|
||||
"Shared boards" : "Bendrinami sąrašai",
|
||||
"View more" : "Rodyti daugiau",
|
||||
|
||||
@@ -6,6 +6,12 @@
|
||||
"To review" : "Peržiūrėti",
|
||||
"Action needed" : "Reikalingas veiksmas",
|
||||
"Later" : "Vėliau",
|
||||
"The file was uploaded" : "Failas buvo įkeltas",
|
||||
"The file was only partially uploaded" : "Failas buvo tik dalinai įkeltas",
|
||||
"No file was uploaded" : "Nebuvo įkeltas joks failas",
|
||||
"Missing a temporary folder" : "Trūksta laikinojo aplanko",
|
||||
"Could not write file to disk" : "Nepavyko įrašyti failą į diską",
|
||||
"A PHP extension stopped the file upload" : "PHP plėtinys sustabdė failo įkėlimą",
|
||||
"Deck" : "Užduočių saugykla",
|
||||
"Add a new stack" : "Pridėti naują skiltį",
|
||||
"Submit" : "Pateikti",
|
||||
@@ -17,6 +23,7 @@
|
||||
"Archive" : "Archyvuoti",
|
||||
"Unarchive" : "Išskleisti",
|
||||
"Enter a card title" : "Įveskite kortelės vardą",
|
||||
"Add card" : "Pridėti kortelę",
|
||||
"Close" : "Užverti",
|
||||
"Sharing" : "Bendrinimas",
|
||||
"Tags" : "Žymės",
|
||||
@@ -27,6 +34,8 @@
|
||||
"Edit" : "Taisyti",
|
||||
"Manage" : "Redaguoti",
|
||||
"Discard share" : "Atšaukti dalinimąsi",
|
||||
"Update" : "Atnaujinti",
|
||||
"Create" : "Sukurti",
|
||||
"Create a new tag" : "Sukurti naują žymę",
|
||||
"Status" : "Būsena",
|
||||
"Title" : "Pavadinimas",
|
||||
@@ -39,17 +48,22 @@
|
||||
"Reset" : "Atstatyti",
|
||||
"Create new board" : "Sukurti naują sąrašą",
|
||||
"New board title" : "Naujas sąrašo vardas",
|
||||
"by" : " ",
|
||||
"Undo file deletion" : "Atšaukti failo ištrynimą",
|
||||
"Insert the file into the description" : "Įterpti failą į aprašą",
|
||||
"Modified:" : "Keitimo laikas:",
|
||||
"Created:" : "Sukūrimo laikas:",
|
||||
"by" : " ",
|
||||
"Assign users" : "Priskirti naudotojus",
|
||||
"Due date" : "Terminas",
|
||||
"Click to set" : "Spustelėkite pakeitimams atlikti",
|
||||
"Remove due date" : "Pašalinti terminą",
|
||||
"Description" : "Aprašas",
|
||||
"Formatting help" : "Formatavimo pagalba",
|
||||
"Attachments" : "Priedai",
|
||||
"Saved" : "Įrašyta",
|
||||
"Unsaved changes" : "Neįrašyti pakeitimai",
|
||||
"Formatting help" : "Formatavimo pagalba",
|
||||
"Upload attachment" : "Įkelti priedą",
|
||||
"Insert attachment" : "Įterpti priedą",
|
||||
"Add a card description…" : "Pridėti elemento apibūdinimą...",
|
||||
"Shared boards" : "Bendrinami sąrašai",
|
||||
"View more" : "Rodyti daugiau",
|
||||
|
||||
@@ -51,9 +51,9 @@ OC.L10N.register(
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Angre sletting av forumseksjon - Ellers vil forumseksjonen bli slettet under neste cronjob-kjøring.",
|
||||
"Create new board" : "Opprett et nytt bord",
|
||||
"New board title" : "Ny seksjonstittel",
|
||||
"by" : "av",
|
||||
"Modified:" : "Endret:",
|
||||
"Created:" : "Opprettet:",
|
||||
"by" : "av",
|
||||
"Choose a tag" : "Velg en merkelapp",
|
||||
"Add a tag" : "Legg til en merkelapp",
|
||||
"Select tags" : "Velg merkelapper",
|
||||
@@ -64,9 +64,9 @@ OC.L10N.register(
|
||||
"Click to set" : "Klikk for å sette",
|
||||
"Remove due date" : "Fjern forfallsdato",
|
||||
"Description" : "Beskrivelse",
|
||||
"Formatting help" : "Formateringshjelp",
|
||||
"Saved" : "Lagret",
|
||||
"Unsaved changes" : "Ulagrede endringer",
|
||||
"Formatting help" : "Formateringshjelp",
|
||||
"Add a card description…" : "Legg til en kortbeskrivelse…",
|
||||
"Shared boards" : "Delte bord",
|
||||
"View more" : "Vis mer",
|
||||
|
||||
@@ -49,9 +49,9 @@
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Angre sletting av forumseksjon - Ellers vil forumseksjonen bli slettet under neste cronjob-kjøring.",
|
||||
"Create new board" : "Opprett et nytt bord",
|
||||
"New board title" : "Ny seksjonstittel",
|
||||
"by" : "av",
|
||||
"Modified:" : "Endret:",
|
||||
"Created:" : "Opprettet:",
|
||||
"by" : "av",
|
||||
"Choose a tag" : "Velg en merkelapp",
|
||||
"Add a tag" : "Legg til en merkelapp",
|
||||
"Select tags" : "Velg merkelapper",
|
||||
@@ -62,9 +62,9 @@
|
||||
"Click to set" : "Klikk for å sette",
|
||||
"Remove due date" : "Fjern forfallsdato",
|
||||
"Description" : "Beskrivelse",
|
||||
"Formatting help" : "Formateringshjelp",
|
||||
"Saved" : "Lagret",
|
||||
"Unsaved changes" : "Ulagrede endringer",
|
||||
"Formatting help" : "Formateringshjelp",
|
||||
"Add a card description…" : "Legg til en kortbeskrivelse…",
|
||||
"Shared boards" : "Delte bord",
|
||||
"View more" : "Vis mer",
|
||||
|
||||
@@ -52,9 +52,9 @@ OC.L10N.register(
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Bord verwijdering ongedaan maken - Anders zal het bord worden verwijderd tijdens de volgende cronjob run.",
|
||||
"Create new board" : "Nieuw bord maken",
|
||||
"New board title" : "Nieuwe bord titel",
|
||||
"by" : "door",
|
||||
"Modified:" : "Bewerkt:",
|
||||
"Created:" : "Gemaakt:",
|
||||
"by" : "door",
|
||||
"Choose a tag" : "Kies een tag",
|
||||
"Add a tag" : "Tag toevoegen",
|
||||
"Select tags" : "Kies tags",
|
||||
@@ -65,9 +65,9 @@ OC.L10N.register(
|
||||
"Click to set" : "Klik om in te stellen",
|
||||
"Remove due date" : "Verwijder vervaldatum",
|
||||
"Description" : "Beschrijving",
|
||||
"Formatting help" : "Formatteringshulp",
|
||||
"Saved" : "Opgeslagen",
|
||||
"Unsaved changes" : "Niet bewaarde wijzigingen",
|
||||
"Formatting help" : "Formatteringshulp",
|
||||
"Add a card description…" : "Voeg een kaartbeschrijving toe...",
|
||||
"Shared boards" : "Gedeelde borden",
|
||||
"View more" : "Bekijk meer",
|
||||
|
||||
@@ -50,9 +50,9 @@
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Bord verwijdering ongedaan maken - Anders zal het bord worden verwijderd tijdens de volgende cronjob run.",
|
||||
"Create new board" : "Nieuw bord maken",
|
||||
"New board title" : "Nieuwe bord titel",
|
||||
"by" : "door",
|
||||
"Modified:" : "Bewerkt:",
|
||||
"Created:" : "Gemaakt:",
|
||||
"by" : "door",
|
||||
"Choose a tag" : "Kies een tag",
|
||||
"Add a tag" : "Tag toevoegen",
|
||||
"Select tags" : "Kies tags",
|
||||
@@ -63,9 +63,9 @@
|
||||
"Click to set" : "Klik om in te stellen",
|
||||
"Remove due date" : "Verwijder vervaldatum",
|
||||
"Description" : "Beschrijving",
|
||||
"Formatting help" : "Formatteringshulp",
|
||||
"Saved" : "Opgeslagen",
|
||||
"Unsaved changes" : "Niet bewaarde wijzigingen",
|
||||
"Formatting help" : "Formatteringshulp",
|
||||
"Add a card description…" : "Voeg een kaartbeschrijving toe...",
|
||||
"Shared boards" : "Gedeelde borden",
|
||||
"View more" : "Bekijk meer",
|
||||
|
||||
@@ -28,7 +28,7 @@ OC.L10N.register(
|
||||
"Add card" : "Dodaj kartę",
|
||||
"Close" : "Zamknij",
|
||||
"Sharing" : "Współdzielenie",
|
||||
"Tags" : "Tagi",
|
||||
"Tags" : "Etykiety",
|
||||
"Select users or groups to share with" : "Wybierz użytkowników lub grupy, żeby współdzielić z nimi",
|
||||
"Access for" : "Dostęp dla",
|
||||
"No matching user or group found." : "Nie znaleziono pasujących użytkowników lub grup",
|
||||
@@ -52,9 +52,9 @@ OC.L10N.register(
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Cofnij usunięcie tablicy - w innym przypadku tablica zostanie usunięta przy kolejnym wykonaniu zadania cron.",
|
||||
"Create new board" : "Utwórz nową tablicę",
|
||||
"New board title" : "Tytuł nowej tablicy",
|
||||
"by" : "przez",
|
||||
"Modified:" : "Zmodyfikowano:",
|
||||
"Created:" : "Utworzono:",
|
||||
"by" : "przez",
|
||||
"Choose a tag" : "Wybierz tag",
|
||||
"Add a tag" : "Dodaj tag",
|
||||
"Select tags" : "Zaznacz tagi",
|
||||
@@ -65,9 +65,9 @@ OC.L10N.register(
|
||||
"Click to set" : "Kliknij by ustawić",
|
||||
"Remove due date" : "Usuń datę realizacji",
|
||||
"Description" : "Opis",
|
||||
"Formatting help" : "Pomoc przy formatowaniu",
|
||||
"Saved" : "Zapisano",
|
||||
"Unsaved changes" : "Niezapisane zmiany",
|
||||
"Formatting help" : "Pomoc przy formatowaniu",
|
||||
"Add a card description…" : "Dodaj opis karty",
|
||||
"Shared boards" : "Tablice współdzielone",
|
||||
"View more" : "Zobacz więcej",
|
||||
|
||||
@@ -26,7 +26,7 @@
|
||||
"Add card" : "Dodaj kartę",
|
||||
"Close" : "Zamknij",
|
||||
"Sharing" : "Współdzielenie",
|
||||
"Tags" : "Tagi",
|
||||
"Tags" : "Etykiety",
|
||||
"Select users or groups to share with" : "Wybierz użytkowników lub grupy, żeby współdzielić z nimi",
|
||||
"Access for" : "Dostęp dla",
|
||||
"No matching user or group found." : "Nie znaleziono pasujących użytkowników lub grup",
|
||||
@@ -50,9 +50,9 @@
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Cofnij usunięcie tablicy - w innym przypadku tablica zostanie usunięta przy kolejnym wykonaniu zadania cron.",
|
||||
"Create new board" : "Utwórz nową tablicę",
|
||||
"New board title" : "Tytuł nowej tablicy",
|
||||
"by" : "przez",
|
||||
"Modified:" : "Zmodyfikowano:",
|
||||
"Created:" : "Utworzono:",
|
||||
"by" : "przez",
|
||||
"Choose a tag" : "Wybierz tag",
|
||||
"Add a tag" : "Dodaj tag",
|
||||
"Select tags" : "Zaznacz tagi",
|
||||
@@ -63,9 +63,9 @@
|
||||
"Click to set" : "Kliknij by ustawić",
|
||||
"Remove due date" : "Usuń datę realizacji",
|
||||
"Description" : "Opis",
|
||||
"Formatting help" : "Pomoc przy formatowaniu",
|
||||
"Saved" : "Zapisano",
|
||||
"Unsaved changes" : "Niezapisane zmiany",
|
||||
"Formatting help" : "Pomoc przy formatowaniu",
|
||||
"Add a card description…" : "Dodaj opis karty",
|
||||
"Shared boards" : "Tablice współdzielone",
|
||||
"View more" : "Zobacz więcej",
|
||||
|
||||
@@ -6,14 +6,25 @@ OC.L10N.register(
|
||||
"Remove user from card" : "Remover usuário do cartão",
|
||||
"Hours" : "Horas",
|
||||
"Minutes" : "Minutos",
|
||||
"Maximum file size of {size} exceeded" : "Excedeu o tamanho máximo de arquivo de {size}",
|
||||
"Are you sure you want to delete the stack with all of its data?" : "Quer realmente excluir a pilha com todos os seus dados?",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "O cartão \"%s\" em \"%s\" atingiu sua data de vencimento.",
|
||||
"The board \"%s\" has been shared with you by %s." : "O quadro \"%s\" foi compartilhado com você por %s.",
|
||||
"{user} has shared the board %s with you." : "{user} compartilhou o quadro %s com você.",
|
||||
"No data was provided to create an attachment." : "Nenhum dado foi fornecido para criar um anexo.",
|
||||
"Finished" : "Terminado",
|
||||
"To review" : "Para revisão",
|
||||
"Action needed" : "Ação necessária",
|
||||
"Later" : "Depois",
|
||||
"The file was uploaded" : "O arquivo foi enviado",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "O arquivo enviado excede a diretiva upload_max_filesize do php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "O arquivo enviado excede a diretiva MAX_FILE_SIZE especificada no formulário HTML",
|
||||
"The file was only partially uploaded" : "O arquivo foi parcialmente enviado",
|
||||
"No file was uploaded" : "Nenhum arquivo foi enviado",
|
||||
"Missing a temporary folder" : "Falta uma pasta temporária",
|
||||
"Could not write file to disk" : "Não foi possível escrever no disco",
|
||||
"A PHP extension stopped the file upload" : "Uma extensão PHP parou o envio do arquivo",
|
||||
"No file uploaded or file size exceeds maximum of %s" : "Nenhum arquivo enviado ou o tamanho excede o máximo de %s",
|
||||
"Deck" : "Deck",
|
||||
"A kanban style project and personal management tool for Nextcloud" : "Um projeto no estilo kanban e uma ferramenta de gerenciamento pessoal para 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- 🚀 Get your project organized" : "Deck é uma ferramenta de organização de estilo kanban destinada ao planejamento pessoal e organização do projeto para equipes integradas com o Nextcloud.\n\n\n- 📥 Adicione suas tarefas aos cartões e coloque-os em ordem\n- 📄 Anote notas adicionais no markdown\n- 🔖 Atribua rótulos para uma organização ainda melhor\n- 👥 Compartilhe com sua equipe, amigos ou familiares\n- 🚀 Faça seu projeto organizado",
|
||||
@@ -24,6 +35,7 @@ OC.L10N.register(
|
||||
"Board details" : "Detalhes do painel",
|
||||
"All Boards" : "Todos os paineis",
|
||||
"Archived boards" : "Painéis arquivados",
|
||||
"Drop your files here to upload it to the card" : "Solte seus arquivos aqui para enviá-los para o cartão",
|
||||
"Archive" : "Arquivar",
|
||||
"Unarchive" : "Desarquivar",
|
||||
"Enter a card title" : "Digite um título de cartão",
|
||||
@@ -54,9 +66,14 @@ OC.L10N.register(
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Desfazer a exclusão da placa - Caso contrário, a placa será excluída durante o próximo cronjob.",
|
||||
"Create new board" : "Criar novo painel",
|
||||
"New board title" : "Título do novo painel",
|
||||
"Select an attachment" : "Selecionar um anexo",
|
||||
"Cancel upload" : "Cancelar envio",
|
||||
"by" : "por",
|
||||
"Undo file deletion - Otherwise the file will be deleted during the next cronjob run." : "Desfazer exclusão de arquivo - Caso contrário será excluído na próxima execução do cronjob.",
|
||||
"Undo file deletion" : "Desfazer exclusão de arquivo",
|
||||
"Insert the file into the description" : "Insira o arquivo na descrição",
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Criado:",
|
||||
"by" : "por",
|
||||
"Choose a tag" : "Escolha um rótulo",
|
||||
"Add a tag" : "Adicione um rótulo",
|
||||
"Select tags" : "Selecione os rótulos",
|
||||
@@ -67,9 +84,12 @@ OC.L10N.register(
|
||||
"Click to set" : "Clique para setar",
|
||||
"Remove due date" : "Remover devido à data",
|
||||
"Description" : "Descrição",
|
||||
"Formatting help" : "Formatando ajuda",
|
||||
"Attachments" : "Anexos",
|
||||
"Saved" : "Salvo",
|
||||
"Unsaved changes" : "Alterações não salvas",
|
||||
"Formatting help" : "Formatando ajuda",
|
||||
"Upload attachment" : "Enviar anexo",
|
||||
"Insert attachment" : "Inserir anexo",
|
||||
"Add a card description…" : "Adicionar uma descrição para o cartão...",
|
||||
"Shared boards" : "Painéis compartilhados",
|
||||
"View more" : "Ver mais",
|
||||
|
||||
@@ -4,14 +4,25 @@
|
||||
"Remove user from card" : "Remover usuário do cartão",
|
||||
"Hours" : "Horas",
|
||||
"Minutes" : "Minutos",
|
||||
"Maximum file size of {size} exceeded" : "Excedeu o tamanho máximo de arquivo de {size}",
|
||||
"Are you sure you want to delete the stack with all of its data?" : "Quer realmente excluir a pilha com todos os seus dados?",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "O cartão \"%s\" em \"%s\" atingiu sua data de vencimento.",
|
||||
"The board \"%s\" has been shared with you by %s." : "O quadro \"%s\" foi compartilhado com você por %s.",
|
||||
"{user} has shared the board %s with you." : "{user} compartilhou o quadro %s com você.",
|
||||
"No data was provided to create an attachment." : "Nenhum dado foi fornecido para criar um anexo.",
|
||||
"Finished" : "Terminado",
|
||||
"To review" : "Para revisão",
|
||||
"Action needed" : "Ação necessária",
|
||||
"Later" : "Depois",
|
||||
"The file was uploaded" : "O arquivo foi enviado",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "O arquivo enviado excede a diretiva upload_max_filesize do php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "O arquivo enviado excede a diretiva MAX_FILE_SIZE especificada no formulário HTML",
|
||||
"The file was only partially uploaded" : "O arquivo foi parcialmente enviado",
|
||||
"No file was uploaded" : "Nenhum arquivo foi enviado",
|
||||
"Missing a temporary folder" : "Falta uma pasta temporária",
|
||||
"Could not write file to disk" : "Não foi possível escrever no disco",
|
||||
"A PHP extension stopped the file upload" : "Uma extensão PHP parou o envio do arquivo",
|
||||
"No file uploaded or file size exceeds maximum of %s" : "Nenhum arquivo enviado ou o tamanho excede o máximo de %s",
|
||||
"Deck" : "Deck",
|
||||
"A kanban style project and personal management tool for Nextcloud" : "Um projeto no estilo kanban e uma ferramenta de gerenciamento pessoal para 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- 🚀 Get your project organized" : "Deck é uma ferramenta de organização de estilo kanban destinada ao planejamento pessoal e organização do projeto para equipes integradas com o Nextcloud.\n\n\n- 📥 Adicione suas tarefas aos cartões e coloque-os em ordem\n- 📄 Anote notas adicionais no markdown\n- 🔖 Atribua rótulos para uma organização ainda melhor\n- 👥 Compartilhe com sua equipe, amigos ou familiares\n- 🚀 Faça seu projeto organizado",
|
||||
@@ -22,6 +33,7 @@
|
||||
"Board details" : "Detalhes do painel",
|
||||
"All Boards" : "Todos os paineis",
|
||||
"Archived boards" : "Painéis arquivados",
|
||||
"Drop your files here to upload it to the card" : "Solte seus arquivos aqui para enviá-los para o cartão",
|
||||
"Archive" : "Arquivar",
|
||||
"Unarchive" : "Desarquivar",
|
||||
"Enter a card title" : "Digite um título de cartão",
|
||||
@@ -52,9 +64,14 @@
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Desfazer a exclusão da placa - Caso contrário, a placa será excluída durante o próximo cronjob.",
|
||||
"Create new board" : "Criar novo painel",
|
||||
"New board title" : "Título do novo painel",
|
||||
"Select an attachment" : "Selecionar um anexo",
|
||||
"Cancel upload" : "Cancelar envio",
|
||||
"by" : "por",
|
||||
"Undo file deletion - Otherwise the file will be deleted during the next cronjob run." : "Desfazer exclusão de arquivo - Caso contrário será excluído na próxima execução do cronjob.",
|
||||
"Undo file deletion" : "Desfazer exclusão de arquivo",
|
||||
"Insert the file into the description" : "Insira o arquivo na descrição",
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Criado:",
|
||||
"by" : "por",
|
||||
"Choose a tag" : "Escolha um rótulo",
|
||||
"Add a tag" : "Adicione um rótulo",
|
||||
"Select tags" : "Selecione os rótulos",
|
||||
@@ -65,9 +82,12 @@
|
||||
"Click to set" : "Clique para setar",
|
||||
"Remove due date" : "Remover devido à data",
|
||||
"Description" : "Descrição",
|
||||
"Formatting help" : "Formatando ajuda",
|
||||
"Attachments" : "Anexos",
|
||||
"Saved" : "Salvo",
|
||||
"Unsaved changes" : "Alterações não salvas",
|
||||
"Formatting help" : "Formatando ajuda",
|
||||
"Upload attachment" : "Enviar anexo",
|
||||
"Insert attachment" : "Inserir anexo",
|
||||
"Add a card description…" : "Adicionar uma descrição para o cartão...",
|
||||
"Shared boards" : "Painéis compartilhados",
|
||||
"View more" : "Ver mais",
|
||||
|
||||
@@ -44,9 +44,9 @@ OC.L10N.register(
|
||||
"Reset" : "Repor",
|
||||
"Create new board" : "Criar novo quadro",
|
||||
"New board title" : "Novo título de quadro",
|
||||
"by" : "por",
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Criado:",
|
||||
"by" : "por",
|
||||
"Choose a tag" : "Escolher etiqueta",
|
||||
"Add a tag" : "Adicionar uma etiqueta",
|
||||
"Description" : "Descrição",
|
||||
|
||||
@@ -42,9 +42,9 @@
|
||||
"Reset" : "Repor",
|
||||
"Create new board" : "Criar novo quadro",
|
||||
"New board title" : "Novo título de quadro",
|
||||
"by" : "por",
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Criado:",
|
||||
"by" : "por",
|
||||
"Choose a tag" : "Escolher etiqueta",
|
||||
"Add a tag" : "Adicionar uma etiqueta",
|
||||
"Description" : "Descrição",
|
||||
|
||||
24
l10n/ru.js
24
l10n/ru.js
@@ -6,14 +6,25 @@ OC.L10N.register(
|
||||
"Remove user from card" : "Убрать пользователя из карточки",
|
||||
"Hours" : "Часы",
|
||||
"Minutes" : "Минуты",
|
||||
"Maximum file size of {size} exceeded" : "Максимальный размер файла {size} превышен",
|
||||
"Are you sure you want to delete the stack with all of its data?" : "Вы действительно хотите удалить стек со всеми его данными?",
|
||||
"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." : "{user} предоставил(а) Вам доступ к доске «%s».",
|
||||
"No data was provided to create an attachment." : "Никаких данных для создания вложения не было.",
|
||||
"Finished" : "Завершено",
|
||||
"To review" : "Просмотреть",
|
||||
"Action needed" : "Требуется действие",
|
||||
"Later" : "Позже",
|
||||
"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-форме",
|
||||
"The file was only partially uploaded" : "Файл был получен частично",
|
||||
"No file was uploaded" : "Не было загружено ни одного файла",
|
||||
"Missing a temporary folder" : "Отсутствует временный каталог",
|
||||
"Could not write file to disk" : "Невозможно записать файл на диск",
|
||||
"A PHP extension stopped the file upload" : "Расширение PHP прервало загрузку файла",
|
||||
"No file uploaded or file size exceeds maximum of %s" : "Файл не загружен или его размер превышает %s",
|
||||
"Deck" : "Дека",
|
||||
"A kanban style project and personal management tool for Nextcloud" : "Проект в стиле канбан и личный инструмент управления для 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- 🚀 Get your project organized" : "Deck - инструмент, предназначенный для личного планирования и организации проекта в стиле канбан для команд , интегрированных в Nextcloud.\n\n\n- 📥 Добавьте свои задачи в карты и разместите их в нужном порядке\n- 📄 Записывайте дополнительные примечания в Markdown-формате\n- 🔖 Назначьте ярлыки для еще лучшей организации\n- 👥 Поделитесь с вашей командой, друзьями или семьей\n- 🚀 Сделайте свой проект более организованным",
|
||||
@@ -24,6 +35,7 @@ OC.L10N.register(
|
||||
"Board details" : "Подробности доски",
|
||||
"All Boards" : "Все доски",
|
||||
"Archived boards" : "Архив досок",
|
||||
"Drop your files here to upload it to the card" : "Перетащите файл сюда, чтобы загрузить его на карту",
|
||||
"Archive" : "Архивировать",
|
||||
"Unarchive" : "Разархивировать",
|
||||
"Enter a card title" : "Введите заголовок карточки",
|
||||
@@ -54,9 +66,14 @@ OC.L10N.register(
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Отменить удаление доски, иначе она будет автоматически удалена при следующей обработке cronjob.",
|
||||
"Create new board" : "Создать новую доску",
|
||||
"New board title" : "Заголовок новой доски",
|
||||
"Select an attachment" : "Выберите вложение",
|
||||
"Cancel upload" : "Прервать загрузку",
|
||||
"by" : "автор",
|
||||
"Undo file deletion - Otherwise the file will be deleted during the next cronjob run." : "Отменить удаление файла, иначе он будет автоматически удалена при следующей обработке cronjob.",
|
||||
"Undo file deletion" : "Отменить удаление файла",
|
||||
"Insert the file into the description" : "Вставьте файл в описание",
|
||||
"Modified:" : "Изменён:",
|
||||
"Created:" : "Создан:",
|
||||
"by" : "автор",
|
||||
"Choose a tag" : "Выберите метку",
|
||||
"Add a tag" : "Добавить метку",
|
||||
"Select tags" : "Выбор меток",
|
||||
@@ -67,9 +84,12 @@ OC.L10N.register(
|
||||
"Click to set" : "Нажмите для установки",
|
||||
"Remove due date" : "Удалить срок исполнения",
|
||||
"Description" : "Описание",
|
||||
"Formatting help" : "Справка по форматированию",
|
||||
"Attachments" : "Вложения",
|
||||
"Saved" : "Сохранено",
|
||||
"Unsaved changes" : "Не сохраненные изменения",
|
||||
"Formatting help" : "Справка по форматированию",
|
||||
"Upload attachment" : "Загрузить вложение",
|
||||
"Insert attachment" : "Вставить вложение",
|
||||
"Add a card description…" : "Добавить описание карточки…",
|
||||
"Shared boards" : "Общие доски",
|
||||
"View more" : "Просмотреть дальше",
|
||||
|
||||
24
l10n/ru.json
24
l10n/ru.json
@@ -4,14 +4,25 @@
|
||||
"Remove user from card" : "Убрать пользователя из карточки",
|
||||
"Hours" : "Часы",
|
||||
"Minutes" : "Минуты",
|
||||
"Maximum file size of {size} exceeded" : "Максимальный размер файла {size} превышен",
|
||||
"Are you sure you want to delete the stack with all of its data?" : "Вы действительно хотите удалить стек со всеми его данными?",
|
||||
"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." : "{user} предоставил(а) Вам доступ к доске «%s».",
|
||||
"No data was provided to create an attachment." : "Никаких данных для создания вложения не было.",
|
||||
"Finished" : "Завершено",
|
||||
"To review" : "Просмотреть",
|
||||
"Action needed" : "Требуется действие",
|
||||
"Later" : "Позже",
|
||||
"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-форме",
|
||||
"The file was only partially uploaded" : "Файл был получен частично",
|
||||
"No file was uploaded" : "Не было загружено ни одного файла",
|
||||
"Missing a temporary folder" : "Отсутствует временный каталог",
|
||||
"Could not write file to disk" : "Невозможно записать файл на диск",
|
||||
"A PHP extension stopped the file upload" : "Расширение PHP прервало загрузку файла",
|
||||
"No file uploaded or file size exceeds maximum of %s" : "Файл не загружен или его размер превышает %s",
|
||||
"Deck" : "Дека",
|
||||
"A kanban style project and personal management tool for Nextcloud" : "Проект в стиле канбан и личный инструмент управления для 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- 🚀 Get your project organized" : "Deck - инструмент, предназначенный для личного планирования и организации проекта в стиле канбан для команд , интегрированных в Nextcloud.\n\n\n- 📥 Добавьте свои задачи в карты и разместите их в нужном порядке\n- 📄 Записывайте дополнительные примечания в Markdown-формате\n- 🔖 Назначьте ярлыки для еще лучшей организации\n- 👥 Поделитесь с вашей командой, друзьями или семьей\n- 🚀 Сделайте свой проект более организованным",
|
||||
@@ -22,6 +33,7 @@
|
||||
"Board details" : "Подробности доски",
|
||||
"All Boards" : "Все доски",
|
||||
"Archived boards" : "Архив досок",
|
||||
"Drop your files here to upload it to the card" : "Перетащите файл сюда, чтобы загрузить его на карту",
|
||||
"Archive" : "Архивировать",
|
||||
"Unarchive" : "Разархивировать",
|
||||
"Enter a card title" : "Введите заголовок карточки",
|
||||
@@ -52,9 +64,14 @@
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Отменить удаление доски, иначе она будет автоматически удалена при следующей обработке cronjob.",
|
||||
"Create new board" : "Создать новую доску",
|
||||
"New board title" : "Заголовок новой доски",
|
||||
"Select an attachment" : "Выберите вложение",
|
||||
"Cancel upload" : "Прервать загрузку",
|
||||
"by" : "автор",
|
||||
"Undo file deletion - Otherwise the file will be deleted during the next cronjob run." : "Отменить удаление файла, иначе он будет автоматически удалена при следующей обработке cronjob.",
|
||||
"Undo file deletion" : "Отменить удаление файла",
|
||||
"Insert the file into the description" : "Вставьте файл в описание",
|
||||
"Modified:" : "Изменён:",
|
||||
"Created:" : "Создан:",
|
||||
"by" : "автор",
|
||||
"Choose a tag" : "Выберите метку",
|
||||
"Add a tag" : "Добавить метку",
|
||||
"Select tags" : "Выбор меток",
|
||||
@@ -65,9 +82,12 @@
|
||||
"Click to set" : "Нажмите для установки",
|
||||
"Remove due date" : "Удалить срок исполнения",
|
||||
"Description" : "Описание",
|
||||
"Formatting help" : "Справка по форматированию",
|
||||
"Attachments" : "Вложения",
|
||||
"Saved" : "Сохранено",
|
||||
"Unsaved changes" : "Не сохраненные изменения",
|
||||
"Formatting help" : "Справка по форматированию",
|
||||
"Upload attachment" : "Загрузить вложение",
|
||||
"Insert attachment" : "Вставить вложение",
|
||||
"Add a card description…" : "Добавить описание карточки…",
|
||||
"Shared boards" : "Общие доски",
|
||||
"View more" : "Просмотреть дальше",
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user