Compare commits
92 Commits
v0.5.0-rc1
...
v0.5.1
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
96dffbfedd | ||
|
|
eb590b5a71 | ||
|
|
c2294b6e6f | ||
|
|
8906d12a47 | ||
|
|
3162ff4261 | ||
|
|
57643447d6 | ||
|
|
6b86d8ae30 | ||
|
|
4279e09cc2 | ||
|
|
dd104466d6 | ||
|
|
43a11327a6 | ||
|
|
e1080ffd98 | ||
|
|
ebc375fe20 | ||
|
|
b778420d63 | ||
|
|
baf7ff9ebf | ||
|
|
7733754c2b | ||
|
|
3c1d1d2dd5 | ||
|
|
82bc6b2a71 | ||
|
|
e5fe19c107 | ||
|
|
8499318928 | ||
|
|
0dd96e9858 | ||
|
|
0296dc78f1 | ||
|
|
3b403d5576 | ||
|
|
f5d7fdf75f | ||
|
|
0528bd59d1 | ||
|
|
7c95783ab5 | ||
|
|
bff3cafb37 | ||
|
|
9e58207392 | ||
|
|
c33b41dcbe | ||
|
|
efe2a50a4e | ||
|
|
cfc3b41471 | ||
|
|
cfd67eab95 | ||
|
|
98fa04528d | ||
|
|
20e8ebc26a | ||
|
|
405d5585ce | ||
|
|
1fb562d94b | ||
|
|
1beff0e760 | ||
|
|
6c6f8ae53f | ||
|
|
ed53de4cf1 | ||
|
|
9f96627435 | ||
|
|
b39b7d9629 | ||
|
|
2ecba36ba3 | ||
|
|
7963f7f7b6 | ||
|
|
50faa97558 | ||
|
|
135d7741d2 | ||
|
|
2b1e9ba07d | ||
|
|
e121353ac8 | ||
|
|
07442a187a | ||
|
|
2c024dedce | ||
|
|
d28bf74c73 | ||
|
|
223523005d | ||
|
|
c68437e836 | ||
|
|
c65a9151ab | ||
|
|
0b90f09873 | ||
|
|
3374f6c908 | ||
|
|
7bcd313883 | ||
|
|
76bb42e526 | ||
|
|
d4b5f2af57 | ||
|
|
1299fcf978 | ||
|
|
d04f8742a6 | ||
|
|
6b8e5f8b76 | ||
|
|
c429ba5aff | ||
|
|
ef36103c47 | ||
|
|
82336e82d9 | ||
|
|
3baf9500c3 | ||
|
|
1dcefc1d57 | ||
|
|
66b6d4a09a | ||
|
|
44c1ba62e8 | ||
|
|
590cdba75b | ||
|
|
9786efe490 | ||
|
|
352851a686 | ||
|
|
b4c1d35b52 | ||
|
|
776d79c12b | ||
|
|
291b0ee3c0 | ||
|
|
16c7e409d7 | ||
|
|
6064fe71a0 | ||
|
|
360f01a07b | ||
|
|
4546337d3e | ||
|
|
aeae192eaf | ||
|
|
3db56ca93e | ||
|
|
c69fc9ec77 | ||
|
|
87b56ec111 | ||
|
|
74abc499d8 | ||
|
|
7c04602cc7 | ||
|
|
daed799fa7 | ||
|
|
65e192efc3 | ||
|
|
e1c700878a | ||
|
|
81a0c62308 | ||
|
|
470538ac91 | ||
|
|
c6e7d621f0 | ||
|
|
99ca1ecf8c | ||
|
|
4a0398923f | ||
|
|
c7816b5a1f |
35
.drone.yml
35
.drone.yml
@@ -8,7 +8,7 @@ pipeline:
|
||||
image: nextcloudci/php7.0:php7.0-17
|
||||
environment:
|
||||
- APP_NAME=deck
|
||||
- CORE_BRANCH=stable14
|
||||
- CORE_BRANCH=stable15
|
||||
- DB=sqlite
|
||||
commands:
|
||||
# Pre-setup steps
|
||||
@@ -119,6 +119,18 @@ pipeline:
|
||||
when:
|
||||
matrix:
|
||||
TESTS: syntax-php7.2
|
||||
syntax-php7.3:
|
||||
image: nextcloudci/php7.3:php7.3-2
|
||||
environment:
|
||||
- APP_NAME=deck
|
||||
- CORE_BRANCH=stable15
|
||||
- DB=sqlite
|
||||
commands:
|
||||
- composer install
|
||||
- ./vendor/bin/parallel-lint --exclude ./vendor/ .
|
||||
when:
|
||||
matrix:
|
||||
TESTS: syntax-php7.3
|
||||
php5.6:
|
||||
image: nextcloudci/php5.6:php5.6-8
|
||||
environment:
|
||||
@@ -198,6 +210,25 @@ pipeline:
|
||||
when:
|
||||
matrix:
|
||||
TESTS: php7.2
|
||||
php7.3:
|
||||
image: nextcloudci/php7.3:php7.3-2
|
||||
environment:
|
||||
- APP_NAME=deck
|
||||
- CORE_BRANCH=stable15
|
||||
- DB=sqlite
|
||||
commands:
|
||||
# Pre-setup steps
|
||||
- wget https://raw.githubusercontent.com/nextcloud/travis_ci/master/before_install.sh
|
||||
- bash ./before_install.sh $APP_NAME $CORE_BRANCH $DB
|
||||
- cd ../server/
|
||||
- php occ app:enable deck
|
||||
- cd apps/$APP_NAME
|
||||
- composer install
|
||||
- phpunit -c tests/phpunit.xml --coverage-clover build/php-unit.coverage.xml
|
||||
- phpunit -c tests/phpunit.integration.xml --coverage-clover build/php-integration.coverage.xml
|
||||
when:
|
||||
matrix:
|
||||
TESTS: php7.3
|
||||
integration:
|
||||
image: nextcloudci/integration-php7.0:integration-php7.0-6
|
||||
environment:
|
||||
@@ -240,10 +271,12 @@ matrix:
|
||||
- TESTS: syntax-php7.0
|
||||
- TESTS: syntax-php7.1
|
||||
- TESTS: syntax-php7.2
|
||||
- TESTS: syntax-php7.3
|
||||
- TESTS: php5.6
|
||||
- TESTS: php7.0
|
||||
- TESTS: php7.1
|
||||
- TESTS: php7.2
|
||||
- TESTS: php7.3
|
||||
- TESTS: eslint
|
||||
- TESTS: jsbuild
|
||||
#- TESTS: integration
|
||||
|
||||
@@ -5,6 +5,7 @@ php:
|
||||
- 7.0
|
||||
- 7.1
|
||||
- 7.2
|
||||
- 7.3
|
||||
env:
|
||||
- CORE_BRANCH=stable14 DB=mysql
|
||||
|
||||
|
||||
24
CHANGELOG.md
24
CHANGELOG.md
@@ -1,7 +1,29 @@
|
||||
# Changelog
|
||||
All notable changes to this project will be documented in this file.
|
||||
|
||||
## 0.5.0 - unreleased
|
||||
## 0.5.1 - 2018-12-05
|
||||
|
||||
### Added
|
||||
- Separate settings for description changes in activity
|
||||
- Less verbose description change activities
|
||||
- Use server settings to restrict sharing to groups
|
||||
- Add setting to exclude groups from creating their own boards
|
||||
|
||||
### Fixed
|
||||
- Fix issue when using a separate table prefix @bpcurse
|
||||
- Fix invalid activity parameters being published
|
||||
- Wording fixes @cloud2018
|
||||
- Improve loading performance by removing unused activity preloading
|
||||
- Fix timestamp issues in deleted items tab
|
||||
- Remember show state of the board navigation @weeman1337
|
||||
- Add optional classes for custom styling @tinko92
|
||||
- Fix missing details on activity emails
|
||||
- Fix unrelated comments in board activity list
|
||||
- Fix search not working properly
|
||||
- Trigger comment notification on update only
|
||||
|
||||
|
||||
## 0.5.0 - 2018-11-15
|
||||
|
||||
### Added
|
||||
|
||||
|
||||
@@ -65,7 +65,7 @@ The documentation for our REST API can be found at https://deck.readthedocs.io/e
|
||||
|
||||
Please read the [Code of Conduct](https://nextcloud.com/community/code-of-conduct/). This document offers some guidance to ensure Nextcloud participants can cooperate effectively in a positive and inspiring atmosphere, and to explain how together we can strengthen and support each other.
|
||||
|
||||
For more information please review the [guidelines for contributing](https://github.com/nextcloud/server/blob/master/CONTRIBUTING.md) to this repository.
|
||||
For more information please review the [guidelines for contributing](https://github.com/nextcloud/server/blob/master/.github/CONTRIBUTING.md) to this repository.
|
||||
|
||||
### Apply a license
|
||||
|
||||
|
||||
@@ -135,6 +135,11 @@
|
||||
<type>clob</type>
|
||||
<notnull>false</notnull>
|
||||
</field>
|
||||
<field>
|
||||
<name>description_prev</name>
|
||||
<type>clob</type>
|
||||
<notnull>false</notnull>
|
||||
</field>
|
||||
<field>
|
||||
<name>stack_id</name>
|
||||
<type>integer</type>
|
||||
@@ -155,6 +160,12 @@
|
||||
<notnull>false</notnull>
|
||||
<unsigned>true</unsigned>
|
||||
</field>
|
||||
<field>
|
||||
<name>last_editor</name>
|
||||
<type>text</type>
|
||||
<notnull>false</notnull>
|
||||
<length>64</length>
|
||||
</field>
|
||||
<field>
|
||||
<name>created_at</name>
|
||||
<type>integer</type>
|
||||
|
||||
@@ -17,7 +17,7 @@
|
||||
- 🚀 Get your project organized
|
||||
|
||||
</description>
|
||||
<version>0.5.0-rc1</version>
|
||||
<version>0.5.1</version>
|
||||
<licence>agpl</licence>
|
||||
<author>Julius Härtl</author>
|
||||
<namespace>Deck</namespace>
|
||||
@@ -29,8 +29,8 @@
|
||||
<website>https://github.com/nextcloud/deck</website>
|
||||
<bugs>https://github.com/nextcloud/deck/issues</bugs>
|
||||
<repository type="git">https://github.com/nextcloud/deck.git</repository>
|
||||
<screenshot>https://download.bitgrid.net/nextcloud/deck/screenshots/Deck_Board.png</screenshot>
|
||||
<screenshot>https://download.bitgrid.net/nextcloud/deck/screenshots/Deck_Details.png</screenshot>
|
||||
<screenshot>https://download.bitgrid.net/nextcloud/deck/screenshots/0.5/deck-notifications.png</screenshot>
|
||||
<screenshot>https://download.bitgrid.net/nextcloud/deck/screenshots/0.5/deck-comment2.png</screenshot>
|
||||
<dependencies>
|
||||
<php min-version="5.6"/>
|
||||
<database min-version="9.4">pgsql</database>
|
||||
@@ -41,6 +41,7 @@
|
||||
<background-jobs>
|
||||
<job>OCA\Deck\Cron\DeleteCron</job>
|
||||
<job>OCA\Deck\Cron\ScheduledNotifications</job>
|
||||
<job>OCA\Deck\Cron\CardDescriptionActivity</job>
|
||||
</background-jobs>
|
||||
<repair-steps>
|
||||
<post-migration>
|
||||
@@ -53,6 +54,7 @@
|
||||
<activity>
|
||||
<settings>
|
||||
<setting>OCA\Deck\Activity\Setting</setting>
|
||||
<setting>OCA\Deck\Activity\DescriptionSetting</setting>
|
||||
</settings>
|
||||
<filters>
|
||||
<filter>OCA\Deck\Activity\Filter</filter>
|
||||
|
||||
@@ -26,6 +26,9 @@ return [
|
||||
'routes' => [
|
||||
['name' => 'page#index', 'url' => '/', 'verb' => 'GET'],
|
||||
|
||||
['name' => 'Config#get', 'url' => '/config', 'verb' => 'GET'],
|
||||
['name' => 'Config#setValue', 'url' => '/config/{key}', 'verb' => 'POST'],
|
||||
|
||||
// boards
|
||||
['name' => 'board#index', 'url' => '/boards', 'verb' => 'GET'],
|
||||
['name' => 'board#create', 'url' => '/boards', 'verb' => 'POST'],
|
||||
|
||||
@@ -148,6 +148,22 @@ input.input-inline {
|
||||
|
||||
}
|
||||
|
||||
#app-settings-content {
|
||||
overflow: initial;
|
||||
|
||||
.ui-select-match-item {
|
||||
border: 1px solid var(--color-background-darker) !important;
|
||||
.select-label {
|
||||
color: var(--color-main-text);
|
||||
}
|
||||
}
|
||||
|
||||
p.hint {
|
||||
margin-top: 10px;
|
||||
color: var(--color-text-light);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Board view
|
||||
*/
|
||||
@@ -776,6 +792,7 @@ input.input-inline {
|
||||
flex: 1;
|
||||
}
|
||||
}
|
||||
|
||||
.section-header-tabbed {
|
||||
margin-top: 10px;
|
||||
margin-bottom: 5px;
|
||||
@@ -785,8 +802,15 @@ input.input-inline {
|
||||
margin: 0;
|
||||
flex-grow: 1;
|
||||
}
|
||||
.tabDetails {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.tabDetails {
|
||||
display: flex;
|
||||
height: 40px;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
input[type=button] {
|
||||
width: 32px;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -796,7 +820,6 @@ input.input-inline {
|
||||
padding: 0 10px;
|
||||
font-size: 8pt;
|
||||
display: none;
|
||||
align-self: flex-end;
|
||||
text-align: center;
|
||||
&.saved {
|
||||
background-color: $color-success;
|
||||
@@ -1239,6 +1262,7 @@ input.input-inline {
|
||||
display: inline-block;
|
||||
overflow: hidden;
|
||||
vertical-align: middle;
|
||||
flex-grow: 1;
|
||||
}
|
||||
|
||||
.icon-delete {
|
||||
@@ -1281,10 +1305,16 @@ input.input-inline {
|
||||
.board-detail__deleted-list__item {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: space-between;
|
||||
|
||||
* {
|
||||
flex-basis: 20%;
|
||||
flex-basis: 44px;
|
||||
}
|
||||
|
||||
.title {
|
||||
flex-grow: 2;
|
||||
}
|
||||
.live-relative-timestamp {
|
||||
flex-grow: 1;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1391,6 +1421,10 @@ input.input-inline {
|
||||
}
|
||||
.select2-search-field {
|
||||
margin-right: -10px;
|
||||
flex-grow: 1;
|
||||
input {
|
||||
width: 100% !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1524,7 +1558,7 @@ input.input-inline {
|
||||
table {
|
||||
margin-bottom: 10px;
|
||||
border-collapse: collapse;
|
||||
|
||||
|
||||
thead {
|
||||
background-color: var(--color-background-dark, $color-lightgrey);
|
||||
}
|
||||
|
||||
@@ -1,4 +1,6 @@
|
||||
{
|
||||
"esversion": 6,
|
||||
|
||||
"globals": {
|
||||
"jasmine" : false,
|
||||
"spyOn" : false,
|
||||
@@ -21,7 +23,6 @@
|
||||
"devel" : true,
|
||||
"eqeqeq" : true,
|
||||
"eqnull" : false,
|
||||
"es5" : true,
|
||||
"evil" : false,
|
||||
"forin" : true,
|
||||
"immed" : true,
|
||||
@@ -39,7 +40,6 @@
|
||||
"plusplus" : false,
|
||||
"quotmark" : "single",
|
||||
"regexp" : false,
|
||||
"strict" : true,
|
||||
"sub" : true,
|
||||
"trailing" : true,
|
||||
"undef" : true,
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
|
||||
import app from '../app/App.js';
|
||||
|
||||
/** global: OC */
|
||||
/* globals oc_current_user: false */
|
||||
app.controller('AppController', function ($scope, $location, $http, $log, $rootScope, $attrs) {
|
||||
$rootScope.sidebar = {
|
||||
show: false
|
||||
@@ -32,13 +32,13 @@ app.controller('AppController', function ($scope, $location, $http, $log, $rootS
|
||||
$rootScope.config = JSON.parse($attrs.config);
|
||||
|
||||
$rootScope.compactMode = localStorage.getItem('deck.compactMode') === 'true';
|
||||
|
||||
$scope.appNavigationHide = false;
|
||||
$scope.appNavigationHide = localStorage.getItem('deck.appNavigationHide') === 'true';
|
||||
|
||||
$scope.toggleSidebar = function() {
|
||||
if ($(window).width() > 768) {
|
||||
$log.debug($scope.appNavigationHide);
|
||||
$scope.appNavigationHide = !$scope.appNavigationHide;
|
||||
console.log($scope.appNavigationHide);
|
||||
localStorage.setItem('deck.appNavigationHide', JSON.stringify($scope.appNavigationHide));
|
||||
}
|
||||
};
|
||||
});
|
||||
|
||||
@@ -4,25 +4,25 @@
|
||||
* @author Julius Härtl <jus@bitgrid.net>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
*
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
* published by the Free Software Foundation, either version 3 of the
|
||||
* License, or (at your option) any later version.
|
||||
*
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
/* global app angular */
|
||||
/* global app angular oc_isadmin */
|
||||
|
||||
var ListController = function ($scope, $location, $filter, BoardService, $element, $timeout, $stateParams, $state, StatusService) {
|
||||
var ListController = function ($scope, $location, $filter, BoardService, $element, $timeout, $stateParams, $state, StatusService, $http, $q, $rootScope) {
|
||||
|
||||
function calculateNewColor() {
|
||||
var boards = BoardService.getAll();
|
||||
@@ -55,6 +55,63 @@ var ListController = function ($scope, $location, $filter, BoardService, $elemen
|
||||
$scope.colors = ['0082c9', '00c9c6','00c906', 'c92b00', 'F1DB50', '7C31CC', '3A3B3D', 'CACBCD'];
|
||||
$scope.boardservice = BoardService;
|
||||
$scope.updatingBoard = null;
|
||||
$scope.isAdmin = oc_isadmin;
|
||||
$scope.canCreate = $rootScope.config.canCreate;
|
||||
|
||||
if ($scope.isAdmin) {
|
||||
OC.Apps.enableDynamicSlideToggle();
|
||||
$scope.groups = [];
|
||||
$scope.groupLimit = [];
|
||||
$scope.groupLimitDisabled = true;
|
||||
let fetchGroups = function () {
|
||||
var deferred = $q.defer();
|
||||
// TODO: move to groups/details once 15 is min version
|
||||
$http.get(OC.linkToOCS('cloud', 2) + 'groups').then(function (response) {
|
||||
$scope.groups = response.data.ocs.data.groups.reduce((obj, item) => {
|
||||
obj.push({
|
||||
id: item,
|
||||
displayname: item,
|
||||
});
|
||||
return obj;
|
||||
}, []);
|
||||
deferred.resolve($scope.groups);
|
||||
}, function (error) {
|
||||
deferred.reject('Error while loading groups');
|
||||
});
|
||||
$http.get(OC.generateUrl('apps/deck/config')).then(function (response) {
|
||||
$scope.groupLimit = response.data.groupLimit;
|
||||
$scope.groupLimitDisabled = false;
|
||||
deferred.resolve(response.data);
|
||||
}, function (error) {
|
||||
deferred.reject('Error while loading groupLimit');
|
||||
});
|
||||
return deferred.promise;
|
||||
};
|
||||
|
||||
let updateConfig = function() {
|
||||
$scope.groupLimitDisabled = true;
|
||||
var deferred = $q.defer();
|
||||
$http.post(OC.generateUrl('apps/deck/config/groupLimit'), {value: $scope.groupLimit}).then(function (response) {
|
||||
$scope.groupLimitDisabled = false;
|
||||
deferred.resolve(response.data);
|
||||
}, function (error) {
|
||||
deferred.reject('Error while saving groupLimit');
|
||||
});
|
||||
return deferred.promise;
|
||||
};
|
||||
|
||||
$scope.groupLimitAdd = function (element, model) {
|
||||
$scope.groupLimit.push(element);
|
||||
updateConfig();
|
||||
};
|
||||
$scope.groupLimitRemove = function (element, model) {
|
||||
$scope.groupLimit = $scope.groupLimit.filter((el) => {
|
||||
return el.id !== element.id;
|
||||
});
|
||||
updateConfig();
|
||||
};
|
||||
fetchGroups();
|
||||
}
|
||||
|
||||
var filterData = function () {
|
||||
if($element.attr('id') === 'app-navigation') {
|
||||
|
||||
@@ -4,20 +4,20 @@
|
||||
* @author Julius Härtl <jus@bitgrid.net>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
*
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
* published by the Free Software Foundation, either version 3 of the
|
||||
* License, or (at your option) any later version.
|
||||
*
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Affero General Public License for more details.
|
||||
*
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*
|
||||
*/
|
||||
import app from '../app/App.js';
|
||||
|
||||
@@ -30,22 +30,32 @@ app.directive('search', function ($document, $location) {
|
||||
'onSearch': '='
|
||||
},
|
||||
link: function (scope) {
|
||||
var box = $('#searchbox');
|
||||
box.val($location.search().search);
|
||||
|
||||
var doSearch = function() {
|
||||
var value = box.val();
|
||||
scope.$apply(function () {
|
||||
scope.onSearch(value);
|
||||
if (OCA.Search && OCA.Search.Core) {
|
||||
// eslint-disable-next-line no-unused-vars
|
||||
const search = new OCA.Search((term) => {
|
||||
scope.$apply(function () {
|
||||
scope.onSearch(term);
|
||||
});
|
||||
}, () => {
|
||||
scope.$apply(function () {
|
||||
scope.onSearch('');
|
||||
});
|
||||
});
|
||||
};
|
||||
} else {
|
||||
const box = $('#searchbox');
|
||||
box.val($location.search().search);
|
||||
|
||||
box.on('search keyup', function (event) {
|
||||
if (event.type === 'search' || event.keyCode === 13 ) {
|
||||
var doSearch = function () {
|
||||
var value = box.val();
|
||||
scope.$apply(function () {
|
||||
scope.onSearch(value);
|
||||
});
|
||||
};
|
||||
|
||||
box.on('search keyup', function (event) {
|
||||
doSearch();
|
||||
}
|
||||
});
|
||||
|
||||
});
|
||||
}
|
||||
}
|
||||
};
|
||||
});
|
||||
|
||||
1917
js/package-lock.json
generated
1917
js/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -22,15 +22,15 @@
|
||||
"ui-select": "^0.19.8"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.1.2",
|
||||
"@babel/core": "^7.1.6",
|
||||
"@babel/polyfill": "^7.0.0",
|
||||
"@babel/preset-env": "^7.1.0",
|
||||
"@babel/preset-env": "^7.1.6",
|
||||
"babel-loader": "^8.0.4",
|
||||
"css-loader": "^1.0.1",
|
||||
"karma": "^3.1.1",
|
||||
"mini-css-extract-plugin": "^0.4.4",
|
||||
"node-sass": "^4.10.0",
|
||||
"webpack": "^4.25.1",
|
||||
"karma": "^3.1.3",
|
||||
"mini-css-extract-plugin": "^0.4.5",
|
||||
"uglifyjs-webpack-plugin": "^2.0.1",
|
||||
"webpack": "^4.26.1",
|
||||
"webpack-cli": "^3.1.2",
|
||||
"webpack-merge": "^4.1.4"
|
||||
},
|
||||
|
||||
@@ -170,7 +170,9 @@ class ActivityService {
|
||||
}
|
||||
/** check if the fetched item from all deck activities is actually related */
|
||||
const isUnrelatedBoard = (item.object_type === DECK_ACTIVITY_TYPE_BOARD && item.object_id !== id);
|
||||
const isUnrelatedCard = (item.object_type === DECK_ACTIVITY_TYPE_CARD && item.subject_rich[1].board && item.subject_rich[1].board.id !== id);
|
||||
const isUnrelatedCard = (item.object_type === DECK_ACTIVITY_TYPE_CARD && (
|
||||
(item.subject_rich[1].board && item.subject_rich[1].board.id !== id) || (typeof item.subject_rich[1].board === 'undefined'))
|
||||
);
|
||||
if (type === DECK_ACTIVITY_TYPE_BOARD && (isUnrelatedBoard || isUnrelatedCard)) {
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -125,8 +125,8 @@ app.factory('BoardService', function (ApiService, $http, $q) {
|
||||
displayname: ocsItem.label
|
||||
},
|
||||
permissionEdit: true,
|
||||
permissionManage: true,
|
||||
permissionShare: true,
|
||||
permissionManage: false,
|
||||
permissionShare: false,
|
||||
type: type
|
||||
};
|
||||
};
|
||||
|
||||
12
l10n/ca.js
12
l10n/ca.js
@@ -1,6 +1,7 @@
|
||||
OC.L10N.register(
|
||||
"deck",
|
||||
{
|
||||
"Please provide a content for your comment." : "Si us plau, proporciona un comentari.",
|
||||
"Posting the comment failed." : "Error al posar el comentari.",
|
||||
"The comment has been deleted" : "S'ha esborrat el comentari",
|
||||
"Restore associated stack" : "Restaura la pila associada",
|
||||
@@ -10,6 +11,11 @@ OC.L10N.register(
|
||||
"Maximum file size of {size} exceeded" : "Mida màxima per fitxer de {size} superada",
|
||||
"You have created a new board {board}" : "Has creat el nou tauler {board}",
|
||||
"{user} has created a new board {board}" : "{user} ha creat el nou tauler {board}",
|
||||
"You have deleted the board {board}" : "Has esborrat el taulell {board}",
|
||||
"{user} has deleted the board {board}" : "{user} ha esborrat el taulell {board}",
|
||||
"You have restored the board {board}" : "Has restaurat el taulell {board}",
|
||||
"{user} has restored the board {board}" : "{user} ha restaurat el taulell {board}",
|
||||
"You have shared the board {board} with {acl}" : "Has compartit el taulell {board} amb {acl}",
|
||||
"You have deleted {stack} on {board}" : "Has esborrat {stack} de {board}",
|
||||
"{user} has deleted {stack} on {board}" : "{user} ha esborrat {stack} de {board}",
|
||||
"You have created {card} in {stack} on {board}" : "Has creat {card} a {stack} dins de {board}",
|
||||
@@ -29,19 +35,15 @@ OC.L10N.register(
|
||||
"Add a new stack" : "Afegeix una nova pila",
|
||||
"Show archived cards" : "Mostra les targetes arxivades",
|
||||
"Hide archived cards" : "Amaga les targetes arxivades",
|
||||
"Board details" : "Detalls de la junta",
|
||||
"All Boards" : "Totes les juntes",
|
||||
"Archived boards" : "Taulers arxivats",
|
||||
"Archive" : "Arxiu",
|
||||
"Unarchive" : "Desbloquejar",
|
||||
"Delete" : "Esborra",
|
||||
"Enter a card title" : "Introduïu un títol de la targeta",
|
||||
"Sharing" : "Compartir",
|
||||
"Tags" : "Etiquetes",
|
||||
"Select users or groups to share with" : "Seleccioneu usuaris o grups per compartir",
|
||||
"No matching user or group found." : "No s'ha trobat cap usuari o grup coincident.",
|
||||
"Share" : "Comparteix",
|
||||
"Edit" : "Edita",
|
||||
"Share" : "Comparteix",
|
||||
"Manage" : "Gestor",
|
||||
"Discard share" : "Descarta la compartició",
|
||||
"Create a new tag" : "Crea una nova etiqueta",
|
||||
|
||||
12
l10n/ca.json
12
l10n/ca.json
@@ -1,4 +1,5 @@
|
||||
{ "translations": {
|
||||
"Please provide a content for your comment." : "Si us plau, proporciona un comentari.",
|
||||
"Posting the comment failed." : "Error al posar el comentari.",
|
||||
"The comment has been deleted" : "S'ha esborrat el comentari",
|
||||
"Restore associated stack" : "Restaura la pila associada",
|
||||
@@ -8,6 +9,11 @@
|
||||
"Maximum file size of {size} exceeded" : "Mida màxima per fitxer de {size} superada",
|
||||
"You have created a new board {board}" : "Has creat el nou tauler {board}",
|
||||
"{user} has created a new board {board}" : "{user} ha creat el nou tauler {board}",
|
||||
"You have deleted the board {board}" : "Has esborrat el taulell {board}",
|
||||
"{user} has deleted the board {board}" : "{user} ha esborrat el taulell {board}",
|
||||
"You have restored the board {board}" : "Has restaurat el taulell {board}",
|
||||
"{user} has restored the board {board}" : "{user} ha restaurat el taulell {board}",
|
||||
"You have shared the board {board} with {acl}" : "Has compartit el taulell {board} amb {acl}",
|
||||
"You have deleted {stack} on {board}" : "Has esborrat {stack} de {board}",
|
||||
"{user} has deleted {stack} on {board}" : "{user} ha esborrat {stack} de {board}",
|
||||
"You have created {card} in {stack} on {board}" : "Has creat {card} a {stack} dins de {board}",
|
||||
@@ -27,19 +33,15 @@
|
||||
"Add a new stack" : "Afegeix una nova pila",
|
||||
"Show archived cards" : "Mostra les targetes arxivades",
|
||||
"Hide archived cards" : "Amaga les targetes arxivades",
|
||||
"Board details" : "Detalls de la junta",
|
||||
"All Boards" : "Totes les juntes",
|
||||
"Archived boards" : "Taulers arxivats",
|
||||
"Archive" : "Arxiu",
|
||||
"Unarchive" : "Desbloquejar",
|
||||
"Delete" : "Esborra",
|
||||
"Enter a card title" : "Introduïu un títol de la targeta",
|
||||
"Sharing" : "Compartir",
|
||||
"Tags" : "Etiquetes",
|
||||
"Select users or groups to share with" : "Seleccioneu usuaris o grups per compartir",
|
||||
"No matching user or group found." : "No s'ha trobat cap usuari o grup coincident.",
|
||||
"Share" : "Comparteix",
|
||||
"Edit" : "Edita",
|
||||
"Share" : "Comparteix",
|
||||
"Manage" : "Gestor",
|
||||
"Discard share" : "Descarta la compartició",
|
||||
"Create a new tag" : "Crea una nova etiqueta",
|
||||
|
||||
28
l10n/cs.js
28
l10n/cs.js
@@ -108,17 +108,17 @@ OC.L10N.register(
|
||||
"Show archived cards" : "Zobrazit archivované karty",
|
||||
"Hide archived cards" : "Skrýt archivované karty",
|
||||
"Toggle compact mode" : "Vyp/zap. kompaktní režim",
|
||||
"Board details" : "Podrobnosti o desce",
|
||||
"Show board details" : "Zobrazit podrobnosti o desce",
|
||||
"All Boards" : "Všechny desky",
|
||||
"Archived boards" : "Archivované desky",
|
||||
"Share board" : "Sdílet nástěnku",
|
||||
"Drop your files here to upload it to the card" : "Přetáhněte soubor sem, pokud jej chcete připojit ke kartě.",
|
||||
"Actions" : "Akce",
|
||||
"Assign to me" : "Přiřadit mě",
|
||||
"Unassign from me" : "Zrušit přiřazení mě",
|
||||
"Archive" : "Archiv",
|
||||
"Unarchive" : "Zrušit archivování",
|
||||
"Delete" : "Smazat",
|
||||
"Drop your files here to upload it to the card" : "Přetáhněte soubor sem, pokud jej chcete připojit ke kartě.",
|
||||
"Assign card to me" : "Přiřadit kartu mě",
|
||||
"Unassign card from me" : "Zrušit přiřazení karty mě",
|
||||
"Archive card" : "Archivovat kartu",
|
||||
"Unarchive card" : "Zrušit archivaci karty",
|
||||
"Delete card" : "Smazat kartu",
|
||||
"Enter a card title" : "Zadejte nadpis karty",
|
||||
"Add card" : "Přidat kartu",
|
||||
"Close" : "Zavřít",
|
||||
@@ -130,11 +130,13 @@ OC.L10N.register(
|
||||
"Access for" : "Přístup pro",
|
||||
"No matching user or group found." : "Nevyhovuje žádný uživatel ani skupina",
|
||||
"Loading" : "Načítání",
|
||||
"Share" : "Sdílet",
|
||||
"Edit" : "Upravit",
|
||||
"Share" : "Sdílet",
|
||||
"Manage" : "Spravovat",
|
||||
"Discard share" : "Zrušit sdílení",
|
||||
"Update" : "Aktualizovat",
|
||||
"Update tag" : "Aktualizovat štítek",
|
||||
"Edit tag" : "Upravit štítek",
|
||||
"Delete tag" : "Smazat štítek",
|
||||
"Create" : "Vytvořit",
|
||||
"Create a new tag" : "Vytvořit nový štítek",
|
||||
"Deleted stacks" : "Smazané zásobníky",
|
||||
@@ -149,16 +151,19 @@ OC.L10N.register(
|
||||
"Archive board" : "Archivovaná deska",
|
||||
"Unarchive board" : "Odarchivovat desku",
|
||||
"Delete board" : "Smazat desku",
|
||||
"Reset" : "Obnovit",
|
||||
"Update board" : "Aktualizovat desku",
|
||||
"Reset board" : "Resetovat nástěnku",
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Vrátit smazání tabule - Tabule bude jinak trvale odstraněna během příštího běhu cronjobu.",
|
||||
"Create new board" : "Vytvořit novou desku",
|
||||
"New board title" : "Nadpis nové desky",
|
||||
"Create board" : "Vytvořit nástěnku",
|
||||
"Select an attachment" : "Vybrat přílohu",
|
||||
"Cancel upload" : "Zrušit nahrávání",
|
||||
"by" : "od",
|
||||
"Undo file deletion - Otherwise the file will be deleted during the next cronjob run." : "Vrátit smazání souboru – v opačném případě bude soubor trvale smazán při dalším běhu cronjobu.",
|
||||
"Undo file deletion" : "Vzít zpět smazání souboru",
|
||||
"Insert the file into the description" : "Vložte soubor do popisku.",
|
||||
"Delete attachment" : "Smazat přílohu",
|
||||
"Modified:" : "Upraveno:",
|
||||
"Created:" : "Vytvořeno:",
|
||||
"Choose a tag" : "Vyberte štítek",
|
||||
@@ -174,12 +179,11 @@ OC.L10N.register(
|
||||
"Attachments" : "Přílohy",
|
||||
"Saved" : "Uloženo",
|
||||
"Unsaved changes" : "Neuložené změny",
|
||||
"Insert attachment" : "Vložit přílohu",
|
||||
"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",
|
||||
"Move board to archive" : "Přesunout desku do archivu",
|
||||
"Create a new board" : "Vytvořit novou desku"
|
||||
},
|
||||
|
||||
28
l10n/cs.json
28
l10n/cs.json
@@ -106,17 +106,17 @@
|
||||
"Show archived cards" : "Zobrazit archivované karty",
|
||||
"Hide archived cards" : "Skrýt archivované karty",
|
||||
"Toggle compact mode" : "Vyp/zap. kompaktní režim",
|
||||
"Board details" : "Podrobnosti o desce",
|
||||
"Show board details" : "Zobrazit podrobnosti o desce",
|
||||
"All Boards" : "Všechny desky",
|
||||
"Archived boards" : "Archivované desky",
|
||||
"Share board" : "Sdílet nástěnku",
|
||||
"Drop your files here to upload it to the card" : "Přetáhněte soubor sem, pokud jej chcete připojit ke kartě.",
|
||||
"Actions" : "Akce",
|
||||
"Assign to me" : "Přiřadit mě",
|
||||
"Unassign from me" : "Zrušit přiřazení mě",
|
||||
"Archive" : "Archiv",
|
||||
"Unarchive" : "Zrušit archivování",
|
||||
"Delete" : "Smazat",
|
||||
"Drop your files here to upload it to the card" : "Přetáhněte soubor sem, pokud jej chcete připojit ke kartě.",
|
||||
"Assign card to me" : "Přiřadit kartu mě",
|
||||
"Unassign card from me" : "Zrušit přiřazení karty mě",
|
||||
"Archive card" : "Archivovat kartu",
|
||||
"Unarchive card" : "Zrušit archivaci karty",
|
||||
"Delete card" : "Smazat kartu",
|
||||
"Enter a card title" : "Zadejte nadpis karty",
|
||||
"Add card" : "Přidat kartu",
|
||||
"Close" : "Zavřít",
|
||||
@@ -128,11 +128,13 @@
|
||||
"Access for" : "Přístup pro",
|
||||
"No matching user or group found." : "Nevyhovuje žádný uživatel ani skupina",
|
||||
"Loading" : "Načítání",
|
||||
"Share" : "Sdílet",
|
||||
"Edit" : "Upravit",
|
||||
"Share" : "Sdílet",
|
||||
"Manage" : "Spravovat",
|
||||
"Discard share" : "Zrušit sdílení",
|
||||
"Update" : "Aktualizovat",
|
||||
"Update tag" : "Aktualizovat štítek",
|
||||
"Edit tag" : "Upravit štítek",
|
||||
"Delete tag" : "Smazat štítek",
|
||||
"Create" : "Vytvořit",
|
||||
"Create a new tag" : "Vytvořit nový štítek",
|
||||
"Deleted stacks" : "Smazané zásobníky",
|
||||
@@ -147,16 +149,19 @@
|
||||
"Archive board" : "Archivovaná deska",
|
||||
"Unarchive board" : "Odarchivovat desku",
|
||||
"Delete board" : "Smazat desku",
|
||||
"Reset" : "Obnovit",
|
||||
"Update board" : "Aktualizovat desku",
|
||||
"Reset board" : "Resetovat nástěnku",
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Vrátit smazání tabule - Tabule bude jinak trvale odstraněna během příštího běhu cronjobu.",
|
||||
"Create new board" : "Vytvořit novou desku",
|
||||
"New board title" : "Nadpis nové desky",
|
||||
"Create board" : "Vytvořit nástěnku",
|
||||
"Select an attachment" : "Vybrat přílohu",
|
||||
"Cancel upload" : "Zrušit nahrávání",
|
||||
"by" : "od",
|
||||
"Undo file deletion - Otherwise the file will be deleted during the next cronjob run." : "Vrátit smazání souboru – v opačném případě bude soubor trvale smazán při dalším běhu cronjobu.",
|
||||
"Undo file deletion" : "Vzít zpět smazání souboru",
|
||||
"Insert the file into the description" : "Vložte soubor do popisku.",
|
||||
"Delete attachment" : "Smazat přílohu",
|
||||
"Modified:" : "Upraveno:",
|
||||
"Created:" : "Vytvořeno:",
|
||||
"Choose a tag" : "Vyberte štítek",
|
||||
@@ -172,12 +177,11 @@
|
||||
"Attachments" : "Přílohy",
|
||||
"Saved" : "Uloženo",
|
||||
"Unsaved changes" : "Neuložené změny",
|
||||
"Insert attachment" : "Vložit přílohu",
|
||||
"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",
|
||||
"Move board to archive" : "Přesunout desku do archivu",
|
||||
"Create a new board" : "Vytvořit novou desku"
|
||||
},"pluralForm" :"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;"
|
||||
|
||||
@@ -17,12 +17,8 @@ OC.L10N.register(
|
||||
"Submit" : "Tilføj",
|
||||
"Show archived cards" : "Vis arkiverede kort",
|
||||
"Hide archived cards" : "Skjul arkiverede kort",
|
||||
"Board details" : "Liste detaljer",
|
||||
"All Boards" : "Alle lister",
|
||||
"Archived boards" : "Arkiverede lister",
|
||||
"Archive" : "Arkivér",
|
||||
"Unarchive" : "Annuller arkivering",
|
||||
"Delete" : "Slet",
|
||||
"Enter a card title" : "Angiv titel på kort",
|
||||
"Add card" : "Tilføj kort",
|
||||
"Close" : "Luk",
|
||||
@@ -32,11 +28,10 @@ OC.L10N.register(
|
||||
"Access for" : "Adgang for",
|
||||
"No matching user or group found." : "Ingen bruger eller gruppe fundet",
|
||||
"Loading" : "Loader",
|
||||
"Share" : "Del",
|
||||
"Edit" : "Redigér",
|
||||
"Share" : "Del",
|
||||
"Manage" : "Administrer ",
|
||||
"Discard share" : "Kasser deling",
|
||||
"Update" : "Opdatér",
|
||||
"Create" : "Opret",
|
||||
"Create a new tag" : "Opret et nyt mærkat",
|
||||
"Status" : "Status",
|
||||
@@ -47,7 +42,6 @@ OC.L10N.register(
|
||||
"Archive board" : "Arkivér liste",
|
||||
"Unarchive board" : "Annuller arkivering af liste",
|
||||
"Delete board" : "Slet liste",
|
||||
"Reset" : "Nulstil",
|
||||
"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",
|
||||
@@ -69,7 +63,6 @@ OC.L10N.register(
|
||||
"Formatting help" : "Hjælp til formatering",
|
||||
"Add a card description…" : "Tilføj en beskrivelse...",
|
||||
"Shared boards" : "Delte lister",
|
||||
"View more" : "Vis mere",
|
||||
"Move board to archive" : "Flyt liste til arkiv",
|
||||
"Create a new board" : "Opret ny liste"
|
||||
},
|
||||
|
||||
@@ -15,12 +15,8 @@
|
||||
"Submit" : "Tilføj",
|
||||
"Show archived cards" : "Vis arkiverede kort",
|
||||
"Hide archived cards" : "Skjul arkiverede kort",
|
||||
"Board details" : "Liste detaljer",
|
||||
"All Boards" : "Alle lister",
|
||||
"Archived boards" : "Arkiverede lister",
|
||||
"Archive" : "Arkivér",
|
||||
"Unarchive" : "Annuller arkivering",
|
||||
"Delete" : "Slet",
|
||||
"Enter a card title" : "Angiv titel på kort",
|
||||
"Add card" : "Tilføj kort",
|
||||
"Close" : "Luk",
|
||||
@@ -30,11 +26,10 @@
|
||||
"Access for" : "Adgang for",
|
||||
"No matching user or group found." : "Ingen bruger eller gruppe fundet",
|
||||
"Loading" : "Loader",
|
||||
"Share" : "Del",
|
||||
"Edit" : "Redigér",
|
||||
"Share" : "Del",
|
||||
"Manage" : "Administrer ",
|
||||
"Discard share" : "Kasser deling",
|
||||
"Update" : "Opdatér",
|
||||
"Create" : "Opret",
|
||||
"Create a new tag" : "Opret et nyt mærkat",
|
||||
"Status" : "Status",
|
||||
@@ -45,7 +40,6 @@
|
||||
"Archive board" : "Arkivér liste",
|
||||
"Unarchive board" : "Annuller arkivering af liste",
|
||||
"Delete board" : "Slet liste",
|
||||
"Reset" : "Nulstil",
|
||||
"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",
|
||||
@@ -67,7 +61,6 @@
|
||||
"Formatting help" : "Hjælp til formatering",
|
||||
"Add a card description…" : "Tilføj en beskrivelse...",
|
||||
"Shared boards" : "Delte lister",
|
||||
"View more" : "Vis mere",
|
||||
"Move board to archive" : "Flyt liste til arkiv",
|
||||
"Create a new board" : "Opret ny liste"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
|
||||
28
l10n/de.js
28
l10n/de.js
@@ -108,17 +108,17 @@ OC.L10N.register(
|
||||
"Show archived cards" : "Archivierte Karten anzeigen",
|
||||
"Hide archived cards" : "Archivierte Karten ausblenden",
|
||||
"Toggle compact mode" : "Kompaktmodus umschalten",
|
||||
"Board details" : "Board-Details",
|
||||
"Show board details" : "Board-Details anzeigen",
|
||||
"All Boards" : "Alle Boards",
|
||||
"Archived boards" : "Archivierte Boards",
|
||||
"Share board" : "Board freigeben",
|
||||
"Drop your files here to upload it to the card" : "Lege Deine Dateien hier ab, um sie auf die Karte hochzuladen",
|
||||
"Actions" : "Aktionen",
|
||||
"Assign to me" : "Mir zuweisen",
|
||||
"Unassign from me" : "Nicht mir zuweisen",
|
||||
"Archive" : "Archivieren",
|
||||
"Unarchive" : "Dearchivieren",
|
||||
"Delete" : "Löschen",
|
||||
"Drop your files here to upload it to the card" : "Lege Deine Dateien hier ab, um sie auf die Karte hochzuladen",
|
||||
"Assign card to me" : "Karte mir zuweisen",
|
||||
"Unassign card from me" : "Karte nicht mir zuweisen",
|
||||
"Archive card" : "Karte archivieren",
|
||||
"Unarchive card" : "Karte dearchivieren",
|
||||
"Delete card" : "Karte löschen",
|
||||
"Enter a card title" : "Kartentitel eingeben",
|
||||
"Add card" : "Karte hinzufügen",
|
||||
"Close" : "Schließen",
|
||||
@@ -130,11 +130,13 @@ OC.L10N.register(
|
||||
"Access for" : "Zugriff für",
|
||||
"No matching user or group found." : "Keine passenden Benutzer oder Gruppen gefunden.",
|
||||
"Loading" : "Lade",
|
||||
"Share" : "Teilen",
|
||||
"Edit" : "Bearbeiten",
|
||||
"Share" : "Teilen",
|
||||
"Manage" : "Verwalten",
|
||||
"Discard share" : "Teilen beenden",
|
||||
"Update" : "Aktualisieren",
|
||||
"Update tag" : "Schlagwort aktualisieren",
|
||||
"Edit tag" : "Schlagwort bearbeiten",
|
||||
"Delete tag" : "Schlagwort löschen",
|
||||
"Create" : "Erstellen",
|
||||
"Create a new tag" : "Neues Schlagwort",
|
||||
"Deleted stacks" : "Gelöschte Stapel",
|
||||
@@ -149,16 +151,19 @@ OC.L10N.register(
|
||||
"Archive board" : "Board archivieren",
|
||||
"Unarchive board" : "Board dearchivieren",
|
||||
"Delete board" : "Board löschen",
|
||||
"Reset" : "Zurücksetzen",
|
||||
"Update board" : "Board aktualisieren",
|
||||
"Reset board" : "Board zurücksetzen",
|
||||
"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",
|
||||
"New board title" : "Board-Titel",
|
||||
"Create board" : "Neues Board",
|
||||
"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",
|
||||
"Delete attachment" : "Anhang löschen",
|
||||
"Modified:" : "Geändert:",
|
||||
"Created:" : "Erstellt:",
|
||||
"Choose a tag" : "Schlagwort auswählen",
|
||||
@@ -174,12 +179,11 @@ OC.L10N.register(
|
||||
"Attachments" : "Anhänge",
|
||||
"Saved" : "Gespeichert",
|
||||
"Unsaved changes" : "Ungesicherte Änderungen",
|
||||
"Insert attachment" : "Anhang einfügen",
|
||||
"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",
|
||||
"Move board to archive" : "Board ins Archiv verschieben",
|
||||
"Create a new board" : "Neues Board"
|
||||
},
|
||||
|
||||
28
l10n/de.json
28
l10n/de.json
@@ -106,17 +106,17 @@
|
||||
"Show archived cards" : "Archivierte Karten anzeigen",
|
||||
"Hide archived cards" : "Archivierte Karten ausblenden",
|
||||
"Toggle compact mode" : "Kompaktmodus umschalten",
|
||||
"Board details" : "Board-Details",
|
||||
"Show board details" : "Board-Details anzeigen",
|
||||
"All Boards" : "Alle Boards",
|
||||
"Archived boards" : "Archivierte Boards",
|
||||
"Share board" : "Board freigeben",
|
||||
"Drop your files here to upload it to the card" : "Lege Deine Dateien hier ab, um sie auf die Karte hochzuladen",
|
||||
"Actions" : "Aktionen",
|
||||
"Assign to me" : "Mir zuweisen",
|
||||
"Unassign from me" : "Nicht mir zuweisen",
|
||||
"Archive" : "Archivieren",
|
||||
"Unarchive" : "Dearchivieren",
|
||||
"Delete" : "Löschen",
|
||||
"Drop your files here to upload it to the card" : "Lege Deine Dateien hier ab, um sie auf die Karte hochzuladen",
|
||||
"Assign card to me" : "Karte mir zuweisen",
|
||||
"Unassign card from me" : "Karte nicht mir zuweisen",
|
||||
"Archive card" : "Karte archivieren",
|
||||
"Unarchive card" : "Karte dearchivieren",
|
||||
"Delete card" : "Karte löschen",
|
||||
"Enter a card title" : "Kartentitel eingeben",
|
||||
"Add card" : "Karte hinzufügen",
|
||||
"Close" : "Schließen",
|
||||
@@ -128,11 +128,13 @@
|
||||
"Access for" : "Zugriff für",
|
||||
"No matching user or group found." : "Keine passenden Benutzer oder Gruppen gefunden.",
|
||||
"Loading" : "Lade",
|
||||
"Share" : "Teilen",
|
||||
"Edit" : "Bearbeiten",
|
||||
"Share" : "Teilen",
|
||||
"Manage" : "Verwalten",
|
||||
"Discard share" : "Teilen beenden",
|
||||
"Update" : "Aktualisieren",
|
||||
"Update tag" : "Schlagwort aktualisieren",
|
||||
"Edit tag" : "Schlagwort bearbeiten",
|
||||
"Delete tag" : "Schlagwort löschen",
|
||||
"Create" : "Erstellen",
|
||||
"Create a new tag" : "Neues Schlagwort",
|
||||
"Deleted stacks" : "Gelöschte Stapel",
|
||||
@@ -147,16 +149,19 @@
|
||||
"Archive board" : "Board archivieren",
|
||||
"Unarchive board" : "Board dearchivieren",
|
||||
"Delete board" : "Board löschen",
|
||||
"Reset" : "Zurücksetzen",
|
||||
"Update board" : "Board aktualisieren",
|
||||
"Reset board" : "Board zurücksetzen",
|
||||
"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",
|
||||
"New board title" : "Board-Titel",
|
||||
"Create board" : "Neues Board",
|
||||
"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",
|
||||
"Delete attachment" : "Anhang löschen",
|
||||
"Modified:" : "Geändert:",
|
||||
"Created:" : "Erstellt:",
|
||||
"Choose a tag" : "Schlagwort auswählen",
|
||||
@@ -172,12 +177,11 @@
|
||||
"Attachments" : "Anhänge",
|
||||
"Saved" : "Gespeichert",
|
||||
"Unsaved changes" : "Ungesicherte Änderungen",
|
||||
"Insert attachment" : "Anhang einfügen",
|
||||
"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",
|
||||
"Move board to archive" : "Board ins Archiv verschieben",
|
||||
"Create a new board" : "Neues Board"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
|
||||
@@ -108,17 +108,17 @@ OC.L10N.register(
|
||||
"Show archived cards" : "Archivierte Karten anzeigen",
|
||||
"Hide archived cards" : "Archivierte Karten ausblenden",
|
||||
"Toggle compact mode" : "Kompaktmodus umschalten",
|
||||
"Board details" : "Board-Details",
|
||||
"Show board details" : "Board-Details anzeigen",
|
||||
"All Boards" : "Alle Boards",
|
||||
"Archived boards" : "Archivierte Boards",
|
||||
"Share board" : "Board freigeben",
|
||||
"Drop your files here to upload it to the card" : "Legen Sie Ihre Dateien hier ab, um sie auf die Karte hochzuladen",
|
||||
"Actions" : "Aktionen",
|
||||
"Assign to me" : "Mir zuweisen",
|
||||
"Unassign from me" : "Nicht mir zuweisen",
|
||||
"Archive" : "Archivieren",
|
||||
"Unarchive" : "Dearchivieren",
|
||||
"Delete" : "Löschen",
|
||||
"Drop your files here to upload it to the card" : "Legen Sie Ihre Dateien hier ab, um sie auf die Karte hochzuladen",
|
||||
"Assign card to me" : "Karte mir zuweisen",
|
||||
"Unassign card from me" : "Karte nicht mir zuweisen",
|
||||
"Archive card" : "Karte archivieren",
|
||||
"Unarchive card" : "Karte dearchivieren",
|
||||
"Delete card" : "Karte löschen",
|
||||
"Enter a card title" : "Kartentitel eingeben",
|
||||
"Add card" : "Karte hinzufügen",
|
||||
"Close" : "Schließen",
|
||||
@@ -130,11 +130,13 @@ OC.L10N.register(
|
||||
"Access for" : "Zugriff für",
|
||||
"No matching user or group found." : "Keine passenden Benutzer oder Gruppen gefunden.",
|
||||
"Loading" : "Lade",
|
||||
"Share" : "Teilen",
|
||||
"Edit" : "Bearbeiten",
|
||||
"Share" : "Teilen",
|
||||
"Manage" : "Verwalten",
|
||||
"Discard share" : "Teilen beenden",
|
||||
"Update" : "Aktualisieren",
|
||||
"Update tag" : "Schlagwort aktualisieren",
|
||||
"Edit tag" : "Schlagwort bearbeiten",
|
||||
"Delete tag" : "Schlagwort löschen",
|
||||
"Create" : "Erstellen",
|
||||
"Create a new tag" : "Neues Schlagwort",
|
||||
"Deleted stacks" : "Gelöschte Stapel",
|
||||
@@ -149,16 +151,19 @@ OC.L10N.register(
|
||||
"Archive board" : "Board archivieren",
|
||||
"Unarchive board" : "Board dearchivieren",
|
||||
"Delete board" : "Board löschen",
|
||||
"Reset" : "Zurücksetzen",
|
||||
"Update board" : "Board aktualisieren",
|
||||
"Reset board" : "Board zurücksetzen",
|
||||
"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",
|
||||
"New board title" : "Board-Titel",
|
||||
"Create board" : "Neues Board",
|
||||
"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",
|
||||
"Delete attachment" : "Anhang löschen",
|
||||
"Modified:" : "Geändert:",
|
||||
"Created:" : "Erstellt:",
|
||||
"Choose a tag" : "Schlagwort auswählen",
|
||||
@@ -174,12 +179,11 @@ OC.L10N.register(
|
||||
"Attachments" : "Anhänge",
|
||||
"Saved" : "Gespeichert",
|
||||
"Unsaved changes" : "Ungesicherte Änderungen",
|
||||
"Insert attachment" : "Anhang einfügen",
|
||||
"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",
|
||||
"Move board to archive" : "Board ins Archiv verschieben",
|
||||
"Create a new board" : "Neues Board"
|
||||
},
|
||||
|
||||
@@ -106,17 +106,17 @@
|
||||
"Show archived cards" : "Archivierte Karten anzeigen",
|
||||
"Hide archived cards" : "Archivierte Karten ausblenden",
|
||||
"Toggle compact mode" : "Kompaktmodus umschalten",
|
||||
"Board details" : "Board-Details",
|
||||
"Show board details" : "Board-Details anzeigen",
|
||||
"All Boards" : "Alle Boards",
|
||||
"Archived boards" : "Archivierte Boards",
|
||||
"Share board" : "Board freigeben",
|
||||
"Drop your files here to upload it to the card" : "Legen Sie Ihre Dateien hier ab, um sie auf die Karte hochzuladen",
|
||||
"Actions" : "Aktionen",
|
||||
"Assign to me" : "Mir zuweisen",
|
||||
"Unassign from me" : "Nicht mir zuweisen",
|
||||
"Archive" : "Archivieren",
|
||||
"Unarchive" : "Dearchivieren",
|
||||
"Delete" : "Löschen",
|
||||
"Drop your files here to upload it to the card" : "Legen Sie Ihre Dateien hier ab, um sie auf die Karte hochzuladen",
|
||||
"Assign card to me" : "Karte mir zuweisen",
|
||||
"Unassign card from me" : "Karte nicht mir zuweisen",
|
||||
"Archive card" : "Karte archivieren",
|
||||
"Unarchive card" : "Karte dearchivieren",
|
||||
"Delete card" : "Karte löschen",
|
||||
"Enter a card title" : "Kartentitel eingeben",
|
||||
"Add card" : "Karte hinzufügen",
|
||||
"Close" : "Schließen",
|
||||
@@ -128,11 +128,13 @@
|
||||
"Access for" : "Zugriff für",
|
||||
"No matching user or group found." : "Keine passenden Benutzer oder Gruppen gefunden.",
|
||||
"Loading" : "Lade",
|
||||
"Share" : "Teilen",
|
||||
"Edit" : "Bearbeiten",
|
||||
"Share" : "Teilen",
|
||||
"Manage" : "Verwalten",
|
||||
"Discard share" : "Teilen beenden",
|
||||
"Update" : "Aktualisieren",
|
||||
"Update tag" : "Schlagwort aktualisieren",
|
||||
"Edit tag" : "Schlagwort bearbeiten",
|
||||
"Delete tag" : "Schlagwort löschen",
|
||||
"Create" : "Erstellen",
|
||||
"Create a new tag" : "Neues Schlagwort",
|
||||
"Deleted stacks" : "Gelöschte Stapel",
|
||||
@@ -147,16 +149,19 @@
|
||||
"Archive board" : "Board archivieren",
|
||||
"Unarchive board" : "Board dearchivieren",
|
||||
"Delete board" : "Board löschen",
|
||||
"Reset" : "Zurücksetzen",
|
||||
"Update board" : "Board aktualisieren",
|
||||
"Reset board" : "Board zurücksetzen",
|
||||
"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",
|
||||
"New board title" : "Board-Titel",
|
||||
"Create board" : "Neues Board",
|
||||
"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",
|
||||
"Delete attachment" : "Anhang löschen",
|
||||
"Modified:" : "Geändert:",
|
||||
"Created:" : "Erstellt:",
|
||||
"Choose a tag" : "Schlagwort auswählen",
|
||||
@@ -172,12 +177,11 @@
|
||||
"Attachments" : "Anhänge",
|
||||
"Saved" : "Gespeichert",
|
||||
"Unsaved changes" : "Ungesicherte Änderungen",
|
||||
"Insert attachment" : "Anhang einfügen",
|
||||
"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",
|
||||
"Move board to archive" : "Board ins Archiv verschieben",
|
||||
"Create a new board" : "Neues Board"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
|
||||
@@ -14,12 +14,8 @@ OC.L10N.register(
|
||||
"Submit" : "Υποβολή",
|
||||
"Show archived cards" : "Εμφάνιση καρτελών που αρχειοθετήθηκαν",
|
||||
"Hide archived cards" : "Απόκρυψη καρτελών που αρχειοθετήθηκαν",
|
||||
"Board details" : "Λεπτομέριες πίνακα",
|
||||
"All Boards" : "Όλοι οι πίνακες",
|
||||
"Archived boards" : "Αρχειοθέτηση πινάκων ",
|
||||
"Archive" : "Αρχειοθέτηση",
|
||||
"Unarchive" : "Αναίρεση αρχειοθέτησης",
|
||||
"Delete" : "Διαγραφή",
|
||||
"Enter a card title" : "Καταχωρίστε έναν τίτλο κάρτας",
|
||||
"Add card" : "Προσθήκη κάρτας",
|
||||
"Close" : "Κλείσιμο",
|
||||
@@ -28,11 +24,10 @@ OC.L10N.register(
|
||||
"Select users or groups to share with" : "Επιλέξτε χρήστες ή ομάδες με τις οποίες θα μοιραστείτε",
|
||||
"No matching user or group found." : "Δεν βρέθηκε χρήστης ή ομάδα να ταιριάζει.",
|
||||
"Loading" : "Γίνεται φόρτωση",
|
||||
"Share" : "Διαμοιρασμός",
|
||||
"Edit" : "Επεξεργασία",
|
||||
"Share" : "Διαμοιρασμός",
|
||||
"Manage" : "Διαχείριση",
|
||||
"Discard share" : "Απόρριψη διαμοιρασμού",
|
||||
"Update" : "Ενημέρωση",
|
||||
"Create" : "Δημιουργία",
|
||||
"Create a new tag" : "Δημιούργησε νέα ετικέτα",
|
||||
"Title" : "Τίτλος",
|
||||
@@ -55,7 +50,6 @@ OC.L10N.register(
|
||||
"Formatting help" : "Βοήθεια μορφοποίησης",
|
||||
"Add a card description…" : "Προσθήκη περιγραφής κάρτας...",
|
||||
"Shared boards" : "Διαμοιρασμένοι πίνακες",
|
||||
"View more" : "Προβολή περισσοτέρων",
|
||||
"Move board to archive" : "Μετακίνηση πίνακα στην αρχειοθήκη",
|
||||
"Create a new board" : "Δημιουργία νέου πίνακα"
|
||||
},
|
||||
|
||||
@@ -12,12 +12,8 @@
|
||||
"Submit" : "Υποβολή",
|
||||
"Show archived cards" : "Εμφάνιση καρτελών που αρχειοθετήθηκαν",
|
||||
"Hide archived cards" : "Απόκρυψη καρτελών που αρχειοθετήθηκαν",
|
||||
"Board details" : "Λεπτομέριες πίνακα",
|
||||
"All Boards" : "Όλοι οι πίνακες",
|
||||
"Archived boards" : "Αρχειοθέτηση πινάκων ",
|
||||
"Archive" : "Αρχειοθέτηση",
|
||||
"Unarchive" : "Αναίρεση αρχειοθέτησης",
|
||||
"Delete" : "Διαγραφή",
|
||||
"Enter a card title" : "Καταχωρίστε έναν τίτλο κάρτας",
|
||||
"Add card" : "Προσθήκη κάρτας",
|
||||
"Close" : "Κλείσιμο",
|
||||
@@ -26,11 +22,10 @@
|
||||
"Select users or groups to share with" : "Επιλέξτε χρήστες ή ομάδες με τις οποίες θα μοιραστείτε",
|
||||
"No matching user or group found." : "Δεν βρέθηκε χρήστης ή ομάδα να ταιριάζει.",
|
||||
"Loading" : "Γίνεται φόρτωση",
|
||||
"Share" : "Διαμοιρασμός",
|
||||
"Edit" : "Επεξεργασία",
|
||||
"Share" : "Διαμοιρασμός",
|
||||
"Manage" : "Διαχείριση",
|
||||
"Discard share" : "Απόρριψη διαμοιρασμού",
|
||||
"Update" : "Ενημέρωση",
|
||||
"Create" : "Δημιουργία",
|
||||
"Create a new tag" : "Δημιούργησε νέα ετικέτα",
|
||||
"Title" : "Τίτλος",
|
||||
@@ -53,7 +48,6 @@
|
||||
"Formatting help" : "Βοήθεια μορφοποίησης",
|
||||
"Add a card description…" : "Προσθήκη περιγραφής κάρτας...",
|
||||
"Shared boards" : "Διαμοιρασμένοι πίνακες",
|
||||
"View more" : "Προβολή περισσοτέρων",
|
||||
"Move board to archive" : "Μετακίνηση πίνακα στην αρχειοθήκη",
|
||||
"Create a new board" : "Δημιουργία νέου πίνακα"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
|
||||
@@ -17,12 +17,8 @@ OC.L10N.register(
|
||||
"Submit" : "Submit",
|
||||
"Show archived cards" : "Show archived cards",
|
||||
"Hide archived cards" : "Hide archived cards",
|
||||
"Board details" : "Board details",
|
||||
"All Boards" : "All Boards",
|
||||
"Archived boards" : "Archived boards",
|
||||
"Archive" : "Archive",
|
||||
"Unarchive" : "Unarchive",
|
||||
"Delete" : "Delete",
|
||||
"Enter a card title" : "Enter a card title",
|
||||
"Add card" : "Add card",
|
||||
"Close" : "Close",
|
||||
@@ -32,11 +28,10 @@ OC.L10N.register(
|
||||
"Access for" : "Access for",
|
||||
"No matching user or group found." : "No matching user or group found.",
|
||||
"Loading" : "Loading",
|
||||
"Share" : "Share",
|
||||
"Edit" : "Edit",
|
||||
"Share" : "Share",
|
||||
"Manage" : "Manage",
|
||||
"Discard share" : "Discard share",
|
||||
"Update" : "Update",
|
||||
"Create" : "Create",
|
||||
"Create a new tag" : "Create a new tag",
|
||||
"Status" : "Status",
|
||||
@@ -47,7 +42,6 @@ OC.L10N.register(
|
||||
"Archive board" : "Archive board",
|
||||
"Unarchive board" : "Unarchive board",
|
||||
"Delete board" : "Delete board",
|
||||
"Reset" : "Reset",
|
||||
"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",
|
||||
@@ -69,7 +63,6 @@ OC.L10N.register(
|
||||
"Formatting help" : "Formatting help",
|
||||
"Add a card description…" : "Add a card description…",
|
||||
"Shared boards" : "Shared boards",
|
||||
"View more" : "View more",
|
||||
"Move board to archive" : "Move board to archive",
|
||||
"Create a new board" : "Create a new board"
|
||||
},
|
||||
|
||||
@@ -15,12 +15,8 @@
|
||||
"Submit" : "Submit",
|
||||
"Show archived cards" : "Show archived cards",
|
||||
"Hide archived cards" : "Hide archived cards",
|
||||
"Board details" : "Board details",
|
||||
"All Boards" : "All Boards",
|
||||
"Archived boards" : "Archived boards",
|
||||
"Archive" : "Archive",
|
||||
"Unarchive" : "Unarchive",
|
||||
"Delete" : "Delete",
|
||||
"Enter a card title" : "Enter a card title",
|
||||
"Add card" : "Add card",
|
||||
"Close" : "Close",
|
||||
@@ -30,11 +26,10 @@
|
||||
"Access for" : "Access for",
|
||||
"No matching user or group found." : "No matching user or group found.",
|
||||
"Loading" : "Loading",
|
||||
"Share" : "Share",
|
||||
"Edit" : "Edit",
|
||||
"Share" : "Share",
|
||||
"Manage" : "Manage",
|
||||
"Discard share" : "Discard share",
|
||||
"Update" : "Update",
|
||||
"Create" : "Create",
|
||||
"Create a new tag" : "Create a new tag",
|
||||
"Status" : "Status",
|
||||
@@ -45,7 +40,6 @@
|
||||
"Archive board" : "Archive board",
|
||||
"Unarchive board" : "Unarchive board",
|
||||
"Delete board" : "Delete board",
|
||||
"Reset" : "Reset",
|
||||
"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",
|
||||
@@ -67,7 +61,6 @@
|
||||
"Formatting help" : "Formatting help",
|
||||
"Add a card description…" : "Add a card description…",
|
||||
"Shared boards" : "Shared boards",
|
||||
"View more" : "View more",
|
||||
"Move board to archive" : "Move board to archive",
|
||||
"Create a new board" : "Create a new board"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
|
||||
28
l10n/es.js
28
l10n/es.js
@@ -108,17 +108,17 @@ OC.L10N.register(
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Toggle compact mode" : "Mostrar/ocultar modo compacto",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Show board details" : "Mostrar detalles del tablero",
|
||||
"All Boards" : "Todos los tableros",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Share board" : "Compartir tablero",
|
||||
"Drop your files here to upload it to the card" : "Arrastra tus archivos aquí para subirlos a la tarjeta",
|
||||
"Actions" : "Acciones",
|
||||
"Assign to me" : "Asignarme a mí",
|
||||
"Unassign from me" : "Desasignarme a mí",
|
||||
"Archive" : "Archivar",
|
||||
"Unarchive" : "Desarchivar",
|
||||
"Delete" : "Eliminar",
|
||||
"Drop your files here to upload it to the card" : "Arrastra tus archivos aquí para subirlos a la tarjeta",
|
||||
"Assign card to me" : "Asignarme tarjeta a mí",
|
||||
"Unassign card from me" : "Desasignarme tarjeta",
|
||||
"Archive card" : "Archivar tarjeta",
|
||||
"Unarchive card" : "Desarchivar tarjeta",
|
||||
"Delete card" : "Eliminar tarjeta",
|
||||
"Enter a card title" : "Introducir título de tarjeta",
|
||||
"Add card" : "Añadir tarjeta",
|
||||
"Close" : "Cerrar",
|
||||
@@ -130,11 +130,13 @@ OC.L10N.register(
|
||||
"Access for" : "Acceso para",
|
||||
"No matching user or group found." : "No se encontraron usuarios o grupos coincidentes.",
|
||||
"Loading" : "Cargando",
|
||||
"Share" : "Compartir",
|
||||
"Edit" : "Editar",
|
||||
"Share" : "Compartir",
|
||||
"Manage" : "Organizar",
|
||||
"Discard share" : "Descartar compartición",
|
||||
"Update" : "Actualizar",
|
||||
"Update tag" : "Actualizar etiqueta",
|
||||
"Edit tag" : "Editar etiqueta",
|
||||
"Delete tag" : "Eliminar etiqueta",
|
||||
"Create" : "Crear",
|
||||
"Create a new tag" : "Crear una etiqueta nueva",
|
||||
"Deleted stacks" : "Pilas eliminadas",
|
||||
@@ -149,16 +151,19 @@ OC.L10N.register(
|
||||
"Archive board" : "Archivar tablero",
|
||||
"Unarchive board" : "Desarchivar tablero",
|
||||
"Delete board" : "Eliminar tablero",
|
||||
"Reset" : "Resetear",
|
||||
"Update board" : "Actualizar tablero",
|
||||
"Reset board" : "Resetear tablero",
|
||||
"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",
|
||||
"Create board" : "Crear 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",
|
||||
"Delete attachment" : "Eliminar adjunto",
|
||||
"Modified:" : "Modificado: ",
|
||||
"Created:" : "Creado: ",
|
||||
"Choose a tag" : "Escoge una etiqueta",
|
||||
@@ -174,12 +179,11 @@ OC.L10N.register(
|
||||
"Attachments" : "Adjuntos",
|
||||
"Saved" : "Guardado",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Insert attachment" : "Insertar adjunto",
|
||||
"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",
|
||||
"Move board to archive" : "Mover tablero al archivo",
|
||||
"Create a new board" : "Crear un tablero nuevo"
|
||||
},
|
||||
|
||||
28
l10n/es.json
28
l10n/es.json
@@ -106,17 +106,17 @@
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Toggle compact mode" : "Mostrar/ocultar modo compacto",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"Show board details" : "Mostrar detalles del tablero",
|
||||
"All Boards" : "Todos los tableros",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Share board" : "Compartir tablero",
|
||||
"Drop your files here to upload it to the card" : "Arrastra tus archivos aquí para subirlos a la tarjeta",
|
||||
"Actions" : "Acciones",
|
||||
"Assign to me" : "Asignarme a mí",
|
||||
"Unassign from me" : "Desasignarme a mí",
|
||||
"Archive" : "Archivar",
|
||||
"Unarchive" : "Desarchivar",
|
||||
"Delete" : "Eliminar",
|
||||
"Drop your files here to upload it to the card" : "Arrastra tus archivos aquí para subirlos a la tarjeta",
|
||||
"Assign card to me" : "Asignarme tarjeta a mí",
|
||||
"Unassign card from me" : "Desasignarme tarjeta",
|
||||
"Archive card" : "Archivar tarjeta",
|
||||
"Unarchive card" : "Desarchivar tarjeta",
|
||||
"Delete card" : "Eliminar tarjeta",
|
||||
"Enter a card title" : "Introducir título de tarjeta",
|
||||
"Add card" : "Añadir tarjeta",
|
||||
"Close" : "Cerrar",
|
||||
@@ -128,11 +128,13 @@
|
||||
"Access for" : "Acceso para",
|
||||
"No matching user or group found." : "No se encontraron usuarios o grupos coincidentes.",
|
||||
"Loading" : "Cargando",
|
||||
"Share" : "Compartir",
|
||||
"Edit" : "Editar",
|
||||
"Share" : "Compartir",
|
||||
"Manage" : "Organizar",
|
||||
"Discard share" : "Descartar compartición",
|
||||
"Update" : "Actualizar",
|
||||
"Update tag" : "Actualizar etiqueta",
|
||||
"Edit tag" : "Editar etiqueta",
|
||||
"Delete tag" : "Eliminar etiqueta",
|
||||
"Create" : "Crear",
|
||||
"Create a new tag" : "Crear una etiqueta nueva",
|
||||
"Deleted stacks" : "Pilas eliminadas",
|
||||
@@ -147,16 +149,19 @@
|
||||
"Archive board" : "Archivar tablero",
|
||||
"Unarchive board" : "Desarchivar tablero",
|
||||
"Delete board" : "Eliminar tablero",
|
||||
"Reset" : "Resetear",
|
||||
"Update board" : "Actualizar tablero",
|
||||
"Reset board" : "Resetear tablero",
|
||||
"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",
|
||||
"Create board" : "Crear 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",
|
||||
"Delete attachment" : "Eliminar adjunto",
|
||||
"Modified:" : "Modificado: ",
|
||||
"Created:" : "Creado: ",
|
||||
"Choose a tag" : "Escoge una etiqueta",
|
||||
@@ -172,12 +177,11 @@
|
||||
"Attachments" : "Adjuntos",
|
||||
"Saved" : "Guardado",
|
||||
"Unsaved changes" : "Cambios no guardados",
|
||||
"Insert attachment" : "Insertar adjunto",
|
||||
"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",
|
||||
"Move board to archive" : "Mover tablero al archivo",
|
||||
"Create a new board" : "Crear un tablero nuevo"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
|
||||
@@ -15,12 +15,8 @@ OC.L10N.register(
|
||||
"Submit" : "Enviar",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"All Boards" : "Todos los Tableros",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Archive" : "Archivar",
|
||||
"Unarchive" : "Desarchivar",
|
||||
"Delete" : "Borrar",
|
||||
"Enter a card title" : "Ingresa el título de la tarjeta",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Close" : "Cerrar",
|
||||
@@ -30,11 +26,10 @@ OC.L10N.register(
|
||||
"Access for" : "Acceso para",
|
||||
"No matching user or group found." : "No se encontraron coincidencias de usuarios o grupos.",
|
||||
"Loading" : "Cargando",
|
||||
"Share" : "Compartir",
|
||||
"Edit" : "Editar",
|
||||
"Share" : "Compartir",
|
||||
"Manage" : "Administrar",
|
||||
"Discard share" : "Descartar elemento compartido",
|
||||
"Update" : "Actualizar",
|
||||
"Create" : "Crear",
|
||||
"Create a new tag" : "Crear una nueva etiqueta",
|
||||
"Status" : "Estatus",
|
||||
@@ -45,7 +40,6 @@ OC.L10N.register(
|
||||
"Archive board" : "Archivar tablero",
|
||||
"Unarchive board" : "Desarchivar tablero",
|
||||
"Delete board" : "Borrar tableros",
|
||||
"Reset" : "Reiniciar",
|
||||
"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",
|
||||
@@ -66,7 +60,6 @@ OC.L10N.register(
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"View more" : "Ver más",
|
||||
"Move board to archive" : "Mover el tablero al archivo",
|
||||
"Create a new board" : "Crear un nuevo tablero"
|
||||
},
|
||||
|
||||
@@ -13,12 +13,8 @@
|
||||
"Submit" : "Enviar",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"All Boards" : "Todos los Tableros",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Archive" : "Archivar",
|
||||
"Unarchive" : "Desarchivar",
|
||||
"Delete" : "Borrar",
|
||||
"Enter a card title" : "Ingresa el título de la tarjeta",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Close" : "Cerrar",
|
||||
@@ -28,11 +24,10 @@
|
||||
"Access for" : "Acceso para",
|
||||
"No matching user or group found." : "No se encontraron coincidencias de usuarios o grupos.",
|
||||
"Loading" : "Cargando",
|
||||
"Share" : "Compartir",
|
||||
"Edit" : "Editar",
|
||||
"Share" : "Compartir",
|
||||
"Manage" : "Administrar",
|
||||
"Discard share" : "Descartar elemento compartido",
|
||||
"Update" : "Actualizar",
|
||||
"Create" : "Crear",
|
||||
"Create a new tag" : "Crear una nueva etiqueta",
|
||||
"Status" : "Estatus",
|
||||
@@ -43,7 +38,6 @@
|
||||
"Archive board" : "Archivar tablero",
|
||||
"Unarchive board" : "Desarchivar tablero",
|
||||
"Delete board" : "Borrar tableros",
|
||||
"Reset" : "Reiniciar",
|
||||
"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",
|
||||
@@ -64,7 +58,6 @@
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"View more" : "Ver más",
|
||||
"Move board to archive" : "Mover el tablero al archivo",
|
||||
"Create a new board" : "Crear un nuevo tablero"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
|
||||
@@ -16,12 +16,8 @@ OC.L10N.register(
|
||||
"Submit" : "Enviar",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"All Boards" : "Todos los Tableros",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Archive" : "Archivar",
|
||||
"Unarchive" : "Desarchivar",
|
||||
"Delete" : "Borrar",
|
||||
"Enter a card title" : "Ingresa el título de la tarjeta",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Close" : "Cerrar",
|
||||
@@ -31,11 +27,10 @@ OC.L10N.register(
|
||||
"Access for" : "Acceso para",
|
||||
"No matching user or group found." : "No se encontraron coincidencias de usuarios o grupos.",
|
||||
"Loading" : "Cargando",
|
||||
"Share" : "Compartir",
|
||||
"Edit" : "Editar",
|
||||
"Share" : "Compartir",
|
||||
"Manage" : "Administrar",
|
||||
"Discard share" : "Descartar elemento compartido",
|
||||
"Update" : "Actualizar",
|
||||
"Create" : "Crear",
|
||||
"Create a new tag" : "Crear una nueva etiqueta",
|
||||
"Status" : "Estatus",
|
||||
@@ -46,7 +41,6 @@ OC.L10N.register(
|
||||
"Archive board" : "Archivar tablero",
|
||||
"Unarchive board" : "Desarchivar tablero",
|
||||
"Delete board" : "Borrar tableros",
|
||||
"Reset" : "Reiniciar",
|
||||
"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",
|
||||
@@ -68,7 +62,6 @@ OC.L10N.register(
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"View more" : "Ver más",
|
||||
"Move board to archive" : "Mover el tablero al archivo",
|
||||
"Create a new board" : "Crear un nuevo tablero"
|
||||
},
|
||||
|
||||
@@ -14,12 +14,8 @@
|
||||
"Submit" : "Enviar",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"All Boards" : "Todos los Tableros",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Archive" : "Archivar",
|
||||
"Unarchive" : "Desarchivar",
|
||||
"Delete" : "Borrar",
|
||||
"Enter a card title" : "Ingresa el título de la tarjeta",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Close" : "Cerrar",
|
||||
@@ -29,11 +25,10 @@
|
||||
"Access for" : "Acceso para",
|
||||
"No matching user or group found." : "No se encontraron coincidencias de usuarios o grupos.",
|
||||
"Loading" : "Cargando",
|
||||
"Share" : "Compartir",
|
||||
"Edit" : "Editar",
|
||||
"Share" : "Compartir",
|
||||
"Manage" : "Administrar",
|
||||
"Discard share" : "Descartar elemento compartido",
|
||||
"Update" : "Actualizar",
|
||||
"Create" : "Crear",
|
||||
"Create a new tag" : "Crear una nueva etiqueta",
|
||||
"Status" : "Estatus",
|
||||
@@ -44,7 +39,6 @@
|
||||
"Archive board" : "Archivar tablero",
|
||||
"Unarchive board" : "Desarchivar tablero",
|
||||
"Delete board" : "Borrar tableros",
|
||||
"Reset" : "Reiniciar",
|
||||
"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",
|
||||
@@ -66,7 +60,6 @@
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"View more" : "Ver más",
|
||||
"Move board to archive" : "Mover el tablero al archivo",
|
||||
"Create a new board" : "Crear un nuevo tablero"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
|
||||
@@ -16,12 +16,8 @@ OC.L10N.register(
|
||||
"Submit" : "Enviar",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"All Boards" : "Todos los Tableros",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Archive" : "Archivar",
|
||||
"Unarchive" : "Desarchivar",
|
||||
"Delete" : "Borrar",
|
||||
"Enter a card title" : "Ingresa el título de la tarjeta",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Close" : "Cerrar",
|
||||
@@ -31,11 +27,10 @@ OC.L10N.register(
|
||||
"Access for" : "Acceso para",
|
||||
"No matching user or group found." : "No se encontraron coincidencias de usuarios o grupos.",
|
||||
"Loading" : "Cargando",
|
||||
"Share" : "Compartir",
|
||||
"Edit" : "Editar",
|
||||
"Share" : "Compartir",
|
||||
"Manage" : "Administrar",
|
||||
"Discard share" : "Descartar elemento compartido",
|
||||
"Update" : "Actualizar",
|
||||
"Create" : "Crear",
|
||||
"Create a new tag" : "Crear una nueva etiqueta",
|
||||
"Status" : "Estatus",
|
||||
@@ -46,7 +41,6 @@ OC.L10N.register(
|
||||
"Archive board" : "Archivar tablero",
|
||||
"Unarchive board" : "Desarchivar tablero",
|
||||
"Delete board" : "Borrar tableros",
|
||||
"Reset" : "Reiniciar",
|
||||
"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",
|
||||
@@ -68,7 +62,6 @@ OC.L10N.register(
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"View more" : "Ver más",
|
||||
"Move board to archive" : "Mover el tablero al archivo",
|
||||
"Create a new board" : "Crear un nuevo tablero"
|
||||
},
|
||||
|
||||
@@ -14,12 +14,8 @@
|
||||
"Submit" : "Enviar",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"All Boards" : "Todos los Tableros",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Archive" : "Archivar",
|
||||
"Unarchive" : "Desarchivar",
|
||||
"Delete" : "Borrar",
|
||||
"Enter a card title" : "Ingresa el título de la tarjeta",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Close" : "Cerrar",
|
||||
@@ -29,11 +25,10 @@
|
||||
"Access for" : "Acceso para",
|
||||
"No matching user or group found." : "No se encontraron coincidencias de usuarios o grupos.",
|
||||
"Loading" : "Cargando",
|
||||
"Share" : "Compartir",
|
||||
"Edit" : "Editar",
|
||||
"Share" : "Compartir",
|
||||
"Manage" : "Administrar",
|
||||
"Discard share" : "Descartar elemento compartido",
|
||||
"Update" : "Actualizar",
|
||||
"Create" : "Crear",
|
||||
"Create a new tag" : "Crear una nueva etiqueta",
|
||||
"Status" : "Estatus",
|
||||
@@ -44,7 +39,6 @@
|
||||
"Archive board" : "Archivar tablero",
|
||||
"Unarchive board" : "Desarchivar tablero",
|
||||
"Delete board" : "Borrar tableros",
|
||||
"Reset" : "Reiniciar",
|
||||
"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",
|
||||
@@ -66,7 +60,6 @@
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"View more" : "Ver más",
|
||||
"Move board to archive" : "Mover el tablero al archivo",
|
||||
"Create a new board" : "Crear un nuevo tablero"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
|
||||
@@ -16,12 +16,8 @@ OC.L10N.register(
|
||||
"Submit" : "Enviar",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"All Boards" : "Todos los Tableros",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Archive" : "Archivar",
|
||||
"Unarchive" : "Desarchivar",
|
||||
"Delete" : "Borrar",
|
||||
"Enter a card title" : "Ingresa el título de la tarjeta",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Close" : "Cerrar",
|
||||
@@ -31,11 +27,10 @@ OC.L10N.register(
|
||||
"Access for" : "Acceso para",
|
||||
"No matching user or group found." : "No se encontraron coincidencias de usuarios o grupos.",
|
||||
"Loading" : "Cargando",
|
||||
"Share" : "Compartir",
|
||||
"Edit" : "Editar",
|
||||
"Share" : "Compartir",
|
||||
"Manage" : "Administrar",
|
||||
"Discard share" : "Descartar elemento compartido",
|
||||
"Update" : "Actualizar",
|
||||
"Create" : "Crear",
|
||||
"Create a new tag" : "Crear una nueva etiqueta",
|
||||
"Status" : "Estatus",
|
||||
@@ -46,7 +41,6 @@ OC.L10N.register(
|
||||
"Archive board" : "Archivar tablero",
|
||||
"Unarchive board" : "Desarchivar tablero",
|
||||
"Delete board" : "Borrar tableros",
|
||||
"Reset" : "Reiniciar",
|
||||
"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",
|
||||
@@ -68,7 +62,6 @@ OC.L10N.register(
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"View more" : "Ver más",
|
||||
"Move board to archive" : "Mover el tablero al archivo",
|
||||
"Create a new board" : "Crear un nuevo tablero"
|
||||
},
|
||||
|
||||
@@ -14,12 +14,8 @@
|
||||
"Submit" : "Enviar",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"All Boards" : "Todos los Tableros",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Archive" : "Archivar",
|
||||
"Unarchive" : "Desarchivar",
|
||||
"Delete" : "Borrar",
|
||||
"Enter a card title" : "Ingresa el título de la tarjeta",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Close" : "Cerrar",
|
||||
@@ -29,11 +25,10 @@
|
||||
"Access for" : "Acceso para",
|
||||
"No matching user or group found." : "No se encontraron coincidencias de usuarios o grupos.",
|
||||
"Loading" : "Cargando",
|
||||
"Share" : "Compartir",
|
||||
"Edit" : "Editar",
|
||||
"Share" : "Compartir",
|
||||
"Manage" : "Administrar",
|
||||
"Discard share" : "Descartar elemento compartido",
|
||||
"Update" : "Actualizar",
|
||||
"Create" : "Crear",
|
||||
"Create a new tag" : "Crear una nueva etiqueta",
|
||||
"Status" : "Estatus",
|
||||
@@ -44,7 +39,6 @@
|
||||
"Archive board" : "Archivar tablero",
|
||||
"Unarchive board" : "Desarchivar tablero",
|
||||
"Delete board" : "Borrar tableros",
|
||||
"Reset" : "Reiniciar",
|
||||
"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",
|
||||
@@ -66,7 +60,6 @@
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"View more" : "Ver más",
|
||||
"Move board to archive" : "Mover el tablero al archivo",
|
||||
"Create a new board" : "Crear un nuevo tablero"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
|
||||
@@ -16,12 +16,8 @@ OC.L10N.register(
|
||||
"Submit" : "Enviar",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"All Boards" : "Todos los Tableros",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Archive" : "Archivar",
|
||||
"Unarchive" : "Desarchivar",
|
||||
"Delete" : "Borrar",
|
||||
"Enter a card title" : "Ingresa el título de la tarjeta",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Close" : "Cerrar",
|
||||
@@ -31,11 +27,10 @@ OC.L10N.register(
|
||||
"Access for" : "Acceso para",
|
||||
"No matching user or group found." : "No se encontraron coincidencias de usuarios o grupos.",
|
||||
"Loading" : "Cargando",
|
||||
"Share" : "Compartir",
|
||||
"Edit" : "Editar",
|
||||
"Share" : "Compartir",
|
||||
"Manage" : "Administrar",
|
||||
"Discard share" : "Descartar elemento compartido",
|
||||
"Update" : "Actualizar",
|
||||
"Create" : "Crear",
|
||||
"Create a new tag" : "Crear una nueva etiqueta",
|
||||
"Status" : "Estatus",
|
||||
@@ -46,7 +41,6 @@ OC.L10N.register(
|
||||
"Archive board" : "Archivar tablero",
|
||||
"Unarchive board" : "Desarchivar tablero",
|
||||
"Delete board" : "Borrar tableros",
|
||||
"Reset" : "Reiniciar",
|
||||
"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",
|
||||
@@ -68,7 +62,6 @@ OC.L10N.register(
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"View more" : "Ver más",
|
||||
"Move board to archive" : "Mover el tablero al archivo",
|
||||
"Create a new board" : "Crear un nuevo tablero"
|
||||
},
|
||||
|
||||
@@ -14,12 +14,8 @@
|
||||
"Submit" : "Enviar",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"All Boards" : "Todos los Tableros",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Archive" : "Archivar",
|
||||
"Unarchive" : "Desarchivar",
|
||||
"Delete" : "Borrar",
|
||||
"Enter a card title" : "Ingresa el título de la tarjeta",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Close" : "Cerrar",
|
||||
@@ -29,11 +25,10 @@
|
||||
"Access for" : "Acceso para",
|
||||
"No matching user or group found." : "No se encontraron coincidencias de usuarios o grupos.",
|
||||
"Loading" : "Cargando",
|
||||
"Share" : "Compartir",
|
||||
"Edit" : "Editar",
|
||||
"Share" : "Compartir",
|
||||
"Manage" : "Administrar",
|
||||
"Discard share" : "Descartar elemento compartido",
|
||||
"Update" : "Actualizar",
|
||||
"Create" : "Crear",
|
||||
"Create a new tag" : "Crear una nueva etiqueta",
|
||||
"Status" : "Estatus",
|
||||
@@ -44,7 +39,6 @@
|
||||
"Archive board" : "Archivar tablero",
|
||||
"Unarchive board" : "Desarchivar tablero",
|
||||
"Delete board" : "Borrar tableros",
|
||||
"Reset" : "Reiniciar",
|
||||
"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",
|
||||
@@ -66,7 +60,6 @@
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"View more" : "Ver más",
|
||||
"Move board to archive" : "Mover el tablero al archivo",
|
||||
"Create a new board" : "Crear un nuevo tablero"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
|
||||
@@ -16,12 +16,8 @@ OC.L10N.register(
|
||||
"Submit" : "Enviar",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"All Boards" : "Todos los Tableros",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Archive" : "Archivar",
|
||||
"Unarchive" : "Desarchivar",
|
||||
"Delete" : "Borrar",
|
||||
"Enter a card title" : "Ingresa el título de la tarjeta",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Close" : "Cerrar",
|
||||
@@ -31,11 +27,10 @@ OC.L10N.register(
|
||||
"Access for" : "Acceso para",
|
||||
"No matching user or group found." : "No se encontraron coincidencias de usuarios o grupos.",
|
||||
"Loading" : "Cargando",
|
||||
"Share" : "Compartir",
|
||||
"Edit" : "Editar",
|
||||
"Share" : "Compartir",
|
||||
"Manage" : "Administrar",
|
||||
"Discard share" : "Descartar elemento compartido",
|
||||
"Update" : "Actualizar",
|
||||
"Create" : "Crear",
|
||||
"Create a new tag" : "Crear una nueva etiqueta",
|
||||
"Status" : "Estatus",
|
||||
@@ -46,7 +41,6 @@ OC.L10N.register(
|
||||
"Archive board" : "Archivar tablero",
|
||||
"Unarchive board" : "Desarchivar tablero",
|
||||
"Delete board" : "Borrar tableros",
|
||||
"Reset" : "Reiniciar",
|
||||
"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",
|
||||
@@ -68,7 +62,6 @@ OC.L10N.register(
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"View more" : "Ver más",
|
||||
"Move board to archive" : "Mover el tablero al archivo",
|
||||
"Create a new board" : "Crear un nuevo tablero"
|
||||
},
|
||||
|
||||
@@ -14,12 +14,8 @@
|
||||
"Submit" : "Enviar",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"All Boards" : "Todos los Tableros",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Archive" : "Archivar",
|
||||
"Unarchive" : "Desarchivar",
|
||||
"Delete" : "Borrar",
|
||||
"Enter a card title" : "Ingresa el título de la tarjeta",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Close" : "Cerrar",
|
||||
@@ -29,11 +25,10 @@
|
||||
"Access for" : "Acceso para",
|
||||
"No matching user or group found." : "No se encontraron coincidencias de usuarios o grupos.",
|
||||
"Loading" : "Cargando",
|
||||
"Share" : "Compartir",
|
||||
"Edit" : "Editar",
|
||||
"Share" : "Compartir",
|
||||
"Manage" : "Administrar",
|
||||
"Discard share" : "Descartar elemento compartido",
|
||||
"Update" : "Actualizar",
|
||||
"Create" : "Crear",
|
||||
"Create a new tag" : "Crear una nueva etiqueta",
|
||||
"Status" : "Estatus",
|
||||
@@ -44,7 +39,6 @@
|
||||
"Archive board" : "Archivar tablero",
|
||||
"Unarchive board" : "Desarchivar tablero",
|
||||
"Delete board" : "Borrar tableros",
|
||||
"Reset" : "Reiniciar",
|
||||
"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",
|
||||
@@ -66,7 +60,6 @@
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"View more" : "Ver más",
|
||||
"Move board to archive" : "Mover el tablero al archivo",
|
||||
"Create a new board" : "Crear un nuevo tablero"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
|
||||
@@ -16,12 +16,8 @@ OC.L10N.register(
|
||||
"Submit" : "Enviar",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"All Boards" : "Todos los Tableros",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Archive" : "Archivar",
|
||||
"Unarchive" : "Desarchivar",
|
||||
"Delete" : "Borrar",
|
||||
"Enter a card title" : "Ingresa el título de la tarjeta",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Close" : "Cerrar",
|
||||
@@ -31,11 +27,10 @@ OC.L10N.register(
|
||||
"Access for" : "Acceso para",
|
||||
"No matching user or group found." : "No se encontraron coincidencias de usuarios o grupos.",
|
||||
"Loading" : "Cargando",
|
||||
"Share" : "Compartir",
|
||||
"Edit" : "Editar",
|
||||
"Share" : "Compartir",
|
||||
"Manage" : "Administrar",
|
||||
"Discard share" : "Descartar elemento compartido",
|
||||
"Update" : "Actualizar",
|
||||
"Create" : "Crear",
|
||||
"Create a new tag" : "Crear una nueva etiqueta",
|
||||
"Status" : "Estatus",
|
||||
@@ -46,7 +41,6 @@ OC.L10N.register(
|
||||
"Archive board" : "Archivar tablero",
|
||||
"Unarchive board" : "Desarchivar tablero",
|
||||
"Delete board" : "Borrar tableros",
|
||||
"Reset" : "Reiniciar",
|
||||
"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",
|
||||
@@ -68,7 +62,6 @@ OC.L10N.register(
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"View more" : "Ver más",
|
||||
"Move board to archive" : "Mover el tablero al archivo",
|
||||
"Create a new board" : "Crear un nuevo tablero"
|
||||
},
|
||||
|
||||
@@ -14,12 +14,8 @@
|
||||
"Submit" : "Enviar",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"All Boards" : "Todos los Tableros",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Archive" : "Archivar",
|
||||
"Unarchive" : "Desarchivar",
|
||||
"Delete" : "Borrar",
|
||||
"Enter a card title" : "Ingresa el título de la tarjeta",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Close" : "Cerrar",
|
||||
@@ -29,11 +25,10 @@
|
||||
"Access for" : "Acceso para",
|
||||
"No matching user or group found." : "No se encontraron coincidencias de usuarios o grupos.",
|
||||
"Loading" : "Cargando",
|
||||
"Share" : "Compartir",
|
||||
"Edit" : "Editar",
|
||||
"Share" : "Compartir",
|
||||
"Manage" : "Administrar",
|
||||
"Discard share" : "Descartar elemento compartido",
|
||||
"Update" : "Actualizar",
|
||||
"Create" : "Crear",
|
||||
"Create a new tag" : "Crear una nueva etiqueta",
|
||||
"Status" : "Estatus",
|
||||
@@ -44,7 +39,6 @@
|
||||
"Archive board" : "Archivar tablero",
|
||||
"Unarchive board" : "Desarchivar tablero",
|
||||
"Delete board" : "Borrar tableros",
|
||||
"Reset" : "Reiniciar",
|
||||
"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",
|
||||
@@ -66,7 +60,6 @@
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"View more" : "Ver más",
|
||||
"Move board to archive" : "Mover el tablero al archivo",
|
||||
"Create a new board" : "Crear un nuevo tablero"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
|
||||
@@ -15,12 +15,8 @@ OC.L10N.register(
|
||||
"Submit" : "Enviar",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"All Boards" : "Todos los Tableros",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Archive" : "Archivar",
|
||||
"Unarchive" : "Desarchivar",
|
||||
"Delete" : "Borrar",
|
||||
"Enter a card title" : "Ingresa el título de la tarjeta",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Close" : "Cerrar",
|
||||
@@ -30,11 +26,10 @@ OC.L10N.register(
|
||||
"Access for" : "Acceso para",
|
||||
"No matching user or group found." : "No se encontraron coincidencias de usuarios o grupos.",
|
||||
"Loading" : "Cargando",
|
||||
"Share" : "Compartir",
|
||||
"Edit" : "Editar",
|
||||
"Share" : "Compartir",
|
||||
"Manage" : "Administrar",
|
||||
"Discard share" : "Descartar elemento compartido",
|
||||
"Update" : "Actualizar",
|
||||
"Create" : "Crear",
|
||||
"Create a new tag" : "Crear una nueva etiqueta",
|
||||
"Status" : "Estatus",
|
||||
@@ -45,7 +40,6 @@ OC.L10N.register(
|
||||
"Archive board" : "Archivar tablero",
|
||||
"Unarchive board" : "Desarchivar tablero",
|
||||
"Delete board" : "Borrar tableros",
|
||||
"Reset" : "Reiniciar",
|
||||
"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",
|
||||
@@ -66,7 +60,6 @@ OC.L10N.register(
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"View more" : "Ver más",
|
||||
"Move board to archive" : "Mover el tablero al archivo",
|
||||
"Create a new board" : "Crear un nuevo tablero"
|
||||
},
|
||||
|
||||
@@ -13,12 +13,8 @@
|
||||
"Submit" : "Enviar",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"All Boards" : "Todos los Tableros",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Archive" : "Archivar",
|
||||
"Unarchive" : "Desarchivar",
|
||||
"Delete" : "Borrar",
|
||||
"Enter a card title" : "Ingresa el título de la tarjeta",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Close" : "Cerrar",
|
||||
@@ -28,11 +24,10 @@
|
||||
"Access for" : "Acceso para",
|
||||
"No matching user or group found." : "No se encontraron coincidencias de usuarios o grupos.",
|
||||
"Loading" : "Cargando",
|
||||
"Share" : "Compartir",
|
||||
"Edit" : "Editar",
|
||||
"Share" : "Compartir",
|
||||
"Manage" : "Administrar",
|
||||
"Discard share" : "Descartar elemento compartido",
|
||||
"Update" : "Actualizar",
|
||||
"Create" : "Crear",
|
||||
"Create a new tag" : "Crear una nueva etiqueta",
|
||||
"Status" : "Estatus",
|
||||
@@ -43,7 +38,6 @@
|
||||
"Archive board" : "Archivar tablero",
|
||||
"Unarchive board" : "Desarchivar tablero",
|
||||
"Delete board" : "Borrar tableros",
|
||||
"Reset" : "Reiniciar",
|
||||
"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",
|
||||
@@ -64,7 +58,6 @@
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"View more" : "Ver más",
|
||||
"Move board to archive" : "Mover el tablero al archivo",
|
||||
"Create a new board" : "Crear un nuevo tablero"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
|
||||
@@ -17,12 +17,8 @@ OC.L10N.register(
|
||||
"Submit" : "Enviar",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"All Boards" : "Todos los Tableros",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Archive" : "Archivar",
|
||||
"Unarchive" : "Desarchivar",
|
||||
"Delete" : "Borrar",
|
||||
"Enter a card title" : "Ingresa el título de la tarjeta",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Close" : "Cerrar",
|
||||
@@ -32,11 +28,10 @@ OC.L10N.register(
|
||||
"Access for" : "Acceso para",
|
||||
"No matching user or group found." : "No se encontraron coincidencias de usuarios o grupos.",
|
||||
"Loading" : "Cargando",
|
||||
"Share" : "Compartir",
|
||||
"Edit" : "Editar",
|
||||
"Share" : "Compartir",
|
||||
"Manage" : "Administrar",
|
||||
"Discard share" : "Descartar elemento compartido",
|
||||
"Update" : "Actualizar",
|
||||
"Create" : "Crear",
|
||||
"Create a new tag" : "Crear una nueva etiqueta",
|
||||
"Status" : "Estatus",
|
||||
@@ -47,7 +42,6 @@ OC.L10N.register(
|
||||
"Archive board" : "Archivar tablero",
|
||||
"Unarchive board" : "Desarchivar tablero",
|
||||
"Delete board" : "Borrar tableros",
|
||||
"Reset" : "Reiniciar",
|
||||
"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",
|
||||
@@ -69,7 +63,6 @@ OC.L10N.register(
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"View more" : "Ver más",
|
||||
"Move board to archive" : "Mover el tablero al archivo",
|
||||
"Create a new board" : "Crear un nuevo tablero"
|
||||
},
|
||||
|
||||
@@ -15,12 +15,8 @@
|
||||
"Submit" : "Enviar",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"All Boards" : "Todos los Tableros",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Archive" : "Archivar",
|
||||
"Unarchive" : "Desarchivar",
|
||||
"Delete" : "Borrar",
|
||||
"Enter a card title" : "Ingresa el título de la tarjeta",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Close" : "Cerrar",
|
||||
@@ -30,11 +26,10 @@
|
||||
"Access for" : "Acceso para",
|
||||
"No matching user or group found." : "No se encontraron coincidencias de usuarios o grupos.",
|
||||
"Loading" : "Cargando",
|
||||
"Share" : "Compartir",
|
||||
"Edit" : "Editar",
|
||||
"Share" : "Compartir",
|
||||
"Manage" : "Administrar",
|
||||
"Discard share" : "Descartar elemento compartido",
|
||||
"Update" : "Actualizar",
|
||||
"Create" : "Crear",
|
||||
"Create a new tag" : "Crear una nueva etiqueta",
|
||||
"Status" : "Estatus",
|
||||
@@ -45,7 +40,6 @@
|
||||
"Archive board" : "Archivar tablero",
|
||||
"Unarchive board" : "Desarchivar tablero",
|
||||
"Delete board" : "Borrar tableros",
|
||||
"Reset" : "Reiniciar",
|
||||
"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",
|
||||
@@ -67,7 +61,6 @@
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"View more" : "Ver más",
|
||||
"Move board to archive" : "Mover el tablero al archivo",
|
||||
"Create a new board" : "Crear un nuevo tablero"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
|
||||
@@ -15,12 +15,8 @@ OC.L10N.register(
|
||||
"Submit" : "Enviar",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"All Boards" : "Todos los Tableros",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Archive" : "Archivar",
|
||||
"Unarchive" : "Desarchivar",
|
||||
"Delete" : "Borrar",
|
||||
"Enter a card title" : "Ingresa el título de la tarjeta",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Close" : "Cerrar",
|
||||
@@ -30,11 +26,10 @@ OC.L10N.register(
|
||||
"Access for" : "Acceso para",
|
||||
"No matching user or group found." : "No se encontraron coincidencias de usuarios o grupos.",
|
||||
"Loading" : "Cargando",
|
||||
"Share" : "Compartir",
|
||||
"Edit" : "Editar",
|
||||
"Share" : "Compartir",
|
||||
"Manage" : "Administrar",
|
||||
"Discard share" : "Descartar elemento compartido",
|
||||
"Update" : "Actualizar",
|
||||
"Create" : "Crear",
|
||||
"Create a new tag" : "Crear una nueva etiqueta",
|
||||
"Status" : "Estatus",
|
||||
@@ -45,7 +40,6 @@ OC.L10N.register(
|
||||
"Archive board" : "Archivar tablero",
|
||||
"Unarchive board" : "Desarchivar tablero",
|
||||
"Delete board" : "Borrar tableros",
|
||||
"Reset" : "Reiniciar",
|
||||
"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",
|
||||
@@ -66,7 +60,6 @@ OC.L10N.register(
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"View more" : "Ver más",
|
||||
"Move board to archive" : "Mover el tablero al archivo",
|
||||
"Create a new board" : "Crear un nuevo tablero"
|
||||
},
|
||||
|
||||
@@ -13,12 +13,8 @@
|
||||
"Submit" : "Enviar",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"All Boards" : "Todos los Tableros",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Archive" : "Archivar",
|
||||
"Unarchive" : "Desarchivar",
|
||||
"Delete" : "Borrar",
|
||||
"Enter a card title" : "Ingresa el título de la tarjeta",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Close" : "Cerrar",
|
||||
@@ -28,11 +24,10 @@
|
||||
"Access for" : "Acceso para",
|
||||
"No matching user or group found." : "No se encontraron coincidencias de usuarios o grupos.",
|
||||
"Loading" : "Cargando",
|
||||
"Share" : "Compartir",
|
||||
"Edit" : "Editar",
|
||||
"Share" : "Compartir",
|
||||
"Manage" : "Administrar",
|
||||
"Discard share" : "Descartar elemento compartido",
|
||||
"Update" : "Actualizar",
|
||||
"Create" : "Crear",
|
||||
"Create a new tag" : "Crear una nueva etiqueta",
|
||||
"Status" : "Estatus",
|
||||
@@ -43,7 +38,6 @@
|
||||
"Archive board" : "Archivar tablero",
|
||||
"Unarchive board" : "Desarchivar tablero",
|
||||
"Delete board" : "Borrar tableros",
|
||||
"Reset" : "Reiniciar",
|
||||
"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",
|
||||
@@ -64,7 +58,6 @@
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"View more" : "Ver más",
|
||||
"Move board to archive" : "Mover el tablero al archivo",
|
||||
"Create a new board" : "Crear un nuevo tablero"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
|
||||
@@ -15,12 +15,8 @@ OC.L10N.register(
|
||||
"Submit" : "Enviar",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"All Boards" : "Todos los Tableros",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Archive" : "Archivar",
|
||||
"Unarchive" : "Desarchivar",
|
||||
"Delete" : "Borrar",
|
||||
"Enter a card title" : "Ingresa el título de la tarjeta",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Close" : "Cerrar",
|
||||
@@ -30,11 +26,10 @@ OC.L10N.register(
|
||||
"Access for" : "Acceso para",
|
||||
"No matching user or group found." : "No se encontraron coincidencias de usuarios o grupos.",
|
||||
"Loading" : "Cargando",
|
||||
"Share" : "Compartir",
|
||||
"Edit" : "Editar",
|
||||
"Share" : "Compartir",
|
||||
"Manage" : "Administrar",
|
||||
"Discard share" : "Descartar elemento compartido",
|
||||
"Update" : "Actualizar",
|
||||
"Create" : "Crear",
|
||||
"Create a new tag" : "Crear una nueva etiqueta",
|
||||
"Status" : "Estatus",
|
||||
@@ -45,7 +40,6 @@ OC.L10N.register(
|
||||
"Archive board" : "Archivar tablero",
|
||||
"Unarchive board" : "Desarchivar tablero",
|
||||
"Delete board" : "Borrar tableros",
|
||||
"Reset" : "Reiniciar",
|
||||
"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",
|
||||
@@ -66,7 +60,6 @@ OC.L10N.register(
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"View more" : "Ver más",
|
||||
"Move board to archive" : "Mover el tablero al archivo",
|
||||
"Create a new board" : "Crear un nuevo tablero"
|
||||
},
|
||||
|
||||
@@ -13,12 +13,8 @@
|
||||
"Submit" : "Enviar",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"All Boards" : "Todos los Tableros",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Archive" : "Archivar",
|
||||
"Unarchive" : "Desarchivar",
|
||||
"Delete" : "Borrar",
|
||||
"Enter a card title" : "Ingresa el título de la tarjeta",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Close" : "Cerrar",
|
||||
@@ -28,11 +24,10 @@
|
||||
"Access for" : "Acceso para",
|
||||
"No matching user or group found." : "No se encontraron coincidencias de usuarios o grupos.",
|
||||
"Loading" : "Cargando",
|
||||
"Share" : "Compartir",
|
||||
"Edit" : "Editar",
|
||||
"Share" : "Compartir",
|
||||
"Manage" : "Administrar",
|
||||
"Discard share" : "Descartar elemento compartido",
|
||||
"Update" : "Actualizar",
|
||||
"Create" : "Crear",
|
||||
"Create a new tag" : "Crear una nueva etiqueta",
|
||||
"Status" : "Estatus",
|
||||
@@ -43,7 +38,6 @@
|
||||
"Archive board" : "Archivar tablero",
|
||||
"Unarchive board" : "Desarchivar tablero",
|
||||
"Delete board" : "Borrar tableros",
|
||||
"Reset" : "Reiniciar",
|
||||
"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",
|
||||
@@ -64,7 +58,6 @@
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"View more" : "Ver más",
|
||||
"Move board to archive" : "Mover el tablero al archivo",
|
||||
"Create a new board" : "Crear un nuevo tablero"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
|
||||
@@ -15,12 +15,8 @@ OC.L10N.register(
|
||||
"Submit" : "Enviar",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"All Boards" : "Todos los Tableros",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Archive" : "Archivar",
|
||||
"Unarchive" : "Desarchivar",
|
||||
"Delete" : "Borrar",
|
||||
"Enter a card title" : "Ingresa el título de la tarjeta",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Close" : "Cerrar",
|
||||
@@ -30,11 +26,10 @@ OC.L10N.register(
|
||||
"Access for" : "Acceso para",
|
||||
"No matching user or group found." : "No se encontraron coincidencias de usuarios o grupos.",
|
||||
"Loading" : "Cargando",
|
||||
"Share" : "Compartir",
|
||||
"Edit" : "Editar",
|
||||
"Share" : "Compartir",
|
||||
"Manage" : "Administrar",
|
||||
"Discard share" : "Descartar elemento compartido",
|
||||
"Update" : "Actualizar",
|
||||
"Create" : "Crear",
|
||||
"Create a new tag" : "Crear una nueva etiqueta",
|
||||
"Status" : "Estatus",
|
||||
@@ -45,7 +40,6 @@ OC.L10N.register(
|
||||
"Archive board" : "Archivar tablero",
|
||||
"Unarchive board" : "Desarchivar tablero",
|
||||
"Delete board" : "Borrar tableros",
|
||||
"Reset" : "Reiniciar",
|
||||
"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",
|
||||
@@ -66,7 +60,6 @@ OC.L10N.register(
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"View more" : "Ver más",
|
||||
"Move board to archive" : "Mover el tablero al archivo",
|
||||
"Create a new board" : "Crear un nuevo tablero"
|
||||
},
|
||||
|
||||
@@ -13,12 +13,8 @@
|
||||
"Submit" : "Enviar",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"All Boards" : "Todos los Tableros",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Archive" : "Archivar",
|
||||
"Unarchive" : "Desarchivar",
|
||||
"Delete" : "Borrar",
|
||||
"Enter a card title" : "Ingresa el título de la tarjeta",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Close" : "Cerrar",
|
||||
@@ -28,11 +24,10 @@
|
||||
"Access for" : "Acceso para",
|
||||
"No matching user or group found." : "No se encontraron coincidencias de usuarios o grupos.",
|
||||
"Loading" : "Cargando",
|
||||
"Share" : "Compartir",
|
||||
"Edit" : "Editar",
|
||||
"Share" : "Compartir",
|
||||
"Manage" : "Administrar",
|
||||
"Discard share" : "Descartar elemento compartido",
|
||||
"Update" : "Actualizar",
|
||||
"Create" : "Crear",
|
||||
"Create a new tag" : "Crear una nueva etiqueta",
|
||||
"Status" : "Estatus",
|
||||
@@ -43,7 +38,6 @@
|
||||
"Archive board" : "Archivar tablero",
|
||||
"Unarchive board" : "Desarchivar tablero",
|
||||
"Delete board" : "Borrar tableros",
|
||||
"Reset" : "Reiniciar",
|
||||
"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",
|
||||
@@ -64,7 +58,6 @@
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"View more" : "Ver más",
|
||||
"Move board to archive" : "Mover el tablero al archivo",
|
||||
"Create a new board" : "Crear un nuevo tablero"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
|
||||
@@ -15,12 +15,8 @@ OC.L10N.register(
|
||||
"Submit" : "Enviar",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"All Boards" : "Todos los Tableros",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Archive" : "Archivar",
|
||||
"Unarchive" : "Desarchivar",
|
||||
"Delete" : "Borrar",
|
||||
"Enter a card title" : "Ingresa el título de la tarjeta",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Close" : "Cerrar",
|
||||
@@ -30,11 +26,10 @@ OC.L10N.register(
|
||||
"Access for" : "Acceso para",
|
||||
"No matching user or group found." : "No se encontraron coincidencias de usuarios o grupos.",
|
||||
"Loading" : "Cargando",
|
||||
"Share" : "Compartir",
|
||||
"Edit" : "Editar",
|
||||
"Share" : "Compartir",
|
||||
"Manage" : "Administrar",
|
||||
"Discard share" : "Descartar elemento compartido",
|
||||
"Update" : "Actualizar",
|
||||
"Create" : "Crear",
|
||||
"Create a new tag" : "Crear una nueva etiqueta",
|
||||
"Status" : "Estatus",
|
||||
@@ -45,7 +40,6 @@ OC.L10N.register(
|
||||
"Archive board" : "Archivar tablero",
|
||||
"Unarchive board" : "Desarchivar tablero",
|
||||
"Delete board" : "Borrar tableros",
|
||||
"Reset" : "Reiniciar",
|
||||
"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",
|
||||
@@ -66,7 +60,6 @@ OC.L10N.register(
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"View more" : "Ver más",
|
||||
"Move board to archive" : "Mover el tablero al archivo",
|
||||
"Create a new board" : "Crear un nuevo tablero"
|
||||
},
|
||||
|
||||
@@ -13,12 +13,8 @@
|
||||
"Submit" : "Enviar",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"All Boards" : "Todos los Tableros",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Archive" : "Archivar",
|
||||
"Unarchive" : "Desarchivar",
|
||||
"Delete" : "Borrar",
|
||||
"Enter a card title" : "Ingresa el título de la tarjeta",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Close" : "Cerrar",
|
||||
@@ -28,11 +24,10 @@
|
||||
"Access for" : "Acceso para",
|
||||
"No matching user or group found." : "No se encontraron coincidencias de usuarios o grupos.",
|
||||
"Loading" : "Cargando",
|
||||
"Share" : "Compartir",
|
||||
"Edit" : "Editar",
|
||||
"Share" : "Compartir",
|
||||
"Manage" : "Administrar",
|
||||
"Discard share" : "Descartar elemento compartido",
|
||||
"Update" : "Actualizar",
|
||||
"Create" : "Crear",
|
||||
"Create a new tag" : "Crear una nueva etiqueta",
|
||||
"Status" : "Estatus",
|
||||
@@ -43,7 +38,6 @@
|
||||
"Archive board" : "Archivar tablero",
|
||||
"Unarchive board" : "Desarchivar tablero",
|
||||
"Delete board" : "Borrar tableros",
|
||||
"Reset" : "Reiniciar",
|
||||
"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",
|
||||
@@ -64,7 +58,6 @@
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"View more" : "Ver más",
|
||||
"Move board to archive" : "Mover el tablero al archivo",
|
||||
"Create a new board" : "Crear un nuevo tablero"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
|
||||
@@ -15,12 +15,8 @@ OC.L10N.register(
|
||||
"Submit" : "Enviar",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"All Boards" : "Todos los Tableros",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Archive" : "Archivar",
|
||||
"Unarchive" : "Desarchivar",
|
||||
"Delete" : "Borrar",
|
||||
"Enter a card title" : "Ingresa el título de la tarjeta",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Close" : "Cerrar",
|
||||
@@ -30,11 +26,10 @@ OC.L10N.register(
|
||||
"Access for" : "Acceso para",
|
||||
"No matching user or group found." : "No se encontraron coincidencias de usuarios o grupos.",
|
||||
"Loading" : "Cargando",
|
||||
"Share" : "Compartir",
|
||||
"Edit" : "Editar",
|
||||
"Share" : "Compartir",
|
||||
"Manage" : "Administrar",
|
||||
"Discard share" : "Descartar elemento compartido",
|
||||
"Update" : "Actualizar",
|
||||
"Create" : "Crear",
|
||||
"Create a new tag" : "Crear una nueva etiqueta",
|
||||
"Status" : "Estatus",
|
||||
@@ -45,7 +40,6 @@ OC.L10N.register(
|
||||
"Archive board" : "Archivar tablero",
|
||||
"Unarchive board" : "Desarchivar tablero",
|
||||
"Delete board" : "Borrar tableros",
|
||||
"Reset" : "Reiniciar",
|
||||
"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",
|
||||
@@ -66,7 +60,6 @@ OC.L10N.register(
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"View more" : "Ver más",
|
||||
"Move board to archive" : "Mover el tablero al archivo",
|
||||
"Create a new board" : "Crear un nuevo tablero"
|
||||
},
|
||||
|
||||
@@ -13,12 +13,8 @@
|
||||
"Submit" : "Enviar",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"All Boards" : "Todos los Tableros",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Archive" : "Archivar",
|
||||
"Unarchive" : "Desarchivar",
|
||||
"Delete" : "Borrar",
|
||||
"Enter a card title" : "Ingresa el título de la tarjeta",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Close" : "Cerrar",
|
||||
@@ -28,11 +24,10 @@
|
||||
"Access for" : "Acceso para",
|
||||
"No matching user or group found." : "No se encontraron coincidencias de usuarios o grupos.",
|
||||
"Loading" : "Cargando",
|
||||
"Share" : "Compartir",
|
||||
"Edit" : "Editar",
|
||||
"Share" : "Compartir",
|
||||
"Manage" : "Administrar",
|
||||
"Discard share" : "Descartar elemento compartido",
|
||||
"Update" : "Actualizar",
|
||||
"Create" : "Crear",
|
||||
"Create a new tag" : "Crear una nueva etiqueta",
|
||||
"Status" : "Estatus",
|
||||
@@ -43,7 +38,6 @@
|
||||
"Archive board" : "Archivar tablero",
|
||||
"Unarchive board" : "Desarchivar tablero",
|
||||
"Delete board" : "Borrar tableros",
|
||||
"Reset" : "Reiniciar",
|
||||
"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",
|
||||
@@ -64,7 +58,6 @@
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"View more" : "Ver más",
|
||||
"Move board to archive" : "Mover el tablero al archivo",
|
||||
"Create a new board" : "Crear un nuevo tablero"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
|
||||
@@ -16,12 +16,8 @@ OC.L10N.register(
|
||||
"Submit" : "Enviar",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"All Boards" : "Todos los Tableros",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Archive" : "Archivar",
|
||||
"Unarchive" : "Desarchivar",
|
||||
"Delete" : "Borrar",
|
||||
"Enter a card title" : "Ingresa el título de la tarjeta",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Close" : "Cerrar",
|
||||
@@ -31,11 +27,10 @@ OC.L10N.register(
|
||||
"Access for" : "Acceso para",
|
||||
"No matching user or group found." : "No se encontraron coincidencias de usuarios o grupos.",
|
||||
"Loading" : "Cargando",
|
||||
"Share" : "Compartir",
|
||||
"Edit" : "Editar",
|
||||
"Share" : "Compartir",
|
||||
"Manage" : "Administrar",
|
||||
"Discard share" : "Descartar elemento compartido",
|
||||
"Update" : "Actualizar",
|
||||
"Create" : "Crear",
|
||||
"Create a new tag" : "Crear una nueva etiqueta",
|
||||
"Status" : "Estatus",
|
||||
@@ -46,7 +41,6 @@ OC.L10N.register(
|
||||
"Archive board" : "Archivar tablero",
|
||||
"Unarchive board" : "Desarchivar tablero",
|
||||
"Delete board" : "Borrar tableros",
|
||||
"Reset" : "Reiniciar",
|
||||
"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",
|
||||
@@ -68,7 +62,6 @@ OC.L10N.register(
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"View more" : "Ver más",
|
||||
"Move board to archive" : "Mover el tablero al archivo",
|
||||
"Create a new board" : "Crear un nuevo tablero"
|
||||
},
|
||||
|
||||
@@ -14,12 +14,8 @@
|
||||
"Submit" : "Enviar",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"All Boards" : "Todos los Tableros",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Archive" : "Archivar",
|
||||
"Unarchive" : "Desarchivar",
|
||||
"Delete" : "Borrar",
|
||||
"Enter a card title" : "Ingresa el título de la tarjeta",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Close" : "Cerrar",
|
||||
@@ -29,11 +25,10 @@
|
||||
"Access for" : "Acceso para",
|
||||
"No matching user or group found." : "No se encontraron coincidencias de usuarios o grupos.",
|
||||
"Loading" : "Cargando",
|
||||
"Share" : "Compartir",
|
||||
"Edit" : "Editar",
|
||||
"Share" : "Compartir",
|
||||
"Manage" : "Administrar",
|
||||
"Discard share" : "Descartar elemento compartido",
|
||||
"Update" : "Actualizar",
|
||||
"Create" : "Crear",
|
||||
"Create a new tag" : "Crear una nueva etiqueta",
|
||||
"Status" : "Estatus",
|
||||
@@ -44,7 +39,6 @@
|
||||
"Archive board" : "Archivar tablero",
|
||||
"Unarchive board" : "Desarchivar tablero",
|
||||
"Delete board" : "Borrar tableros",
|
||||
"Reset" : "Reiniciar",
|
||||
"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",
|
||||
@@ -66,7 +60,6 @@
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"View more" : "Ver más",
|
||||
"Move board to archive" : "Mover el tablero al archivo",
|
||||
"Create a new board" : "Crear un nuevo tablero"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
|
||||
@@ -15,12 +15,8 @@ OC.L10N.register(
|
||||
"Submit" : "Enviar",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"All Boards" : "Todos los Tableros",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Archive" : "Archivar",
|
||||
"Unarchive" : "Desarchivar",
|
||||
"Delete" : "Borrar",
|
||||
"Enter a card title" : "Ingresa el título de la tarjeta",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Close" : "Cerrar",
|
||||
@@ -30,11 +26,10 @@ OC.L10N.register(
|
||||
"Access for" : "Acceso para",
|
||||
"No matching user or group found." : "No se encontraron coincidencias de usuarios o grupos.",
|
||||
"Loading" : "Cargando",
|
||||
"Share" : "Compartir",
|
||||
"Edit" : "Editar",
|
||||
"Share" : "Compartir",
|
||||
"Manage" : "Administrar",
|
||||
"Discard share" : "Descartar elemento compartido",
|
||||
"Update" : "Actualizar",
|
||||
"Create" : "Crear",
|
||||
"Create a new tag" : "Crear una nueva etiqueta",
|
||||
"Status" : "Estatus",
|
||||
@@ -45,7 +40,6 @@ OC.L10N.register(
|
||||
"Archive board" : "Archivar tablero",
|
||||
"Unarchive board" : "Desarchivar tablero",
|
||||
"Delete board" : "Borrar tableros",
|
||||
"Reset" : "Reiniciar",
|
||||
"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",
|
||||
@@ -66,7 +60,6 @@ OC.L10N.register(
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"View more" : "Ver más",
|
||||
"Move board to archive" : "Mover el tablero al archivo",
|
||||
"Create a new board" : "Crear un nuevo tablero"
|
||||
},
|
||||
|
||||
@@ -13,12 +13,8 @@
|
||||
"Submit" : "Enviar",
|
||||
"Show archived cards" : "Mostrar tarjetas archivadas",
|
||||
"Hide archived cards" : "Ocultar tarjetas archivadas",
|
||||
"Board details" : "Detalles del tablero",
|
||||
"All Boards" : "Todos los Tableros",
|
||||
"Archived boards" : "Tableros archivados",
|
||||
"Archive" : "Archivar",
|
||||
"Unarchive" : "Desarchivar",
|
||||
"Delete" : "Borrar",
|
||||
"Enter a card title" : "Ingresa el título de la tarjeta",
|
||||
"Add card" : "Agregar tarjeta",
|
||||
"Close" : "Cerrar",
|
||||
@@ -28,11 +24,10 @@
|
||||
"Access for" : "Acceso para",
|
||||
"No matching user or group found." : "No se encontraron coincidencias de usuarios o grupos.",
|
||||
"Loading" : "Cargando",
|
||||
"Share" : "Compartir",
|
||||
"Edit" : "Editar",
|
||||
"Share" : "Compartir",
|
||||
"Manage" : "Administrar",
|
||||
"Discard share" : "Descartar elemento compartido",
|
||||
"Update" : "Actualizar",
|
||||
"Create" : "Crear",
|
||||
"Create a new tag" : "Crear una nueva etiqueta",
|
||||
"Status" : "Estatus",
|
||||
@@ -43,7 +38,6 @@
|
||||
"Archive board" : "Archivar tablero",
|
||||
"Unarchive board" : "Desarchivar tablero",
|
||||
"Delete board" : "Borrar tableros",
|
||||
"Reset" : "Reiniciar",
|
||||
"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",
|
||||
@@ -64,7 +58,6 @@
|
||||
"Formatting help" : "Ayuda de formato",
|
||||
"Add a card description…" : "Agregar una descripción de tarjeta...",
|
||||
"Shared boards" : "Tableros compartidos",
|
||||
"View more" : "Ver más",
|
||||
"Move board to archive" : "Mover el tablero al archivo",
|
||||
"Create a new board" : "Crear un nuevo tablero"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
|
||||
@@ -15,12 +15,8 @@ OC.L10N.register(
|
||||
"Submit" : "Bidali",
|
||||
"Show archived cards" : "Artxibatutako txartelak erakutsi",
|
||||
"Hide archived cards" : "Artxibatutako txartelak ezkutatu",
|
||||
"Board details" : "Mahaigainaren xehetasunak",
|
||||
"All Boards" : "Mahai guztiak",
|
||||
"Archived boards" : "Artxibatutako txartelak",
|
||||
"Archive" : "Artxibatu",
|
||||
"Unarchive" : "Ez artxibatu",
|
||||
"Delete" : "Ezabatu",
|
||||
"Enter a card title" : "Txartelaren titulua sartu",
|
||||
"Add card" : "Txartela gehitu",
|
||||
"Close" : "Itxi",
|
||||
@@ -30,11 +26,10 @@ OC.L10N.register(
|
||||
"Access for" : "Sarbidea",
|
||||
"No matching user or group found." : "Ados datorren erabiltzailerik edo talderik ez da topatu",
|
||||
"Loading" : "Kargatzen",
|
||||
"Share" : "Partekatu",
|
||||
"Edit" : "Editatu",
|
||||
"Share" : "Partekatu",
|
||||
"Manage" : "Kudeaketa",
|
||||
"Discard share" : "Partekatutakoa ezeztatu",
|
||||
"Update" : "Eguneratu",
|
||||
"Create" : "Sortu",
|
||||
"Create a new tag" : "Etiketa berria sortu",
|
||||
"Status" : "Egoera",
|
||||
@@ -45,7 +40,6 @@ OC.L10N.register(
|
||||
"Archive board" : "Mahaigaina artxibatu",
|
||||
"Unarchive board" : "Mahaigaina artxibotik atera",
|
||||
"Delete board" : "Mahaigaina borratu",
|
||||
"Reset" : "Aldatu",
|
||||
"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",
|
||||
@@ -66,7 +60,6 @@ OC.L10N.register(
|
||||
"Formatting help" : "Formatua emateko laguntza",
|
||||
"Add a card description…" : "Txartelaren deskribapena gehitu...",
|
||||
"Shared boards" : "Partekatutako txartelak",
|
||||
"View more" : "Gehiago ikusi",
|
||||
"Move board to archive" : "Txartela artxibora mugitu",
|
||||
"Create a new board" : "Mahaigain berria sortu"
|
||||
},
|
||||
|
||||
@@ -13,12 +13,8 @@
|
||||
"Submit" : "Bidali",
|
||||
"Show archived cards" : "Artxibatutako txartelak erakutsi",
|
||||
"Hide archived cards" : "Artxibatutako txartelak ezkutatu",
|
||||
"Board details" : "Mahaigainaren xehetasunak",
|
||||
"All Boards" : "Mahai guztiak",
|
||||
"Archived boards" : "Artxibatutako txartelak",
|
||||
"Archive" : "Artxibatu",
|
||||
"Unarchive" : "Ez artxibatu",
|
||||
"Delete" : "Ezabatu",
|
||||
"Enter a card title" : "Txartelaren titulua sartu",
|
||||
"Add card" : "Txartela gehitu",
|
||||
"Close" : "Itxi",
|
||||
@@ -28,11 +24,10 @@
|
||||
"Access for" : "Sarbidea",
|
||||
"No matching user or group found." : "Ados datorren erabiltzailerik edo talderik ez da topatu",
|
||||
"Loading" : "Kargatzen",
|
||||
"Share" : "Partekatu",
|
||||
"Edit" : "Editatu",
|
||||
"Share" : "Partekatu",
|
||||
"Manage" : "Kudeaketa",
|
||||
"Discard share" : "Partekatutakoa ezeztatu",
|
||||
"Update" : "Eguneratu",
|
||||
"Create" : "Sortu",
|
||||
"Create a new tag" : "Etiketa berria sortu",
|
||||
"Status" : "Egoera",
|
||||
@@ -43,7 +38,6 @@
|
||||
"Archive board" : "Mahaigaina artxibatu",
|
||||
"Unarchive board" : "Mahaigaina artxibotik atera",
|
||||
"Delete board" : "Mahaigaina borratu",
|
||||
"Reset" : "Aldatu",
|
||||
"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",
|
||||
@@ -64,7 +58,6 @@
|
||||
"Formatting help" : "Formatua emateko laguntza",
|
||||
"Add a card description…" : "Txartelaren deskribapena gehitu...",
|
||||
"Shared boards" : "Partekatutako txartelak",
|
||||
"View more" : "Gehiago ikusi",
|
||||
"Move board to archive" : "Txartela artxibora mugitu",
|
||||
"Create a new board" : "Mahaigain berria sortu"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
|
||||
@@ -21,13 +21,9 @@ OC.L10N.register(
|
||||
"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",
|
||||
"Delete" : "Poista",
|
||||
"Enter a card title" : "Anna otsikko",
|
||||
"Add card" : "Lisää kortti",
|
||||
"Close" : "Sulje",
|
||||
@@ -36,11 +32,10 @@ OC.L10N.register(
|
||||
"Select users or groups to share with" : "Valitse käyttäjiä tai ryhmiä joille haluat jakaa",
|
||||
"No matching user or group found." : "Käyttäjää tai ryhmää ei löytynyt.",
|
||||
"Loading" : "Ladataan",
|
||||
"Share" : "Jaa",
|
||||
"Edit" : "Muokkaa",
|
||||
"Share" : "Jaa",
|
||||
"Manage" : "Hallitse",
|
||||
"Discard share" : "Peru jakaminen",
|
||||
"Update" : "Päivitä",
|
||||
"Create" : "Luo",
|
||||
"Create a new tag" : "Luo uusi tunniste",
|
||||
"Status" : "Tila",
|
||||
@@ -75,7 +70,6 @@ OC.L10N.register(
|
||||
"Upload attachment" : "Lähetä liite",
|
||||
"Add a card description…" : "Lisää kortin kuvaus…",
|
||||
"Shared boards" : "Jaetut taulut",
|
||||
"View more" : "Näytä lisää",
|
||||
"Move board to archive" : "Siirrä taulu arkistoon",
|
||||
"Create a new board" : "Luo uusi taulu"
|
||||
},
|
||||
|
||||
@@ -19,13 +19,9 @@
|
||||
"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",
|
||||
"Delete" : "Poista",
|
||||
"Enter a card title" : "Anna otsikko",
|
||||
"Add card" : "Lisää kortti",
|
||||
"Close" : "Sulje",
|
||||
@@ -34,11 +30,10 @@
|
||||
"Select users or groups to share with" : "Valitse käyttäjiä tai ryhmiä joille haluat jakaa",
|
||||
"No matching user or group found." : "Käyttäjää tai ryhmää ei löytynyt.",
|
||||
"Loading" : "Ladataan",
|
||||
"Share" : "Jaa",
|
||||
"Edit" : "Muokkaa",
|
||||
"Share" : "Jaa",
|
||||
"Manage" : "Hallitse",
|
||||
"Discard share" : "Peru jakaminen",
|
||||
"Update" : "Päivitä",
|
||||
"Create" : "Luo",
|
||||
"Create a new tag" : "Luo uusi tunniste",
|
||||
"Status" : "Tila",
|
||||
@@ -73,7 +68,6 @@
|
||||
"Upload attachment" : "Lähetä liite",
|
||||
"Add a card description…" : "Lisää kortin kuvaus…",
|
||||
"Shared boards" : "Jaetut taulut",
|
||||
"View more" : "Näytä lisää",
|
||||
"Move board to archive" : "Siirrä taulu arkistoon",
|
||||
"Create a new board" : "Luo uusi taulu"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
|
||||
28
l10n/fr.js
28
l10n/fr.js
@@ -108,17 +108,17 @@ OC.L10N.register(
|
||||
"Show archived cards" : "Afficher les cartes archivées",
|
||||
"Hide archived cards" : "Masquer les cartes archivées",
|
||||
"Toggle compact mode" : "Basculer le mode compact",
|
||||
"Board details" : "Détails du tableau",
|
||||
"Show board details" : "Afficher les détails du tableau",
|
||||
"All Boards" : "Tous les tableaux",
|
||||
"Archived boards" : "Tableaux archivés",
|
||||
"Share board" : "Partager le tableau",
|
||||
"Drop your files here to upload it to the card" : "Déposez vos fichiers ici pour les téléverser sur la carte",
|
||||
"Actions" : "Actions",
|
||||
"Assign to me" : "Me l'assigner",
|
||||
"Unassign from me" : "Me le désassigner",
|
||||
"Archive" : "Archiver",
|
||||
"Unarchive" : "Ne plus archiver",
|
||||
"Delete" : "Supprimer",
|
||||
"Drop your files here to upload it to the card" : "Déposez vos fichiers ici pour les téléverser sur la carte",
|
||||
"Assign card to me" : "Assignez-moi la carte",
|
||||
"Unassign card from me" : "Retirez-moi la carte",
|
||||
"Archive card" : "Archiver la carte",
|
||||
"Unarchive card" : "Ne plus archiver la carte",
|
||||
"Delete card" : "Supprimer la carte",
|
||||
"Enter a card title" : "Saisissez un titre de carte",
|
||||
"Add card" : "Ajouter une carte",
|
||||
"Close" : "Fermer",
|
||||
@@ -130,11 +130,13 @@ OC.L10N.register(
|
||||
"Access for" : "Accès pour ",
|
||||
"No matching user or group found." : "Aucun utilisateur ou groupe correspondant trouvé",
|
||||
"Loading" : "Chargement",
|
||||
"Share" : "Partager",
|
||||
"Edit" : "Modifier",
|
||||
"Share" : "Partager",
|
||||
"Manage" : "Gérer",
|
||||
"Discard share" : "Supprimer le partage",
|
||||
"Update" : "Mettre à jour",
|
||||
"Update tag" : "Mettre à jour l'étiquette",
|
||||
"Edit tag" : "Modifier l'étiquette",
|
||||
"Delete tag" : "Supprimer l'étiquette",
|
||||
"Create" : "Créer",
|
||||
"Create a new tag" : "Créer une nouvelle étiquette",
|
||||
"Deleted stacks" : "Piles supprimées",
|
||||
@@ -149,16 +151,19 @@ OC.L10N.register(
|
||||
"Archive board" : "Archiver le tableau",
|
||||
"Unarchive board" : "Ne plus archiver le tableau",
|
||||
"Delete board" : "Supprimer le tableau",
|
||||
"Reset" : "Réinitialiser",
|
||||
"Update board" : "Mettre à jour le tableau",
|
||||
"Reset board" : "Réinitialiser le tableau",
|
||||
"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",
|
||||
"Create board" : "Créer 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",
|
||||
"Delete attachment" : "Supprimer la pièce jointe",
|
||||
"Modified:" : "Modifié le :",
|
||||
"Created:" : "Créé le :",
|
||||
"Choose a tag" : "Choisir une étiquette",
|
||||
@@ -174,12 +179,11 @@ OC.L10N.register(
|
||||
"Attachments" : "Pièces jointes",
|
||||
"Saved" : "Enregistré",
|
||||
"Unsaved changes" : "Modifications non sauvegardées",
|
||||
"Insert attachment" : "Insérer une pièce jointe",
|
||||
"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",
|
||||
"Move board to archive" : "Déplacer le tableau vers l'archive",
|
||||
"Create a new board" : "Créer un nouveau tableau"
|
||||
},
|
||||
|
||||
28
l10n/fr.json
28
l10n/fr.json
@@ -106,17 +106,17 @@
|
||||
"Show archived cards" : "Afficher les cartes archivées",
|
||||
"Hide archived cards" : "Masquer les cartes archivées",
|
||||
"Toggle compact mode" : "Basculer le mode compact",
|
||||
"Board details" : "Détails du tableau",
|
||||
"Show board details" : "Afficher les détails du tableau",
|
||||
"All Boards" : "Tous les tableaux",
|
||||
"Archived boards" : "Tableaux archivés",
|
||||
"Share board" : "Partager le tableau",
|
||||
"Drop your files here to upload it to the card" : "Déposez vos fichiers ici pour les téléverser sur la carte",
|
||||
"Actions" : "Actions",
|
||||
"Assign to me" : "Me l'assigner",
|
||||
"Unassign from me" : "Me le désassigner",
|
||||
"Archive" : "Archiver",
|
||||
"Unarchive" : "Ne plus archiver",
|
||||
"Delete" : "Supprimer",
|
||||
"Drop your files here to upload it to the card" : "Déposez vos fichiers ici pour les téléverser sur la carte",
|
||||
"Assign card to me" : "Assignez-moi la carte",
|
||||
"Unassign card from me" : "Retirez-moi la carte",
|
||||
"Archive card" : "Archiver la carte",
|
||||
"Unarchive card" : "Ne plus archiver la carte",
|
||||
"Delete card" : "Supprimer la carte",
|
||||
"Enter a card title" : "Saisissez un titre de carte",
|
||||
"Add card" : "Ajouter une carte",
|
||||
"Close" : "Fermer",
|
||||
@@ -128,11 +128,13 @@
|
||||
"Access for" : "Accès pour ",
|
||||
"No matching user or group found." : "Aucun utilisateur ou groupe correspondant trouvé",
|
||||
"Loading" : "Chargement",
|
||||
"Share" : "Partager",
|
||||
"Edit" : "Modifier",
|
||||
"Share" : "Partager",
|
||||
"Manage" : "Gérer",
|
||||
"Discard share" : "Supprimer le partage",
|
||||
"Update" : "Mettre à jour",
|
||||
"Update tag" : "Mettre à jour l'étiquette",
|
||||
"Edit tag" : "Modifier l'étiquette",
|
||||
"Delete tag" : "Supprimer l'étiquette",
|
||||
"Create" : "Créer",
|
||||
"Create a new tag" : "Créer une nouvelle étiquette",
|
||||
"Deleted stacks" : "Piles supprimées",
|
||||
@@ -147,16 +149,19 @@
|
||||
"Archive board" : "Archiver le tableau",
|
||||
"Unarchive board" : "Ne plus archiver le tableau",
|
||||
"Delete board" : "Supprimer le tableau",
|
||||
"Reset" : "Réinitialiser",
|
||||
"Update board" : "Mettre à jour le tableau",
|
||||
"Reset board" : "Réinitialiser le tableau",
|
||||
"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",
|
||||
"Create board" : "Créer 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",
|
||||
"Delete attachment" : "Supprimer la pièce jointe",
|
||||
"Modified:" : "Modifié le :",
|
||||
"Created:" : "Créé le :",
|
||||
"Choose a tag" : "Choisir une étiquette",
|
||||
@@ -172,12 +177,11 @@
|
||||
"Attachments" : "Pièces jointes",
|
||||
"Saved" : "Enregistré",
|
||||
"Unsaved changes" : "Modifications non sauvegardées",
|
||||
"Insert attachment" : "Insérer une pièce jointe",
|
||||
"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",
|
||||
"Move board to archive" : "Déplacer le tableau vers l'archive",
|
||||
"Create a new board" : "Créer un nouveau tableau"
|
||||
},"pluralForm" :"nplurals=2; plural=(n > 1);"
|
||||
|
||||
11
l10n/he.js
11
l10n/he.js
@@ -28,13 +28,9 @@ OC.L10N.register(
|
||||
"Submit" : "הגשה",
|
||||
"Show archived cards" : "הצגת כרטיסים בארכיון",
|
||||
"Hide archived cards" : "הסתרת כרטיסים בארכיון",
|
||||
"Board details" : "פרטי לוח",
|
||||
"All Boards" : "כל הלוחות",
|
||||
"Archived boards" : "לוחות שנשמרו בארכיון",
|
||||
"Drop your files here to upload it to the card" : "ניתן להשליך את הקבצים שלך כאן כדי להעלות אותם לכרטיס",
|
||||
"Archive" : "לארכיון",
|
||||
"Unarchive" : "הוצאה מהארכיון",
|
||||
"Delete" : "מחיקה",
|
||||
"Enter a card title" : "נא להקליד כותרת לכרטיס",
|
||||
"Add card" : "הוספת כרטיס",
|
||||
"Close" : "סגירה",
|
||||
@@ -44,11 +40,10 @@ OC.L10N.register(
|
||||
"Access for" : "גישה לטובת",
|
||||
"No matching user or group found." : "לא נמצא משתמש או קבוצה.",
|
||||
"Loading" : "בטעינה",
|
||||
"Share" : "שיתוף",
|
||||
"Edit" : "עריכה",
|
||||
"Share" : "שיתוף",
|
||||
"Manage" : "ניהול",
|
||||
"Discard share" : "התעלמות משיתוף",
|
||||
"Update" : "עדכון",
|
||||
"Create" : "יצירה",
|
||||
"Create a new tag" : "יצירת תגית חדשה",
|
||||
"Status" : "מצב",
|
||||
@@ -59,7 +54,6 @@ OC.L10N.register(
|
||||
"Archive board" : "העברת לוח לארכיון",
|
||||
"Unarchive board" : "הוצאת ארכיון מהלוח",
|
||||
"Delete board" : "מחיקת לו",
|
||||
"Reset" : "איפוס",
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "ביטול מחיקת לוח - אחרת הלוח יימחק במהלך ריצת ה־cronjob הבאה.",
|
||||
"Create new board" : "יצירת לוח חדש",
|
||||
"New board title" : "כותרת לוח חדשה",
|
||||
@@ -84,12 +78,11 @@ OC.L10N.register(
|
||||
"Attachments" : "קבצים מצורפים",
|
||||
"Saved" : "נשמר",
|
||||
"Unsaved changes" : "שינויים שלא נשמרו",
|
||||
"Insert attachment" : "הוספת קובץ מצורף",
|
||||
"Formatting help" : "עזרה בסידור בתבנית",
|
||||
"Upload attachment" : "העלאת קבצים מצורפים",
|
||||
"Insert attachment" : "הוספת קובץ מצורף",
|
||||
"Add a card description…" : "הוספת תיאור כרטיס…",
|
||||
"Shared boards" : "לוחות משותפים",
|
||||
"View more" : "הצגת עוד",
|
||||
"Move board to archive" : "העברת לוח לארכיון",
|
||||
"Create a new board" : "יצירת לוח חדש"
|
||||
},
|
||||
|
||||
11
l10n/he.json
11
l10n/he.json
@@ -26,13 +26,9 @@
|
||||
"Submit" : "הגשה",
|
||||
"Show archived cards" : "הצגת כרטיסים בארכיון",
|
||||
"Hide archived cards" : "הסתרת כרטיסים בארכיון",
|
||||
"Board details" : "פרטי לוח",
|
||||
"All Boards" : "כל הלוחות",
|
||||
"Archived boards" : "לוחות שנשמרו בארכיון",
|
||||
"Drop your files here to upload it to the card" : "ניתן להשליך את הקבצים שלך כאן כדי להעלות אותם לכרטיס",
|
||||
"Archive" : "לארכיון",
|
||||
"Unarchive" : "הוצאה מהארכיון",
|
||||
"Delete" : "מחיקה",
|
||||
"Enter a card title" : "נא להקליד כותרת לכרטיס",
|
||||
"Add card" : "הוספת כרטיס",
|
||||
"Close" : "סגירה",
|
||||
@@ -42,11 +38,10 @@
|
||||
"Access for" : "גישה לטובת",
|
||||
"No matching user or group found." : "לא נמצא משתמש או קבוצה.",
|
||||
"Loading" : "בטעינה",
|
||||
"Share" : "שיתוף",
|
||||
"Edit" : "עריכה",
|
||||
"Share" : "שיתוף",
|
||||
"Manage" : "ניהול",
|
||||
"Discard share" : "התעלמות משיתוף",
|
||||
"Update" : "עדכון",
|
||||
"Create" : "יצירה",
|
||||
"Create a new tag" : "יצירת תגית חדשה",
|
||||
"Status" : "מצב",
|
||||
@@ -57,7 +52,6 @@
|
||||
"Archive board" : "העברת לוח לארכיון",
|
||||
"Unarchive board" : "הוצאת ארכיון מהלוח",
|
||||
"Delete board" : "מחיקת לו",
|
||||
"Reset" : "איפוס",
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "ביטול מחיקת לוח - אחרת הלוח יימחק במהלך ריצת ה־cronjob הבאה.",
|
||||
"Create new board" : "יצירת לוח חדש",
|
||||
"New board title" : "כותרת לוח חדשה",
|
||||
@@ -82,12 +76,11 @@
|
||||
"Attachments" : "קבצים מצורפים",
|
||||
"Saved" : "נשמר",
|
||||
"Unsaved changes" : "שינויים שלא נשמרו",
|
||||
"Insert attachment" : "הוספת קובץ מצורף",
|
||||
"Formatting help" : "עזרה בסידור בתבנית",
|
||||
"Upload attachment" : "העלאת קבצים מצורפים",
|
||||
"Insert attachment" : "הוספת קובץ מצורף",
|
||||
"Add a card description…" : "הוספת תיאור כרטיס…",
|
||||
"Shared boards" : "לוחות משותפים",
|
||||
"View more" : "הצגת עוד",
|
||||
"Move board to archive" : "העברת לוח לארכיון",
|
||||
"Create a new board" : "יצירת לוח חדש"
|
||||
},"pluralForm" :"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;"
|
||||
|
||||
11
l10n/hu.js
11
l10n/hu.js
@@ -18,13 +18,9 @@ OC.L10N.register(
|
||||
"Submit" : "Küldés",
|
||||
"Show archived cards" : "Archív kártyák mutatása",
|
||||
"Hide archived cards" : "Archív kártyák elrejtése",
|
||||
"Board details" : "Tábla részletek",
|
||||
"All Boards" : "Minden tábla",
|
||||
"Archived boards" : "Archív táblák",
|
||||
"Share board" : "Tábla megosztása",
|
||||
"Archive" : "Archívum",
|
||||
"Unarchive" : "Archiválás visszavonása",
|
||||
"Delete" : "Törlés",
|
||||
"Enter a card title" : "Adj meg egy kártya címet",
|
||||
"Add card" : "Kártya hozzáadása",
|
||||
"Close" : "Bezárás",
|
||||
@@ -35,11 +31,10 @@ OC.L10N.register(
|
||||
"Access for" : "Hozzáfér",
|
||||
"No matching user or group found." : "Nem található egyező felhasználó vagy csoport.",
|
||||
"Loading" : "Betöltés",
|
||||
"Share" : "Megosztás",
|
||||
"Edit" : "Szerkesztés",
|
||||
"Share" : "Megosztás",
|
||||
"Manage" : "Kezelés",
|
||||
"Discard share" : "Megosztás figyelmen kívül hagyása",
|
||||
"Update" : "Módosítás",
|
||||
"Create" : "Létrehozás",
|
||||
"Create a new tag" : "Új címke létrehozása",
|
||||
"Deleted cards" : "Törölt kártyák",
|
||||
@@ -51,7 +46,6 @@ OC.L10N.register(
|
||||
"Archive board" : "Tábla archiválása",
|
||||
"Unarchive board" : "Tábla archiválásának visszavonása",
|
||||
"Delete board" : "Tábla törlése",
|
||||
"Reset" : "Visszaállítás",
|
||||
"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",
|
||||
@@ -74,12 +68,11 @@ OC.L10N.register(
|
||||
"Attachments" : "Mellékletek",
|
||||
"Saved" : "Elmentve",
|
||||
"Unsaved changes" : "Mentetlen változtatások",
|
||||
"Insert attachment" : "Melléklet beillesztése",
|
||||
"Formatting help" : "Formázási segítség",
|
||||
"Upload attachment" : "Melléklet feltöltése",
|
||||
"Insert attachment" : "Melléklet beillesztése",
|
||||
"Add a card description…" : "Adj hozzá kártya leírást...",
|
||||
"Shared boards" : "Megosztott táblák",
|
||||
"View more" : "Több megtekintése",
|
||||
"Move board to archive" : "Tábla mozgatása archívumba",
|
||||
"Create a new board" : "Új tábla létrehozása"
|
||||
},
|
||||
|
||||
11
l10n/hu.json
11
l10n/hu.json
@@ -16,13 +16,9 @@
|
||||
"Submit" : "Küldés",
|
||||
"Show archived cards" : "Archív kártyák mutatása",
|
||||
"Hide archived cards" : "Archív kártyák elrejtése",
|
||||
"Board details" : "Tábla részletek",
|
||||
"All Boards" : "Minden tábla",
|
||||
"Archived boards" : "Archív táblák",
|
||||
"Share board" : "Tábla megosztása",
|
||||
"Archive" : "Archívum",
|
||||
"Unarchive" : "Archiválás visszavonása",
|
||||
"Delete" : "Törlés",
|
||||
"Enter a card title" : "Adj meg egy kártya címet",
|
||||
"Add card" : "Kártya hozzáadása",
|
||||
"Close" : "Bezárás",
|
||||
@@ -33,11 +29,10 @@
|
||||
"Access for" : "Hozzáfér",
|
||||
"No matching user or group found." : "Nem található egyező felhasználó vagy csoport.",
|
||||
"Loading" : "Betöltés",
|
||||
"Share" : "Megosztás",
|
||||
"Edit" : "Szerkesztés",
|
||||
"Share" : "Megosztás",
|
||||
"Manage" : "Kezelés",
|
||||
"Discard share" : "Megosztás figyelmen kívül hagyása",
|
||||
"Update" : "Módosítás",
|
||||
"Create" : "Létrehozás",
|
||||
"Create a new tag" : "Új címke létrehozása",
|
||||
"Deleted cards" : "Törölt kártyák",
|
||||
@@ -49,7 +44,6 @@
|
||||
"Archive board" : "Tábla archiválása",
|
||||
"Unarchive board" : "Tábla archiválásának visszavonása",
|
||||
"Delete board" : "Tábla törlése",
|
||||
"Reset" : "Visszaállítás",
|
||||
"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",
|
||||
@@ -72,12 +66,11 @@
|
||||
"Attachments" : "Mellékletek",
|
||||
"Saved" : "Elmentve",
|
||||
"Unsaved changes" : "Mentetlen változtatások",
|
||||
"Insert attachment" : "Melléklet beillesztése",
|
||||
"Formatting help" : "Formázási segítség",
|
||||
"Upload attachment" : "Melléklet feltöltése",
|
||||
"Insert attachment" : "Melléklet beillesztése",
|
||||
"Add a card description…" : "Adj hozzá kártya leírást...",
|
||||
"Shared boards" : "Megosztott táblák",
|
||||
"View more" : "Több megtekintése",
|
||||
"Move board to archive" : "Tábla mozgatása archívumba",
|
||||
"Create a new board" : "Új tábla létrehozása"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
|
||||
113
l10n/is.js
113
l10n/is.js
@@ -1,20 +1,93 @@
|
||||
OC.L10N.register(
|
||||
"deck",
|
||||
{
|
||||
"Please provide a content for your comment." : "Settu inn efni í athugasemdina þína",
|
||||
"Posting the comment failed." : "Ekki tókst að setja inn athugasemdina.",
|
||||
"The comment has been deleted" : "Athugasemdinni hefur verið eytt",
|
||||
"The associated stack is deleted as well, it will be restored as well." : "Tengdum stafla var einnig eytt, hann verðir þá líka endurheimtur.",
|
||||
"Restore associated stack" : "Endurheimta tengdann stafla",
|
||||
"Remove user from card" : "Fjarlægja notanda af spjaldi",
|
||||
"Hours" : "klukkustundir",
|
||||
"Minutes" : "mínútur",
|
||||
"Maximum file size of {size} exceeded" : "Fór yfir hámarks skráarstærð {size}",
|
||||
"You have created a new board {board}" : "Þú hefur búið til nýja borðið {board}",
|
||||
"{user} has created a new board {board}" : "{user} hefur búið til nýja borðið {board}",
|
||||
"You have deleted the board {board}" : "Þú hefur eytt borðinu {board}",
|
||||
"{user} has deleted the board {board}" : "{user} hefur eytt borðinu {board}",
|
||||
"You have restored the board {board}" : "Þú hefur endurheimt borðið {board}",
|
||||
"{user} has restored the board {board}" : "{user} hefur endurheimt borðið {board}",
|
||||
"You have shared the board {board} with {acl}" : "Þú hefur deilt borðinu {board} með {acl}",
|
||||
"{user} has shared the board {board} with {sharee}" : "{user} hefur deilt borðinu {board} með {sharee}",
|
||||
"You have removed {acl} from the board {board}" : "Þú fjarlægðir {acl} af borðinu {board}",
|
||||
"{user} has removed {acl} from the board {board}" : "{user} fjarlægði {acl} af borðinu {board}",
|
||||
"You have renamed the board {before} to {board}" : "Þú hefur endurnefnt borðið {before} sem {board}",
|
||||
"{user} has has renamed the board {before} to {board}" : "{user} hefur endurnefnt borðið {before} sem {board}",
|
||||
"You have archived the board {board}" : "Þú settir borðið {board} í geymslu",
|
||||
"{user} has archived the board {before}" : "{user} setti borðið {before} í geymslu",
|
||||
"You have unarchived the board {board}" : "Þú tókst borðið {board} úr geymslu",
|
||||
"{user} has unarchived the board {before}" : "{user} tók borðið {before} úr geymslu",
|
||||
"You have created a new stack {stack} on {board}" : "Þú hefur búið til nýjan stafla {stack} á {board}",
|
||||
"{user} has created a new stack {stack} on {board}" : "{user} hefur búið til nýjan stafla {stack} á {board}",
|
||||
"You have renamed a new stack {before} to {stack} on {board}" : "Þú hefur endurnefnt nýjan stafla {before} sem {stack} á {board}",
|
||||
"{user} has renamed a new stack {before} to {stack} on {board}" : "{user} hefur endurnefnt nýjan stafla {before} sem {stack} á {board}",
|
||||
"You have deleted {stack} on {board}" : "Þú hefur eytt staflanum {stack} á borðinu {board}",
|
||||
"{user} has deleted {stack} on {board}" : "{user} hefur eytt staflanum {stack} á borðinu {board}",
|
||||
"You have created {card} in {stack} on {board}" : "Þú hefur búið til spjaldið {card} í staflanum {stack} á borðinu {board}",
|
||||
"{user} has created {card} in {stack} on {board}" : "{user} hefur búið til spjaldið {card} í staflanum {stack} á borðinu {board}",
|
||||
"You have deleted {card} in {stack} on {board}" : "Þú hefur eytt spjaldinu {card} í staflanum {stack} á borðinu {board}",
|
||||
"{user} has deleted {card} in {stack} on {board}" : "{user} hefur eytt spjaldinu {card} í staflanum {stack} á borðinu {board}",
|
||||
"You have renamed the card {before} to {card}" : "Þú hefur endurnefnt spjaldið {before} sem {card}",
|
||||
"{user} has renamed the card {before} to {card}" : "{user} hefur endurnefnt spjaldið {before} sem {card}",
|
||||
"You have added a description to {card} in {stack} on {board}" : "Þú bættir lýsingu við spjaldið {card} í staflanum {stack} á borðinu {board}",
|
||||
"{user} has added a description to {card} in {stack} on {board}" : "{user} bætti lýsingu við spjaldið {card} í staflanum {stack} á borðinu {board}",
|
||||
"You have updated the description of {card} in {stack} on {board}" : "Þú uppfærðir lýsingu á spjaldinu {card} í staflanum {stack} á borðinu {board}",
|
||||
"{user} has updated the description {card} in {stack} on {board}" : "{user} uppfærði lýsingu á spjaldinu {card} í staflanum {stack} á borðinu {board}",
|
||||
"You have archived {card} in {stack} on {board}" : "Þú settir í geymslu spjaldið {card} í staflanum {stack} á borðinu {board}",
|
||||
"{user} has archived {card} in {stack} on {board}" : "{user} setti í geymslu spjaldið {card} í staflanum {stack} á borðinu {board}",
|
||||
"You have unarchived {card} in {stack} on {board}" : "Þú tókst úr geymslu spjaldið {card} í staflanum {stack} á borðinu {board}",
|
||||
"{user} has unarchived {card} in {stack} on {board}" : "{user} tók úr geymslu spjaldið {card} í staflanum {stack} á borðinu {board}",
|
||||
"You have removed the due date of {card}" : "Þú fjarlægðir gildistíma af {card}",
|
||||
"{user} has removed the due date of {card}" : "{user} fjarlægði gildistíma af {card}",
|
||||
"You have set the due date of {card} to {after}" : "Þú settir gildistíma {card} á {after}",
|
||||
"{user} has set the due date of {card} to {after}" : "{user} setti gildistíma {card} á {after}",
|
||||
"You have updated the due date of {card} to {after}" : "Þú uppfærðir gildistíma {card} á {after}",
|
||||
"{user} has updated the due date of {card} to {after}" : "{user} uppfærði gildistíma {card} á {after}",
|
||||
"You have added the label {label} to {card} in {stack} on {board}" : "Þú bættir skýringunni {label} við spjaldið {card} í staflanum {stack} á borðinu {board}",
|
||||
"{user} has added the label {label} to {card} in {stack} on {board}" : "{user} bætti skýringunni {label} við spjaldið {card} í staflanum {stack} á borðinu {board}",
|
||||
"You have removed the label {label} from {card} in {stack} on {board}" : "Þú fjarlægðir skýringunna {label} af spjaldinu {card} í staflanum {stack} á borðinu {board}",
|
||||
"{user} has removed the label {label} from {card} in {stack} on {board}" : "{user} fjarlægði skýringunna {label} af spjaldinu {card} í staflanum {stack} á borðinu {board}",
|
||||
"You have assigned {assigneduser} to {card} on {board}" : "Þú úthlutaðir {assigneduser} á spjaldið {card} á borðinu {board}",
|
||||
"{user} has assigned {assigneduser} to {card} on {board}" : "{user} úthlutaði {assigneduser} á spjaldið {card} á borðinu {board}",
|
||||
"You have unassigned {assigneduser} from {card} on {board}" : "Þú hefur afturkallað úthlutun {assigneduser} á spjaldið {card} á borðinu {board}",
|
||||
"{user} has unassigned {assigneduser} from {card} on {board}" : "{user} hefur afturkallað úthlutun {assigneduser} á spjaldið {card} á borðinu {board}",
|
||||
"You have moved the card {card} from {stackBefore} to {stack}" : "Þú færðir spjaldið {card} úr staflanum {stackBefore} yfir í {stack}",
|
||||
"{user} has moved the card {card} from {stackBefore} to {stack}" : "{user} færði spjaldið {card} úr staflanum {stackBefore} yfir í {stack}",
|
||||
"You have added the attachment {attachment} to {card}" : "Þú bættir viðhenginu {attachment} við spjaldið {card}",
|
||||
"{user} has added the attachment {attachment} to {card}" : "{user} bætti viðhenginu {attachment} við spjaldið {card}",
|
||||
"You have updated the attachment {attachment} on {card}" : "Þú uppfærðir viðhengið {attachment} á spjaldinu {card}",
|
||||
"{user} has updated the attachment {attachment} to {card}" : "{user} uppfærði viðhengið {attachment} á spjaldinu {card}",
|
||||
"You have deleted the attachment {attachment} from {card}" : "Þú eyddir viðhenginu {attachment} af spjaldinu {card}",
|
||||
"{user} has deleted the attachment {attachment} to {card}" : "{user} eyddi viðhenginu {attachment} af spjaldinu {card}",
|
||||
"You have restored the attachment {attachment} to {card}" : "Þú endurheimtir viðhengið {attachment} á spjaldinu {card}",
|
||||
"{user} has restored the attachment {attachment} to {card}" : "{user} endurheimti viðhengið {attachment} á spjaldinu {card}",
|
||||
"You have commented on {card}" : "Þú settir inn athugasemd við {card}",
|
||||
"{user} has commented on {card}" : "{user} setti inn athugasemd um {card}",
|
||||
"Deck" : "Dekk",
|
||||
"Personal" : "Einka",
|
||||
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Spjaldinu \"%s\" á \"%s\" hefur verið úthlutað til þín af %s.",
|
||||
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} hefur úthlutað spjaldinu \"%s\" á \"%s\" til þín.",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "Spjaldið \"%s\" á \"%s\" er komið fram yfir lokadagsetningu.",
|
||||
"%s has mentioned you in a comment on \"%s\"." : "%s minntist á þig í athugasemd við \"%s\".",
|
||||
"{user} has mentioned you in a comment on \"%s\"." : "{user} minntist á þig í athugasemd við \"%s\".",
|
||||
"The board \"%s\" has been shared with you by %s." : "Borðinu \"%s\" hefur verið deilt með þér af %s.",
|
||||
"{user} has shared the board %s with you." : "{user} deildi borðinu %s með þér.",
|
||||
"No data was provided to create an attachment." : "Engin gögn voru gefin til að útbúa viðhengi.",
|
||||
"Finished" : "Lokið",
|
||||
"To review" : "Til að yfirfara",
|
||||
"Action needed" : "Aðgerðar krafist",
|
||||
"Later" : "Seinna",
|
||||
"To do" : "Verkefni",
|
||||
"Doing" : "Er að gera",
|
||||
"Done" : "Lokið",
|
||||
"Example Task 3" : "Dæmi um verkefni 3",
|
||||
"Example Task 2" : "Dæmi um verkefni 2",
|
||||
@@ -27,36 +100,50 @@ OC.L10N.register(
|
||||
"Missing a temporary folder" : "Vantar bráðabirgðamöppu",
|
||||
"Could not write file to disk" : "Tókst ekki að skrifa skrá á disk.",
|
||||
"A PHP extension stopped the file upload" : "PHP-viðbót stöðvaði innsendingu skráar",
|
||||
"No file uploaded or file size exceeds maximum of %s" : "Engin innsend skrá eða að skráarstærð fór fram úr hámarksstæðinni %s",
|
||||
"A kanban style project and personal management tool for Nextcloud" : "Verkefna- og persónuupplýsingastjórnun í kanban-stíl fyrir Nextcloud",
|
||||
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Dekk (e. Deck) er skipulagningartól í kanban-stíl sem ætlað er fyrir verkefna- og persónuupplýsingastjórnun hópvinnuteyma innan Nextcloud.\n\n\n- 📥 Settu verkefnin þín á spjöld of raðaðu þeim á ýmsa vegu\n- 📄 Skrifaðu niður minnispunkta í markdown-kóða\n- 🔖 Úthlutaðu merkjum/skýringum til að bæta skipulagninguna\n- 👥 Deildu með vinnuhópnum, vinum eða fjölskyldu\n- 📎 Hengdu við skrár og ívefðu þær í lýsinguna með markdown-kóða\n- 💬 Ræddu málin við hópinn þinn með athugasemdum\n- ⚡ Haltu utan um breytingar í virknistreyminu\n- 🚀 Haltu verkefnunum þínum skipulögðum",
|
||||
"Add a new stack" : "Bæta við nýjum stafla",
|
||||
"Submit" : "Senda inn",
|
||||
"Show archived cards" : "Sýna spjöld í geymslu",
|
||||
"Hide archived cards" : "Fela spjöld í geymslu",
|
||||
"Board details" : "Nánar um borð",
|
||||
"Toggle compact mode" : "Víxla þjöppuðum ham af/á",
|
||||
"Show board details" : "Birta nánari upplýsingar um borð",
|
||||
"All Boards" : "Öll borð",
|
||||
"Archived boards" : "Borð í geymslu",
|
||||
"Share board" : "Deila borði",
|
||||
"Actions" : "Aðgerðir",
|
||||
"Assign to me" : "Úthluta mér",
|
||||
"Unassign from me" : "Aftengja úthlutun til mín",
|
||||
"Archive" : "Setja í safnskrá",
|
||||
"Unarchive" : "Taka úr geymslu",
|
||||
"Delete" : "Eyða",
|
||||
"Drop your files here to upload it to the card" : "Slepptu hér skrám til að senda þær inn í spjaldið",
|
||||
"Assign card to me" : "Úthluta spjaldinu til mín",
|
||||
"Unassign card from me" : "Aftengja úthlutun spjalds til mín",
|
||||
"Archive card" : "Setja spjald í geymslu",
|
||||
"Unarchive card" : "Taka spjald úr geymslu",
|
||||
"Delete card" : "Eyða spjaldi",
|
||||
"Enter a card title" : "Sláðu inn titil á spjald",
|
||||
"Add card" : "Bæta við spjaldi",
|
||||
"Close" : "Loka",
|
||||
"Sharing" : "Deiling",
|
||||
"Tags" : "Merki",
|
||||
"Deleted items" : "Eydd atriði",
|
||||
"Timeline" : "Tímalína",
|
||||
"Select users or groups to share with" : "Veldu notendur eða hópa til að deila með",
|
||||
"Access for" : "Aðgangur fyrir",
|
||||
"No matching user or group found." : "Engir samsvarandi notendur eða hópar fundust.",
|
||||
"Loading" : "Hleð inn",
|
||||
"Share" : "Deila",
|
||||
"Edit" : "Breyta",
|
||||
"Share" : "Deila",
|
||||
"Manage" : "Skipuleggja",
|
||||
"Discard share" : "Henda sameign",
|
||||
"Update" : "Uppfæra",
|
||||
"Update tag" : "Uppfæra merki",
|
||||
"Edit tag" : "Breyta merki",
|
||||
"Delete tag" : "Eyða merki",
|
||||
"Create" : "Búa til",
|
||||
"Create a new tag" : "Búa til nýtt merki",
|
||||
"Deleted stacks" : "Eyddir staflar",
|
||||
"Deleted cards" : "Eydd spjöld",
|
||||
"Status" : "Staða",
|
||||
"No archived boards to display" : "Engin borð í geymslu til að sýna",
|
||||
"No shared boards to display" : "Engin deild borð til að sýna",
|
||||
"Title" : "Titill",
|
||||
"Members" : "Meðlimir",
|
||||
"More actions" : "Fleiri aðgerðir",
|
||||
@@ -64,14 +151,19 @@ OC.L10N.register(
|
||||
"Archive board" : "Setja borð í geymslu",
|
||||
"Unarchive board" : "Taka borð úr geymslu",
|
||||
"Delete board" : "Eyða borði",
|
||||
"Reset" : "Endurstilla",
|
||||
"Update board" : "Uppfæra borð",
|
||||
"Reset board" : "Endurstilla borð",
|
||||
"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ð",
|
||||
"Create board" : "Búa til borð",
|
||||
"Select an attachment" : "Veldu viðhengi",
|
||||
"Cancel upload" : "Hætta við innsendingu",
|
||||
"by" : "af",
|
||||
"Undo file deletion - Otherwise the file will be deleted during the next cronjob run." : "Afturkalla eyðingu skráar - annars verður skránni eytt við næstu keyrslu cron-verks.",
|
||||
"Undo file deletion" : "Afturkalla eyðingu skráar",
|
||||
"Insert the file into the description" : "Settu skrána inn í lýsinguna",
|
||||
"Delete attachment" : "Eyða viðhengi",
|
||||
"Modified:" : "Breytt þann:",
|
||||
"Created:" : "Búið til:",
|
||||
"Choose a tag" : "Veldu merki",
|
||||
@@ -87,12 +179,11 @@ OC.L10N.register(
|
||||
"Attachments" : "Viðhengi",
|
||||
"Saved" : "Vistað",
|
||||
"Unsaved changes" : "Óvistaðar breytingar",
|
||||
"Insert attachment" : "Setja inn Viðhengi",
|
||||
"Formatting help" : "Hjálp við að sníða",
|
||||
"Upload attachment" : "Senda inn viðhengi",
|
||||
"Insert attachment" : "Setja inn Viðhengi",
|
||||
"Add a card description…" : "Settu inn lýsingu á spjaldi ...",
|
||||
"Shared boards" : "Deild borð",
|
||||
"View more" : "Skoða meira",
|
||||
"Move board to archive" : "Færa borð í geymslu",
|
||||
"Create a new board" : "Búa til nýtt borð"
|
||||
},
|
||||
|
||||
113
l10n/is.json
113
l10n/is.json
@@ -1,18 +1,91 @@
|
||||
{ "translations": {
|
||||
"Please provide a content for your comment." : "Settu inn efni í athugasemdina þína",
|
||||
"Posting the comment failed." : "Ekki tókst að setja inn athugasemdina.",
|
||||
"The comment has been deleted" : "Athugasemdinni hefur verið eytt",
|
||||
"The associated stack is deleted as well, it will be restored as well." : "Tengdum stafla var einnig eytt, hann verðir þá líka endurheimtur.",
|
||||
"Restore associated stack" : "Endurheimta tengdann stafla",
|
||||
"Remove user from card" : "Fjarlægja notanda af spjaldi",
|
||||
"Hours" : "klukkustundir",
|
||||
"Minutes" : "mínútur",
|
||||
"Maximum file size of {size} exceeded" : "Fór yfir hámarks skráarstærð {size}",
|
||||
"You have created a new board {board}" : "Þú hefur búið til nýja borðið {board}",
|
||||
"{user} has created a new board {board}" : "{user} hefur búið til nýja borðið {board}",
|
||||
"You have deleted the board {board}" : "Þú hefur eytt borðinu {board}",
|
||||
"{user} has deleted the board {board}" : "{user} hefur eytt borðinu {board}",
|
||||
"You have restored the board {board}" : "Þú hefur endurheimt borðið {board}",
|
||||
"{user} has restored the board {board}" : "{user} hefur endurheimt borðið {board}",
|
||||
"You have shared the board {board} with {acl}" : "Þú hefur deilt borðinu {board} með {acl}",
|
||||
"{user} has shared the board {board} with {sharee}" : "{user} hefur deilt borðinu {board} með {sharee}",
|
||||
"You have removed {acl} from the board {board}" : "Þú fjarlægðir {acl} af borðinu {board}",
|
||||
"{user} has removed {acl} from the board {board}" : "{user} fjarlægði {acl} af borðinu {board}",
|
||||
"You have renamed the board {before} to {board}" : "Þú hefur endurnefnt borðið {before} sem {board}",
|
||||
"{user} has has renamed the board {before} to {board}" : "{user} hefur endurnefnt borðið {before} sem {board}",
|
||||
"You have archived the board {board}" : "Þú settir borðið {board} í geymslu",
|
||||
"{user} has archived the board {before}" : "{user} setti borðið {before} í geymslu",
|
||||
"You have unarchived the board {board}" : "Þú tókst borðið {board} úr geymslu",
|
||||
"{user} has unarchived the board {before}" : "{user} tók borðið {before} úr geymslu",
|
||||
"You have created a new stack {stack} on {board}" : "Þú hefur búið til nýjan stafla {stack} á {board}",
|
||||
"{user} has created a new stack {stack} on {board}" : "{user} hefur búið til nýjan stafla {stack} á {board}",
|
||||
"You have renamed a new stack {before} to {stack} on {board}" : "Þú hefur endurnefnt nýjan stafla {before} sem {stack} á {board}",
|
||||
"{user} has renamed a new stack {before} to {stack} on {board}" : "{user} hefur endurnefnt nýjan stafla {before} sem {stack} á {board}",
|
||||
"You have deleted {stack} on {board}" : "Þú hefur eytt staflanum {stack} á borðinu {board}",
|
||||
"{user} has deleted {stack} on {board}" : "{user} hefur eytt staflanum {stack} á borðinu {board}",
|
||||
"You have created {card} in {stack} on {board}" : "Þú hefur búið til spjaldið {card} í staflanum {stack} á borðinu {board}",
|
||||
"{user} has created {card} in {stack} on {board}" : "{user} hefur búið til spjaldið {card} í staflanum {stack} á borðinu {board}",
|
||||
"You have deleted {card} in {stack} on {board}" : "Þú hefur eytt spjaldinu {card} í staflanum {stack} á borðinu {board}",
|
||||
"{user} has deleted {card} in {stack} on {board}" : "{user} hefur eytt spjaldinu {card} í staflanum {stack} á borðinu {board}",
|
||||
"You have renamed the card {before} to {card}" : "Þú hefur endurnefnt spjaldið {before} sem {card}",
|
||||
"{user} has renamed the card {before} to {card}" : "{user} hefur endurnefnt spjaldið {before} sem {card}",
|
||||
"You have added a description to {card} in {stack} on {board}" : "Þú bættir lýsingu við spjaldið {card} í staflanum {stack} á borðinu {board}",
|
||||
"{user} has added a description to {card} in {stack} on {board}" : "{user} bætti lýsingu við spjaldið {card} í staflanum {stack} á borðinu {board}",
|
||||
"You have updated the description of {card} in {stack} on {board}" : "Þú uppfærðir lýsingu á spjaldinu {card} í staflanum {stack} á borðinu {board}",
|
||||
"{user} has updated the description {card} in {stack} on {board}" : "{user} uppfærði lýsingu á spjaldinu {card} í staflanum {stack} á borðinu {board}",
|
||||
"You have archived {card} in {stack} on {board}" : "Þú settir í geymslu spjaldið {card} í staflanum {stack} á borðinu {board}",
|
||||
"{user} has archived {card} in {stack} on {board}" : "{user} setti í geymslu spjaldið {card} í staflanum {stack} á borðinu {board}",
|
||||
"You have unarchived {card} in {stack} on {board}" : "Þú tókst úr geymslu spjaldið {card} í staflanum {stack} á borðinu {board}",
|
||||
"{user} has unarchived {card} in {stack} on {board}" : "{user} tók úr geymslu spjaldið {card} í staflanum {stack} á borðinu {board}",
|
||||
"You have removed the due date of {card}" : "Þú fjarlægðir gildistíma af {card}",
|
||||
"{user} has removed the due date of {card}" : "{user} fjarlægði gildistíma af {card}",
|
||||
"You have set the due date of {card} to {after}" : "Þú settir gildistíma {card} á {after}",
|
||||
"{user} has set the due date of {card} to {after}" : "{user} setti gildistíma {card} á {after}",
|
||||
"You have updated the due date of {card} to {after}" : "Þú uppfærðir gildistíma {card} á {after}",
|
||||
"{user} has updated the due date of {card} to {after}" : "{user} uppfærði gildistíma {card} á {after}",
|
||||
"You have added the label {label} to {card} in {stack} on {board}" : "Þú bættir skýringunni {label} við spjaldið {card} í staflanum {stack} á borðinu {board}",
|
||||
"{user} has added the label {label} to {card} in {stack} on {board}" : "{user} bætti skýringunni {label} við spjaldið {card} í staflanum {stack} á borðinu {board}",
|
||||
"You have removed the label {label} from {card} in {stack} on {board}" : "Þú fjarlægðir skýringunna {label} af spjaldinu {card} í staflanum {stack} á borðinu {board}",
|
||||
"{user} has removed the label {label} from {card} in {stack} on {board}" : "{user} fjarlægði skýringunna {label} af spjaldinu {card} í staflanum {stack} á borðinu {board}",
|
||||
"You have assigned {assigneduser} to {card} on {board}" : "Þú úthlutaðir {assigneduser} á spjaldið {card} á borðinu {board}",
|
||||
"{user} has assigned {assigneduser} to {card} on {board}" : "{user} úthlutaði {assigneduser} á spjaldið {card} á borðinu {board}",
|
||||
"You have unassigned {assigneduser} from {card} on {board}" : "Þú hefur afturkallað úthlutun {assigneduser} á spjaldið {card} á borðinu {board}",
|
||||
"{user} has unassigned {assigneduser} from {card} on {board}" : "{user} hefur afturkallað úthlutun {assigneduser} á spjaldið {card} á borðinu {board}",
|
||||
"You have moved the card {card} from {stackBefore} to {stack}" : "Þú færðir spjaldið {card} úr staflanum {stackBefore} yfir í {stack}",
|
||||
"{user} has moved the card {card} from {stackBefore} to {stack}" : "{user} færði spjaldið {card} úr staflanum {stackBefore} yfir í {stack}",
|
||||
"You have added the attachment {attachment} to {card}" : "Þú bættir viðhenginu {attachment} við spjaldið {card}",
|
||||
"{user} has added the attachment {attachment} to {card}" : "{user} bætti viðhenginu {attachment} við spjaldið {card}",
|
||||
"You have updated the attachment {attachment} on {card}" : "Þú uppfærðir viðhengið {attachment} á spjaldinu {card}",
|
||||
"{user} has updated the attachment {attachment} to {card}" : "{user} uppfærði viðhengið {attachment} á spjaldinu {card}",
|
||||
"You have deleted the attachment {attachment} from {card}" : "Þú eyddir viðhenginu {attachment} af spjaldinu {card}",
|
||||
"{user} has deleted the attachment {attachment} to {card}" : "{user} eyddi viðhenginu {attachment} af spjaldinu {card}",
|
||||
"You have restored the attachment {attachment} to {card}" : "Þú endurheimtir viðhengið {attachment} á spjaldinu {card}",
|
||||
"{user} has restored the attachment {attachment} to {card}" : "{user} endurheimti viðhengið {attachment} á spjaldinu {card}",
|
||||
"You have commented on {card}" : "Þú settir inn athugasemd við {card}",
|
||||
"{user} has commented on {card}" : "{user} setti inn athugasemd um {card}",
|
||||
"Deck" : "Dekk",
|
||||
"Personal" : "Einka",
|
||||
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Spjaldinu \"%s\" á \"%s\" hefur verið úthlutað til þín af %s.",
|
||||
"{user} has assigned the card \"%s\" on \"%s\" to you." : "{user} hefur úthlutað spjaldinu \"%s\" á \"%s\" til þín.",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "Spjaldið \"%s\" á \"%s\" er komið fram yfir lokadagsetningu.",
|
||||
"%s has mentioned you in a comment on \"%s\"." : "%s minntist á þig í athugasemd við \"%s\".",
|
||||
"{user} has mentioned you in a comment on \"%s\"." : "{user} minntist á þig í athugasemd við \"%s\".",
|
||||
"The board \"%s\" has been shared with you by %s." : "Borðinu \"%s\" hefur verið deilt með þér af %s.",
|
||||
"{user} has shared the board %s with you." : "{user} deildi borðinu %s með þér.",
|
||||
"No data was provided to create an attachment." : "Engin gögn voru gefin til að útbúa viðhengi.",
|
||||
"Finished" : "Lokið",
|
||||
"To review" : "Til að yfirfara",
|
||||
"Action needed" : "Aðgerðar krafist",
|
||||
"Later" : "Seinna",
|
||||
"To do" : "Verkefni",
|
||||
"Doing" : "Er að gera",
|
||||
"Done" : "Lokið",
|
||||
"Example Task 3" : "Dæmi um verkefni 3",
|
||||
"Example Task 2" : "Dæmi um verkefni 2",
|
||||
@@ -25,36 +98,50 @@
|
||||
"Missing a temporary folder" : "Vantar bráðabirgðamöppu",
|
||||
"Could not write file to disk" : "Tókst ekki að skrifa skrá á disk.",
|
||||
"A PHP extension stopped the file upload" : "PHP-viðbót stöðvaði innsendingu skráar",
|
||||
"No file uploaded or file size exceeds maximum of %s" : "Engin innsend skrá eða að skráarstærð fór fram úr hámarksstæðinni %s",
|
||||
"A kanban style project and personal management tool for Nextcloud" : "Verkefna- og persónuupplýsingastjórnun í kanban-stíl fyrir Nextcloud",
|
||||
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Dekk (e. Deck) er skipulagningartól í kanban-stíl sem ætlað er fyrir verkefna- og persónuupplýsingastjórnun hópvinnuteyma innan Nextcloud.\n\n\n- 📥 Settu verkefnin þín á spjöld of raðaðu þeim á ýmsa vegu\n- 📄 Skrifaðu niður minnispunkta í markdown-kóða\n- 🔖 Úthlutaðu merkjum/skýringum til að bæta skipulagninguna\n- 👥 Deildu með vinnuhópnum, vinum eða fjölskyldu\n- 📎 Hengdu við skrár og ívefðu þær í lýsinguna með markdown-kóða\n- 💬 Ræddu málin við hópinn þinn með athugasemdum\n- ⚡ Haltu utan um breytingar í virknistreyminu\n- 🚀 Haltu verkefnunum þínum skipulögðum",
|
||||
"Add a new stack" : "Bæta við nýjum stafla",
|
||||
"Submit" : "Senda inn",
|
||||
"Show archived cards" : "Sýna spjöld í geymslu",
|
||||
"Hide archived cards" : "Fela spjöld í geymslu",
|
||||
"Board details" : "Nánar um borð",
|
||||
"Toggle compact mode" : "Víxla þjöppuðum ham af/á",
|
||||
"Show board details" : "Birta nánari upplýsingar um borð",
|
||||
"All Boards" : "Öll borð",
|
||||
"Archived boards" : "Borð í geymslu",
|
||||
"Share board" : "Deila borði",
|
||||
"Actions" : "Aðgerðir",
|
||||
"Assign to me" : "Úthluta mér",
|
||||
"Unassign from me" : "Aftengja úthlutun til mín",
|
||||
"Archive" : "Setja í safnskrá",
|
||||
"Unarchive" : "Taka úr geymslu",
|
||||
"Delete" : "Eyða",
|
||||
"Drop your files here to upload it to the card" : "Slepptu hér skrám til að senda þær inn í spjaldið",
|
||||
"Assign card to me" : "Úthluta spjaldinu til mín",
|
||||
"Unassign card from me" : "Aftengja úthlutun spjalds til mín",
|
||||
"Archive card" : "Setja spjald í geymslu",
|
||||
"Unarchive card" : "Taka spjald úr geymslu",
|
||||
"Delete card" : "Eyða spjaldi",
|
||||
"Enter a card title" : "Sláðu inn titil á spjald",
|
||||
"Add card" : "Bæta við spjaldi",
|
||||
"Close" : "Loka",
|
||||
"Sharing" : "Deiling",
|
||||
"Tags" : "Merki",
|
||||
"Deleted items" : "Eydd atriði",
|
||||
"Timeline" : "Tímalína",
|
||||
"Select users or groups to share with" : "Veldu notendur eða hópa til að deila með",
|
||||
"Access for" : "Aðgangur fyrir",
|
||||
"No matching user or group found." : "Engir samsvarandi notendur eða hópar fundust.",
|
||||
"Loading" : "Hleð inn",
|
||||
"Share" : "Deila",
|
||||
"Edit" : "Breyta",
|
||||
"Share" : "Deila",
|
||||
"Manage" : "Skipuleggja",
|
||||
"Discard share" : "Henda sameign",
|
||||
"Update" : "Uppfæra",
|
||||
"Update tag" : "Uppfæra merki",
|
||||
"Edit tag" : "Breyta merki",
|
||||
"Delete tag" : "Eyða merki",
|
||||
"Create" : "Búa til",
|
||||
"Create a new tag" : "Búa til nýtt merki",
|
||||
"Deleted stacks" : "Eyddir staflar",
|
||||
"Deleted cards" : "Eydd spjöld",
|
||||
"Status" : "Staða",
|
||||
"No archived boards to display" : "Engin borð í geymslu til að sýna",
|
||||
"No shared boards to display" : "Engin deild borð til að sýna",
|
||||
"Title" : "Titill",
|
||||
"Members" : "Meðlimir",
|
||||
"More actions" : "Fleiri aðgerðir",
|
||||
@@ -62,14 +149,19 @@
|
||||
"Archive board" : "Setja borð í geymslu",
|
||||
"Unarchive board" : "Taka borð úr geymslu",
|
||||
"Delete board" : "Eyða borði",
|
||||
"Reset" : "Endurstilla",
|
||||
"Update board" : "Uppfæra borð",
|
||||
"Reset board" : "Endurstilla borð",
|
||||
"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ð",
|
||||
"Create board" : "Búa til borð",
|
||||
"Select an attachment" : "Veldu viðhengi",
|
||||
"Cancel upload" : "Hætta við innsendingu",
|
||||
"by" : "af",
|
||||
"Undo file deletion - Otherwise the file will be deleted during the next cronjob run." : "Afturkalla eyðingu skráar - annars verður skránni eytt við næstu keyrslu cron-verks.",
|
||||
"Undo file deletion" : "Afturkalla eyðingu skráar",
|
||||
"Insert the file into the description" : "Settu skrána inn í lýsinguna",
|
||||
"Delete attachment" : "Eyða viðhengi",
|
||||
"Modified:" : "Breytt þann:",
|
||||
"Created:" : "Búið til:",
|
||||
"Choose a tag" : "Veldu merki",
|
||||
@@ -85,12 +177,11 @@
|
||||
"Attachments" : "Viðhengi",
|
||||
"Saved" : "Vistað",
|
||||
"Unsaved changes" : "Óvistaðar breytingar",
|
||||
"Insert attachment" : "Setja inn Viðhengi",
|
||||
"Formatting help" : "Hjálp við að sníða",
|
||||
"Upload attachment" : "Senda inn viðhengi",
|
||||
"Insert attachment" : "Setja inn Viðhengi",
|
||||
"Add a card description…" : "Settu inn lýsingu á spjaldi ...",
|
||||
"Shared boards" : "Deild borð",
|
||||
"View more" : "Skoða meira",
|
||||
"Move board to archive" : "Færa borð í geymslu",
|
||||
"Create a new board" : "Búa til nýtt borð"
|
||||
},"pluralForm" :"nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);"
|
||||
|
||||
28
l10n/it.js
28
l10n/it.js
@@ -108,17 +108,17 @@ OC.L10N.register(
|
||||
"Show archived cards" : "Mostra le carte archiviate",
|
||||
"Hide archived cards" : "Nascondi le carte archiviate",
|
||||
"Toggle compact mode" : "Commuta la modalità compatta",
|
||||
"Board details" : "Dettaglio lavagna",
|
||||
"Show board details" : "Mostra dettagli della lavagna",
|
||||
"All Boards" : "Tutte le lavagne",
|
||||
"Archived boards" : "Lavagne archiviate",
|
||||
"Share board" : "Condividi lavagna",
|
||||
"Drop your files here to upload it to the card" : "Rilascia qui i tuoi file per caricarli nella scheda",
|
||||
"Actions" : "Azioni",
|
||||
"Assign to me" : "Assegna a me",
|
||||
"Unassign from me" : "Rimuovi assegnazione da me",
|
||||
"Archive" : "Archivio",
|
||||
"Unarchive" : "Togli dall'archivio",
|
||||
"Delete" : "Elimina",
|
||||
"Drop your files here to upload it to the card" : "Rilascia qui i tuoi file per caricarli nella scheda",
|
||||
"Assign card to me" : "Assegna scheda a me",
|
||||
"Unassign card from me" : "Rimuovi assegnazione scheda da me",
|
||||
"Archive card" : "Archivia scheda",
|
||||
"Unarchive card" : "Recupera lavagna dall'archivio",
|
||||
"Delete card" : "Elimina scheda",
|
||||
"Enter a card title" : "Inserisci un titolo alla scheda",
|
||||
"Add card" : "Aggiungi scheda",
|
||||
"Close" : "Chiudi",
|
||||
@@ -130,11 +130,13 @@ OC.L10N.register(
|
||||
"Access for" : "Accesso per",
|
||||
"No matching user or group found." : "Nessun utente o gruppo trovato.",
|
||||
"Loading" : "Caricamento",
|
||||
"Share" : "Condividi",
|
||||
"Edit" : "Modifica",
|
||||
"Share" : "Condividi",
|
||||
"Manage" : "Gestisci",
|
||||
"Discard share" : "Annulla condivisione",
|
||||
"Update" : "Aggiorna",
|
||||
"Update tag" : "Aggiorna etichetta",
|
||||
"Edit tag" : "Modifica etichetta",
|
||||
"Delete tag" : "Elimina etichetta",
|
||||
"Create" : "Crea",
|
||||
"Create a new tag" : "Crea una nuova etichetta",
|
||||
"Deleted stacks" : "Pile eliminate",
|
||||
@@ -149,16 +151,19 @@ OC.L10N.register(
|
||||
"Archive board" : "Archivia lavagna",
|
||||
"Unarchive board" : "Recupera lavagna dall'archivio",
|
||||
"Delete board" : "Elimina lavagna",
|
||||
"Reset" : "Ripristina",
|
||||
"Update board" : "Aggiorna lavagna",
|
||||
"Reset board" : "Ripristina lavagna",
|
||||
"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",
|
||||
"Create board" : "Crea 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",
|
||||
"Delete attachment" : "Elimina allegato",
|
||||
"Modified:" : "Modificato:",
|
||||
"Created:" : "Creato:",
|
||||
"Choose a tag" : "Scegli un'etichetta",
|
||||
@@ -174,12 +179,11 @@ OC.L10N.register(
|
||||
"Attachments" : "Allegati",
|
||||
"Saved" : "Salvato",
|
||||
"Unsaved changes" : "Modifiche non salvate",
|
||||
"Insert attachment" : "Inserisci allegato",
|
||||
"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",
|
||||
"Move board to archive" : "Sposta lavagna nell'archivio",
|
||||
"Create a new board" : "Crea una nuova lavagna"
|
||||
},
|
||||
|
||||
28
l10n/it.json
28
l10n/it.json
@@ -106,17 +106,17 @@
|
||||
"Show archived cards" : "Mostra le carte archiviate",
|
||||
"Hide archived cards" : "Nascondi le carte archiviate",
|
||||
"Toggle compact mode" : "Commuta la modalità compatta",
|
||||
"Board details" : "Dettaglio lavagna",
|
||||
"Show board details" : "Mostra dettagli della lavagna",
|
||||
"All Boards" : "Tutte le lavagne",
|
||||
"Archived boards" : "Lavagne archiviate",
|
||||
"Share board" : "Condividi lavagna",
|
||||
"Drop your files here to upload it to the card" : "Rilascia qui i tuoi file per caricarli nella scheda",
|
||||
"Actions" : "Azioni",
|
||||
"Assign to me" : "Assegna a me",
|
||||
"Unassign from me" : "Rimuovi assegnazione da me",
|
||||
"Archive" : "Archivio",
|
||||
"Unarchive" : "Togli dall'archivio",
|
||||
"Delete" : "Elimina",
|
||||
"Drop your files here to upload it to the card" : "Rilascia qui i tuoi file per caricarli nella scheda",
|
||||
"Assign card to me" : "Assegna scheda a me",
|
||||
"Unassign card from me" : "Rimuovi assegnazione scheda da me",
|
||||
"Archive card" : "Archivia scheda",
|
||||
"Unarchive card" : "Recupera lavagna dall'archivio",
|
||||
"Delete card" : "Elimina scheda",
|
||||
"Enter a card title" : "Inserisci un titolo alla scheda",
|
||||
"Add card" : "Aggiungi scheda",
|
||||
"Close" : "Chiudi",
|
||||
@@ -128,11 +128,13 @@
|
||||
"Access for" : "Accesso per",
|
||||
"No matching user or group found." : "Nessun utente o gruppo trovato.",
|
||||
"Loading" : "Caricamento",
|
||||
"Share" : "Condividi",
|
||||
"Edit" : "Modifica",
|
||||
"Share" : "Condividi",
|
||||
"Manage" : "Gestisci",
|
||||
"Discard share" : "Annulla condivisione",
|
||||
"Update" : "Aggiorna",
|
||||
"Update tag" : "Aggiorna etichetta",
|
||||
"Edit tag" : "Modifica etichetta",
|
||||
"Delete tag" : "Elimina etichetta",
|
||||
"Create" : "Crea",
|
||||
"Create a new tag" : "Crea una nuova etichetta",
|
||||
"Deleted stacks" : "Pile eliminate",
|
||||
@@ -147,16 +149,19 @@
|
||||
"Archive board" : "Archivia lavagna",
|
||||
"Unarchive board" : "Recupera lavagna dall'archivio",
|
||||
"Delete board" : "Elimina lavagna",
|
||||
"Reset" : "Ripristina",
|
||||
"Update board" : "Aggiorna lavagna",
|
||||
"Reset board" : "Ripristina lavagna",
|
||||
"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",
|
||||
"Create board" : "Crea 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",
|
||||
"Delete attachment" : "Elimina allegato",
|
||||
"Modified:" : "Modificato:",
|
||||
"Created:" : "Creato:",
|
||||
"Choose a tag" : "Scegli un'etichetta",
|
||||
@@ -172,12 +177,11 @@
|
||||
"Attachments" : "Allegati",
|
||||
"Saved" : "Salvato",
|
||||
"Unsaved changes" : "Modifiche non salvate",
|
||||
"Insert attachment" : "Inserisci allegato",
|
||||
"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",
|
||||
"Move board to archive" : "Sposta lavagna nell'archivio",
|
||||
"Create a new board" : "Crea una nuova lavagna"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
|
||||
154
l10n/ja.js
Normal file
154
l10n/ja.js
Normal file
@@ -0,0 +1,154 @@
|
||||
OC.L10N.register(
|
||||
"deck",
|
||||
{
|
||||
"Please provide a content for your comment." : "コメントの内容を入力してください。",
|
||||
"Posting the comment failed." : "コメントを投稿できませんでした。",
|
||||
"The comment has been deleted" : "コメントが削除されました",
|
||||
"The associated stack is deleted as well, it will be restored as well." : "関連するスタックも削除され、復元されます。",
|
||||
"Restore associated stack" : "関連するスタックを復元する",
|
||||
"Remove user from card" : "カードからユーザーを削除",
|
||||
"Hours" : "時間",
|
||||
"Minutes" : "分",
|
||||
"Maximum file size of {size} exceeded" : "最大ファイルサイズ({size})を超えています",
|
||||
"You have created a new board {board}" : "あなたは新しいボード {board} を作成しました。",
|
||||
"{user} has created a new board {board}" : "{user} が新しいボード {board} を作成しました",
|
||||
"You have deleted the board {board}" : "あなたはボード {board} を削除しました。",
|
||||
"{user} has deleted the board {board}" : "{user} がボード {board} を削除しました",
|
||||
"You have restored the board {board}" : "あなたはボード {board} を復元しました。",
|
||||
"{user} has restored the board {board}" : "{user} がボード {board} を復元しました",
|
||||
"You have shared the board {board} with {acl}" : "あなたはボード {board} を {acl} と共有しました。",
|
||||
"{user} has shared the board {board} with {sharee}" : "{user} が{board} を {sharee} と共有しました",
|
||||
"You have removed {acl} from the board {board}" : "{acl} をボード {board} から削除しました。",
|
||||
"{user} has removed {acl} from the board {board}" : "{user} がボード {board} から {acl} を削除しました",
|
||||
"You have renamed the board {before} to {board}" : "あなたは {before} のボードの名前を {board} に変更しました",
|
||||
"{user} has has renamed the board {before} to {board}" : "{user} はボード {board} の名前を {before} に変更しました",
|
||||
"You have archived the board {board}" : "あなたはボードをアーカイブしました {board}",
|
||||
"{user} has archived the board {before}" : "{user} は {before} のボードをアーカイブしました",
|
||||
"You have unarchived the board {board}" : "ボード {board} がアーカイブされていません",
|
||||
"{user} has unarchived the board {before}" : "{user} は {before} のボードをアーカイブされていません",
|
||||
"You have created a new stack {stack} on {board}" : "{board} に新しいスタック {stack} を作成しました。",
|
||||
"{user} has created a new stack {stack} on {board}" : "{user} が {board} に新しいスタック {stack} を作成しました",
|
||||
"You have renamed a new stack {before} to {stack} on {board}" : "あなたは新しいスタック {before} の名前を {stack} {board} に変更しました",
|
||||
"{user} has renamed a new stack {before} to {stack} on {board}" : "{user} が {board} の {stack} に新しいスタックの名前を{before} に変更しました",
|
||||
"You have deleted {stack} on {board}" : "{board} の {stack} を削除しました。",
|
||||
"{user} has deleted {stack} on {board}" : "{user} が {board} の {stack} を削除しました",
|
||||
"You have created {card} in {stack} on {board}" : "{board} の {stack} に {card} を作成しました。",
|
||||
"{user} has created {card} in {stack} on {board}" : "{user} が {board} の {stack} に {card} を作成しました",
|
||||
"You have deleted {card} in {stack} on {board}" : "{board} の {stack} で {card} を削除しました。",
|
||||
"{user} has deleted {card} in {stack} on {board}" : "{user} が {board} の {stack} で {card} を削除しました",
|
||||
"You have renamed the card {before} to {card}" : "あなたはカード {before} の名前を {card} に変更しました",
|
||||
"{user} has renamed the card {before} to {card}" : "{user} が {before} カードの名前を {card} に変更しました",
|
||||
"You have added a description to {card} in {stack} on {board}" : "{board} の {stack} の {card} に説明を追加しました。",
|
||||
"{user} has added a description to {card} in {stack} on {board}" : "{user} が {board} の {stack} の {card} に説明を追加しました",
|
||||
"You have updated the description of {card} in {stack} on {board}" : "{board} の {stack} の {card} の説明を更新しました。",
|
||||
"{user} has updated the description {card} in {stack} on {board}" : "{user} が {board} の {stack} の {card} の説明を更新しました",
|
||||
"You have archived {card} in {stack} on {board}" : "{board} の {stack} に {card} をアーカイブしました。",
|
||||
"{user} has archived {card} in {stack} on {board}" : "{user} は {board} の {stack} に {card} をアーカイブしました",
|
||||
"You have unarchived {card} in {stack} on {board}" : "{board} の {stack} に {card} のアーカイブを解除しました",
|
||||
"Deck" : "デッキ",
|
||||
"Personal" : "個人",
|
||||
"No data was provided to create an attachment." : "添付ファイルを作成するためのデータは提供されていません。",
|
||||
"Finished" : "完了",
|
||||
"To review" : "レビューする",
|
||||
"Action needed" : "必要なアクション",
|
||||
"Later" : "後",
|
||||
"To do" : "To do",
|
||||
"Doing" : "行うこと",
|
||||
"Done" : "完了",
|
||||
"Example Task 3" : "タスク3の例",
|
||||
"Example Task 2" : "タスク2の例",
|
||||
"Example Task 1" : "タスク1の例",
|
||||
"The file was uploaded" : "ファイルがアップロードされました",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "アップロードされたファイルがphp.iniのupload_max_filesizeディレクティブを超えています",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "アップロードファイルはHTMLフォームで指定された MAX_FILE_SIZE の制限を超えています",
|
||||
"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 を超えています",
|
||||
"Add a new stack" : "新しいスタックを追加する",
|
||||
"Submit" : "了解",
|
||||
"Show archived cards" : "アーカイブされたカードを表示する",
|
||||
"Hide archived cards" : "アーカイブされたカードを非表示にする",
|
||||
"Toggle compact mode" : "コンパクトモードの切り替え",
|
||||
"Show board details" : "ボードの詳細を表示",
|
||||
"All Boards" : "すべてのボード",
|
||||
"Archived boards" : "アーカイブ済みのボード",
|
||||
"Share board" : "ボードを共有",
|
||||
"Actions" : "アクション",
|
||||
"Drop your files here to upload it to the card" : "ファイルをここにドロップしてカードをアップロードします",
|
||||
"Assign card to me" : "私にカードを割り当てる",
|
||||
"Unassign card from me" : "カードの割り当てを解除する",
|
||||
"Archive card" : "カードをアーカイブ",
|
||||
"Unarchive card" : "カードのアーカイブを解除する",
|
||||
"Delete card" : "削除済みのカード",
|
||||
"Enter a card title" : "カードのタイトルを入力してください",
|
||||
"Add card" : "カードを追加",
|
||||
"Close" : "閉じる",
|
||||
"Sharing" : "共有",
|
||||
"Tags" : "タグ",
|
||||
"Deleted items" : "削除されたアイテム",
|
||||
"Timeline" : "タイムライン",
|
||||
"Select users or groups to share with" : "共有するユーザーまたはグループを選択する",
|
||||
"Access for" : "のためのアクセス",
|
||||
"No matching user or group found." : "一致するユーザーまたはグループが見つかりません。",
|
||||
"Loading" : "読み込み中",
|
||||
"Edit" : "編集",
|
||||
"Share" : "共有",
|
||||
"Manage" : "管理",
|
||||
"Discard share" : "共有をやめる",
|
||||
"Update tag" : "タグを更新する",
|
||||
"Edit tag" : "タグを編集",
|
||||
"Delete tag" : "タグを削除",
|
||||
"Create" : "作成",
|
||||
"Create a new tag" : "新しいタグを作成",
|
||||
"Deleted stacks" : "削除済みのスタック",
|
||||
"Deleted cards" : "削除済みのカード",
|
||||
"Status" : "ステータス",
|
||||
"No archived boards to display" : "表示するアーカイブボードはありません",
|
||||
"No shared boards to display" : "表示する共有ボードがありません",
|
||||
"Title" : "タイトル",
|
||||
"Members" : "メンバー",
|
||||
"More actions" : "その他のアクション",
|
||||
"Edit board" : "ボードを編集",
|
||||
"Archive board" : "ボードをアーカイブ",
|
||||
"Unarchive board" : "ボードのアーカイブを解除",
|
||||
"Delete board" : "ボードを削除",
|
||||
"Update board" : "ボードを更新する",
|
||||
"Reset board" : "リセットボード",
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "ボードの削除を取り消す - それ以外の場合は、次のcronジョブの実行中にボードが削除されます。",
|
||||
"Create new board" : "新しいボードを作成",
|
||||
"New board title" : "新しいボードのタイトル",
|
||||
"Create board" : "ボードを作成",
|
||||
"Select an attachment" : "添付ファイルを選択",
|
||||
"Cancel upload" : "アップロードをキャンセル",
|
||||
"by" : "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" : "説明にファイルを挿入する",
|
||||
"Delete attachment" : "添付ファイルを削除する",
|
||||
"Modified:" : "更新:",
|
||||
"Created:" : "作成:",
|
||||
"Choose a tag" : "タグを選択",
|
||||
"Add a tag" : "タグを追加",
|
||||
"Select tags" : "タグを選択..",
|
||||
"Assign users" : "ユーザーを割り当てる",
|
||||
"Choose a user to assign" : "割り当てるユーザを選択する",
|
||||
"Assign this card to a user" : "このカードをユーザーに割り当てる",
|
||||
"Due date" : "期限",
|
||||
"Click to set" : "クリックして設定する",
|
||||
"Remove due date" : "期限を削除",
|
||||
"Description" : "説明",
|
||||
"Attachments" : "添付ファイル",
|
||||
"Saved" : "保存しました",
|
||||
"Unsaved changes" : "保存していない変更点",
|
||||
"Insert attachment" : "添付ファイルを挿入する",
|
||||
"Formatting help" : "ヘルプの書式設定",
|
||||
"Upload attachment" : "添付ファイルをアップロードする",
|
||||
"Add a card description…" : "カードの説明を追加...",
|
||||
"Shared boards" : "共有ボード",
|
||||
"Move board to archive" : "ボードをアーカイブに移動する",
|
||||
"Create a new board" : "新しいボードを作成"
|
||||
},
|
||||
"nplurals=1; plural=0;");
|
||||
152
l10n/ja.json
Normal file
152
l10n/ja.json
Normal file
@@ -0,0 +1,152 @@
|
||||
{ "translations": {
|
||||
"Please provide a content for your comment." : "コメントの内容を入力してください。",
|
||||
"Posting the comment failed." : "コメントを投稿できませんでした。",
|
||||
"The comment has been deleted" : "コメントが削除されました",
|
||||
"The associated stack is deleted as well, it will be restored as well." : "関連するスタックも削除され、復元されます。",
|
||||
"Restore associated stack" : "関連するスタックを復元する",
|
||||
"Remove user from card" : "カードからユーザーを削除",
|
||||
"Hours" : "時間",
|
||||
"Minutes" : "分",
|
||||
"Maximum file size of {size} exceeded" : "最大ファイルサイズ({size})を超えています",
|
||||
"You have created a new board {board}" : "あなたは新しいボード {board} を作成しました。",
|
||||
"{user} has created a new board {board}" : "{user} が新しいボード {board} を作成しました",
|
||||
"You have deleted the board {board}" : "あなたはボード {board} を削除しました。",
|
||||
"{user} has deleted the board {board}" : "{user} がボード {board} を削除しました",
|
||||
"You have restored the board {board}" : "あなたはボード {board} を復元しました。",
|
||||
"{user} has restored the board {board}" : "{user} がボード {board} を復元しました",
|
||||
"You have shared the board {board} with {acl}" : "あなたはボード {board} を {acl} と共有しました。",
|
||||
"{user} has shared the board {board} with {sharee}" : "{user} が{board} を {sharee} と共有しました",
|
||||
"You have removed {acl} from the board {board}" : "{acl} をボード {board} から削除しました。",
|
||||
"{user} has removed {acl} from the board {board}" : "{user} がボード {board} から {acl} を削除しました",
|
||||
"You have renamed the board {before} to {board}" : "あなたは {before} のボードの名前を {board} に変更しました",
|
||||
"{user} has has renamed the board {before} to {board}" : "{user} はボード {board} の名前を {before} に変更しました",
|
||||
"You have archived the board {board}" : "あなたはボードをアーカイブしました {board}",
|
||||
"{user} has archived the board {before}" : "{user} は {before} のボードをアーカイブしました",
|
||||
"You have unarchived the board {board}" : "ボード {board} がアーカイブされていません",
|
||||
"{user} has unarchived the board {before}" : "{user} は {before} のボードをアーカイブされていません",
|
||||
"You have created a new stack {stack} on {board}" : "{board} に新しいスタック {stack} を作成しました。",
|
||||
"{user} has created a new stack {stack} on {board}" : "{user} が {board} に新しいスタック {stack} を作成しました",
|
||||
"You have renamed a new stack {before} to {stack} on {board}" : "あなたは新しいスタック {before} の名前を {stack} {board} に変更しました",
|
||||
"{user} has renamed a new stack {before} to {stack} on {board}" : "{user} が {board} の {stack} に新しいスタックの名前を{before} に変更しました",
|
||||
"You have deleted {stack} on {board}" : "{board} の {stack} を削除しました。",
|
||||
"{user} has deleted {stack} on {board}" : "{user} が {board} の {stack} を削除しました",
|
||||
"You have created {card} in {stack} on {board}" : "{board} の {stack} に {card} を作成しました。",
|
||||
"{user} has created {card} in {stack} on {board}" : "{user} が {board} の {stack} に {card} を作成しました",
|
||||
"You have deleted {card} in {stack} on {board}" : "{board} の {stack} で {card} を削除しました。",
|
||||
"{user} has deleted {card} in {stack} on {board}" : "{user} が {board} の {stack} で {card} を削除しました",
|
||||
"You have renamed the card {before} to {card}" : "あなたはカード {before} の名前を {card} に変更しました",
|
||||
"{user} has renamed the card {before} to {card}" : "{user} が {before} カードの名前を {card} に変更しました",
|
||||
"You have added a description to {card} in {stack} on {board}" : "{board} の {stack} の {card} に説明を追加しました。",
|
||||
"{user} has added a description to {card} in {stack} on {board}" : "{user} が {board} の {stack} の {card} に説明を追加しました",
|
||||
"You have updated the description of {card} in {stack} on {board}" : "{board} の {stack} の {card} の説明を更新しました。",
|
||||
"{user} has updated the description {card} in {stack} on {board}" : "{user} が {board} の {stack} の {card} の説明を更新しました",
|
||||
"You have archived {card} in {stack} on {board}" : "{board} の {stack} に {card} をアーカイブしました。",
|
||||
"{user} has archived {card} in {stack} on {board}" : "{user} は {board} の {stack} に {card} をアーカイブしました",
|
||||
"You have unarchived {card} in {stack} on {board}" : "{board} の {stack} に {card} のアーカイブを解除しました",
|
||||
"Deck" : "デッキ",
|
||||
"Personal" : "個人",
|
||||
"No data was provided to create an attachment." : "添付ファイルを作成するためのデータは提供されていません。",
|
||||
"Finished" : "完了",
|
||||
"To review" : "レビューする",
|
||||
"Action needed" : "必要なアクション",
|
||||
"Later" : "後",
|
||||
"To do" : "To do",
|
||||
"Doing" : "行うこと",
|
||||
"Done" : "完了",
|
||||
"Example Task 3" : "タスク3の例",
|
||||
"Example Task 2" : "タスク2の例",
|
||||
"Example Task 1" : "タスク1の例",
|
||||
"The file was uploaded" : "ファイルがアップロードされました",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "アップロードされたファイルがphp.iniのupload_max_filesizeディレクティブを超えています",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "アップロードファイルはHTMLフォームで指定された MAX_FILE_SIZE の制限を超えています",
|
||||
"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 を超えています",
|
||||
"Add a new stack" : "新しいスタックを追加する",
|
||||
"Submit" : "了解",
|
||||
"Show archived cards" : "アーカイブされたカードを表示する",
|
||||
"Hide archived cards" : "アーカイブされたカードを非表示にする",
|
||||
"Toggle compact mode" : "コンパクトモードの切り替え",
|
||||
"Show board details" : "ボードの詳細を表示",
|
||||
"All Boards" : "すべてのボード",
|
||||
"Archived boards" : "アーカイブ済みのボード",
|
||||
"Share board" : "ボードを共有",
|
||||
"Actions" : "アクション",
|
||||
"Drop your files here to upload it to the card" : "ファイルをここにドロップしてカードをアップロードします",
|
||||
"Assign card to me" : "私にカードを割り当てる",
|
||||
"Unassign card from me" : "カードの割り当てを解除する",
|
||||
"Archive card" : "カードをアーカイブ",
|
||||
"Unarchive card" : "カードのアーカイブを解除する",
|
||||
"Delete card" : "削除済みのカード",
|
||||
"Enter a card title" : "カードのタイトルを入力してください",
|
||||
"Add card" : "カードを追加",
|
||||
"Close" : "閉じる",
|
||||
"Sharing" : "共有",
|
||||
"Tags" : "タグ",
|
||||
"Deleted items" : "削除されたアイテム",
|
||||
"Timeline" : "タイムライン",
|
||||
"Select users or groups to share with" : "共有するユーザーまたはグループを選択する",
|
||||
"Access for" : "のためのアクセス",
|
||||
"No matching user or group found." : "一致するユーザーまたはグループが見つかりません。",
|
||||
"Loading" : "読み込み中",
|
||||
"Edit" : "編集",
|
||||
"Share" : "共有",
|
||||
"Manage" : "管理",
|
||||
"Discard share" : "共有をやめる",
|
||||
"Update tag" : "タグを更新する",
|
||||
"Edit tag" : "タグを編集",
|
||||
"Delete tag" : "タグを削除",
|
||||
"Create" : "作成",
|
||||
"Create a new tag" : "新しいタグを作成",
|
||||
"Deleted stacks" : "削除済みのスタック",
|
||||
"Deleted cards" : "削除済みのカード",
|
||||
"Status" : "ステータス",
|
||||
"No archived boards to display" : "表示するアーカイブボードはありません",
|
||||
"No shared boards to display" : "表示する共有ボードがありません",
|
||||
"Title" : "タイトル",
|
||||
"Members" : "メンバー",
|
||||
"More actions" : "その他のアクション",
|
||||
"Edit board" : "ボードを編集",
|
||||
"Archive board" : "ボードをアーカイブ",
|
||||
"Unarchive board" : "ボードのアーカイブを解除",
|
||||
"Delete board" : "ボードを削除",
|
||||
"Update board" : "ボードを更新する",
|
||||
"Reset board" : "リセットボード",
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "ボードの削除を取り消す - それ以外の場合は、次のcronジョブの実行中にボードが削除されます。",
|
||||
"Create new board" : "新しいボードを作成",
|
||||
"New board title" : "新しいボードのタイトル",
|
||||
"Create board" : "ボードを作成",
|
||||
"Select an attachment" : "添付ファイルを選択",
|
||||
"Cancel upload" : "アップロードをキャンセル",
|
||||
"by" : "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" : "説明にファイルを挿入する",
|
||||
"Delete attachment" : "添付ファイルを削除する",
|
||||
"Modified:" : "更新:",
|
||||
"Created:" : "作成:",
|
||||
"Choose a tag" : "タグを選択",
|
||||
"Add a tag" : "タグを追加",
|
||||
"Select tags" : "タグを選択..",
|
||||
"Assign users" : "ユーザーを割り当てる",
|
||||
"Choose a user to assign" : "割り当てるユーザを選択する",
|
||||
"Assign this card to a user" : "このカードをユーザーに割り当てる",
|
||||
"Due date" : "期限",
|
||||
"Click to set" : "クリックして設定する",
|
||||
"Remove due date" : "期限を削除",
|
||||
"Description" : "説明",
|
||||
"Attachments" : "添付ファイル",
|
||||
"Saved" : "保存しました",
|
||||
"Unsaved changes" : "保存していない変更点",
|
||||
"Insert attachment" : "添付ファイルを挿入する",
|
||||
"Formatting help" : "ヘルプの書式設定",
|
||||
"Upload attachment" : "添付ファイルをアップロードする",
|
||||
"Add a card description…" : "カードの説明を追加...",
|
||||
"Shared boards" : "共有ボード",
|
||||
"Move board to archive" : "ボードをアーカイブに移動する",
|
||||
"Create a new board" : "新しいボードを作成"
|
||||
},"pluralForm" :"nplurals=1; plural=0;"
|
||||
}
|
||||
@@ -16,12 +16,8 @@ OC.L10N.register(
|
||||
"Submit" : "გაგზავნა",
|
||||
"Show archived cards" : "არქივირებული ბარათების ჩვენება",
|
||||
"Hide archived cards" : "არქივირებული ბარათების დამალვა",
|
||||
"Board details" : "დაფის დეტალები",
|
||||
"All Boards" : "ყველა დაფა",
|
||||
"Archived boards" : "არქივირებული დაფები",
|
||||
"Archive" : "არქივირება",
|
||||
"Unarchive" : "ამოღება",
|
||||
"Delete" : "გაუქმება",
|
||||
"Enter a card title" : "შეიყვანეთ ბარათის სახელწოდება",
|
||||
"Add card" : "ბარათის დამატება",
|
||||
"Close" : "დახურვა",
|
||||
@@ -31,11 +27,10 @@ OC.L10N.register(
|
||||
"Access for" : "წვდომა ობიექტისთვის",
|
||||
"No matching user or group found." : "მომხმარებლები ან ჯგუფები ვერ იქნა ნაპოვნი.",
|
||||
"Loading" : "იტვირთება",
|
||||
"Share" : "გაზიარება",
|
||||
"Edit" : "შეცვლა",
|
||||
"Share" : "გაზიარება",
|
||||
"Manage" : "მენეჯმენტი",
|
||||
"Discard share" : "გაზიარების უარყოფა",
|
||||
"Update" : "განახლება",
|
||||
"Create" : "შექმნა",
|
||||
"Create a new tag" : "ახალი ტეგის შექმნა",
|
||||
"Status" : "სტატუსი",
|
||||
@@ -46,7 +41,6 @@ OC.L10N.register(
|
||||
"Archive board" : "დაფის არქივირება",
|
||||
"Unarchive board" : "დაფის ამოღება",
|
||||
"Delete board" : "დაფის გაუქმება",
|
||||
"Reset" : "საწყის მდოგმარეობაში დაბრუნება",
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "დაფის გაუქმების უკუგდება - სხვა შემთხვევაში დაფა შემდეგი conjob-ის გაშვებისას წაიშლება.",
|
||||
"Create new board" : "ახალი დაფის შექმნა",
|
||||
"New board title" : "ახალი დაფის სახელი",
|
||||
@@ -68,7 +62,6 @@ OC.L10N.register(
|
||||
"Formatting help" : "დახმარება ფორმატირებაზე",
|
||||
"Add a card description…" : "დაამატეთ ბარათის აღწერილობა...",
|
||||
"Shared boards" : "გაზიარებული დაფები",
|
||||
"View more" : "მეტის ჩვენება",
|
||||
"Move board to archive" : "დაფის არქვიში გადატანა",
|
||||
"Create a new board" : "ახალი დაფის შექმნა"
|
||||
},
|
||||
|
||||
@@ -14,12 +14,8 @@
|
||||
"Submit" : "გაგზავნა",
|
||||
"Show archived cards" : "არქივირებული ბარათების ჩვენება",
|
||||
"Hide archived cards" : "არქივირებული ბარათების დამალვა",
|
||||
"Board details" : "დაფის დეტალები",
|
||||
"All Boards" : "ყველა დაფა",
|
||||
"Archived boards" : "არქივირებული დაფები",
|
||||
"Archive" : "არქივირება",
|
||||
"Unarchive" : "ამოღება",
|
||||
"Delete" : "გაუქმება",
|
||||
"Enter a card title" : "შეიყვანეთ ბარათის სახელწოდება",
|
||||
"Add card" : "ბარათის დამატება",
|
||||
"Close" : "დახურვა",
|
||||
@@ -29,11 +25,10 @@
|
||||
"Access for" : "წვდომა ობიექტისთვის",
|
||||
"No matching user or group found." : "მომხმარებლები ან ჯგუფები ვერ იქნა ნაპოვნი.",
|
||||
"Loading" : "იტვირთება",
|
||||
"Share" : "გაზიარება",
|
||||
"Edit" : "შეცვლა",
|
||||
"Share" : "გაზიარება",
|
||||
"Manage" : "მენეჯმენტი",
|
||||
"Discard share" : "გაზიარების უარყოფა",
|
||||
"Update" : "განახლება",
|
||||
"Create" : "შექმნა",
|
||||
"Create a new tag" : "ახალი ტეგის შექმნა",
|
||||
"Status" : "სტატუსი",
|
||||
@@ -44,7 +39,6 @@
|
||||
"Archive board" : "დაფის არქივირება",
|
||||
"Unarchive board" : "დაფის ამოღება",
|
||||
"Delete board" : "დაფის გაუქმება",
|
||||
"Reset" : "საწყის მდოგმარეობაში დაბრუნება",
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "დაფის გაუქმების უკუგდება - სხვა შემთხვევაში დაფა შემდეგი conjob-ის გაშვებისას წაიშლება.",
|
||||
"Create new board" : "ახალი დაფის შექმნა",
|
||||
"New board title" : "ახალი დაფის სახელი",
|
||||
@@ -66,7 +60,6 @@
|
||||
"Formatting help" : "დახმარება ფორმატირებაზე",
|
||||
"Add a card description…" : "დაამატეთ ბარათის აღწერილობა...",
|
||||
"Shared boards" : "გაზიარებული დაფები",
|
||||
"View more" : "მეტის ჩვენება",
|
||||
"Move board to archive" : "დაფის არქვიში გადატანა",
|
||||
"Create a new board" : "ახალი დაფის შექმნა"
|
||||
},"pluralForm" :"nplurals=2; plural=(n!=1);"
|
||||
|
||||
@@ -16,12 +16,8 @@ OC.L10N.register(
|
||||
"Submit" : "제출",
|
||||
"Show archived cards" : "보관된 카드 보기",
|
||||
"Hide archived cards" : "보관된 카드 숨기기",
|
||||
"Board details" : "게시판 정보",
|
||||
"All Boards" : "모든 게시판",
|
||||
"Archived boards" : "보관된 게시판",
|
||||
"Archive" : "보관",
|
||||
"Unarchive" : "보관 해제",
|
||||
"Delete" : "삭제",
|
||||
"Enter a card title" : "카드 제목 입력",
|
||||
"Add card" : "카드 추가",
|
||||
"Close" : "닫기",
|
||||
@@ -31,11 +27,10 @@ OC.L10N.register(
|
||||
"Access for" : "접근 권한",
|
||||
"No matching user or group found." : "일치하는 사용자나 그룹이 없습니다.",
|
||||
"Loading" : "불러오는 중",
|
||||
"Share" : "공유",
|
||||
"Edit" : "편집",
|
||||
"Share" : "공유",
|
||||
"Manage" : "관리",
|
||||
"Discard share" : "공유 무시",
|
||||
"Update" : "업데이트",
|
||||
"Create" : "만들기",
|
||||
"Create a new tag" : "새 태그 만들기",
|
||||
"Status" : "상태",
|
||||
@@ -46,7 +41,6 @@ OC.L10N.register(
|
||||
"Archive board" : "게시판 보관",
|
||||
"Unarchive board" : "게시판 보관 해제",
|
||||
"Delete board" : "게시판 삭제",
|
||||
"Reset" : "초기화",
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "게시판 삭제 실행 취소 - 작업을 계속 진행하면 다음 cron 작업 실행 시 게시판을 삭제합니다.",
|
||||
"Create new board" : "새 게시판 만들기",
|
||||
"New board title" : "새 게시판 제목",
|
||||
@@ -68,7 +62,6 @@ OC.L10N.register(
|
||||
"Formatting help" : "서식 도움말",
|
||||
"Add a card description…" : "카드 설명 추가…",
|
||||
"Shared boards" : "공유된 게시판",
|
||||
"View more" : "더 보기",
|
||||
"Move board to archive" : "게시판을 보관 항목으로 이동",
|
||||
"Create a new board" : "새 게시판 만들기"
|
||||
},
|
||||
|
||||
@@ -14,12 +14,8 @@
|
||||
"Submit" : "제출",
|
||||
"Show archived cards" : "보관된 카드 보기",
|
||||
"Hide archived cards" : "보관된 카드 숨기기",
|
||||
"Board details" : "게시판 정보",
|
||||
"All Boards" : "모든 게시판",
|
||||
"Archived boards" : "보관된 게시판",
|
||||
"Archive" : "보관",
|
||||
"Unarchive" : "보관 해제",
|
||||
"Delete" : "삭제",
|
||||
"Enter a card title" : "카드 제목 입력",
|
||||
"Add card" : "카드 추가",
|
||||
"Close" : "닫기",
|
||||
@@ -29,11 +25,10 @@
|
||||
"Access for" : "접근 권한",
|
||||
"No matching user or group found." : "일치하는 사용자나 그룹이 없습니다.",
|
||||
"Loading" : "불러오는 중",
|
||||
"Share" : "공유",
|
||||
"Edit" : "편집",
|
||||
"Share" : "공유",
|
||||
"Manage" : "관리",
|
||||
"Discard share" : "공유 무시",
|
||||
"Update" : "업데이트",
|
||||
"Create" : "만들기",
|
||||
"Create a new tag" : "새 태그 만들기",
|
||||
"Status" : "상태",
|
||||
@@ -44,7 +39,6 @@
|
||||
"Archive board" : "게시판 보관",
|
||||
"Unarchive board" : "게시판 보관 해제",
|
||||
"Delete board" : "게시판 삭제",
|
||||
"Reset" : "초기화",
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "게시판 삭제 실행 취소 - 작업을 계속 진행하면 다음 cron 작업 실행 시 게시판을 삭제합니다.",
|
||||
"Create new board" : "새 게시판 만들기",
|
||||
"New board title" : "새 게시판 제목",
|
||||
@@ -66,7 +60,6 @@
|
||||
"Formatting help" : "서식 도움말",
|
||||
"Add a card description…" : "카드 설명 추가…",
|
||||
"Shared boards" : "공유된 게시판",
|
||||
"View more" : "더 보기",
|
||||
"Move board to archive" : "게시판을 보관 항목으로 이동",
|
||||
"Create a new board" : "새 게시판 만들기"
|
||||
},"pluralForm" :"nplurals=1; plural=0;"
|
||||
|
||||
@@ -24,26 +24,23 @@ OC.L10N.register(
|
||||
"Submit" : "Pateikti",
|
||||
"Show archived cards" : "Rodyti archyvuotus elementus",
|
||||
"Hide archived cards" : "Paslėpti archyvuotus elementus",
|
||||
"Board details" : "Detalesnė informacija",
|
||||
"All Boards" : "Visi užduočių sąrašai",
|
||||
"Archived boards" : "Archyvuoti sąrašai",
|
||||
"Actions" : "Veiksmai",
|
||||
"Drop your files here to upload it to the card" : "Vilkite savo failus čia, norėdami įkelti juos į kortelę",
|
||||
"Archive" : "Archyvuoti",
|
||||
"Unarchive" : "Išskleisti",
|
||||
"Delete" : "Ištrinti",
|
||||
"Enter a card title" : "Įveskite kortelės vardą",
|
||||
"Add card" : "Pridėti kortelę",
|
||||
"Close" : "Užverti",
|
||||
"Sharing" : "Bendrinimas",
|
||||
"Tags" : "Žymės",
|
||||
"Deleted items" : "Ištrinti elementai",
|
||||
"Select users or groups to share with" : "Pasirinkti naudotojus ar naudotojų grupes bendrinimui",
|
||||
"No matching user or group found." : "Nerasta vartotojų ir grupių",
|
||||
"Loading" : "Įkeliama",
|
||||
"Share" : "Dalintis",
|
||||
"Edit" : "Taisyti",
|
||||
"Share" : "Dalintis",
|
||||
"Manage" : "Redaguoti",
|
||||
"Discard share" : "Atšaukti dalinimąsi",
|
||||
"Update" : "Atnaujinti",
|
||||
"Create" : "Sukurti",
|
||||
"Create a new tag" : "Sukurti naują žymę",
|
||||
"Status" : "Būsena",
|
||||
@@ -54,7 +51,6 @@ OC.L10N.register(
|
||||
"Archive board" : "Archyvuoti sąrašą",
|
||||
"Unarchive board" : "Išskleisti sąrašą",
|
||||
"Delete board" : "Pašalinti sąrašą",
|
||||
"Reset" : "Atstatyti",
|
||||
"Create new board" : "Sukurti naują sąrašą",
|
||||
"New board title" : "Naujas sąrašo vardas",
|
||||
"Cancel upload" : "Atsisakyti įkėlimo",
|
||||
@@ -73,12 +69,11 @@ OC.L10N.register(
|
||||
"Attachments" : "Priedai",
|
||||
"Saved" : "Įrašyta",
|
||||
"Unsaved changes" : "Neįrašyti pakeitimai",
|
||||
"Insert attachment" : "Įterpti priedą",
|
||||
"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",
|
||||
"Move board to archive" : "Perkelti sąrašą į archyvą",
|
||||
"Create a new board" : "Sukurti naują sąrašą"
|
||||
},
|
||||
|
||||
@@ -22,26 +22,23 @@
|
||||
"Submit" : "Pateikti",
|
||||
"Show archived cards" : "Rodyti archyvuotus elementus",
|
||||
"Hide archived cards" : "Paslėpti archyvuotus elementus",
|
||||
"Board details" : "Detalesnė informacija",
|
||||
"All Boards" : "Visi užduočių sąrašai",
|
||||
"Archived boards" : "Archyvuoti sąrašai",
|
||||
"Actions" : "Veiksmai",
|
||||
"Drop your files here to upload it to the card" : "Vilkite savo failus čia, norėdami įkelti juos į kortelę",
|
||||
"Archive" : "Archyvuoti",
|
||||
"Unarchive" : "Išskleisti",
|
||||
"Delete" : "Ištrinti",
|
||||
"Enter a card title" : "Įveskite kortelės vardą",
|
||||
"Add card" : "Pridėti kortelę",
|
||||
"Close" : "Užverti",
|
||||
"Sharing" : "Bendrinimas",
|
||||
"Tags" : "Žymės",
|
||||
"Deleted items" : "Ištrinti elementai",
|
||||
"Select users or groups to share with" : "Pasirinkti naudotojus ar naudotojų grupes bendrinimui",
|
||||
"No matching user or group found." : "Nerasta vartotojų ir grupių",
|
||||
"Loading" : "Įkeliama",
|
||||
"Share" : "Dalintis",
|
||||
"Edit" : "Taisyti",
|
||||
"Share" : "Dalintis",
|
||||
"Manage" : "Redaguoti",
|
||||
"Discard share" : "Atšaukti dalinimąsi",
|
||||
"Update" : "Atnaujinti",
|
||||
"Create" : "Sukurti",
|
||||
"Create a new tag" : "Sukurti naują žymę",
|
||||
"Status" : "Būsena",
|
||||
@@ -52,7 +49,6 @@
|
||||
"Archive board" : "Archyvuoti sąrašą",
|
||||
"Unarchive board" : "Išskleisti sąrašą",
|
||||
"Delete board" : "Pašalinti sąrašą",
|
||||
"Reset" : "Atstatyti",
|
||||
"Create new board" : "Sukurti naują sąrašą",
|
||||
"New board title" : "Naujas sąrašo vardas",
|
||||
"Cancel upload" : "Atsisakyti įkėlimo",
|
||||
@@ -71,12 +67,11 @@
|
||||
"Attachments" : "Priedai",
|
||||
"Saved" : "Įrašyta",
|
||||
"Unsaved changes" : "Neįrašyti pakeitimai",
|
||||
"Insert attachment" : "Įterpti priedą",
|
||||
"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",
|
||||
"Move board to archive" : "Perkelti sąrašą į archyvą",
|
||||
"Create a new board" : "Sukurti naują sąrašą"
|
||||
},"pluralForm" :"nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);"
|
||||
|
||||
@@ -17,12 +17,8 @@ OC.L10N.register(
|
||||
"Submit" : "Send inn",
|
||||
"Show archived cards" : "Vis arkiverkte kort",
|
||||
"Hide archived cards" : "Skjul arkiverte kort",
|
||||
"Board details" : "Forumseksjonsdetaljer",
|
||||
"All Boards" : "Alle bord",
|
||||
"Archived boards" : "Akriverte bord",
|
||||
"Archive" : "Arkiv",
|
||||
"Unarchive" : "Dearkivere",
|
||||
"Delete" : "Slett",
|
||||
"Enter a card title" : "Skriv inn en kort tittel",
|
||||
"Add card" : "Legg til kort",
|
||||
"Close" : "Lukk",
|
||||
@@ -32,11 +28,10 @@ OC.L10N.register(
|
||||
"Access for" : "Tilgang for",
|
||||
"No matching user or group found." : "Ingen treff på bruker eller gruppe.",
|
||||
"Loading" : "Laster",
|
||||
"Share" : "Del",
|
||||
"Edit" : "Rediger",
|
||||
"Share" : "Del",
|
||||
"Manage" : "Håndtere",
|
||||
"Discard share" : "Fjern deling",
|
||||
"Update" : "Oppdater",
|
||||
"Create" : "Opprett her",
|
||||
"Create a new tag" : "Lag en ny merkelapp",
|
||||
"Status" : "Status",
|
||||
@@ -47,7 +42,6 @@ OC.L10N.register(
|
||||
"Archive board" : "Arkiver bord",
|
||||
"Unarchive board" : "Avarkiver bord",
|
||||
"Delete board" : "Slett bord",
|
||||
"Reset" : "Tilbakestill",
|
||||
"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",
|
||||
@@ -69,7 +63,6 @@ OC.L10N.register(
|
||||
"Formatting help" : "Formateringshjelp",
|
||||
"Add a card description…" : "Legg til en kortbeskrivelse…",
|
||||
"Shared boards" : "Delte bord",
|
||||
"View more" : "Vis mer",
|
||||
"Move board to archive" : "Flytt bord til arkiv",
|
||||
"Create a new board" : "Opprett et nytt bord"
|
||||
},
|
||||
|
||||
@@ -15,12 +15,8 @@
|
||||
"Submit" : "Send inn",
|
||||
"Show archived cards" : "Vis arkiverkte kort",
|
||||
"Hide archived cards" : "Skjul arkiverte kort",
|
||||
"Board details" : "Forumseksjonsdetaljer",
|
||||
"All Boards" : "Alle bord",
|
||||
"Archived boards" : "Akriverte bord",
|
||||
"Archive" : "Arkiv",
|
||||
"Unarchive" : "Dearkivere",
|
||||
"Delete" : "Slett",
|
||||
"Enter a card title" : "Skriv inn en kort tittel",
|
||||
"Add card" : "Legg til kort",
|
||||
"Close" : "Lukk",
|
||||
@@ -30,11 +26,10 @@
|
||||
"Access for" : "Tilgang for",
|
||||
"No matching user or group found." : "Ingen treff på bruker eller gruppe.",
|
||||
"Loading" : "Laster",
|
||||
"Share" : "Del",
|
||||
"Edit" : "Rediger",
|
||||
"Share" : "Del",
|
||||
"Manage" : "Håndtere",
|
||||
"Discard share" : "Fjern deling",
|
||||
"Update" : "Oppdater",
|
||||
"Create" : "Opprett her",
|
||||
"Create a new tag" : "Lag en ny merkelapp",
|
||||
"Status" : "Status",
|
||||
@@ -45,7 +40,6 @@
|
||||
"Archive board" : "Arkiver bord",
|
||||
"Unarchive board" : "Avarkiver bord",
|
||||
"Delete board" : "Slett bord",
|
||||
"Reset" : "Tilbakestill",
|
||||
"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",
|
||||
@@ -67,7 +61,6 @@
|
||||
"Formatting help" : "Formateringshjelp",
|
||||
"Add a card description…" : "Legg til en kortbeskrivelse…",
|
||||
"Shared boards" : "Delte bord",
|
||||
"View more" : "Vis mer",
|
||||
"Move board to archive" : "Flytt bord til arkiv",
|
||||
"Create a new board" : "Opprett et nytt bord"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
|
||||
28
l10n/nl.js
28
l10n/nl.js
@@ -108,17 +108,17 @@ OC.L10N.register(
|
||||
"Show archived cards" : "Gearchiveerde kaarten weergeven",
|
||||
"Hide archived cards" : "Gearchiveerde kaarten verbergen",
|
||||
"Toggle compact mode" : "Omschakelen compacte modus",
|
||||
"Board details" : "Bord details",
|
||||
"Show board details" : "Toon bord details",
|
||||
"All Boards" : "Alle borden",
|
||||
"Archived boards" : "Gearchiveerde borden",
|
||||
"Share board" : "Bord delen",
|
||||
"Drop your files here to upload it to the card" : "Sleep je bestanden hierheen om naar de kaart te uploaden",
|
||||
"Actions" : "Acties",
|
||||
"Assign to me" : "Aan mij toewijzen",
|
||||
"Unassign from me" : "Van mij terughalen",
|
||||
"Archive" : "Archiveer",
|
||||
"Unarchive" : "Terugzetten uit archief",
|
||||
"Delete" : "Verwijderen",
|
||||
"Drop your files here to upload it to the card" : "Sleep je bestanden hierheen om naar de kaart te uploaden",
|
||||
"Assign card to me" : "Wijs kaart toe aan mij",
|
||||
"Unassign card from me" : "Kaart van mij terughalen",
|
||||
"Archive card" : "Archiveer kaart",
|
||||
"Unarchive card" : "Terughalen kaart uit archief",
|
||||
"Delete card" : "Verwijderen kaart",
|
||||
"Enter a card title" : "Kaart titel toevoegen",
|
||||
"Add card" : "Toevoegen kaart",
|
||||
"Close" : "Sluiten",
|
||||
@@ -130,11 +130,13 @@ OC.L10N.register(
|
||||
"Access for" : "Toegang voor",
|
||||
"No matching user or group found." : "Geen passende gebruiker of groep gevonden",
|
||||
"Loading" : "Laden",
|
||||
"Share" : "Delen",
|
||||
"Edit" : "Bewerken",
|
||||
"Share" : "Delen",
|
||||
"Manage" : "Beheren",
|
||||
"Discard share" : "Delen uitzetten",
|
||||
"Update" : "Bijwerken",
|
||||
"Update tag" : "Bijwerken tag",
|
||||
"Edit tag" : "Bewerken tag",
|
||||
"Delete tag" : "Verwijderen tag",
|
||||
"Create" : "Aanmaken",
|
||||
"Create a new tag" : "Nieuw label maken",
|
||||
"Deleted stacks" : "Verwijderde stapels",
|
||||
@@ -149,16 +151,19 @@ OC.L10N.register(
|
||||
"Archive board" : "Archiveer bord",
|
||||
"Unarchive board" : "De-archiveer bord",
|
||||
"Delete board" : "Verwijder bord",
|
||||
"Reset" : "Herstellen",
|
||||
"Update board" : "Update bord",
|
||||
"Reset board" : "Reset bord",
|
||||
"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",
|
||||
"Create board" : "Creëren bord",
|
||||
"Select an attachment" : "Selecteer een bijlage",
|
||||
"Cancel upload" : "Upload annuleren",
|
||||
"by" : "door",
|
||||
"Undo file deletion - Otherwise the file will be deleted during the next cronjob run." : "Bestandsverwijdering ongedaan maken - Anders zal het bestand worden verwijderd tijdens de volgende cronjob run.",
|
||||
"Undo file deletion" : "Bestandsverwijdering ongedaan maken",
|
||||
"Insert the file into the description" : "Voeg het bestand toe aan de beschrijving",
|
||||
"Delete attachment" : "Verwijderen bijlage",
|
||||
"Modified:" : "Bewerkt:",
|
||||
"Created:" : "Gemaakt:",
|
||||
"Choose a tag" : "Kies een tag",
|
||||
@@ -174,12 +179,11 @@ OC.L10N.register(
|
||||
"Attachments" : "Bijlagen",
|
||||
"Saved" : "Opgeslagen",
|
||||
"Unsaved changes" : "Niet bewaarde wijzigingen",
|
||||
"Insert attachment" : "Toevoegen bijlage",
|
||||
"Formatting help" : "Formatteringshulp",
|
||||
"Upload attachment" : "Uploaden bijlage",
|
||||
"Insert attachment" : "Toevoegen bijlage",
|
||||
"Add a card description…" : "Voeg een kaartbeschrijving toe...",
|
||||
"Shared boards" : "Gedeelde borden",
|
||||
"View more" : "Bekijk meer",
|
||||
"Move board to archive" : "Verplaats bord naar archief",
|
||||
"Create a new board" : "Een nieuw bord maken"
|
||||
},
|
||||
|
||||
28
l10n/nl.json
28
l10n/nl.json
@@ -106,17 +106,17 @@
|
||||
"Show archived cards" : "Gearchiveerde kaarten weergeven",
|
||||
"Hide archived cards" : "Gearchiveerde kaarten verbergen",
|
||||
"Toggle compact mode" : "Omschakelen compacte modus",
|
||||
"Board details" : "Bord details",
|
||||
"Show board details" : "Toon bord details",
|
||||
"All Boards" : "Alle borden",
|
||||
"Archived boards" : "Gearchiveerde borden",
|
||||
"Share board" : "Bord delen",
|
||||
"Drop your files here to upload it to the card" : "Sleep je bestanden hierheen om naar de kaart te uploaden",
|
||||
"Actions" : "Acties",
|
||||
"Assign to me" : "Aan mij toewijzen",
|
||||
"Unassign from me" : "Van mij terughalen",
|
||||
"Archive" : "Archiveer",
|
||||
"Unarchive" : "Terugzetten uit archief",
|
||||
"Delete" : "Verwijderen",
|
||||
"Drop your files here to upload it to the card" : "Sleep je bestanden hierheen om naar de kaart te uploaden",
|
||||
"Assign card to me" : "Wijs kaart toe aan mij",
|
||||
"Unassign card from me" : "Kaart van mij terughalen",
|
||||
"Archive card" : "Archiveer kaart",
|
||||
"Unarchive card" : "Terughalen kaart uit archief",
|
||||
"Delete card" : "Verwijderen kaart",
|
||||
"Enter a card title" : "Kaart titel toevoegen",
|
||||
"Add card" : "Toevoegen kaart",
|
||||
"Close" : "Sluiten",
|
||||
@@ -128,11 +128,13 @@
|
||||
"Access for" : "Toegang voor",
|
||||
"No matching user or group found." : "Geen passende gebruiker of groep gevonden",
|
||||
"Loading" : "Laden",
|
||||
"Share" : "Delen",
|
||||
"Edit" : "Bewerken",
|
||||
"Share" : "Delen",
|
||||
"Manage" : "Beheren",
|
||||
"Discard share" : "Delen uitzetten",
|
||||
"Update" : "Bijwerken",
|
||||
"Update tag" : "Bijwerken tag",
|
||||
"Edit tag" : "Bewerken tag",
|
||||
"Delete tag" : "Verwijderen tag",
|
||||
"Create" : "Aanmaken",
|
||||
"Create a new tag" : "Nieuw label maken",
|
||||
"Deleted stacks" : "Verwijderde stapels",
|
||||
@@ -147,16 +149,19 @@
|
||||
"Archive board" : "Archiveer bord",
|
||||
"Unarchive board" : "De-archiveer bord",
|
||||
"Delete board" : "Verwijder bord",
|
||||
"Reset" : "Herstellen",
|
||||
"Update board" : "Update bord",
|
||||
"Reset board" : "Reset bord",
|
||||
"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",
|
||||
"Create board" : "Creëren bord",
|
||||
"Select an attachment" : "Selecteer een bijlage",
|
||||
"Cancel upload" : "Upload annuleren",
|
||||
"by" : "door",
|
||||
"Undo file deletion - Otherwise the file will be deleted during the next cronjob run." : "Bestandsverwijdering ongedaan maken - Anders zal het bestand worden verwijderd tijdens de volgende cronjob run.",
|
||||
"Undo file deletion" : "Bestandsverwijdering ongedaan maken",
|
||||
"Insert the file into the description" : "Voeg het bestand toe aan de beschrijving",
|
||||
"Delete attachment" : "Verwijderen bijlage",
|
||||
"Modified:" : "Bewerkt:",
|
||||
"Created:" : "Gemaakt:",
|
||||
"Choose a tag" : "Kies een tag",
|
||||
@@ -172,12 +177,11 @@
|
||||
"Attachments" : "Bijlagen",
|
||||
"Saved" : "Opgeslagen",
|
||||
"Unsaved changes" : "Niet bewaarde wijzigingen",
|
||||
"Insert attachment" : "Toevoegen bijlage",
|
||||
"Formatting help" : "Formatteringshulp",
|
||||
"Upload attachment" : "Uploaden bijlage",
|
||||
"Insert attachment" : "Toevoegen bijlage",
|
||||
"Add a card description…" : "Voeg een kaartbeschrijving toe...",
|
||||
"Shared boards" : "Gedeelde borden",
|
||||
"View more" : "Bekijk meer",
|
||||
"Move board to archive" : "Verplaats bord naar archief",
|
||||
"Create a new board" : "Een nieuw bord maken"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
|
||||
15
l10n/pl.js
15
l10n/pl.js
@@ -100,17 +100,11 @@ OC.L10N.register(
|
||||
"Show archived cards" : "Pokaż zarchiwizowane karty",
|
||||
"Hide archived cards" : "Ukryj zarchiwizowane karty",
|
||||
"Toggle compact mode" : "Przełącz w tryb kompaktowy",
|
||||
"Board details" : "Szczegóły tablicy",
|
||||
"All Boards" : "Tablice",
|
||||
"Archived boards" : "Zarchiwizowane tablice",
|
||||
"Share board" : "Udostępnij tablicę",
|
||||
"Drop your files here to upload it to the card" : "Upuść pliki tutaj aby wysłać je na kartę",
|
||||
"Actions" : "Akcje",
|
||||
"Assign to me" : "Przydziel do mnie",
|
||||
"Unassign from me" : "Cofnij przypisanie ode mnie",
|
||||
"Archive" : "Archiwizuj",
|
||||
"Unarchive" : "Nie archiwizuj",
|
||||
"Delete" : "Usuń",
|
||||
"Drop your files here to upload it to the card" : "Upuść pliki tutaj aby wysłać je na kartę",
|
||||
"Enter a card title" : "Wprowadź tytuł karty",
|
||||
"Add card" : "Dodaj kartę",
|
||||
"Close" : "Zamknij",
|
||||
@@ -120,11 +114,10 @@ OC.L10N.register(
|
||||
"Access for" : "Dostęp dla",
|
||||
"No matching user or group found." : "Nie znaleziono pasujących użytkowników lub grup",
|
||||
"Loading" : "Ładowanie",
|
||||
"Share" : "Współdziel",
|
||||
"Edit" : "Edycja",
|
||||
"Share" : "Współdziel",
|
||||
"Manage" : "Zarządzanie",
|
||||
"Discard share" : "Usuń współdzielenie",
|
||||
"Update" : "Aktualizuj",
|
||||
"Create" : "Utwórz",
|
||||
"Create a new tag" : "Utwórz nowy tag",
|
||||
"Status" : "Status",
|
||||
@@ -137,7 +130,6 @@ OC.L10N.register(
|
||||
"Archive board" : "Zarchiwizuj tablicę",
|
||||
"Unarchive board" : "Przywróć tablicę",
|
||||
"Delete board" : "Usuń tablicę",
|
||||
"Reset" : "Resetuj",
|
||||
"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",
|
||||
@@ -162,12 +154,11 @@ OC.L10N.register(
|
||||
"Attachments" : "Załączniki",
|
||||
"Saved" : "Zapisano",
|
||||
"Unsaved changes" : "Niezapisane zmiany",
|
||||
"Insert attachment" : "Wstaw załącznik",
|
||||
"Formatting help" : "Pomoc przy formatowaniu",
|
||||
"Upload attachment" : "Wyślij załącznik",
|
||||
"Insert attachment" : "Wstaw załącznik",
|
||||
"Add a card description…" : "Dodaj opis karty",
|
||||
"Shared boards" : "Tablice współdzielone",
|
||||
"View more" : "Zobacz więcej",
|
||||
"Move board to archive" : "Przesuń tablicę do archiwum",
|
||||
"Create a new board" : "Utwórz nową tablicę"
|
||||
},
|
||||
|
||||
15
l10n/pl.json
15
l10n/pl.json
@@ -98,17 +98,11 @@
|
||||
"Show archived cards" : "Pokaż zarchiwizowane karty",
|
||||
"Hide archived cards" : "Ukryj zarchiwizowane karty",
|
||||
"Toggle compact mode" : "Przełącz w tryb kompaktowy",
|
||||
"Board details" : "Szczegóły tablicy",
|
||||
"All Boards" : "Tablice",
|
||||
"Archived boards" : "Zarchiwizowane tablice",
|
||||
"Share board" : "Udostępnij tablicę",
|
||||
"Drop your files here to upload it to the card" : "Upuść pliki tutaj aby wysłać je na kartę",
|
||||
"Actions" : "Akcje",
|
||||
"Assign to me" : "Przydziel do mnie",
|
||||
"Unassign from me" : "Cofnij przypisanie ode mnie",
|
||||
"Archive" : "Archiwizuj",
|
||||
"Unarchive" : "Nie archiwizuj",
|
||||
"Delete" : "Usuń",
|
||||
"Drop your files here to upload it to the card" : "Upuść pliki tutaj aby wysłać je na kartę",
|
||||
"Enter a card title" : "Wprowadź tytuł karty",
|
||||
"Add card" : "Dodaj kartę",
|
||||
"Close" : "Zamknij",
|
||||
@@ -118,11 +112,10 @@
|
||||
"Access for" : "Dostęp dla",
|
||||
"No matching user or group found." : "Nie znaleziono pasujących użytkowników lub grup",
|
||||
"Loading" : "Ładowanie",
|
||||
"Share" : "Współdziel",
|
||||
"Edit" : "Edycja",
|
||||
"Share" : "Współdziel",
|
||||
"Manage" : "Zarządzanie",
|
||||
"Discard share" : "Usuń współdzielenie",
|
||||
"Update" : "Aktualizuj",
|
||||
"Create" : "Utwórz",
|
||||
"Create a new tag" : "Utwórz nowy tag",
|
||||
"Status" : "Status",
|
||||
@@ -135,7 +128,6 @@
|
||||
"Archive board" : "Zarchiwizuj tablicę",
|
||||
"Unarchive board" : "Przywróć tablicę",
|
||||
"Delete board" : "Usuń tablicę",
|
||||
"Reset" : "Resetuj",
|
||||
"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",
|
||||
@@ -160,12 +152,11 @@
|
||||
"Attachments" : "Załączniki",
|
||||
"Saved" : "Zapisano",
|
||||
"Unsaved changes" : "Niezapisane zmiany",
|
||||
"Insert attachment" : "Wstaw załącznik",
|
||||
"Formatting help" : "Pomoc przy formatowaniu",
|
||||
"Upload attachment" : "Wyślij załącznik",
|
||||
"Insert attachment" : "Wstaw załącznik",
|
||||
"Add a card description…" : "Dodaj opis karty",
|
||||
"Shared boards" : "Tablice współdzielone",
|
||||
"View more" : "Zobacz więcej",
|
||||
"Move board to archive" : "Przesuń tablicę do archiwum",
|
||||
"Create a new board" : "Utwórz nową tablicę"
|
||||
},"pluralForm" :"nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);"
|
||||
|
||||
@@ -10,22 +10,22 @@ OC.L10N.register(
|
||||
"Hours" : "Horas",
|
||||
"Minutes" : "Minutos",
|
||||
"Maximum file size of {size} exceeded" : "Excedeu o tamanho máximo de arquivo de {size}",
|
||||
"You have created a new board {board}" : "Você criou um novo tabuleiro {board}",
|
||||
"{user} has created a new board {board}" : "{user} criou um novo tabuleiro {board}",
|
||||
"You have deleted the board {board}" : "Você excluiu o tabuleiro {board}",
|
||||
"{user} has deleted the board {board}" : "{user} excluiu o tabuleiro {board}",
|
||||
"You have restored the board {board}" : "Você restaurou o tabuleiro {board}",
|
||||
"{user} has restored the board {board}" : "{user} restaurou o tabuleiro {board}",
|
||||
"You have shared the board {board} with {acl}" : "Você compartilhou o tabuleiro {board} com {acl}",
|
||||
"{user} has shared the board {board} with {sharee}" : "{user} compartilhou o tabuleiro {board} com {sharee}",
|
||||
"You have removed {acl} from the board {board}" : "Você excluiu {acl} do tabuleiro {board}",
|
||||
"{user} has removed {acl} from the board {board}" : "{user} excluiu {acl} do tabuleiro {board}",
|
||||
"You have renamed the board {before} to {board}" : "Você renomeou o tabuleiro {before} para {board}",
|
||||
"{user} has has renamed the board {before} to {board}" : "{user} renomeou o tabuleiro {before} para {board}",
|
||||
"You have archived the board {board}" : "Você arquivou o tabuleiro {board}",
|
||||
"{user} has archived the board {before}" : "{user} arquivou o tabuleiro {before}",
|
||||
"You have unarchived the board {board}" : "Você desarquivou o tabuleiro {board}",
|
||||
"{user} has unarchived the board {before}" : "{user} desarquivou o tabuleiro {board}",
|
||||
"You have created a new board {board}" : "Você criou um novo painel {board}",
|
||||
"{user} has created a new board {board}" : "{user} criou um novo painel {board}",
|
||||
"You have deleted the board {board}" : "Você excluiu o painel {board}",
|
||||
"{user} has deleted the board {board}" : "{user} excluiu o painel {board}",
|
||||
"You have restored the board {board}" : "Você restaurou o painel {board}",
|
||||
"{user} has restored the board {board}" : "{user} restaurou o painel {board}",
|
||||
"You have shared the board {board} with {acl}" : "Você compartilhou o painel {board} com {acl}",
|
||||
"{user} has shared the board {board} with {sharee}" : "{user} compartilhou o painel {board} com {sharee}",
|
||||
"You have removed {acl} from the board {board}" : "Você excluiu {acl} do painel {board}",
|
||||
"{user} has removed {acl} from the board {board}" : "{user} excluiu {acl} do painel {board}",
|
||||
"You have renamed the board {before} to {board}" : "Você renomeou o painel {before} para {board}",
|
||||
"{user} has has renamed the board {before} to {board}" : "{user} renomeou o painel {before} para {board}",
|
||||
"You have archived the board {board}" : "Você arquivou o painel {board}",
|
||||
"{user} has archived the board {before}" : "{user} arquivou o painel {before}",
|
||||
"You have unarchived the board {board}" : "Você desarquivou o painel {board}",
|
||||
"{user} has unarchived the board {before}" : "{user} desarquivou o painel {board}",
|
||||
"You have created a new stack {stack} on {board}" : "Você criou uma nova pilha {stack} em {board}",
|
||||
"{user} has created a new stack {stack} on {board}" : "{user} criou uma nova pilha {stack} em {board}",
|
||||
"You have renamed a new stack {before} to {stack} on {board}" : "Você renomeou a pilha {before} para {stack} em {board}",
|
||||
@@ -79,8 +79,8 @@ OC.L10N.register(
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "O cartão \"%s\" em \"%s\" atingiu sua data de vencimento.",
|
||||
"%s has mentioned you in a comment on \"%s\"." : "%s citou você num comentário em \"%s\".",
|
||||
"{user} has mentioned you in a comment on \"%s\"." : "{user} citou você num comentário em \"%s\".",
|
||||
"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ê.",
|
||||
"The board \"%s\" has been shared with you by %s." : "O painel \"%s\" foi compartilhado com você por %s.",
|
||||
"{user} has shared the board %s with you." : "{user} compartilhou o painel %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",
|
||||
@@ -108,17 +108,17 @@ OC.L10N.register(
|
||||
"Show archived cards" : "Mostrar cartões arquivados",
|
||||
"Hide archived cards" : "Ocultar cartões arquivados",
|
||||
"Toggle compact mode" : "Alternar para modo compacto",
|
||||
"Board details" : "Detalhes do painel",
|
||||
"All Boards" : "Todos os paineis",
|
||||
"Show board details" : "Mostrar detalhes do painel",
|
||||
"All Boards" : "Todos os painéis",
|
||||
"Archived boards" : "Painéis arquivados",
|
||||
"Share board" : "Compartilhar placa",
|
||||
"Drop your files here to upload it to the card" : "Solte seus arquivos aqui para enviá-los para o cartão",
|
||||
"Share board" : "Compartilhar painel",
|
||||
"Actions" : "Ações",
|
||||
"Assign to me" : "Atribuir a mim",
|
||||
"Unassign from me" : "Desatribuir de mim",
|
||||
"Archive" : "Arquivar",
|
||||
"Unarchive" : "Desarquivar",
|
||||
"Delete" : "Excluir",
|
||||
"Drop your files here to upload it to the card" : "Solte seus arquivos aqui para enviá-los para o cartão",
|
||||
"Assign card to me" : "Atribuir cartão a mim",
|
||||
"Unassign card from me" : "Desatribuir cartão a mim",
|
||||
"Archive card" : "Arquivar cartão",
|
||||
"Unarchive card" : "Desarquivar cartão",
|
||||
"Delete card" : "Excluir cartão",
|
||||
"Enter a card title" : "Digite um título de cartão",
|
||||
"Add card" : "Adicionar cartão",
|
||||
"Close" : "Fechar",
|
||||
@@ -130,18 +130,20 @@ OC.L10N.register(
|
||||
"Access for" : "Acesso para",
|
||||
"No matching user or group found." : "Usuário ou grupo não encontrado.",
|
||||
"Loading" : "Carregando",
|
||||
"Share" : "Compartilhar",
|
||||
"Edit" : "Editar",
|
||||
"Share" : "Compartilhar",
|
||||
"Manage" : "Gerenciar",
|
||||
"Discard share" : "Descartar compartilhamento",
|
||||
"Update" : "Atualizar",
|
||||
"Update tag" : "Atualizar rótulo",
|
||||
"Edit tag" : "Editar rótulo",
|
||||
"Delete tag" : "Excluir tag",
|
||||
"Create" : "Criar",
|
||||
"Create a new tag" : "Criar uma nova etiqueta",
|
||||
"Deleted stacks" : "Pilhas excluídas",
|
||||
"Deleted cards" : "Cartões excluídos",
|
||||
"Status" : "Status",
|
||||
"No archived boards to display" : "Nenhuma placa arquivada para exibir",
|
||||
"No shared boards to display" : "Nenhuma placa compartilhada para exibir",
|
||||
"No archived boards to display" : "Nenhum painel arquivado para exibir",
|
||||
"No shared boards to display" : "Nenhum painel compartilhado para exibir",
|
||||
"Title" : "Título",
|
||||
"Members" : "Membros",
|
||||
"More actions" : "Mais ações",
|
||||
@@ -149,16 +151,19 @@ OC.L10N.register(
|
||||
"Archive board" : "Arquivar painel",
|
||||
"Unarchive board" : "Desarquivar painel",
|
||||
"Delete board" : "Excluir painel",
|
||||
"Reset" : "Redefinir",
|
||||
"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.",
|
||||
"Update board" : "Atualizar painel",
|
||||
"Reset board" : "Redefinir painel",
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Desfazer a exclusão do painel - Caso contrário, o painel será excluída durante o próximo cronjob.",
|
||||
"Create new board" : "Criar novo painel",
|
||||
"New board title" : "Título do novo painel",
|
||||
"Create board" : "Criar 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",
|
||||
"Delete attachment" : "Excluir anexo",
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Criado:",
|
||||
"Choose a tag" : "Escolha um rótulo",
|
||||
@@ -174,12 +179,11 @@ OC.L10N.register(
|
||||
"Attachments" : "Anexos",
|
||||
"Saved" : "Salvo",
|
||||
"Unsaved changes" : "Alterações não salvas",
|
||||
"Insert attachment" : "Inserir anexo",
|
||||
"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",
|
||||
"Move board to archive" : "Mover painel para o arquivo",
|
||||
"Create a new board" : "Criar um novo painel"
|
||||
},
|
||||
|
||||
@@ -8,22 +8,22 @@
|
||||
"Hours" : "Horas",
|
||||
"Minutes" : "Minutos",
|
||||
"Maximum file size of {size} exceeded" : "Excedeu o tamanho máximo de arquivo de {size}",
|
||||
"You have created a new board {board}" : "Você criou um novo tabuleiro {board}",
|
||||
"{user} has created a new board {board}" : "{user} criou um novo tabuleiro {board}",
|
||||
"You have deleted the board {board}" : "Você excluiu o tabuleiro {board}",
|
||||
"{user} has deleted the board {board}" : "{user} excluiu o tabuleiro {board}",
|
||||
"You have restored the board {board}" : "Você restaurou o tabuleiro {board}",
|
||||
"{user} has restored the board {board}" : "{user} restaurou o tabuleiro {board}",
|
||||
"You have shared the board {board} with {acl}" : "Você compartilhou o tabuleiro {board} com {acl}",
|
||||
"{user} has shared the board {board} with {sharee}" : "{user} compartilhou o tabuleiro {board} com {sharee}",
|
||||
"You have removed {acl} from the board {board}" : "Você excluiu {acl} do tabuleiro {board}",
|
||||
"{user} has removed {acl} from the board {board}" : "{user} excluiu {acl} do tabuleiro {board}",
|
||||
"You have renamed the board {before} to {board}" : "Você renomeou o tabuleiro {before} para {board}",
|
||||
"{user} has has renamed the board {before} to {board}" : "{user} renomeou o tabuleiro {before} para {board}",
|
||||
"You have archived the board {board}" : "Você arquivou o tabuleiro {board}",
|
||||
"{user} has archived the board {before}" : "{user} arquivou o tabuleiro {before}",
|
||||
"You have unarchived the board {board}" : "Você desarquivou o tabuleiro {board}",
|
||||
"{user} has unarchived the board {before}" : "{user} desarquivou o tabuleiro {board}",
|
||||
"You have created a new board {board}" : "Você criou um novo painel {board}",
|
||||
"{user} has created a new board {board}" : "{user} criou um novo painel {board}",
|
||||
"You have deleted the board {board}" : "Você excluiu o painel {board}",
|
||||
"{user} has deleted the board {board}" : "{user} excluiu o painel {board}",
|
||||
"You have restored the board {board}" : "Você restaurou o painel {board}",
|
||||
"{user} has restored the board {board}" : "{user} restaurou o painel {board}",
|
||||
"You have shared the board {board} with {acl}" : "Você compartilhou o painel {board} com {acl}",
|
||||
"{user} has shared the board {board} with {sharee}" : "{user} compartilhou o painel {board} com {sharee}",
|
||||
"You have removed {acl} from the board {board}" : "Você excluiu {acl} do painel {board}",
|
||||
"{user} has removed {acl} from the board {board}" : "{user} excluiu {acl} do painel {board}",
|
||||
"You have renamed the board {before} to {board}" : "Você renomeou o painel {before} para {board}",
|
||||
"{user} has has renamed the board {before} to {board}" : "{user} renomeou o painel {before} para {board}",
|
||||
"You have archived the board {board}" : "Você arquivou o painel {board}",
|
||||
"{user} has archived the board {before}" : "{user} arquivou o painel {before}",
|
||||
"You have unarchived the board {board}" : "Você desarquivou o painel {board}",
|
||||
"{user} has unarchived the board {before}" : "{user} desarquivou o painel {board}",
|
||||
"You have created a new stack {stack} on {board}" : "Você criou uma nova pilha {stack} em {board}",
|
||||
"{user} has created a new stack {stack} on {board}" : "{user} criou uma nova pilha {stack} em {board}",
|
||||
"You have renamed a new stack {before} to {stack} on {board}" : "Você renomeou a pilha {before} para {stack} em {board}",
|
||||
@@ -77,8 +77,8 @@
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "O cartão \"%s\" em \"%s\" atingiu sua data de vencimento.",
|
||||
"%s has mentioned you in a comment on \"%s\"." : "%s citou você num comentário em \"%s\".",
|
||||
"{user} has mentioned you in a comment on \"%s\"." : "{user} citou você num comentário em \"%s\".",
|
||||
"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ê.",
|
||||
"The board \"%s\" has been shared with you by %s." : "O painel \"%s\" foi compartilhado com você por %s.",
|
||||
"{user} has shared the board %s with you." : "{user} compartilhou o painel %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",
|
||||
@@ -106,17 +106,17 @@
|
||||
"Show archived cards" : "Mostrar cartões arquivados",
|
||||
"Hide archived cards" : "Ocultar cartões arquivados",
|
||||
"Toggle compact mode" : "Alternar para modo compacto",
|
||||
"Board details" : "Detalhes do painel",
|
||||
"All Boards" : "Todos os paineis",
|
||||
"Show board details" : "Mostrar detalhes do painel",
|
||||
"All Boards" : "Todos os painéis",
|
||||
"Archived boards" : "Painéis arquivados",
|
||||
"Share board" : "Compartilhar placa",
|
||||
"Drop your files here to upload it to the card" : "Solte seus arquivos aqui para enviá-los para o cartão",
|
||||
"Share board" : "Compartilhar painel",
|
||||
"Actions" : "Ações",
|
||||
"Assign to me" : "Atribuir a mim",
|
||||
"Unassign from me" : "Desatribuir de mim",
|
||||
"Archive" : "Arquivar",
|
||||
"Unarchive" : "Desarquivar",
|
||||
"Delete" : "Excluir",
|
||||
"Drop your files here to upload it to the card" : "Solte seus arquivos aqui para enviá-los para o cartão",
|
||||
"Assign card to me" : "Atribuir cartão a mim",
|
||||
"Unassign card from me" : "Desatribuir cartão a mim",
|
||||
"Archive card" : "Arquivar cartão",
|
||||
"Unarchive card" : "Desarquivar cartão",
|
||||
"Delete card" : "Excluir cartão",
|
||||
"Enter a card title" : "Digite um título de cartão",
|
||||
"Add card" : "Adicionar cartão",
|
||||
"Close" : "Fechar",
|
||||
@@ -128,18 +128,20 @@
|
||||
"Access for" : "Acesso para",
|
||||
"No matching user or group found." : "Usuário ou grupo não encontrado.",
|
||||
"Loading" : "Carregando",
|
||||
"Share" : "Compartilhar",
|
||||
"Edit" : "Editar",
|
||||
"Share" : "Compartilhar",
|
||||
"Manage" : "Gerenciar",
|
||||
"Discard share" : "Descartar compartilhamento",
|
||||
"Update" : "Atualizar",
|
||||
"Update tag" : "Atualizar rótulo",
|
||||
"Edit tag" : "Editar rótulo",
|
||||
"Delete tag" : "Excluir tag",
|
||||
"Create" : "Criar",
|
||||
"Create a new tag" : "Criar uma nova etiqueta",
|
||||
"Deleted stacks" : "Pilhas excluídas",
|
||||
"Deleted cards" : "Cartões excluídos",
|
||||
"Status" : "Status",
|
||||
"No archived boards to display" : "Nenhuma placa arquivada para exibir",
|
||||
"No shared boards to display" : "Nenhuma placa compartilhada para exibir",
|
||||
"No archived boards to display" : "Nenhum painel arquivado para exibir",
|
||||
"No shared boards to display" : "Nenhum painel compartilhado para exibir",
|
||||
"Title" : "Título",
|
||||
"Members" : "Membros",
|
||||
"More actions" : "Mais ações",
|
||||
@@ -147,16 +149,19 @@
|
||||
"Archive board" : "Arquivar painel",
|
||||
"Unarchive board" : "Desarquivar painel",
|
||||
"Delete board" : "Excluir painel",
|
||||
"Reset" : "Redefinir",
|
||||
"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.",
|
||||
"Update board" : "Atualizar painel",
|
||||
"Reset board" : "Redefinir painel",
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Desfazer a exclusão do painel - Caso contrário, o painel será excluída durante o próximo cronjob.",
|
||||
"Create new board" : "Criar novo painel",
|
||||
"New board title" : "Título do novo painel",
|
||||
"Create board" : "Criar 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",
|
||||
"Delete attachment" : "Excluir anexo",
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Criado:",
|
||||
"Choose a tag" : "Escolha um rótulo",
|
||||
@@ -172,12 +177,11 @@
|
||||
"Attachments" : "Anexos",
|
||||
"Saved" : "Salvo",
|
||||
"Unsaved changes" : "Alterações não salvas",
|
||||
"Insert attachment" : "Inserir anexo",
|
||||
"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",
|
||||
"Move board to archive" : "Mover painel para o arquivo",
|
||||
"Create a new board" : "Criar um novo painel"
|
||||
},"pluralForm" :"nplurals=2; plural=(n > 1);"
|
||||
|
||||
@@ -1,57 +0,0 @@
|
||||
OC.L10N.register(
|
||||
"deck",
|
||||
{
|
||||
"Remove user from card" : "Remover utilizador do cartão",
|
||||
"Hours" : "Horas",
|
||||
"Minutes" : "Minutos",
|
||||
"Deck" : "Baralho",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "O cartão \"%s\" em \"%s\" chegou a sua data de vencimento",
|
||||
"The board \"%s\" has been shared with you by %s." : "O quadro \"%s\" foi partilhado consigo por %s.",
|
||||
"{user} has shared the board %s with you." : "{user} partilhou o quadro %s consigo.",
|
||||
"Finished" : "Terminado",
|
||||
"To review" : "A rever",
|
||||
"Action needed" : "Acção necessária",
|
||||
"Later" : "Mais tarde",
|
||||
"Add a new stack" : "Adicionar nova pilha",
|
||||
"Show archived cards" : "Mostrar cartões arquivados",
|
||||
"Hide archived cards" : "Esconder cartões arquivados",
|
||||
"Board details" : "Detalhes do quadro",
|
||||
"All Boards" : "Todos os quadros",
|
||||
"Archived boards" : "Quadros arquivados",
|
||||
"Archive" : "Arquivar",
|
||||
"Delete" : "Apagar",
|
||||
"Enter a card title" : "Insira um título para o cartão",
|
||||
"Add card" : "Adicionar um cartão",
|
||||
"Close" : "Fechar",
|
||||
"Sharing" : "Partilha",
|
||||
"Tags" : "Etiquetas",
|
||||
"Select users or groups to share with" : "Seleccionar utilizadores ou grupos para partilhar com",
|
||||
"Access for" : "Acesso para",
|
||||
"Loading" : "A carregar",
|
||||
"Share" : "Partilhar",
|
||||
"Edit" : "Editar",
|
||||
"Manage" : "Gerir",
|
||||
"Update" : "Atualizar",
|
||||
"Create" : "Criar",
|
||||
"Create a new tag" : "Criar uma nova etiqueta",
|
||||
"Status" : "Estado",
|
||||
"Title" : "Título ",
|
||||
"Members" : "Membros",
|
||||
"More actions" : "Mais acções",
|
||||
"Edit board" : "Editar quadro",
|
||||
"Archive board" : "Arquivar quadro",
|
||||
"Delete board" : "Eliminar quadro",
|
||||
"Reset" : "Repor",
|
||||
"Create new board" : "Criar novo quadro",
|
||||
"New board title" : "Novo título de quadro",
|
||||
"by" : "por",
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Criado:",
|
||||
"Choose a tag" : "Escolher etiqueta",
|
||||
"Add a tag" : "Adicionar uma etiqueta",
|
||||
"Description" : "Descrição",
|
||||
"Saved" : "Guardado",
|
||||
"View more" : "Ver mais",
|
||||
"Create a new board" : "Criar um novo quadro"
|
||||
},
|
||||
"nplurals=2; plural=(n != 1);");
|
||||
@@ -1,55 +0,0 @@
|
||||
{ "translations": {
|
||||
"Remove user from card" : "Remover utilizador do cartão",
|
||||
"Hours" : "Horas",
|
||||
"Minutes" : "Minutos",
|
||||
"Deck" : "Baralho",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "O cartão \"%s\" em \"%s\" chegou a sua data de vencimento",
|
||||
"The board \"%s\" has been shared with you by %s." : "O quadro \"%s\" foi partilhado consigo por %s.",
|
||||
"{user} has shared the board %s with you." : "{user} partilhou o quadro %s consigo.",
|
||||
"Finished" : "Terminado",
|
||||
"To review" : "A rever",
|
||||
"Action needed" : "Acção necessária",
|
||||
"Later" : "Mais tarde",
|
||||
"Add a new stack" : "Adicionar nova pilha",
|
||||
"Show archived cards" : "Mostrar cartões arquivados",
|
||||
"Hide archived cards" : "Esconder cartões arquivados",
|
||||
"Board details" : "Detalhes do quadro",
|
||||
"All Boards" : "Todos os quadros",
|
||||
"Archived boards" : "Quadros arquivados",
|
||||
"Archive" : "Arquivar",
|
||||
"Delete" : "Apagar",
|
||||
"Enter a card title" : "Insira um título para o cartão",
|
||||
"Add card" : "Adicionar um cartão",
|
||||
"Close" : "Fechar",
|
||||
"Sharing" : "Partilha",
|
||||
"Tags" : "Etiquetas",
|
||||
"Select users or groups to share with" : "Seleccionar utilizadores ou grupos para partilhar com",
|
||||
"Access for" : "Acesso para",
|
||||
"Loading" : "A carregar",
|
||||
"Share" : "Partilhar",
|
||||
"Edit" : "Editar",
|
||||
"Manage" : "Gerir",
|
||||
"Update" : "Atualizar",
|
||||
"Create" : "Criar",
|
||||
"Create a new tag" : "Criar uma nova etiqueta",
|
||||
"Status" : "Estado",
|
||||
"Title" : "Título ",
|
||||
"Members" : "Membros",
|
||||
"More actions" : "Mais acções",
|
||||
"Edit board" : "Editar quadro",
|
||||
"Archive board" : "Arquivar quadro",
|
||||
"Delete board" : "Eliminar quadro",
|
||||
"Reset" : "Repor",
|
||||
"Create new board" : "Criar novo quadro",
|
||||
"New board title" : "Novo título de quadro",
|
||||
"by" : "por",
|
||||
"Modified:" : "Modificado:",
|
||||
"Created:" : "Criado:",
|
||||
"Choose a tag" : "Escolher etiqueta",
|
||||
"Add a tag" : "Adicionar uma etiqueta",
|
||||
"Description" : "Descrição",
|
||||
"Saved" : "Guardado",
|
||||
"View more" : "Ver mais",
|
||||
"Create a new board" : "Criar um novo quadro"
|
||||
},"pluralForm" :"nplurals=2; plural=(n != 1);"
|
||||
}
|
||||
28
l10n/ru.js
28
l10n/ru.js
@@ -108,17 +108,17 @@ OC.L10N.register(
|
||||
"Show archived cards" : "Показать архивные карточки",
|
||||
"Hide archived cards" : "Скрыть архивные карточки",
|
||||
"Toggle compact mode" : "Переключение в компактный режим и обратно",
|
||||
"Board details" : "Подробные сведения",
|
||||
"Show board details" : "Подробные сведения",
|
||||
"All Boards" : "Все доски",
|
||||
"Archived boards" : "Архив досок",
|
||||
"Share board" : "Поделиться",
|
||||
"Drop your files here to upload it to the card" : "Для загрузки файла в карточку, перетащите его сюда",
|
||||
"Actions" : "Действия",
|
||||
"Assign to me" : "Назначить себе",
|
||||
"Unassign from me" : "Отказаться от назначения",
|
||||
"Archive" : "Переместить в архив",
|
||||
"Unarchive" : "Восстановить из архива",
|
||||
"Delete" : "Удалить",
|
||||
"Drop your files here to upload it to the card" : "Для загрузки файла в карточку, перетащите его сюда",
|
||||
"Assign card to me" : "Назначить карточку себе",
|
||||
"Unassign card from me" : "Отказаться от назначения",
|
||||
"Archive card" : "Переместить в архив",
|
||||
"Unarchive card" : "Восстановить из архива",
|
||||
"Delete card" : "Удалить",
|
||||
"Enter a card title" : "Введите заголовок карточки…",
|
||||
"Add card" : "Создать карточку",
|
||||
"Close" : "Закрыть",
|
||||
@@ -130,11 +130,13 @@ OC.L10N.register(
|
||||
"Access for" : "Доступ для",
|
||||
"No matching user or group found." : "Не найдено соответствующих групп или пользователей.",
|
||||
"Loading" : "Загрузка",
|
||||
"Share" : "Поделиться",
|
||||
"Edit" : "Редактировать",
|
||||
"Share" : "Поделиться",
|
||||
"Manage" : "Управлять",
|
||||
"Discard share" : "Отказаться от предложения общего доступа",
|
||||
"Update" : "Обновить",
|
||||
"Update tag" : "Обновить метку",
|
||||
"Edit tag" : "Изменить метку",
|
||||
"Delete tag" : "Удалить метку",
|
||||
"Create" : "Создать",
|
||||
"Create a new tag" : "Создать метку",
|
||||
"Deleted stacks" : "Стопки карточек в корзине",
|
||||
@@ -149,16 +151,19 @@ OC.L10N.register(
|
||||
"Archive board" : "Переместить в архив",
|
||||
"Unarchive board" : "Восстановить доску из архива",
|
||||
"Delete board" : "Удалить доску",
|
||||
"Reset" : "Сбросить",
|
||||
"Update board" : "Обновить доску",
|
||||
"Reset board" : "Очистить доску",
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Отменить удаление доски, иначе она будет автоматически удалена при следующей обработке cronjob.",
|
||||
"Create new board" : "Создать рабочую доску",
|
||||
"New board title" : "Введите заголовок рабочей доски…",
|
||||
"Create board" : "Создать доску",
|
||||
"Select an attachment" : "Выберите вложение",
|
||||
"Cancel upload" : "Прервать загрузку",
|
||||
"by" : "автор",
|
||||
"Undo file deletion - Otherwise the file will be deleted during the next cronjob run." : "Отменить удаление файла, иначе он будет автоматически удалена при следующей обработке cronjob.",
|
||||
"Undo file deletion" : "Отменить удаление файла",
|
||||
"Insert the file into the description" : "Вложите файл в описание",
|
||||
"Delete attachment" : "Удалить вложение",
|
||||
"Modified:" : "Последнее изменение:",
|
||||
"Created:" : "Создание:",
|
||||
"Choose a tag" : "Выберите метку",
|
||||
@@ -174,12 +179,11 @@ OC.L10N.register(
|
||||
"Attachments" : "Вложения",
|
||||
"Saved" : "Сохранено",
|
||||
"Unsaved changes" : "Не сохраненные изменения",
|
||||
"Insert attachment" : "Вставить вложение",
|
||||
"Formatting help" : "Справка по форматированию",
|
||||
"Upload attachment" : "Загрузить вложение",
|
||||
"Insert attachment" : "Вставить вложение",
|
||||
"Add a card description…" : "Введите описание карточки…",
|
||||
"Shared boards" : "Общие доски",
|
||||
"View more" : "Просмотреть дальше",
|
||||
"Move board to archive" : "Переместить доску в архив",
|
||||
"Create a new board" : "Создать доску"
|
||||
},
|
||||
|
||||
28
l10n/ru.json
28
l10n/ru.json
@@ -106,17 +106,17 @@
|
||||
"Show archived cards" : "Показать архивные карточки",
|
||||
"Hide archived cards" : "Скрыть архивные карточки",
|
||||
"Toggle compact mode" : "Переключение в компактный режим и обратно",
|
||||
"Board details" : "Подробные сведения",
|
||||
"Show board details" : "Подробные сведения",
|
||||
"All Boards" : "Все доски",
|
||||
"Archived boards" : "Архив досок",
|
||||
"Share board" : "Поделиться",
|
||||
"Drop your files here to upload it to the card" : "Для загрузки файла в карточку, перетащите его сюда",
|
||||
"Actions" : "Действия",
|
||||
"Assign to me" : "Назначить себе",
|
||||
"Unassign from me" : "Отказаться от назначения",
|
||||
"Archive" : "Переместить в архив",
|
||||
"Unarchive" : "Восстановить из архива",
|
||||
"Delete" : "Удалить",
|
||||
"Drop your files here to upload it to the card" : "Для загрузки файла в карточку, перетащите его сюда",
|
||||
"Assign card to me" : "Назначить карточку себе",
|
||||
"Unassign card from me" : "Отказаться от назначения",
|
||||
"Archive card" : "Переместить в архив",
|
||||
"Unarchive card" : "Восстановить из архива",
|
||||
"Delete card" : "Удалить",
|
||||
"Enter a card title" : "Введите заголовок карточки…",
|
||||
"Add card" : "Создать карточку",
|
||||
"Close" : "Закрыть",
|
||||
@@ -128,11 +128,13 @@
|
||||
"Access for" : "Доступ для",
|
||||
"No matching user or group found." : "Не найдено соответствующих групп или пользователей.",
|
||||
"Loading" : "Загрузка",
|
||||
"Share" : "Поделиться",
|
||||
"Edit" : "Редактировать",
|
||||
"Share" : "Поделиться",
|
||||
"Manage" : "Управлять",
|
||||
"Discard share" : "Отказаться от предложения общего доступа",
|
||||
"Update" : "Обновить",
|
||||
"Update tag" : "Обновить метку",
|
||||
"Edit tag" : "Изменить метку",
|
||||
"Delete tag" : "Удалить метку",
|
||||
"Create" : "Создать",
|
||||
"Create a new tag" : "Создать метку",
|
||||
"Deleted stacks" : "Стопки карточек в корзине",
|
||||
@@ -147,16 +149,19 @@
|
||||
"Archive board" : "Переместить в архив",
|
||||
"Unarchive board" : "Восстановить доску из архива",
|
||||
"Delete board" : "Удалить доску",
|
||||
"Reset" : "Сбросить",
|
||||
"Update board" : "Обновить доску",
|
||||
"Reset board" : "Очистить доску",
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Отменить удаление доски, иначе она будет автоматически удалена при следующей обработке cronjob.",
|
||||
"Create new board" : "Создать рабочую доску",
|
||||
"New board title" : "Введите заголовок рабочей доски…",
|
||||
"Create board" : "Создать доску",
|
||||
"Select an attachment" : "Выберите вложение",
|
||||
"Cancel upload" : "Прервать загрузку",
|
||||
"by" : "автор",
|
||||
"Undo file deletion - Otherwise the file will be deleted during the next cronjob run." : "Отменить удаление файла, иначе он будет автоматически удалена при следующей обработке cronjob.",
|
||||
"Undo file deletion" : "Отменить удаление файла",
|
||||
"Insert the file into the description" : "Вложите файл в описание",
|
||||
"Delete attachment" : "Удалить вложение",
|
||||
"Modified:" : "Последнее изменение:",
|
||||
"Created:" : "Создание:",
|
||||
"Choose a tag" : "Выберите метку",
|
||||
@@ -172,12 +177,11 @@
|
||||
"Attachments" : "Вложения",
|
||||
"Saved" : "Сохранено",
|
||||
"Unsaved changes" : "Не сохраненные изменения",
|
||||
"Insert attachment" : "Вставить вложение",
|
||||
"Formatting help" : "Справка по форматированию",
|
||||
"Upload attachment" : "Загрузить вложение",
|
||||
"Insert attachment" : "Вставить вложение",
|
||||
"Add a card description…" : "Введите описание карточки…",
|
||||
"Shared boards" : "Общие доски",
|
||||
"View more" : "Просмотреть дальше",
|
||||
"Move board to archive" : "Переместить доску в архив",
|
||||
"Create a new board" : "Создать доску"
|
||||
},"pluralForm" :"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);"
|
||||
|
||||
160
l10n/sk.js
160
l10n/sk.js
@@ -1,63 +1,176 @@
|
||||
OC.L10N.register(
|
||||
"deck",
|
||||
{
|
||||
"Please provide a content for your comment." : "Zadajte obsah svojho komentára",
|
||||
"Posting the comment failed." : "Nepodarilo sa odoslať komentár",
|
||||
"The comment has been deleted" : "Komentár bol odstránený",
|
||||
"The associated stack is deleted as well, it will be restored as well." : "Súvisiaci stoh je tiež odstránený a bude tiež obnovený",
|
||||
"Restore associated stack" : "Obnoviť súvisiaci stoh",
|
||||
"Remove user from card" : "Odobrať používateľa z karty",
|
||||
"Hours" : "Hodín",
|
||||
"Minutes" : "Minút",
|
||||
"Deck" : "Tabuľa",
|
||||
"Maximum file size of {size} exceeded" : "Bola prekročená maximálna veľkosť súboru {size}",
|
||||
"You have created a new board {board}" : "Vytvorili ste nástenku",
|
||||
"{user} has created a new board {board}" : "Používateľ {user} vytvoril novú nástenku {board}",
|
||||
"You have deleted the board {board}" : "Odstránili ste nástenku {board}",
|
||||
"{user} has deleted the board {board}" : "Používateľ {user} odstránil nástenku {board}",
|
||||
"You have restored the board {board}" : "Obnovili ste nástenku {board}",
|
||||
"{user} has restored the board {board}" : "Používateľ {user} obnovil nástenku {board}",
|
||||
"You have shared the board {board} with {acl}" : "Sprístupnili ste nástenku {board} s {acl}",
|
||||
"{user} has shared the board {board} with {sharee}" : "Používateľ {user} sprístupnil nástenku {board} pre {sharee}",
|
||||
"You have removed {acl} from the board {board}" : "Odobrali ste {acl} z nástenky {board}",
|
||||
"{user} has removed {acl} from the board {board}" : "Používateľ {user} odobral {acl} z nástenky {board}",
|
||||
"You have renamed the board {before} to {board}" : "Premenovali ste nástenku {before} na {board}",
|
||||
"{user} has has renamed the board {before} to {board}" : "Používateľ {user} premenoval nástenku {before} na {board}",
|
||||
"You have archived the board {board}" : "Archivovali ste nástenku {board}",
|
||||
"{user} has archived the board {before}" : "Používateľ {user} archivoval nástenku {board}",
|
||||
"You have unarchived the board {board}" : "Zrušili ste archiváciu nástenky {board}",
|
||||
"{user} has unarchived the board {before}" : "Používateľ {user} zrušil archiváciu nástenky {before}",
|
||||
"You have created a new stack {stack} on {board}" : "Vytvorili ste nový stoh {stack} na nástenke {board}",
|
||||
"{user} has created a new stack {stack} on {board}" : "Používateľ {user} vytvoril nový stoh {stack} na nástenke {board}",
|
||||
"You have renamed a new stack {before} to {stack} on {board}" : "Premenovali ste nový stoh {before} na {stack} na nástenke {board}",
|
||||
"{user} has renamed a new stack {before} to {stack} on {board}" : "Používateľ {user} premenoval nový stoh {before} na {stack} na nástenke {board}",
|
||||
"You have deleted {stack} on {board}" : "Odstránili ste stoh {stack} na nástenke {board}",
|
||||
"{user} has deleted {stack} on {board}" : "Používateľ {user} odstránil stack {stack} na nástenke {board}",
|
||||
"You have created {card} in {stack} on {board}" : "Vytvorili ste kartu {card} v stohu {stack} na nástenke {board}",
|
||||
"{user} has created {card} in {stack} on {board}" : "Používateľ {user} vytvoril kartu {card} v stohu {stack} na nástenke {board}",
|
||||
"You have deleted {card} in {stack} on {board}" : "Odstránili ste kartu {card} v stohu {stack} na nástenke {board}",
|
||||
"{user} has deleted {card} in {stack} on {board}" : "Používateľ {user} odstránil kartu {card} v stohu {stack} na nástenke {board}",
|
||||
"You have renamed the card {before} to {card}" : "Premenovali ste kartu {before} na {card}",
|
||||
"{user} has renamed the card {before} to {card}" : "Používateľ {user} premenoval kartu {before} na {card}",
|
||||
"You have added a description to {card} in {stack} on {board}" : "Pridali ste popis ku karte {card} v stohu {stack} na nástenke {board}",
|
||||
"{user} has added a description to {card} in {stack} on {board}" : "Používateľ {user} pridal popis ku karte {card} v stohu {stack} na nástenke {board}",
|
||||
"You have updated the description of {card} in {stack} on {board}" : "Aktualizovali ste popis v karte {card} v stohu {stack} na nástenke {board}",
|
||||
"{user} has updated the description {card} in {stack} on {board}" : "Používateľ {user} aktualizoval popis v karte {card} v stohu {stack} na nástenke {board}",
|
||||
"You have archived {card} in {stack} on {board}" : "Archivovali ste kartu {card} v stohu {stack} na nástenke {board}",
|
||||
"{user} has archived {card} in {stack} on {board}" : "Používateľ {user} archivoval kartu {card} v stohu {stack} na nástenke {board}",
|
||||
"You have unarchived {card} in {stack} on {board}" : "Zrušili ste archiváciu karty {card} v stohu {stack} na nástenke {board}",
|
||||
"{user} has unarchived {card} in {stack} on {board}" : "Používateľ {user} zrušil archiváciu karty {card} v stohu {stack} na nástenke {board}",
|
||||
"You have removed the due date of {card}" : "Odobrali ste termín z {card}",
|
||||
"{user} has removed the due date of {card}" : "Používateľ {user} odobral termín pre kartu {card}",
|
||||
"You have set the due date of {card} to {after}" : "Nastavili ste termín pre {card} na {after}",
|
||||
"{user} has set the due date of {card} to {after}" : "Používateľ {user} nastavil termín {card} na {after}",
|
||||
"You have updated the due date of {card} to {after}" : "Zmenili ste termín karty {card} na {after}",
|
||||
"{user} has updated the due date of {card} to {after}" : "Používateľ {user} aktualizoval termín karty {card} na {after}",
|
||||
"You have added the label {label} to {card} in {stack} on {board}" : "Pridali ste štítok {label} ku karte {card} v stohu {stack} na nástenke {board}",
|
||||
"{user} has added the label {label} to {card} in {stack} on {board}" : "Používateľ {user} pridal štítok {label} ku karte {card} v stohu {stack} na nástenke {board}",
|
||||
"You have removed the label {label} from {card} in {stack} on {board}" : "Odobrali ste štítok {label} z karty {card} v stohu {stack} na nástenke {board}",
|
||||
"{user} has removed the label {label} from {card} in {stack} on {board}" : "Používateľ {user} odobral štítok {label} z karty {card} v stohu {stack} na nástenke {board}",
|
||||
"You have assigned {assigneduser} to {card} on {board}" : "Priradili ste používateľa {assigneduser} ku karte {card} na nástenke {board}",
|
||||
"{user} has assigned {assigneduser} to {card} on {board}" : "Používateľ {user} priradil {assigneduser} ku karte {card} na nástenke {board}",
|
||||
"You have unassigned {assigneduser} from {card} on {board}" : "Vyradili ste používateľa {assigneduser} z karty {card} na nástenke {board}",
|
||||
"{user} has unassigned {assigneduser} from {card} on {board}" : "Používateľ {user} vyradil používateľa {assigneduser} z karty {card} na nástenke {board}",
|
||||
"You have moved the card {card} from {stackBefore} to {stack}" : "Presunuli ste kartu {card} z {stackBefore} do {stack}",
|
||||
"{user} has moved the card {card} from {stackBefore} to {stack}" : "Používateľ {user} presunul kartu {card} zo stohu {stackBefore} do stohu {stack}",
|
||||
"You have added the attachment {attachment} to {card}" : "Pridali ste prílohu {attachment} k {card}",
|
||||
"{user} has added the attachment {attachment} to {card}" : "Používateľ {user} pridal prílohu {attachment} ku karte {card}",
|
||||
"You have updated the attachment {attachment} on {card}" : "Zmenili ste prílohu {attachment} k {card}",
|
||||
"{user} has updated the attachment {attachment} to {card}" : "Používateľ {user} aktualizoval prílohu {attachment} ku karte {card}",
|
||||
"You have deleted the attachment {attachment} from {card}" : "Odstránili ste prílohu {attachment} z {card}",
|
||||
"{user} has deleted the attachment {attachment} to {card}" : "Používateľ {user} odstránil prílohu {attachment} z karty {card}",
|
||||
"You have restored the attachment {attachment} to {card}" : "Obnovili ste prílohu {attachment} k {card}",
|
||||
"{user} has restored the attachment {attachment} to {card}" : "Používateľ {user} obnovil prílohu {attachment} ku karte {card}",
|
||||
"You have commented on {card}" : "Komentovali ste {card}",
|
||||
"{user} has commented on {card}" : "Používateľ {user} pridal komentár ku karte {card}",
|
||||
"Deck" : "Nástenka",
|
||||
"Personal" : "Osobné",
|
||||
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Používateľ %s vám priradil kartu „%s“ na „%s“.",
|
||||
"{user} has assigned the card \"%s\" on \"%s\" to you." : "Používateľ {user} vám priradil kartu „%s“ na „%s“.",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "Karta \"%s\" na \"%s\" dosiahla dátum platnosti",
|
||||
"The board \"%s\" has been shared with you by %s." : "Používateľ %s vám sprístupnil tabuľu \"%s\".",
|
||||
"{user} has shared the board %s with you." : "Používateľ {user} vám sprístupnil tabuľu %s.",
|
||||
"%s has mentioned you in a comment on \"%s\"." : "Používateľ %s vás zmienil v komentári ku „%s“.",
|
||||
"{user} has mentioned you in a comment on \"%s\"." : "Používateľ {user} vás zmienil v komentári v „%s“.",
|
||||
"The board \"%s\" has been shared with you by %s." : "Používateľ %s vám sprístupnil nástenku \"%s\".",
|
||||
"{user} has shared the board %s with you." : "Používateľ {user} vám sprístupnil nástenku %s.",
|
||||
"No data was provided to create an attachment." : "Neboli poskytnuté dáta pre vytvorenie prílohy.",
|
||||
"Finished" : "Ukončené",
|
||||
"To review" : "Na posúdenie",
|
||||
"Action needed" : "Potrebná akcia",
|
||||
"Later" : "Neskôr",
|
||||
"To do" : "Urobiť",
|
||||
"Doing" : "Prebieha",
|
||||
"Done" : "Hotové",
|
||||
"Example Task 3" : "Príklad úlohy 3",
|
||||
"Example Task 2" : "Príklad úlohy 2",
|
||||
"Example Task 1" : "Príklad úlohy 1",
|
||||
"The file was uploaded" : "Súbor bol nahraný",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Nahraný súbor prekročil limit nastavený v upload_max_filesize v súbore php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Ukladaný súbor prekračuje nastavenie MAX_FILE_SIZE z volieb HTML formulára.",
|
||||
"The file was only partially uploaded" : "Súbor bol nahraný iba čiastočne",
|
||||
"No file was uploaded" : "Nenahral sa žiadny súbor",
|
||||
"Missing a temporary folder" : "Chýba priečinok pre dočasné súbory",
|
||||
"Could not write file to disk" : "Nepodarilo sa zapísať súbor na disk",
|
||||
"A PHP extension stopped the file upload" : "Rozšírenie PHP zastavilo nahrávanie súboru",
|
||||
"No file uploaded or file size exceeds maximum of %s" : "Nenahral sa žiadny súbor alebo jeho veľkosť presiahla %s",
|
||||
"A kanban style project and personal management tool for Nextcloud" : "Nástroj pre projektové a osobné riadenie v štýle Kanban.",
|
||||
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Karty sú nástroj zacielený na osobné alebo projektové plánovanie tímov v štýle Kanban integrovaný do Nextcloud.\n\n\n- 📥 Zadávajte a usporadúvajte svoje úlohy do kariet\n- 📄 Zapisujte si dodatočné poznámky\n- 🔖 Priraďujte štítky pre ešte lepšiu organizáciu\n- 👥 Zdieľajte so svojim tímom, priateľmi alebo rodinou\n- 🚀 Dostaňte svoj projekt pod kontrolu",
|
||||
"Add a new stack" : "Pridať nový stoh",
|
||||
"Submit" : "Odoslať",
|
||||
"Show archived cards" : "Zobraziť archivované karty",
|
||||
"Hide archived cards" : "Skryť archivované karty",
|
||||
"Board details" : "Podrobnosti tabule",
|
||||
"All Boards" : "Všetky tabule",
|
||||
"Archived boards" : "Archivované tabule",
|
||||
"Archive" : "Archivovať",
|
||||
"Unarchive" : "Vybrať z archívu",
|
||||
"Delete" : "Zmazať",
|
||||
"Toggle compact mode" : "Prepnúť kompaktný režim",
|
||||
"Show board details" : "Zobraziť podrobnosti o nástenke",
|
||||
"All Boards" : "Všetky nástenky",
|
||||
"Archived boards" : "Archivované nástenky",
|
||||
"Share board" : "Zdieľať nástenku",
|
||||
"Actions" : "Akcie",
|
||||
"Drop your files here to upload it to the card" : "Tu vložte svoje súbory ak ich chcete pripojiť ku karte.",
|
||||
"Assign card to me" : "Priradiť kartu mne",
|
||||
"Unassign card from me" : "Zrušiť priradenie karty mne",
|
||||
"Archive card" : "Archivovať kartu",
|
||||
"Unarchive card" : "Zrušiť archiváciu karty",
|
||||
"Delete card" : "Zmazať kartu",
|
||||
"Enter a card title" : "Zmeniť názov karty",
|
||||
"Add card" : "Pridať kartu",
|
||||
"Close" : "Zavrieť",
|
||||
"Sharing" : "Sprístupnenie",
|
||||
"Tags" : "Štítky",
|
||||
"Deleted items" : "Zmazané položky",
|
||||
"Timeline" : "Časová os",
|
||||
"Select users or groups to share with" : "Vyberte používateľov albo skupiny pre sprístupnenie",
|
||||
"Access for" : "Prístup pre",
|
||||
"No matching user or group found." : "Neboli nájdení vyhovujúci používatelia alebo skupiny.",
|
||||
"Loading" : "Načítavanie",
|
||||
"Share" : "Sprístupniť",
|
||||
"Edit" : "Upraviť",
|
||||
"Share" : "Sprístupniť",
|
||||
"Manage" : "Spravovať",
|
||||
"Discard share" : "Zrušiť sprístupnenie",
|
||||
"Update" : "Aktualizovať",
|
||||
"Update tag" : "Aktualizovať štítok",
|
||||
"Edit tag" : "Upraviť štítok",
|
||||
"Delete tag" : "Zmazať štítok",
|
||||
"Create" : "Vytvoriť",
|
||||
"Create a new tag" : "Vytvoriť nový štítok",
|
||||
"Deleted stacks" : "Odstránené stohy",
|
||||
"Deleted cards" : "Odstránené karty",
|
||||
"Status" : "Stav",
|
||||
"No archived boards to display" : "Žiadne archivované nástenky",
|
||||
"No shared boards to display" : "Žiadne sprístupnené nástenky",
|
||||
"Title" : "Názov",
|
||||
"Members" : "Členovia",
|
||||
"More actions" : "Viac akcií",
|
||||
"Edit board" : "Upraviť tabuľu",
|
||||
"Archive board" : "Archivovať tabuľu",
|
||||
"Unarchive board" : "Vybrať tabuľu z archívu",
|
||||
"Delete board" : "Zmazať tabuľu",
|
||||
"Reset" : "Obnoviť",
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Vrátiť späť vymazanie tabule - v opačnom prípade bude tabuľa vymazaná počas ďalšieho behu úlohy cronjob.",
|
||||
"Create new board" : "Vytvoriť novú tabuľu",
|
||||
"New board title" : "Názov novej tabule",
|
||||
"Edit board" : "Upraviť nástenku",
|
||||
"Archive board" : "Archivovať nástenku",
|
||||
"Unarchive board" : "Vybrať nástenku z archívu",
|
||||
"Delete board" : "Zmazať nástenku",
|
||||
"Update board" : "Aktualizovať nástenku",
|
||||
"Reset board" : "Resetovať nástenku",
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Vrátiť späť vymazanie nástenky - v opačnom prípade bude nástenka vymazaná počas ďalšieho behu úlohy cronjob.",
|
||||
"Create new board" : "Vytvoriť novú nástenku",
|
||||
"New board title" : "Názov novej nástenky",
|
||||
"Create board" : "Vytvoriť nástenku",
|
||||
"Select an attachment" : "Vybrať prílohu",
|
||||
"Cancel upload" : "Zrušiť nahrávanie",
|
||||
"by" : "-",
|
||||
"Undo file deletion - Otherwise the file will be deleted during the next cronjob run." : "Vrátiť späť zmazanie súboru - v opačnom prípade bude súbor vymazaný počas ďalšieho behu úlohy cronjob.",
|
||||
"Undo file deletion" : "Vrátiť späť odstránenie súboru",
|
||||
"Insert the file into the description" : "Vložte súbor do popisu",
|
||||
"Delete attachment" : "Zmazať prílohu",
|
||||
"Modified:" : "Upravené:",
|
||||
"Created:" : "Vytvorené:",
|
||||
"Choose a tag" : "Vybrať štítok",
|
||||
"Add a tag" : "Pridať štítok",
|
||||
"Select tags" : "Zvoliť štítky",
|
||||
"Assign users" : "Priradiť používateľov",
|
||||
"Choose a user to assign" : "Vyberte používateľa, ktorého chcete priradiť",
|
||||
"Assign this card to a user" : "Priradiť túto kartu používateľovi",
|
||||
"Due date" : "Do dátumu",
|
||||
"Click to set" : "Kliknite pre nastavenie",
|
||||
@@ -66,13 +179,12 @@ OC.L10N.register(
|
||||
"Attachments" : "Prílohy",
|
||||
"Saved" : "Uložené",
|
||||
"Unsaved changes" : "Neuložené zmeny",
|
||||
"Insert attachment" : "Vložiť prílohu",
|
||||
"Formatting help" : "Pomoc pri formátovaní",
|
||||
"Upload attachment" : "Nahrať prílohu",
|
||||
"Insert attachment" : "Vložiť prílohu",
|
||||
"Add a card description…" : "Pridať popis karty...",
|
||||
"Shared boards" : "Sprístupnené tabule",
|
||||
"View more" : "Pozrieť viac",
|
||||
"Move board to archive" : "Presunúť tabuľu do archívu",
|
||||
"Create a new board" : "Vytvoriť novú tabuľu"
|
||||
"Shared boards" : "Sprístupnené nástenky",
|
||||
"Move board to archive" : "Presunúť nástenku do archívu",
|
||||
"Create a new board" : "Vytvoriť novú nástenku"
|
||||
},
|
||||
"nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);");
|
||||
|
||||
160
l10n/sk.json
160
l10n/sk.json
@@ -1,61 +1,174 @@
|
||||
{ "translations": {
|
||||
"Please provide a content for your comment." : "Zadajte obsah svojho komentára",
|
||||
"Posting the comment failed." : "Nepodarilo sa odoslať komentár",
|
||||
"The comment has been deleted" : "Komentár bol odstránený",
|
||||
"The associated stack is deleted as well, it will be restored as well." : "Súvisiaci stoh je tiež odstránený a bude tiež obnovený",
|
||||
"Restore associated stack" : "Obnoviť súvisiaci stoh",
|
||||
"Remove user from card" : "Odobrať používateľa z karty",
|
||||
"Hours" : "Hodín",
|
||||
"Minutes" : "Minút",
|
||||
"Deck" : "Tabuľa",
|
||||
"Maximum file size of {size} exceeded" : "Bola prekročená maximálna veľkosť súboru {size}",
|
||||
"You have created a new board {board}" : "Vytvorili ste nástenku",
|
||||
"{user} has created a new board {board}" : "Používateľ {user} vytvoril novú nástenku {board}",
|
||||
"You have deleted the board {board}" : "Odstránili ste nástenku {board}",
|
||||
"{user} has deleted the board {board}" : "Používateľ {user} odstránil nástenku {board}",
|
||||
"You have restored the board {board}" : "Obnovili ste nástenku {board}",
|
||||
"{user} has restored the board {board}" : "Používateľ {user} obnovil nástenku {board}",
|
||||
"You have shared the board {board} with {acl}" : "Sprístupnili ste nástenku {board} s {acl}",
|
||||
"{user} has shared the board {board} with {sharee}" : "Používateľ {user} sprístupnil nástenku {board} pre {sharee}",
|
||||
"You have removed {acl} from the board {board}" : "Odobrali ste {acl} z nástenky {board}",
|
||||
"{user} has removed {acl} from the board {board}" : "Používateľ {user} odobral {acl} z nástenky {board}",
|
||||
"You have renamed the board {before} to {board}" : "Premenovali ste nástenku {before} na {board}",
|
||||
"{user} has has renamed the board {before} to {board}" : "Používateľ {user} premenoval nástenku {before} na {board}",
|
||||
"You have archived the board {board}" : "Archivovali ste nástenku {board}",
|
||||
"{user} has archived the board {before}" : "Používateľ {user} archivoval nástenku {board}",
|
||||
"You have unarchived the board {board}" : "Zrušili ste archiváciu nástenky {board}",
|
||||
"{user} has unarchived the board {before}" : "Používateľ {user} zrušil archiváciu nástenky {before}",
|
||||
"You have created a new stack {stack} on {board}" : "Vytvorili ste nový stoh {stack} na nástenke {board}",
|
||||
"{user} has created a new stack {stack} on {board}" : "Používateľ {user} vytvoril nový stoh {stack} na nástenke {board}",
|
||||
"You have renamed a new stack {before} to {stack} on {board}" : "Premenovali ste nový stoh {before} na {stack} na nástenke {board}",
|
||||
"{user} has renamed a new stack {before} to {stack} on {board}" : "Používateľ {user} premenoval nový stoh {before} na {stack} na nástenke {board}",
|
||||
"You have deleted {stack} on {board}" : "Odstránili ste stoh {stack} na nástenke {board}",
|
||||
"{user} has deleted {stack} on {board}" : "Používateľ {user} odstránil stack {stack} na nástenke {board}",
|
||||
"You have created {card} in {stack} on {board}" : "Vytvorili ste kartu {card} v stohu {stack} na nástenke {board}",
|
||||
"{user} has created {card} in {stack} on {board}" : "Používateľ {user} vytvoril kartu {card} v stohu {stack} na nástenke {board}",
|
||||
"You have deleted {card} in {stack} on {board}" : "Odstránili ste kartu {card} v stohu {stack} na nástenke {board}",
|
||||
"{user} has deleted {card} in {stack} on {board}" : "Používateľ {user} odstránil kartu {card} v stohu {stack} na nástenke {board}",
|
||||
"You have renamed the card {before} to {card}" : "Premenovali ste kartu {before} na {card}",
|
||||
"{user} has renamed the card {before} to {card}" : "Používateľ {user} premenoval kartu {before} na {card}",
|
||||
"You have added a description to {card} in {stack} on {board}" : "Pridali ste popis ku karte {card} v stohu {stack} na nástenke {board}",
|
||||
"{user} has added a description to {card} in {stack} on {board}" : "Používateľ {user} pridal popis ku karte {card} v stohu {stack} na nástenke {board}",
|
||||
"You have updated the description of {card} in {stack} on {board}" : "Aktualizovali ste popis v karte {card} v stohu {stack} na nástenke {board}",
|
||||
"{user} has updated the description {card} in {stack} on {board}" : "Používateľ {user} aktualizoval popis v karte {card} v stohu {stack} na nástenke {board}",
|
||||
"You have archived {card} in {stack} on {board}" : "Archivovali ste kartu {card} v stohu {stack} na nástenke {board}",
|
||||
"{user} has archived {card} in {stack} on {board}" : "Používateľ {user} archivoval kartu {card} v stohu {stack} na nástenke {board}",
|
||||
"You have unarchived {card} in {stack} on {board}" : "Zrušili ste archiváciu karty {card} v stohu {stack} na nástenke {board}",
|
||||
"{user} has unarchived {card} in {stack} on {board}" : "Používateľ {user} zrušil archiváciu karty {card} v stohu {stack} na nástenke {board}",
|
||||
"You have removed the due date of {card}" : "Odobrali ste termín z {card}",
|
||||
"{user} has removed the due date of {card}" : "Používateľ {user} odobral termín pre kartu {card}",
|
||||
"You have set the due date of {card} to {after}" : "Nastavili ste termín pre {card} na {after}",
|
||||
"{user} has set the due date of {card} to {after}" : "Používateľ {user} nastavil termín {card} na {after}",
|
||||
"You have updated the due date of {card} to {after}" : "Zmenili ste termín karty {card} na {after}",
|
||||
"{user} has updated the due date of {card} to {after}" : "Používateľ {user} aktualizoval termín karty {card} na {after}",
|
||||
"You have added the label {label} to {card} in {stack} on {board}" : "Pridali ste štítok {label} ku karte {card} v stohu {stack} na nástenke {board}",
|
||||
"{user} has added the label {label} to {card} in {stack} on {board}" : "Používateľ {user} pridal štítok {label} ku karte {card} v stohu {stack} na nástenke {board}",
|
||||
"You have removed the label {label} from {card} in {stack} on {board}" : "Odobrali ste štítok {label} z karty {card} v stohu {stack} na nástenke {board}",
|
||||
"{user} has removed the label {label} from {card} in {stack} on {board}" : "Používateľ {user} odobral štítok {label} z karty {card} v stohu {stack} na nástenke {board}",
|
||||
"You have assigned {assigneduser} to {card} on {board}" : "Priradili ste používateľa {assigneduser} ku karte {card} na nástenke {board}",
|
||||
"{user} has assigned {assigneduser} to {card} on {board}" : "Používateľ {user} priradil {assigneduser} ku karte {card} na nástenke {board}",
|
||||
"You have unassigned {assigneduser} from {card} on {board}" : "Vyradili ste používateľa {assigneduser} z karty {card} na nástenke {board}",
|
||||
"{user} has unassigned {assigneduser} from {card} on {board}" : "Používateľ {user} vyradil používateľa {assigneduser} z karty {card} na nástenke {board}",
|
||||
"You have moved the card {card} from {stackBefore} to {stack}" : "Presunuli ste kartu {card} z {stackBefore} do {stack}",
|
||||
"{user} has moved the card {card} from {stackBefore} to {stack}" : "Používateľ {user} presunul kartu {card} zo stohu {stackBefore} do stohu {stack}",
|
||||
"You have added the attachment {attachment} to {card}" : "Pridali ste prílohu {attachment} k {card}",
|
||||
"{user} has added the attachment {attachment} to {card}" : "Používateľ {user} pridal prílohu {attachment} ku karte {card}",
|
||||
"You have updated the attachment {attachment} on {card}" : "Zmenili ste prílohu {attachment} k {card}",
|
||||
"{user} has updated the attachment {attachment} to {card}" : "Používateľ {user} aktualizoval prílohu {attachment} ku karte {card}",
|
||||
"You have deleted the attachment {attachment} from {card}" : "Odstránili ste prílohu {attachment} z {card}",
|
||||
"{user} has deleted the attachment {attachment} to {card}" : "Používateľ {user} odstránil prílohu {attachment} z karty {card}",
|
||||
"You have restored the attachment {attachment} to {card}" : "Obnovili ste prílohu {attachment} k {card}",
|
||||
"{user} has restored the attachment {attachment} to {card}" : "Používateľ {user} obnovil prílohu {attachment} ku karte {card}",
|
||||
"You have commented on {card}" : "Komentovali ste {card}",
|
||||
"{user} has commented on {card}" : "Používateľ {user} pridal komentár ku karte {card}",
|
||||
"Deck" : "Nástenka",
|
||||
"Personal" : "Osobné",
|
||||
"The card \"%s\" on \"%s\" has been assigned to you by %s." : "Používateľ %s vám priradil kartu „%s“ na „%s“.",
|
||||
"{user} has assigned the card \"%s\" on \"%s\" to you." : "Používateľ {user} vám priradil kartu „%s“ na „%s“.",
|
||||
"The card \"%s\" on \"%s\" has reached its due date." : "Karta \"%s\" na \"%s\" dosiahla dátum platnosti",
|
||||
"The board \"%s\" has been shared with you by %s." : "Používateľ %s vám sprístupnil tabuľu \"%s\".",
|
||||
"{user} has shared the board %s with you." : "Používateľ {user} vám sprístupnil tabuľu %s.",
|
||||
"%s has mentioned you in a comment on \"%s\"." : "Používateľ %s vás zmienil v komentári ku „%s“.",
|
||||
"{user} has mentioned you in a comment on \"%s\"." : "Používateľ {user} vás zmienil v komentári v „%s“.",
|
||||
"The board \"%s\" has been shared with you by %s." : "Používateľ %s vám sprístupnil nástenku \"%s\".",
|
||||
"{user} has shared the board %s with you." : "Používateľ {user} vám sprístupnil nástenku %s.",
|
||||
"No data was provided to create an attachment." : "Neboli poskytnuté dáta pre vytvorenie prílohy.",
|
||||
"Finished" : "Ukončené",
|
||||
"To review" : "Na posúdenie",
|
||||
"Action needed" : "Potrebná akcia",
|
||||
"Later" : "Neskôr",
|
||||
"To do" : "Urobiť",
|
||||
"Doing" : "Prebieha",
|
||||
"Done" : "Hotové",
|
||||
"Example Task 3" : "Príklad úlohy 3",
|
||||
"Example Task 2" : "Príklad úlohy 2",
|
||||
"Example Task 1" : "Príklad úlohy 1",
|
||||
"The file was uploaded" : "Súbor bol nahraný",
|
||||
"The uploaded file exceeds the upload_max_filesize directive in php.ini" : "Nahraný súbor prekročil limit nastavený v upload_max_filesize v súbore php.ini",
|
||||
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form" : "Ukladaný súbor prekračuje nastavenie MAX_FILE_SIZE z volieb HTML formulára.",
|
||||
"The file was only partially uploaded" : "Súbor bol nahraný iba čiastočne",
|
||||
"No file was uploaded" : "Nenahral sa žiadny súbor",
|
||||
"Missing a temporary folder" : "Chýba priečinok pre dočasné súbory",
|
||||
"Could not write file to disk" : "Nepodarilo sa zapísať súbor na disk",
|
||||
"A PHP extension stopped the file upload" : "Rozšírenie PHP zastavilo nahrávanie súboru",
|
||||
"No file uploaded or file size exceeds maximum of %s" : "Nenahral sa žiadny súbor alebo jeho veľkosť presiahla %s",
|
||||
"A kanban style project and personal management tool for Nextcloud" : "Nástroj pre projektové a osobné riadenie v štýle Kanban.",
|
||||
"Deck is a kanban style organization tool aimed at personal planning and project organization for teams integrated with Nextcloud.\n\n\n- 📥 Add your tasks to cards and put them in order\n- 📄 Write down additional notes in markdown\n- 🔖 Assign labels for even better organization\n- 👥 Share with your team, friends or family\n- 📎 Attach files and embed them in your markdown description\n- 💬 Discuss with your team using comments\n- ⚡ Keep track of changes in the activity stream\n- 🚀 Get your project organized" : "Karty sú nástroj zacielený na osobné alebo projektové plánovanie tímov v štýle Kanban integrovaný do Nextcloud.\n\n\n- 📥 Zadávajte a usporadúvajte svoje úlohy do kariet\n- 📄 Zapisujte si dodatočné poznámky\n- 🔖 Priraďujte štítky pre ešte lepšiu organizáciu\n- 👥 Zdieľajte so svojim tímom, priateľmi alebo rodinou\n- 🚀 Dostaňte svoj projekt pod kontrolu",
|
||||
"Add a new stack" : "Pridať nový stoh",
|
||||
"Submit" : "Odoslať",
|
||||
"Show archived cards" : "Zobraziť archivované karty",
|
||||
"Hide archived cards" : "Skryť archivované karty",
|
||||
"Board details" : "Podrobnosti tabule",
|
||||
"All Boards" : "Všetky tabule",
|
||||
"Archived boards" : "Archivované tabule",
|
||||
"Archive" : "Archivovať",
|
||||
"Unarchive" : "Vybrať z archívu",
|
||||
"Delete" : "Zmazať",
|
||||
"Toggle compact mode" : "Prepnúť kompaktný režim",
|
||||
"Show board details" : "Zobraziť podrobnosti o nástenke",
|
||||
"All Boards" : "Všetky nástenky",
|
||||
"Archived boards" : "Archivované nástenky",
|
||||
"Share board" : "Zdieľať nástenku",
|
||||
"Actions" : "Akcie",
|
||||
"Drop your files here to upload it to the card" : "Tu vložte svoje súbory ak ich chcete pripojiť ku karte.",
|
||||
"Assign card to me" : "Priradiť kartu mne",
|
||||
"Unassign card from me" : "Zrušiť priradenie karty mne",
|
||||
"Archive card" : "Archivovať kartu",
|
||||
"Unarchive card" : "Zrušiť archiváciu karty",
|
||||
"Delete card" : "Zmazať kartu",
|
||||
"Enter a card title" : "Zmeniť názov karty",
|
||||
"Add card" : "Pridať kartu",
|
||||
"Close" : "Zavrieť",
|
||||
"Sharing" : "Sprístupnenie",
|
||||
"Tags" : "Štítky",
|
||||
"Deleted items" : "Zmazané položky",
|
||||
"Timeline" : "Časová os",
|
||||
"Select users or groups to share with" : "Vyberte používateľov albo skupiny pre sprístupnenie",
|
||||
"Access for" : "Prístup pre",
|
||||
"No matching user or group found." : "Neboli nájdení vyhovujúci používatelia alebo skupiny.",
|
||||
"Loading" : "Načítavanie",
|
||||
"Share" : "Sprístupniť",
|
||||
"Edit" : "Upraviť",
|
||||
"Share" : "Sprístupniť",
|
||||
"Manage" : "Spravovať",
|
||||
"Discard share" : "Zrušiť sprístupnenie",
|
||||
"Update" : "Aktualizovať",
|
||||
"Update tag" : "Aktualizovať štítok",
|
||||
"Edit tag" : "Upraviť štítok",
|
||||
"Delete tag" : "Zmazať štítok",
|
||||
"Create" : "Vytvoriť",
|
||||
"Create a new tag" : "Vytvoriť nový štítok",
|
||||
"Deleted stacks" : "Odstránené stohy",
|
||||
"Deleted cards" : "Odstránené karty",
|
||||
"Status" : "Stav",
|
||||
"No archived boards to display" : "Žiadne archivované nástenky",
|
||||
"No shared boards to display" : "Žiadne sprístupnené nástenky",
|
||||
"Title" : "Názov",
|
||||
"Members" : "Členovia",
|
||||
"More actions" : "Viac akcií",
|
||||
"Edit board" : "Upraviť tabuľu",
|
||||
"Archive board" : "Archivovať tabuľu",
|
||||
"Unarchive board" : "Vybrať tabuľu z archívu",
|
||||
"Delete board" : "Zmazať tabuľu",
|
||||
"Reset" : "Obnoviť",
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Vrátiť späť vymazanie tabule - v opačnom prípade bude tabuľa vymazaná počas ďalšieho behu úlohy cronjob.",
|
||||
"Create new board" : "Vytvoriť novú tabuľu",
|
||||
"New board title" : "Názov novej tabule",
|
||||
"Edit board" : "Upraviť nástenku",
|
||||
"Archive board" : "Archivovať nástenku",
|
||||
"Unarchive board" : "Vybrať nástenku z archívu",
|
||||
"Delete board" : "Zmazať nástenku",
|
||||
"Update board" : "Aktualizovať nástenku",
|
||||
"Reset board" : "Resetovať nástenku",
|
||||
"Undo board deletion - Otherwise the board will be deleted during the next cronjob run." : "Vrátiť späť vymazanie nástenky - v opačnom prípade bude nástenka vymazaná počas ďalšieho behu úlohy cronjob.",
|
||||
"Create new board" : "Vytvoriť novú nástenku",
|
||||
"New board title" : "Názov novej nástenky",
|
||||
"Create board" : "Vytvoriť nástenku",
|
||||
"Select an attachment" : "Vybrať prílohu",
|
||||
"Cancel upload" : "Zrušiť nahrávanie",
|
||||
"by" : "-",
|
||||
"Undo file deletion - Otherwise the file will be deleted during the next cronjob run." : "Vrátiť späť zmazanie súboru - v opačnom prípade bude súbor vymazaný počas ďalšieho behu úlohy cronjob.",
|
||||
"Undo file deletion" : "Vrátiť späť odstránenie súboru",
|
||||
"Insert the file into the description" : "Vložte súbor do popisu",
|
||||
"Delete attachment" : "Zmazať prílohu",
|
||||
"Modified:" : "Upravené:",
|
||||
"Created:" : "Vytvorené:",
|
||||
"Choose a tag" : "Vybrať štítok",
|
||||
"Add a tag" : "Pridať štítok",
|
||||
"Select tags" : "Zvoliť štítky",
|
||||
"Assign users" : "Priradiť používateľov",
|
||||
"Choose a user to assign" : "Vyberte používateľa, ktorého chcete priradiť",
|
||||
"Assign this card to a user" : "Priradiť túto kartu používateľovi",
|
||||
"Due date" : "Do dátumu",
|
||||
"Click to set" : "Kliknite pre nastavenie",
|
||||
@@ -64,13 +177,12 @@
|
||||
"Attachments" : "Prílohy",
|
||||
"Saved" : "Uložené",
|
||||
"Unsaved changes" : "Neuložené zmeny",
|
||||
"Insert attachment" : "Vložiť prílohu",
|
||||
"Formatting help" : "Pomoc pri formátovaní",
|
||||
"Upload attachment" : "Nahrať prílohu",
|
||||
"Insert attachment" : "Vložiť prílohu",
|
||||
"Add a card description…" : "Pridať popis karty...",
|
||||
"Shared boards" : "Sprístupnené tabule",
|
||||
"View more" : "Pozrieť viac",
|
||||
"Move board to archive" : "Presunúť tabuľu do archívu",
|
||||
"Create a new board" : "Vytvoriť novú tabuľu"
|
||||
"Shared boards" : "Sprístupnené nástenky",
|
||||
"Move board to archive" : "Presunúť nástenku do archívu",
|
||||
"Create a new board" : "Vytvoriť novú nástenku"
|
||||
},"pluralForm" :"nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);"
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user